From 1741ac7b046f24e208d4d27831bee3dd93387587 Mon Sep 17 00:00:00 2001 From: Richard Conway Date: Thu, 27 Feb 2025 09:38:54 +0000 Subject: [PATCH] Data-access - remove Tyk and add sample data load (#83) * Add `sentinel-2-iceland` sample collection * Add eoepca ingest.sh script * Add collection links in items * Fix items.json as a basic array of Features * [data-access] Remove tyk gateway and associated redis * [data-access] Add load of sample data into eoAPI * [data-access] Add more records to sample data * [data-access] Remove tyk gateway and associated redis * [data-access] align eoapi values with dev cluster * [data-access] Use STAC Browser to check loaded sample data --- docs/building-blocks/data-access.md | 62 +- scripts/data-access/collections/ingest.sh | 79 + .../sentinel-2-iceland/collections.json | 834 + .../collections/sentinel-2-iceland/items.json | 170642 +++++++++++++++ scripts/data-access/configure-data-access.sh | 2 - .../data-access/eoapi/values-template.yaml | 6 +- scripts/data-access/tyk-gateway/.gitignore | 1 - .../tyk-gateway/redis-values-template.yaml | 4 - .../tyk-gateway/values-template.yaml | 28 - scripts/data-access/validation.sh | 1 - 10 files changed, 171580 insertions(+), 79 deletions(-) create mode 100755 scripts/data-access/collections/ingest.sh create mode 100644 scripts/data-access/collections/sentinel-2-iceland/collections.json create mode 100644 scripts/data-access/collections/sentinel-2-iceland/items.json delete mode 100644 scripts/data-access/tyk-gateway/.gitignore delete mode 100644 scripts/data-access/tyk-gateway/redis-values-template.yaml delete mode 100644 scripts/data-access/tyk-gateway/values-template.yaml diff --git a/docs/building-blocks/data-access.md b/docs/building-blocks/data-access.md index a8b17617..90ed38d2 100644 --- a/docs/building-blocks/data-access.md +++ b/docs/building-blocks/data-access.md @@ -38,11 +38,8 @@ The Data Access BB consists of the following main components: - **Stacture**: Bridges STAC API with OGC API Coverages and OGC WCS. - **Terravis**: Provides advanced rendering and processing capabilities. -4. **Tyk Gateway**: API Gateway for authentication, authorization, rate-limiting, and caching, integrated with the Identity Management BB. -5. **Redis**: In-memory data structure store used by Tyk. - -6. **eoapi-support**
+4. **eoapi-support**
Optional but recommended monitoring stack (Grafana, Prometheus, metrics server) to observe and manage the Data Access services. @@ -165,36 +162,7 @@ helm upgrade -i stacture eox/stacture \ --- -### 4. Deploy Tyk Gateway and Redis - -1. **Install Redis for Tyk Gateway:** - -```bash -helm repo add bitnami https://charts.bitnami.com/bitnami -helm repo update bitnami -helm upgrade -i tyk-redis bitnami/redis \ - --version 20.1.0 \ - --namespace data-access \ - --values tyk-gateway/redis-generated-values.yaml -``` - -2. **Install Tyk Gateway:** - -```bash -helm repo add tyk-oss https://helm.tyk.io/public/helm/charts/ -helm repo update tyk-oss -helm upgrade -i tyk-oss tyk-oss/tyk-oss \ - --version 1.6.0 \ - --namespace data-access \ - --values tyk-gateway/generated-values.yaml -``` - - -Tyk integrates with Identity Management for secure access and additional capabilities such as rate limiting or caching. - ---- - -### 5. Monitoring the Deployment +### 4. Monitoring the Deployment After deploying, you can monitor the status of the deployments: @@ -206,7 +174,7 @@ Check that all pods are in the `Running` state and that services/ingresses are p --- -### 6. Accessing the Data Access Services +### 5. Accessing the Data Access Services Once the deployment is complete and all pods are running, you can access the services: @@ -216,8 +184,6 @@ Once the deployment is complete and all pods are running, you can access the ser - **Stacture API (coverages, WCS, etc.):** `https://stacture.${INGRESS_HOST}/` -- **Tyk Gateway Dashboard** (if exposed via ingress): - `https://tyk-gateway.${INGRESS_HOST}/` - **Grafana** (if `eoapi-support` is installed and ingress is enabled): `https://eoapisupport.${INGRESS_HOST}/` @@ -225,6 +191,25 @@ Once the deployment is complete and all pods are running, you can access the ser --- +## Load Sample Collection + +The following steps load a sample `Sentinel2-L2A-Iceland` collection into eoAPI. + +```bash +cd collections/sentinel-2-iceland +../ingest.sh +cd ../.. +``` + +Check the loaded collection via STAC Browser... + +```bash +source ~/.eoepca/state +xdg-open https://radiantearth.github.io/stac-browser/#/external/eoapi.${INGRESS_HOST}/stac/collections/sentinel-2-iceland +``` + +--- + ## Testing and Validation Below are some quick ways to test and validate the Data Access services. @@ -293,8 +278,6 @@ curl -X POST "https://eoapi.${INGRESS_HOST}/stac/search" \ To uninstall the Data Access Building Block and clean up associated resources: ```bash -helm uninstall tyk-oss -n data-access -helm uninstall tyk-redis -n data-access helm uninstall stacture -n data-access helm uninstall eoapi-support -n data-access helm uninstall eoapi -n data-access @@ -309,5 +292,4 @@ kubectl delete namespace data-access - [EOEPCA+ Data Access GitHub Repository](https://github.com/EOEPCA/data-access) - [eoAPI Documentation](https://github.com/developmentseed/eoAPI) -- [Tyk Gateway Documentation](https://tyk.io/docs/) - [Crunchy Data Postgres Operator Documentation](https://access.crunchydata.com/documentation/postgres-operator/) diff --git a/scripts/data-access/collections/ingest.sh b/scripts/data-access/collections/ingest.sh new file mode 100755 index 00000000..889fd521 --- /dev/null +++ b/scripts/data-access/collections/ingest.sh @@ -0,0 +1,79 @@ +#!/bin/bash + +# Default files +DEFAULT_COLLECTIONS_FILE="./collections.json" +DEFAULT_ITEMS_FILE="./items.json" + +# Check for provided parameters or use defaults +if [ "$#" -eq 2 ]; then + EOAPI_COLLECTIONS_FILE="$1" + EOAPI_ITEMS_FILE="$2" +else + EOAPI_COLLECTIONS_FILE="$DEFAULT_COLLECTIONS_FILE" + EOAPI_ITEMS_FILE="$DEFAULT_ITEMS_FILE" + echo "No specific files provided. Using defaults:" + echo " Collections file: $EOAPI_COLLECTIONS_FILE" + echo " Items file: $EOAPI_ITEMS_FILE" +fi + +# Define namespaces +NAMESPACES=("default" "eoapi", "data-access") +EOAPI_POD_RASTER="" +FOUND_NAMESPACE="" + +# Discover the pod name from both namespaces +for NS in "${NAMESPACES[@]}"; do + EOAPI_POD_RASTER=$(kubectl get pods -n "$NS" -l app=raster-eoapi -o jsonpath="{.items[0].metadata.name}" 2>/dev/null) + if [ -n "$EOAPI_POD_RASTER" ]; then + FOUND_NAMESPACE="$NS" + echo "Found raster-eoapi pod: $EOAPI_POD_RASTER in namespace: $FOUND_NAMESPACE" + break + fi +done + +# Check if the pod was found +if [ -z "$EOAPI_POD_RASTER" ]; then + echo "Could not determine raster-eoapi pod." + exit 1 +fi + +# Check if input files exist +for FILE in "$EOAPI_COLLECTIONS_FILE" "$EOAPI_ITEMS_FILE"; do + if [ ! -f "$FILE" ]; then + echo "File not found: $FILE. You may set them via the EOAPI_COLLECTIONS_FILE and EOAPI_ITEMS_FILE environment variables." + exit 1 + fi +done + +# Install required packages +echo "Installing required packages in pod $EOAPI_POD_RASTER in namespace $FOUND_NAMESPACE..." +if ! kubectl exec -n "$FOUND_NAMESPACE" "$EOAPI_POD_RASTER" -- bash -c 'apt update -y && apt install python3 python3-pip -y && pip install pypgstac[psycopg]'; then + echo "Failed to install packages." + exit 1 +fi + +# Copy files to pod +echo "Copying files to pod..." +echo "Using collections file: $EOAPI_COLLECTIONS_FILE" +echo "Using items file: $EOAPI_ITEMS_FILE" +kubectl cp "$EOAPI_COLLECTIONS_FILE" "$FOUND_NAMESPACE/$EOAPI_POD_RASTER":/tmp/collections.json +kubectl cp "$EOAPI_ITEMS_FILE" "$FOUND_NAMESPACE/$EOAPI_POD_RASTER":/tmp/items.json + +# Load collections and items +echo "Loading collections..." +if ! kubectl exec -n "$FOUND_NAMESPACE" "$EOAPI_POD_RASTER" -- bash -c 'pypgstac load collections /tmp/collections.json --dsn "$PGADMIN_URI" --method insert_ignore'; then + echo "Failed to load collections." + exit 1 +fi + +echo "Loading items..." +if ! kubectl exec -n "$FOUND_NAMESPACE" "$EOAPI_POD_RASTER" -- bash -c 'pypgstac load items /tmp/items.json --dsn "$PGADMIN_URI" --method insert_ignore'; then + echo "Failed to load items." + exit 1 +fi + +# Clean temporary files +echo "Cleaning temporary files..." +kubectl exec -n "$FOUND_NAMESPACE" "$EOAPI_POD_RASTER" -- bash -c 'rm -f /tmp/collections.json /tmp/items.json' + +echo "Ingestion complete." diff --git a/scripts/data-access/collections/sentinel-2-iceland/collections.json b/scripts/data-access/collections/sentinel-2-iceland/collections.json new file mode 100644 index 00000000..af0a7066 --- /dev/null +++ b/scripts/data-access/collections/sentinel-2-iceland/collections.json @@ -0,0 +1,834 @@ +{ + "id": "sentinel-2-iceland", + "type": "Collection", + "links": [ + { + "rel": "items", + "type": "application/geo+json", + "href": "items.json" + }, + { + "rel": "cite-as", + "href": "https://doi.org/10.5270/S2_-742ikth", + "title": "Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance" + }, + { + "rel": "license", + "href": "https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice", + "title": "proprietary" + } + ], + "title": "Sentinel2-L2A-Iceland", + "extent": { + "spatial": { + "bbox": [ + [ + -24.95, + 63.38, + -13.99, + 66.56 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2023-01-01T00:00:00.000000Z", + "2013-12-31T23:59:59.999999Z" + ] + ] + } + }, + "license": "proprietary", + "keywords": [ + "sentinel", + "earth observation", + "esa" + ], + "providers": [ + { + "url": "https://earth.esa.int/web/guest/home", + "name": "ESA", + "roles": [ + "producer" + ] + }, + { + "url": "https://registry.opendata.aws/sentinel-2/", + "name": "Sinergise", + "roles": [ + "processor" + ] + }, + { + "url": "http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/", + "name": "AWS", + "roles": [ + "host" + ] + }, + { + "url": "https://element84.com", + "name": "Element 84", + "roles": [ + "processor" + ] + } + ], + "summaries": { + "gsd": [ + 10, + 20, + 60 + ], + "sci:doi": [ + "10.5270/s2_-znk9xsj" + ], + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + }, + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + }, + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + }, + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + }, + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + }, + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + }, + { + "name": "cirrus", + "common_name": "cirrus", + "description": "Cirrus (band 10)", + "center_wavelength": 1.3735, + "full_width_half_max": 0.075 + }, + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + }, + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "platform": [ + "sentinel-2a", + "sentinel-2b" + ], + "instruments": [ + "msi" + ], + "constellation": [ + "sentinel-2" + ], + "view:off_nadir": [ + 0 + ] + }, + "description": "Sentinel-2 data from 2023 over Iceland.", + "item_assets": { + "aot": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "nir": { + "gsd": 10, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 4900020 + ] + }, + "red": { + "gsd": 10, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 4900020 + ] + }, + "scl": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "wvp": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "blue": { + "gsd": 10, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 4900020 + ] + }, + "green": { + "gsd": 10, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 4900020 + ] + }, + "nir08": { + "gsd": 20, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "nir09": { + "gsd": 60, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 4900020 + ] + }, + "swir16": { + "gsd": 20, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "swir22": { + "gsd": 20, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "visual": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 4900020 + ] + }, + "coastal": { + "gsd": 60, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 4900020 + ] + }, + "rededge1": { + "gsd": 20, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "rededge2": { + "gsd": 20, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "rededge3": { + "gsd": 20, + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 4900020 + ] + }, + "thumbnail": { + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] +} \ No newline at end of file diff --git a/scripts/data-access/collections/sentinel-2-iceland/items.json b/scripts/data-access/collections/sentinel-2-iceland/items.json new file mode 100644 index 00000000..578d8ac4 --- /dev/null +++ b/scripts/data-access/collections/sentinel-2-iceland/items.json @@ -0,0 +1,170642 @@ +[ + { + "id": "S2A_26WPS_20231109_0_L2A", + "bbox": [ + -24.944141354917324, + 64.11035031942181, + -24.177092180629256, + 64.8188325356334 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.944141354917324, + 64.15077819586763 + ], + [ + -24.76034596766193, + 64.11035031942181 + ], + [ + -24.177092180629256, + 64.66101906792989 + ], + [ + -24.893339872314947, + 64.8188325356334 + ], + [ + -24.944141354917324, + 64.15077819586763 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-09T16:58:33.016Z", + "updated": "2023-11-09T16:58:33.016Z", + "datetime": "2023-11-09T13:33:54.673000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231109T160407_A043779_T26WPS_N05.09", + "eo:cloud_cover": 2.075391, + "s2:datatake_id": "GS2A_20231109T133351_043779_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231109T133351_N0509_R024_T26WPS_20231109T160407.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231109T160407_S20231109T133347_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 183.633428526491, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-09T16:04:07.000000Z", + "view:sun_elevation": 8.6705854024719, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2A_26WPS_20231109_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.924584, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d21d22d50d3528ecc37a48a91431b12e", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000024, + "s2:thin_cirrus_percentage": 2.070226, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 86.318052, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000339, + "s2:reflectance_conversion_factor": 1.01777404462066, + "s2:medium_proba_clouds_percentage": 0.004826, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27VWL_20231109_0_L2A", + "bbox": [ + -19.50513935132322, + 63.02512387396203, + -18.754449695194992, + 64.01017051917611 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.779259708418312, + 64.01017051917611 + ], + [ + -19.10303123372613, + 63.57641046061951 + ], + [ + -19.175675103344165, + 63.485613794160564 + ], + [ + -19.50513935132322, + 63.03385855370626 + ], + [ + -18.830536182062367, + 63.02512387396203 + ], + [ + -18.754449695194992, + 64.00978893785071 + ], + [ + -18.779259708418312, + 64.01017051917611 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-09T16:16:39.121Z", + "updated": "2023-11-09T16:16:39.121Z", + "datetime": "2023-11-09T12:44:14.089000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VWL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231109T145318_A034870_T27VWL_N05.09", + "eo:cloud_cover": 1.070708, + "s2:datatake_id": "GS2B_20231109T124339_034870_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231109T124339_N0509_R095_T27VWL_20231109T145318.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231109T145318_S20231109T124335_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.353315388195, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-11-09T14:53:18.000000Z", + "view:sun_elevation": 9.511433313294404, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/WL/2023/11/S2B_27VWL_20231109_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 64.624614, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/bd5c08c6d3bcd486ead7e77b265420e2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 11.012124, + "s2:vegetation_percentage": 0.041063, + "s2:thin_cirrus_percentage": 0.651442, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 83.832043, + "s2:unclassified_percentage": 0.215984, + "s2:dark_features_percentage": 6.428906, + "s2:not_vegetated_percentage": 16.606602, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.006156, + "s2:reflectance_conversion_factor": 1.01775649884504, + "s2:medium_proba_clouds_percentage": 0.41311, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20231108_0_L2A", + "bbox": [ + -24.960733536790926, + 63.875786719781686, + -22.571643586550366, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -24.960733536790926, + 63.92451126316695 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-08T15:42:26.788Z", + "updated": "2023-11-08T15:42:26.788Z", + "datetime": "2023-11-08T13:14:03.373000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231108T134217_A034856_T26WPS_N05.09", + "eo:cloud_cover": 2.641146, + "s2:datatake_id": "GS2B_20231108T131349_034856_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231108T131349_N0509_R081_T26WPS_20231108T134217.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231108T134217_S20231108T131343_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.838387621122, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-08T13:42:17.000000Z", + "view:sun_elevation": 9.008550657669701, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/11/S2B_26WPS_20231108_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 91.89266, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c077f49882a54ee5827ab6001c56df7c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.7309, + "s2:vegetation_percentage": 0.202425, + "s2:thin_cirrus_percentage": 1.951404, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.006616, + "s2:dark_features_percentage": 0.681969, + "s2:not_vegetated_percentage": 3.844287, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0219, + "s2:high_proba_clouds_percentage": 0.158652, + "s2:reflectance_conversion_factor": 1.01726130606195, + "s2:medium_proba_clouds_percentage": 0.53109, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WNT_20231108_0_L2A", + "bbox": [ + -25.68865776066789, + 64.81839788328173, + -24.62490101250315, + 65.58136184698695 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.62490101250315, + 65.52479755401055 + ], + [ + -25.065015344644717, + 65.58136184698695 + ], + [ + -25.68865776066789, + 64.83060872767648 + ], + [ + -24.68732176995665, + 64.81839788328173 + ], + [ + -24.62490101250315, + 65.52479755401055 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-08T14:55:47.058Z", + "updated": "2023-11-08T14:55:47.058Z", + "datetime": "2023-11-08T13:13:54.912000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231108T134217_A034856_T26WNT_N05.09", + "eo:cloud_cover": 2.11666, + "s2:datatake_id": "GS2B_20231108T131349_034856_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231108T131349_N0509_R081_T26WNT_20231108T134217.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231108T134217_S20231108T131343_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.829227726997, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-08T13:42:17.000000Z", + "view:sun_elevation": 8.047933703471799, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NT/2023/11/S2B_26WNT_20231108_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.882974, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/523ea59a6448a23b1895666e63d9b063", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000368, + "s2:thin_cirrus_percentage": 1.082734, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 76.561046, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.265481, + "s2:reflectance_conversion_factor": 1.01726130606195, + "s2:medium_proba_clouds_percentage": 0.768445, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WPT_20231108_0_L2A", + "bbox": [ + -24.89313457574395, + 64.77075092227982, + -22.51224580288282, + 65.5516222710476 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.51224580288282, + 65.21332987129274 + ], + [ + -23.187888035315215, + 65.3204587164707 + ], + [ + -23.95603788764971, + 65.43487347361845 + ], + [ + -24.24011742497282, + 65.47201408684563 + ], + [ + -24.8342938759348, + 65.5516222710476 + ], + [ + -24.89313457574395, + 64.82145944293943 + ], + [ + -22.58600870874394, + 64.77075092227982 + ], + [ + -22.51224580288282, + 65.21332987129274 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-08T15:24:31.845Z", + "updated": "2023-11-08T15:24:31.845Z", + "datetime": "2023-11-08T13:13:52.199000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231108T134217_A034856_T26WPT_N05.09", + "eo:cloud_cover": 2.652983, + "s2:datatake_id": "GS2B_20231108T131349_034856_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231108T131349_N0509_R081_T26WPT_20231108T134217.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231108T134217_S20231108T131343_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.88831048747, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-08T13:42:17.000000Z", + "view:sun_elevation": 8.113175960129695, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/11/S2B_26WPT_20231108_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 80.635345, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8b4dc141e6e7c933ac79d235a73e4c3f", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.81937, + "s2:vegetation_percentage": 0.352488, + "s2:thin_cirrus_percentage": 0.713877, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 39.906082, + "s2:unclassified_percentage": 0.049866, + "s2:dark_features_percentage": 4.999617, + "s2:not_vegetated_percentage": 9.490328, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0204, + "s2:high_proba_clouds_percentage": 0.73436, + "s2:reflectance_conversion_factor": 1.01726130606195, + "s2:medium_proba_clouds_percentage": 1.204746, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WVN_20231108_0_L2A", + "bbox": [ + -23.147003330122487, + 64.82144809642227, + -20.79377386449628, + 65.31433100756534 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -20.79377386449628, + 64.90622911032695 + ], + [ + -21.988063863069346, + 65.12626523619697 + ], + [ + -23.147003330122487, + 65.31433100756534 + ], + [ + -23.10766536839332, + 64.82144809642227 + ], + [ + -20.794309519428296, + 64.83624976412734 + ], + [ + -20.79377386449628, + 64.90622911032695 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-08T15:20:50.251Z", + "updated": "2023-11-08T15:20:50.251Z", + "datetime": "2023-11-08T13:13:50.119000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231108T134217_A034856_T27WVN_N05.09", + "eo:cloud_cover": 0.380676, + "s2:datatake_id": "GS2B_20231108T131349_034856_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231108T131349_N0509_R081_T27WVN_20231108T134217.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231108T134217_S20231108T131343_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.524595579824, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-08T13:42:17.000000Z", + "view:sun_elevation": 8.083244506582005, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/11/S2B_27WVN_20231108_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 33.258787, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ceab2ee50105ed360340f2cfa7f05969", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 9.445936, + "s2:vegetation_percentage": 1.435046, + "s2:thin_cirrus_percentage": 0.326616, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 70.896673, + "s2:unclassified_percentage": 0.119109, + "s2:dark_features_percentage": 15.327086, + "s2:not_vegetated_percentage": 40.033358, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0025, + "s2:high_proba_clouds_percentage": 0.009439, + "s2:reflectance_conversion_factor": 1.01726130606195, + "s2:medium_proba_clouds_percentage": 0.04462, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WVM_20231107_0_L2A", + "bbox": [ + -21.35603846770159, + 63.93842111252826, + -20.79906834038966, + 64.64852581471845 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -20.80295475006804, + 63.938724371154365 + ], + [ + -20.79906834038966, + 64.64852581471845 + ], + [ + -20.844700601931834, + 64.58871447203488 + ], + [ + -21.35603846770159, + 63.93842111252826 + ], + [ + -20.80295475006804, + 63.938724371154365 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-07T17:12:09.406Z", + "updated": "2023-11-07T17:12:09.406Z", + "datetime": "2023-11-07T12:54:01.669000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231107T153056_A043750_T27WVM_N05.09", + "eo:cloud_cover": 2.232177, + "s2:datatake_id": "GS2A_20231107T125331_043750_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231107T125331_N0509_R138_T27WVM_20231107T153056.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231107T153056_S20231107T125327_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.767632038058, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-07T15:30:56.000000Z", + "view:sun_elevation": 9.208788581343299, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2A_27WVM_20231107_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 10.686053, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/10f627d3f742b80e9cef4b0d47bb68e5", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 13.9972, + "s2:vegetation_percentage": 2.829083, + "s2:thin_cirrus_percentage": 0.17344, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 90.963173, + "s2:unclassified_percentage": 0.605314, + "s2:dark_features_percentage": 6.203893, + "s2:not_vegetated_percentage": 63.446277, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0594, + "s2:high_proba_clouds_percentage": 0.890771, + "s2:reflectance_conversion_factor": 1.0167435466272, + "s2:medium_proba_clouds_percentage": 1.167966, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20231103_0_L2A", + "bbox": [ + -18.88722206781852, + 64.89687031068432, + -18.87341543517544, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.88722206781852, + 64.89687031068432 + ], + [ + -18.87341543517544, + 64.9089547049171 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-03T18:18:55.681Z", + "updated": "2023-11-03T18:18:55.681Z", + "datetime": "2023-11-03T13:13:37.029000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231103T155650_A043693_T27WXM_N05.09", + "eo:cloud_cover": 0.124611, + "s2:datatake_id": "GS2A_20231103T131311_043693_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231103T131311_N0509_R081_T27WXM_20231103T155650.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231103T155650_S20231103T131312_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 184.679525041682, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-03T15:56:50.000000Z", + "view:sun_elevation": 10.436343925696505, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/11/S2A_27WXM_20231103_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/82ce9647c0b679bc72cfef179ec9029b", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 99.875391, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.994677, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.124611, + "s2:reflectance_conversion_factor": 1.014663771331, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WVM_20231102_0_L2A", + "bbox": [ + -21.35399844251562, + 63.93842610785406, + -20.79908839409057, + 64.645465867275 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -20.802954750105304, + 63.93872437115442 + ], + [ + -20.79908839409057, + 64.645465867275 + ], + [ + -20.840719772295714, + 64.59086387853273 + ], + [ + -21.35399844251562, + 63.93842610785406 + ], + [ + -20.802954750105304, + 63.93872437115442 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-02T17:55:56.921Z", + "updated": "2023-11-02T17:55:56.921Z", + "datetime": "2023-11-02T12:54:04.841000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231102T153424_A034770_T27WVM_N05.09", + "eo:cloud_cover": 0.905299, + "s2:datatake_id": "GS2B_20231102T125259_034770_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231102T125259_N0509_R138_T27WVM_20231102T153424.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231102T153424_S20231102T125302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.752921765749, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-02T15:34:24.000000Z", + "view:sun_elevation": 10.737481970040207, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/11/S2B_27WVM_20231102_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 12.36162, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e21b9071e8da3775f0244b060c051723", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.536089, + "s2:vegetation_percentage": 2.781629, + "s2:thin_cirrus_percentage": 0.239665, + "s2:cloud_shadow_percentage": 0.319061, + "s2:nodata_pixel_percentage": 91.01547, + "s2:unclassified_percentage": 0.804337, + "s2:dark_features_percentage": 6.012195, + "s2:not_vegetated_percentage": 76.279771, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.138851, + "s2:reflectance_conversion_factor": 1.01412424545529, + "s2:medium_proba_clouds_percentage": 0.526783, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WWN_20231101_0_L2A", + "bbox": [ + -21.00041572310818, + 65.26543521564658, + -20.355704569404633, + 65.82154341411521 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.00041572310818, + 65.82154341411521 + ], + [ + -21.00040695494207, + 65.26543521564658 + ], + [ + -20.355704569404633, + 65.82018825429414 + ], + [ + -21.00041572310818, + 65.82154341411521 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-11-01T18:06:01.353Z", + "updated": "2023-11-01T18:06:01.353Z", + "datetime": "2023-11-01T13:23:32.229000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WWN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231101T153650_A034756_T27WWN_N05.09", + "eo:cloud_cover": 4.920698, + "s2:datatake_id": "GS2B_20231101T132219_034756_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231101T132219_N0509_R124_T27WWN_20231101T153650.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231101T153650_S20231101T132307_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 185.107089156156, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-11-01T15:36:50.000000Z", + "view:sun_elevation": 10.125516498406895, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WN/2023/11/S2B_27WWN_20231101_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 59.117037, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ab419972416261950a2aaf47323913d4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 10.261413, + "s2:vegetation_percentage": 0.345112, + "s2:thin_cirrus_percentage": 3.630725, + "s2:cloud_shadow_percentage": 0.002038, + "s2:nodata_pixel_percentage": 92.350298, + "s2:unclassified_percentage": 0.255462, + "s2:dark_features_percentage": 2.34769, + "s2:not_vegetated_percentage": 22.750548, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.297012, + "s2:reflectance_conversion_factor": 1.01359930808575, + "s2:medium_proba_clouds_percentage": 0.992962, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WVM_20231031_0_L2A", + "bbox": [ + -23.11336465573054, + 63.924500361371166, + -20.793637446475586, + 64.92398659290882 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.10346772639775, + 64.9092829674586 + ], + [ + -23.11336465573054, + 64.89412011140834 + ], + [ + -23.040040785180654, + 63.924500361371166 + ], + [ + -20.80091473167463, + 63.93872158431219 + ], + [ + -20.793637446475586, + 64.92398659290882 + ], + [ + -23.10346772639775, + 64.9092829674586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-31T17:57:35.882Z", + "updated": "2023-10-31T17:57:35.882Z", + "datetime": "2023-10-31T13:03:57.173000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231031T154853_A043650_T27WVM_N05.09", + "eo:cloud_cover": 1.020273, + "s2:datatake_id": "GS2A_20231031T130301_043650_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231031T130301_N0509_R038_T27WVM_20231031T154853.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231031T154853_S20231031T130256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.171205525289, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-31T15:48:53.000000Z", + "view:sun_elevation": 11.431332388263698, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2A_27WVM_20231031_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 39.094684, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/dd7e1dbe8ef1a128da9358081f60c101", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.49008, + "s2:vegetation_percentage": 2.377918, + "s2:thin_cirrus_percentage": 0.801609, + "s2:cloud_shadow_percentage": 0.05381, + "s2:nodata_pixel_percentage": 0.002346, + "s2:unclassified_percentage": 0.152528, + "s2:dark_features_percentage": 6.220258, + "s2:not_vegetated_percentage": 49.590454, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0028, + "s2:high_proba_clouds_percentage": 0.025943, + "s2:reflectance_conversion_factor": 1.013052603, + "s2:medium_proba_clouds_percentage": 0.192721, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPT_20231031_0_L2A", + "bbox": [ + -23.201382848458348, + 64.77081337933238, + -22.429305104322715, + 65.71176882771681 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.58810507740875, + 64.77081337933238 + ], + [ + -22.429305104322715, + 65.71176882771681 + ], + [ + -23.126994207410704, + 64.87566112953333 + ], + [ + -23.201382848458348, + 64.78780223403542 + ], + [ + -22.58810507740875, + 64.77081337933238 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-31T17:48:53.927Z", + "updated": "2023-10-31T17:48:53.927Z", + "datetime": "2023-10-31T13:03:49.324000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231031T154853_A043650_T26WPT_N05.09", + "eo:cloud_cover": 0.613772, + "s2:datatake_id": "GS2A_20231031T130301_043650_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231031T130301_N0509_R038_T26WPT_20231031T154853.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231031T154853_S20231031T130256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.418096491561, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-31T15:48:53.000000Z", + "view:sun_elevation": 10.532889084862106, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/10/S2A_26WPT_20231031_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 55.436265, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/298e80d7bf199edb1dd72fd40071c77c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.558105, + "s2:vegetation_percentage": 1.3204, + "s2:thin_cirrus_percentage": 0.440065, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 87.036705, + "s2:unclassified_percentage": 0.402672, + "s2:dark_features_percentage": 8.221287, + "s2:not_vegetated_percentage": 33.447501, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0573, + "s2:high_proba_clouds_percentage": 0.019272, + "s2:reflectance_conversion_factor": 1.013052603, + "s2:medium_proba_clouds_percentage": 0.154435, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WWN_20231031_0_L2A", + "bbox": [ + -21.00041572310818, + 64.81839788328173, + -18.599305506964242, + 65.82154341411521 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.00041572310818, + 65.82154341411521 + ], + [ + -21.00040046463819, + 64.83639202908054 + ], + [ + -18.68732176995664, + 64.81839788328173 + ], + [ + -18.599305506964242, + 65.80271861196661 + ], + [ + -21.00041572310818, + 65.82154341411521 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-31T17:56:30.648Z", + "updated": "2023-10-31T17:56:30.648Z", + "datetime": "2023-10-31T13:03:38Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WWN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231031T154853_A043650_T27WWN_N05.09", + "eo:cloud_cover": 1.986334, + "s2:datatake_id": "GS2A_20231031T130301_043650_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231031T130301_N0509_R038_T27WWN_20231031T154853.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231031T154853_S20231031T130256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.185564594162, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-31T15:48:53.000000Z", + "view:sun_elevation": 10.548181328789298, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2A_27WWN_20231031_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 11.40719, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a94e045f650fdd0ea3144b9ee99e3c66", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 28.248486, + "s2:vegetation_percentage": 0.403473, + "s2:thin_cirrus_percentage": 0.455055, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0.000017, + "s2:unclassified_percentage": 0.074532, + "s2:dark_features_percentage": 9.272588, + "s2:not_vegetated_percentage": 48.607394, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.503124, + "s2:reflectance_conversion_factor": 1.013052603, + "s2:medium_proba_clouds_percentage": 1.028155, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDS_20231031_0_L2A", + "bbox": [ + -17.114545771039605, + 64.24833967721355, + -16.341140647539444, + 64.91809569355463 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.114545771039605, + 64.90912610608407 + ], + [ + -17.063890775310828, + 64.24833967721355 + ], + [ + -16.656424620356695, + 64.63440557446654 + ], + [ + -16.341140647539444, + 64.91809569355463 + ], + [ + -17.114545771039605, + 64.90912610608407 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-31T17:48:17.962Z", + "updated": "2023-10-31T17:48:17.962Z", + "datetime": "2023-10-31T13:03:37.964000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDS", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231031T154853_A043650_T28WDS_N05.09", + "eo:cloud_cover": 1.21648, + "s2:datatake_id": "GS2A_20231031T130301_043650_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231031T130301_N0509_R038_T28WDS_20231031T154853.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231031T154853_S20231031T130256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 184.04497618733, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-31T15:48:53.000000Z", + "view:sun_elevation": 11.381834066462602, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DS/2023/10/S2A_28WDS_20231031_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 4.000014, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/47c8e9e5905418f88d911b5920dbcd69", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 91.57387, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.448677, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 88.78516, + "s2:unclassified_percentage": 0.000651, + "s2:dark_features_percentage": 2.619874, + "s2:not_vegetated_percentage": 0.589114, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.0021, + "s2:reflectance_conversion_factor": 1.013052603, + "s2:medium_proba_clouds_percentage": 0.765703, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXN_20231031_0_L2A", + "bbox": [ + -18.89313457574394, + 64.77075092227982, + -16.418530102243363, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.81293549288732, + 65.80592141721391 + ], + [ + -18.89313457574394, + 64.82145944293943 + ], + [ + -16.58600870874393, + 64.77075092227982 + ], + [ + -16.418530102243363, + 65.75287787308291 + ], + [ + -18.81293549288732, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-31T17:57:32.656Z", + "updated": "2023-10-31T17:57:32.656Z", + "datetime": "2023-10-31T13:03:32.567000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231031T154853_A043650_T27WXN_N05.09", + "eo:cloud_cover": 0.258085, + "s2:datatake_id": "GS2A_20231031T130301_043650_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231031T130301_N0509_R038_T27WXN_20231031T154853.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231031T154853_S20231031T130256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.281343337889, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-31T15:48:53.000000Z", + "view:sun_elevation": 10.561131456042503, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2A_27WXN_20231031_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 3.314163, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/afd1e107290783e2cb40613c4dbda485", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 74.735922, + "s2:vegetation_percentage": 0.132481, + "s2:thin_cirrus_percentage": 0.174893, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0.00001, + "s2:unclassified_percentage": 0.008212, + "s2:dark_features_percentage": 8.626144, + "s2:not_vegetated_percentage": 12.924999, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0226, + "s2:high_proba_clouds_percentage": 0.007127, + "s2:reflectance_conversion_factor": 1.013052603, + "s2:medium_proba_clouds_percentage": 0.076065, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXP_20231031_0_L2A", + "bbox": [ + -18.82035063178234, + 65.66542962794706, + -16.253275154768794, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.733772814861197, + 66.7025538338594 + ], + [ + -18.82035063178234, + 65.71825806747697 + ], + [ + -16.434012525314987, + 65.66542962794706 + ], + [ + -16.253275154768794, + 66.64722308988246 + ], + [ + -18.733772814861197, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-31T17:58:29.478Z", + "updated": "2023-10-31T17:58:29.478Z", + "datetime": "2023-10-31T13:03:18.699000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231031T154853_A043650_T27WXP_N05.09", + "eo:cloud_cover": 1.892154, + "s2:datatake_id": "GS2A_20231031T130301_043650_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231031T130301_N0509_R038_T27WXP_20231031T154853.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231031T154853_S20231031T130256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.332338657564, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-31T15:48:53.000000Z", + "view:sun_elevation": 9.665145160359103, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231031_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 56.432426, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/0701752fdee8f4f7b75f89bd1a981e5a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 16.575785, + "s2:vegetation_percentage": 0.304757, + "s2:thin_cirrus_percentage": 0.737274, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.069054, + "s2:dark_features_percentage": 6.794765, + "s2:not_vegetated_percentage": 17.931059, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0094, + "s2:high_proba_clouds_percentage": 0.277451, + "s2:reflectance_conversion_factor": 1.013052603, + "s2:medium_proba_clouds_percentage": 0.877429, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDU_20231031_0_L2A", + "bbox": [ + -17.26708751458163, + 65.71914279595295, + -14.778735723758237, + 66.71869608061229 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -17.180552478789068, + 65.71914279595295 + ], + [ + -15.408947159640432, + 65.73470416491773 + ], + [ + -14.782821930268076, + 66.25352654395309 + ], + [ + -14.778735723758237, + 66.71869608061229 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-31T18:00:10.939Z", + "updated": "2023-10-31T18:00:10.939Z", + "datetime": "2023-10-31T13:03:13.431000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231031T154853_A043650_T28WDU_N05.09", + "eo:cloud_cover": 2.210852, + "s2:datatake_id": "GS2A_20231031T130301_043650_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231031T130301_N0509_R038_T28WDU_20231031T154853.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231031T154853_S20231031T130256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 183.844962195609, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-31T15:48:53.000000Z", + "view:sun_elevation": 9.5967755757693, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/10/S2A_28WDU_20231031_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 47.219735, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a167d7fbe944f006d784bc881136a348", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 21.353346, + "s2:vegetation_percentage": 0.20422, + "s2:thin_cirrus_percentage": 1.27101, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 6.818759, + "s2:unclassified_percentage": 0.173007, + "s2:dark_features_percentage": 1.998962, + "s2:not_vegetated_percentage": 26.839873, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0253, + "s2:high_proba_clouds_percentage": 0.157747, + "s2:reflectance_conversion_factor": 1.013052603, + "s2:medium_proba_clouds_percentage": 0.782096, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXN_20231030_0_L2A", + "bbox": [ + -18.14419334601714, + 64.77075092227982, + -16.418530102243363, + 65.77765014043129 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.33561199728308, + 65.77765014043129 + ], + [ + -17.728882163633028, + 65.31245265870965 + ], + [ + -18.14419334601714, + 64.8089459735407 + ], + [ + -16.58600870874393, + 64.77075092227982 + ], + [ + -16.418530102243363, + 65.75287787308291 + ], + [ + -17.33561199728308, + 65.77765014043129 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-30T21:46:23.876Z", + "updated": "2023-10-30T21:46:23.876Z", + "datetime": "2023-10-30T12:43:39.746000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231030T145722_A034727_T27WXN_N05.09", + "eo:cloud_cover": 0.34494, + "s2:datatake_id": "GS2B_20231030T124309_034727_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231030T124309_N0509_R095_T27WXN_20231030T145722.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231030T145722_S20231030T124303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.355296622953, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-30T14:57:22.000000Z", + "view:sun_elevation": 10.8846276402153, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231030_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 4.974261, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/7e1cc12a89082a4bea1782e8affc2fe2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 80.839097, + "s2:vegetation_percentage": 0.038495, + "s2:thin_cirrus_percentage": 0.229049, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 46.976593, + "s2:unclassified_percentage": 0.075132, + "s2:dark_features_percentage": 2.173189, + "s2:not_vegetated_percentage": 11.554886, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.001133, + "s2:reflectance_conversion_factor": 1.01250212468231, + "s2:medium_proba_clouds_percentage": 0.114759, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28WDT_20231030_0_L2A", + "bbox": [ + -17.187894843472776, + 64.82144809642227, + -14.786472389258659, + 65.82139457717805 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.187894843472776, + 65.80590954715973 + ], + [ + -17.10766536839331, + 64.82144809642227 + ], + [ + -14.794309519428289, + 64.83624976412734 + ], + [ + -14.786472389258659, + 65.82139457717805 + ], + [ + -17.187894843472776, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-30T21:48:57.145Z", + "updated": "2023-10-30T21:48:57.145Z", + "datetime": "2023-10-30T12:43:35.479000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231030T145722_A034727_T28WDT_N05.09", + "eo:cloud_cover": 0.225344, + "s2:datatake_id": "GS2B_20231030T124309_034727_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231030T124309_N0509_R095_T28WDT_20231030T145722.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231030T145722_S20231030T124303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.028007467667, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-30T14:57:22.000000Z", + "view:sun_elevation": 10.8733916072635, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231030_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 3.342531, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a9d03f97fd8ec0c015603cb75dc62e7a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 84.857631, + "s2:vegetation_percentage": 0.203934, + "s2:thin_cirrus_percentage": 0.087518, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0.000023, + "s2:unclassified_percentage": 0.007558, + "s2:dark_features_percentage": 3.704703, + "s2:not_vegetated_percentage": 7.658301, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0224, + "s2:high_proba_clouds_percentage": 0.000358, + "s2:reflectance_conversion_factor": 1.01250212468231, + "s2:medium_proba_clouds_percentage": 0.137468, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WXP_20231030_0_L2A", + "bbox": [ + -17.4105692292703, + 65.66542962794706, + -16.253275154768794, + 66.65588993850595 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.549075351814512, + 66.65588993850595 + ], + [ + -17.102770053622056, + 66.03950100482233 + ], + [ + -17.4105692292703, + 65.69158825476822 + ], + [ + -16.434012525314987, + 65.66542962794706 + ], + [ + -16.253275154768794, + 66.64722308988246 + ], + [ + -16.549075351814512, + 66.65588993850595 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-30T21:50:29.927Z", + "updated": "2023-10-30T21:50:29.927Z", + "datetime": "2023-10-30T12:43:25.932000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231030T145722_A034727_T27WXP_N05.09", + "eo:cloud_cover": 0.525735, + "s2:datatake_id": "GS2B_20231030T124309_034727_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231030T124309_N0509_R095_T27WXP_20231030T145722.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231030T145722_S20231030T124303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.418818392147, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-30T14:57:22.000000Z", + "view:sun_elevation": 9.990875180346507, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231030_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 31.275746, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/40daca1c86386fb1d2d1f5e0d085ee27", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 32.217675, + "s2:vegetation_percentage": 0.388845, + "s2:thin_cirrus_percentage": 0.38768, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 73.503876, + "s2:unclassified_percentage": 0.220788, + "s2:dark_features_percentage": 2.528538, + "s2:not_vegetated_percentage": 32.842672, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.00447, + "s2:reflectance_conversion_factor": 1.01250212468231, + "s2:medium_proba_clouds_percentage": 0.133584, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WVM_20231029_0_L2A", + "bbox": [ + -23.114545771039616, + 63.924500361371166, + -20.793637446475586, + 64.92398659290882 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.114545771039616, + 64.90912610608407 + ], + [ + -23.040040785180654, + 63.924500361371166 + ], + [ + -20.80091473167463, + 63.93872158431219 + ], + [ + -20.793637446475586, + 64.92398659290882 + ], + [ + -23.114545771039616, + 64.90912610608407 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-29T19:31:07.625Z", + "updated": "2023-10-29T19:31:07.625Z", + "datetime": "2023-10-29T13:13:57.648000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231029T152016_A034713_T27WVM_N05.09", + "eo:cloud_cover": 1.105826, + "s2:datatake_id": "GS2B_20231029T131259_034713_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231029T131259_N0509_R081_T27WVM_20231029T152016.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231029T152016_S20231029T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.625021273269, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-29T15:20:16.000000Z", + "view:sun_elevation": 12.094953848623902, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231029_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 38.464311, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/3b9a66179a875a4c000dfee69479316f", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.841281, + "s2:vegetation_percentage": 5.951646, + "s2:thin_cirrus_percentage": 1.097412, + "s2:cloud_shadow_percentage": 0.000265, + "s2:nodata_pixel_percentage": 3e-6, + "s2:unclassified_percentage": 0.02702, + "s2:dark_features_percentage": 5.716855, + "s2:not_vegetated_percentage": 47.892791, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0028, + "s2:high_proba_clouds_percentage": 0.001264, + "s2:reflectance_conversion_factor": 1.0119671708041, + "s2:medium_proba_clouds_percentage": 0.00715, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WWM_20231029_0_L2A", + "bbox": [ + -21.000401773127408, + 63.93617210726207, + -18.878468726034875, + 64.92412942351285 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.000401773127408, + 64.92412942351285 + ], + [ + -21.000387617055786, + 63.93975568779671 + ], + [ + -19.90712774766611, + 63.93617210726207 + ], + [ + -18.878468726034875, + 64.90902676937264 + ], + [ + -21.000401773127408, + 64.92412942351285 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-29T19:31:11.446Z", + "updated": "2023-10-29T19:31:11.446Z", + "datetime": "2023-10-29T13:13:51.445000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WWM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231029T152016_A034713_T27WWM_N05.09", + "eo:cloud_cover": 0.316205, + "s2:datatake_id": "GS2B_20231029T131259_034713_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231029T131259_N0509_R081_T27WWM_20231029T152016.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231029T152016_S20231029T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.668241586049, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-29T15:20:16.000000Z", + "view:sun_elevation": 12.070946303198895, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231029_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 9.988339, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/b992a5d105aa87cc624eb95de0d09fce", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 15.76954, + "s2:vegetation_percentage": 4.824349, + "s2:thin_cirrus_percentage": 0.089512, + "s2:cloud_shadow_percentage": 0.197147, + "s2:nodata_pixel_percentage": 29.793444, + "s2:unclassified_percentage": 0.012481, + "s2:dark_features_percentage": 4.535776, + "s2:not_vegetated_percentage": 64.356166, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0286, + "s2:high_proba_clouds_percentage": 0.000038, + "s2:reflectance_conversion_factor": 1.0119671708041, + "s2:medium_proba_clouds_percentage": 0.226655, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WVN_20231029_0_L2A", + "bbox": [ + -23.187894843472783, + 64.82144809642227, + -20.78647238925867, + 65.82139457717805 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.187894843472783, + 65.80590954715973 + ], + [ + -23.10766536839332, + 64.82144809642227 + ], + [ + -20.794309519428296, + 64.83624976412734 + ], + [ + -20.78647238925867, + 65.82139457717805 + ], + [ + -23.187894843472783, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-29T19:25:41.476Z", + "updated": "2023-10-29T19:25:41.476Z", + "datetime": "2023-10-29T13:13:43.948000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231029T152016_A034713_T27WVN_N05.09", + "eo:cloud_cover": 2.240673, + "s2:datatake_id": "GS2B_20231029T131259_034713_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231029T131259_N0509_R081_T27WVN_20231029T152016.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231029T152016_S20231029T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.533809803503, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-29T15:20:16.000000Z", + "view:sun_elevation": 11.198093937580694, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/10/S2B_27WVN_20231029_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 31.785205, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d1a917029b4beb219725c5a7e779a884", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 7.89517, + "s2:vegetation_percentage": 3.180673, + "s2:thin_cirrus_percentage": 2.224134, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 7e-6, + "s2:unclassified_percentage": 0.075501, + "s2:dark_features_percentage": 8.058465, + "s2:not_vegetated_percentage": 46.764314, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0068, + "s2:high_proba_clouds_percentage": 0.002452, + "s2:reflectance_conversion_factor": 1.0119671708041, + "s2:medium_proba_clouds_percentage": 0.014088, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20231029_0_L2A", + "bbox": [ + -18.88684116838567, + 64.90171238987105, + -18.878484118010135, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.88684116838567, + 64.90171238987105 + ], + [ + -18.878484118010135, + 64.90902698861362 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-29T19:15:04.695Z", + "updated": "2023-10-29T19:15:04.695Z", + "datetime": "2023-10-29T13:13:40.152000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231029T152016_A034713_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20231029T131259_034713_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231029T131259_N0509_R081_T27WXM_20231029T152016.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231029T152016_S20231029T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 184.708409060774, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-29T15:20:16.000000Z", + "view:sun_elevation": 12.044661229892, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2B_27WXM_20231029_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/23802cf9698ca9ea9ee3c96f0e4e7f38", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 10.394737, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 89.605266, + "s2:nodata_pixel_percentage": 99.997479, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.0119671708041, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WWN_20231029_0_L2A", + "bbox": [ + -21.00041572310818, + 64.82365919009513, + -18.599305506964242, + 65.82154341411521 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.00041572310818, + 65.82154341411521 + ], + [ + -21.00040047797231, + 64.83728933011119 + ], + [ + -18.973861188487827, + 64.82365919009513 + ], + [ + -18.662918354855538, + 65.0995499229016 + ], + [ + -18.599305506964242, + 65.80271861196661 + ], + [ + -21.00041572310818, + 65.82154341411521 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-29T19:28:18.505Z", + "updated": "2023-10-29T19:28:18.505Z", + "datetime": "2023-10-29T13:13:37.816000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WWN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231029T152016_A034713_T27WWN_N05.09", + "eo:cloud_cover": 1.057373, + "s2:datatake_id": "GS2B_20231029T131259_034713_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231029T131259_N0509_R081_T27WWN_20231029T152016.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231029T152016_S20231029T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.640403625049, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-29T15:20:16.000000Z", + "view:sun_elevation": 11.175059081789598, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WN/2023/10/S2B_27WWN_20231029_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 13.051151, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/24296fa6fbd775cc1b8164961c110c48", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 18.845065, + "s2:vegetation_percentage": 0.878701, + "s2:thin_cirrus_percentage": 1.015344, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 1.741597, + "s2:unclassified_percentage": 0.045369, + "s2:dark_features_percentage": 9.864023, + "s2:not_vegetated_percentage": 56.258321, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0212, + "s2:high_proba_clouds_percentage": 0.000182, + "s2:reflectance_conversion_factor": 1.0119671708041, + "s2:medium_proba_clouds_percentage": 0.041847, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXN_20231029_0_L2A", + "bbox": [ + -18.886835636681642, + 64.90178269583829, + -17.869405936994546, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.81293549288732, + 65.80592141721391 + ], + [ + -18.886835636681642, + 64.90178269583829 + ], + [ + -17.869405936994546, + 65.78951846884605 + ], + [ + -18.81293549288732, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-29T19:17:45.629Z", + "updated": "2023-10-29T19:17:45.629Z", + "datetime": "2023-10-29T13:13:30.500000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231029T152016_A034713_T27WXN_N05.09", + "eo:cloud_cover": 0.488072, + "s2:datatake_id": "GS2B_20231029T131259_034713_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231029T131259_N0509_R081_T27WXN_20231029T152016.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231029T152016_S20231029T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 184.74366329705, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-29T15:20:16.000000Z", + "view:sun_elevation": 11.149969241405202, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/10/S2B_27WXN_20231029_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 3.608713, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/db8427a552c56a23cdf476fab4eceb10", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 46.941403, + "s2:vegetation_percentage": 0.557953, + "s2:thin_cirrus_percentage": 0.447938, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 81.730121, + "s2:unclassified_percentage": 0.030818, + "s2:dark_features_percentage": 26.589662, + "s2:not_vegetated_percentage": 21.783379, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.005, + "s2:high_proba_clouds_percentage": 0.000436, + "s2:reflectance_conversion_factor": 1.0119671708041, + "s2:medium_proba_clouds_percentage": 0.039698, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXP_20231026_0_L2A", + "bbox": [ + -18.82035063178234, + 65.66542962794706, + -16.253275154768794, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.733772814861197, + 66.7025538338594 + ], + [ + -18.82035063178234, + 65.71825806747697 + ], + [ + -16.434012525314987, + 65.66542962794706 + ], + [ + -16.253275154768794, + 66.64722308988246 + ], + [ + -18.733772814861197, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-27T06:47:26.155Z", + "updated": "2023-10-27T06:47:26.155Z", + "datetime": "2023-10-26T13:03:20.465000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231026T165959_A034670_T27WXP_N05.09", + "eo:cloud_cover": 1.780057, + "s2:datatake_id": "GS2B_20231026T130259_034670_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231026T130259_N0509_R038_T27WXP_20231026T165959.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231026T165959_S20231026T130258_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.275389684383, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-26T16:59:59.000000Z", + "view:sun_elevation": 11.329134999960402, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2B_27WXP_20231026_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 57.921624, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a3404e96c9a183524cb0c2669d75a8d1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 16.51246, + "s2:vegetation_percentage": 2.358619, + "s2:thin_cirrus_percentage": 0.275032, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.961304, + "s2:dark_features_percentage": 5.728846, + "s2:not_vegetated_percentage": 14.73709, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0033, + "s2:high_proba_clouds_percentage": 0.357308, + "s2:reflectance_conversion_factor": 1.01030651297451, + "s2:medium_proba_clouds_percentage": 1.147717, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20231024_0_L2A", + "bbox": [ + -18.88739365385378, + 64.89468843619017, + -18.870887508384108, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.88739365385378, + 64.89468843619017 + ], + [ + -18.870887508384108, + 64.90891858996378 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-24T19:46:08.732Z", + "updated": "2023-10-24T19:46:08.732Z", + "datetime": "2023-10-24T13:13:38.261000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231024T155958_A043550_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20231024T131301_043550_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231024T131301_N0509_R081_T27WXM_20231024T155958.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231024T155958_S20231024T131255_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 184.639114122667, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-24T15:59:58.000000Z", + "view:sun_elevation": 13.744630512114597, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231024_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a85a5ed2ef0fa0a402170b6245ccb29c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.99308, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.00919250582561, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28VCR_20231023_0_L2A", + "bbox": [ + -19.08663529333112, + 62.98661631438856, + -16.78280972664897, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.08663529333112, + 63.96959674829309 + ], + [ + -18.94847821702855, + 62.98661631438856 + ], + [ + -16.78280972664897, + 63.03052412067892 + ], + [ + -16.845356096733006, + 64.01542581444056 + ], + [ + -19.08663529333112, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-23T18:55:06.079Z", + "updated": "2023-10-23T18:55:06.079Z", + "datetime": "2023-10-23T12:54:05.703000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231023T150416_A034627_T28VCR_N05.09", + "eo:cloud_cover": 1.192856, + "s2:datatake_id": "GS2B_20231023T125259_034627_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231023T125259_N0509_R138_T28VCR_20231023T150416.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231023T150416_S20231023T125301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.51745951042, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-10-23T15:04:16.000000Z", + "view:sun_elevation": 15.069222594935894, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231023_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 67.814708, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8887d3ec02a0f95fb1c0d614604ce271", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 4.522603, + "s2:vegetation_percentage": 4.773246, + "s2:thin_cirrus_percentage": 1.172697, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.005036, + "s2:dark_features_percentage": 0.838866, + "s2:not_vegetated_percentage": 20.852688, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0012, + "s2:high_proba_clouds_percentage": 0.000763, + "s2:reflectance_conversion_factor": 1.00862223295922, + "s2:medium_proba_clouds_percentage": 0.019396, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VXL_20231023_0_L2A", + "bbox": [ + -19.023625787506408, + 62.9810889090727, + -16.713777643413486, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.95429938185454, + 64.01274197384028 + ], + [ + -19.023625787506408, + 63.02795295593004 + ], + [ + -16.858635396179572, + 62.9810889090727 + ], + [ + -16.713777643413486, + 63.96382791885894 + ], + [ + -18.95429938185454, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-23T19:19:37.200Z", + "updated": "2023-10-23T19:19:37.200Z", + "datetime": "2023-10-23T12:54:05.667000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231023T150416_A034627_T27VXL_N05.09", + "eo:cloud_cover": 1.264538, + "s2:datatake_id": "GS2B_20231023T125259_034627_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231023T125259_N0509_R138_T27VXL_20231023T150416.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231023T150416_S20231023T125301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.545913527892, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-10-23T15:04:16.000000Z", + "view:sun_elevation": 15.0735479031392, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231023_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 69.171256, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d4c4cf5bafe2a4e745de86361549d1d9", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 3.406452, + "s2:vegetation_percentage": 4.751484, + "s2:thin_cirrus_percentage": 1.25697, + "s2:cloud_shadow_percentage": 0.000209, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.005687, + "s2:dark_features_percentage": 0.79804, + "s2:not_vegetated_percentage": 20.602334, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0011, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.00862223295922, + "s2:medium_proba_clouds_percentage": 0.007568, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WVM_20231023_0_L2A", + "bbox": [ + -21.343391512317876, + 63.93845161796731, + -20.799193787479922, + 64.63122967655694 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -20.802954750448595, + 63.93872437115489 + ], + [ + -20.799193787479922, + 64.63122967655694 + ], + [ + -21.343391512317876, + 63.93845161796731 + ], + [ + -20.802954750448595, + 63.93872437115489 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-23T18:57:19.443Z", + "updated": "2023-10-23T18:57:19.443Z", + "datetime": "2023-10-23T12:54:03.564000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231023T150416_A034627_T27WVM_N05.09", + "eo:cloud_cover": 0.215896, + "s2:datatake_id": "GS2B_20231023T125259_034627_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231023T125259_N0509_R138_T27WVM_20231023T150416.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231023T150416_S20231023T125301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.430924707313, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-23T15:04:16.000000Z", + "view:sun_elevation": 14.0686604214915, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/10/S2B_27WVM_20231023_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 8.356486, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/18575640dd223b370b06fd89ef07b866", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.48746, + "s2:vegetation_percentage": 34.01745, + "s2:thin_cirrus_percentage": 0.147079, + "s2:cloud_shadow_percentage": 0.026997, + "s2:nodata_pixel_percentage": 91.360229, + "s2:unclassified_percentage": 0.480139, + "s2:dark_features_percentage": 4.971512, + "s2:not_vegetated_percentage": 50.444061, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.002842, + "s2:reflectance_conversion_factor": 1.00862223295922, + "s2:medium_proba_clouds_percentage": 0.065974, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WWM_20231023_0_L2A", + "bbox": [ + -21.000393811559288, + 63.921569687083434, + -18.679773506360497, + 64.9234888977337 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -20.562996708704436, + 64.9234888977337 + ], + [ + -20.747064638785464, + 64.6983842442727 + ], + [ + -20.83154431722071, + 64.58878724926514 + ], + [ + -21.000393811559288, + 64.38022981866618 + ], + [ + -21.000387604657654, + 63.93885826745158 + ], + [ + -18.761511194452034, + 63.921569687083434 + ], + [ + -18.679773506360497, + 64.90606378004084 + ], + [ + -20.562996708704436, + 64.9234888977337 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-23T18:58:31.228Z", + "updated": "2023-10-23T18:58:31.228Z", + "datetime": "2023-10-23T12:53:56.368000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WWM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231023T150416_A034627_T27WWM_N05.09", + "eo:cloud_cover": 4.298356, + "s2:datatake_id": "GS2B_20231023T125259_034627_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231023T125259_N0509_R138_T27WWM_20231023T150416.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231023T150416_S20231023T125301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.511146795628, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-23T15:04:16.000000Z", + "view:sun_elevation": 14.124841677044202, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WM/2023/10/S2B_27WWM_20231023_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 10.263721, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/43462ba0bcb5e03c0f1d522617da1afe", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 18.554069, + "s2:vegetation_percentage": 7.198895, + "s2:thin_cirrus_percentage": 0.307175, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 5.160729, + "s2:unclassified_percentage": 0.719753, + "s2:dark_features_percentage": 3.764671, + "s2:not_vegetated_percentage": 55.200535, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0192, + "s2:high_proba_clouds_percentage": 1.009909, + "s2:reflectance_conversion_factor": 1.00862223295922, + "s2:medium_proba_clouds_percentage": 2.981271, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXP_20231021_0_L2A", + "bbox": [ + -18.82035063178234, + 65.66542962794706, + -16.253275154768794, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.733772814861197, + 66.7025538338594 + ], + [ + -18.82035063178234, + 65.71825806747697 + ], + [ + -16.434012525314987, + 65.66542962794706 + ], + [ + -16.253275154768794, + 66.64722308988246 + ], + [ + -18.733772814861197, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-21T18:07:52.541Z", + "updated": "2023-10-21T18:07:52.541Z", + "datetime": "2023-10-21T13:03:19.463000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231021T154849_A043507_T27WXP_N05.09", + "eo:cloud_cover": 2.574281, + "s2:datatake_id": "GS2A_20231021T130301_043507_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231021T130301_N0509_R038_T27WXP_20231021T154849.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231021T154849_S20231021T130257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.130765060778, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-21T15:48:49.000000Z", + "view:sun_elevation": 13.074899068010396, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XP/2023/10/S2A_27WXP_20231021_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 57.421404, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/dd47d9b9cdd3e7897627210d81adcb1e", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 15.332755, + "s2:vegetation_percentage": 4.428735, + "s2:thin_cirrus_percentage": 0.940375, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.10568, + "s2:dark_features_percentage": 4.87584, + "s2:not_vegetated_percentage": 15.26131, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0094, + "s2:high_proba_clouds_percentage": 0.884357, + "s2:reflectance_conversion_factor": 1.00749514717841, + "s2:medium_proba_clouds_percentage": 0.74955, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXQ_20231021_0_L2A", + "bbox": [ + -18.741837109485385, + 66.55926906893346, + -16.159184133091024, + 67.54806963719577 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.159184133091024, + 67.12657811476183 + ], + [ + -16.29672362852762, + 67.15067751436754 + ], + [ + -16.721271671759673, + 67.22945562374598 + ], + [ + -16.72235084187361, + 67.23072966448385 + ], + [ + -17.208263068822923, + 67.3173492549945 + ], + [ + -17.239865945335563, + 67.32256632184026 + ], + [ + -17.24889874684126, + 67.32241526528098 + ], + [ + -18.213249238719797, + 67.48285991738295 + ], + [ + -18.29797485801282, + 67.49416268139764 + ], + [ + -18.65313164010091, + 67.54806963719577 + ], + [ + -18.741837109485385, + 66.61436755664185 + ], + [ + -16.270106902659847, + 66.55926906893346 + ], + [ + -16.159184133091024, + 67.12657811476183 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-21T18:11:32.752Z", + "updated": "2023-10-21T18:11:32.752Z", + "datetime": "2023-10-21T13:03:07.488000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXQ", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231021T154849_A043507_T27WXQ_N05.09", + "eo:cloud_cover": 1.499575, + "s2:datatake_id": "GS2A_20231021T130301_043507_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231021T130301_N0509_R038_T27WXQ_20231021T154849.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231021T154849_S20231021T130257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XQ", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.191310281308, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-21T15:48:49.000000Z", + "view:sun_elevation": 12.1795362021235, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XQ/2023/10/S2A_27WXQ_20231021_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.500371, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/40f50a477422d0bf25795e27075e920a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 4e-6, + "s2:thin_cirrus_percentage": 0.692729, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 23.160325, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.000052, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.219192, + "s2:reflectance_conversion_factor": 1.00749514717841, + "s2:medium_proba_clouds_percentage": 0.587654, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28VCR_20231013_0_L2A", + "bbox": [ + -19.08663529333112, + 62.98661631438856, + -16.78280972664897, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.08663529333112, + 63.96959674829309 + ], + [ + -18.94847821702855, + 62.98661631438856 + ], + [ + -16.78280972664897, + 63.03052412067892 + ], + [ + -16.845356096733006, + 64.01542581444056 + ], + [ + -19.08663529333112, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-13T19:43:42.320Z", + "updated": "2023-10-13T19:43:42.320Z", + "datetime": "2023-10-13T12:54:06.570000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231013T151335_A034484_T28VCR_N05.09", + "eo:cloud_cover": 2.553635, + "s2:datatake_id": "GS2B_20231013T125259_034484_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231013T125259_N0509_R138_T28VCR_20231013T151335.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231013T151335_S20231013T125302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.002859706225, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-10-13T15:13:35.000000Z", + "view:sun_elevation": 18.695804152253103, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/10/S2B_28VCR_20231013_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 61.174393, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/bd1b7f3ec8984f018a9682cc08188eae", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 15.121585, + "s2:vegetation_percentage": 1.210328, + "s2:thin_cirrus_percentage": 1.126712, + "s2:cloud_shadow_percentage": 0.041987, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.010209, + "s2:dark_features_percentage": 0.381283, + "s2:not_vegetated_percentage": 19.506578, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0012, + "s2:high_proba_clouds_percentage": 0.60233, + "s2:reflectance_conversion_factor": 1.00291090398829, + "s2:medium_proba_clouds_percentage": 0.824592, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27VXL_20231013_0_L2A", + "bbox": [ + -19.023625787506408, + 62.9810889090727, + -16.713777643413486, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.95429938185454, + 64.01274197384028 + ], + [ + -19.023625787506408, + 63.02795295593004 + ], + [ + -16.858635396179572, + 62.9810889090727 + ], + [ + -16.713777643413486, + 63.96382791885894 + ], + [ + -18.95429938185454, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-13T19:41:26.197Z", + "updated": "2023-10-13T19:41:26.197Z", + "datetime": "2023-10-13T12:54:06.533000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231013T151335_A034484_T27VXL_N05.09", + "eo:cloud_cover": 2.844354, + "s2:datatake_id": "GS2B_20231013T125259_034484_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231013T125259_N0509_R138_T27VXL_20231013T151335.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231013T151335_S20231013T125302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.032163169387, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-10-13T15:13:35.000000Z", + "view:sun_elevation": 18.700241253664103, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/10/S2B_27VXL_20231013_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 61.928928, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/dd424919a2ff43d7e39ddcbcee3ef800", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 14.507155, + "s2:vegetation_percentage": 1.202435, + "s2:thin_cirrus_percentage": 1.177952, + "s2:cloud_shadow_percentage": 0.042339, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.010531, + "s2:dark_features_percentage": 0.363539, + "s2:not_vegetated_percentage": 19.100723, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0011, + "s2:high_proba_clouds_percentage": 0.965717, + "s2:reflectance_conversion_factor": 1.00291090398829, + "s2:medium_proba_clouds_percentage": 0.700684, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WNS_20231010_0_L2A", + "bbox": [ + -27.000401773127415, + 64.32500861242839, + -24.679773506360508, + 64.92412942351285 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -27.000401773127415, + 64.92412942351285 + ], + [ + -27.000399646077632, + 64.78118055515012 + ], + [ + -26.915105048506874, + 64.76702877250283 + ], + [ + -25.98189969963725, + 64.59142791661357 + ], + [ + -25.0627098925132, + 64.40178551161522 + ], + [ + -24.728804663873547, + 64.32500861242839 + ], + [ + -24.679773506360508, + 64.90606378004084 + ], + [ + -27.000401773127415, + 64.92412942351285 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-10T19:15:28.514Z", + "updated": "2023-10-10T19:15:28.514Z", + "datetime": "2023-10-10T13:33:54.722000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WNS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231010T164055_A043350_T26WNS_N05.09", + "eo:cloud_cover": 1.126146, + "s2:datatake_id": "GS2A_20231010T133051_043350_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231010T133051_N0509_R024_T26WNS_20231010T164055.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231010T164055_S20231010T133050_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.931767217409, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-10T16:40:55.000000Z", + "view:sun_elevation": 18.892414403797602, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NS/2023/10/S2A_26WNS_20231010_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.873734, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/39f78797ba86e124151bc2c9ff9d27ac", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.0001, + "s2:thin_cirrus_percentage": 0.789991, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 63.565087, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.000018, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0261, + "s2:high_proba_clouds_percentage": 0.124382, + "s2:reflectance_conversion_factor": 1.00119764197767, + "s2:medium_proba_clouds_percentage": 0.211774, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20231008_0_L2A", + "bbox": [ + -15.000388828639831, + 63.79624273648946, + -14.764475863185202, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -15.000385645624332, + 63.79624273648946 + ], + [ + -14.764475863185202, + 64.02695407025986 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-08T19:39:09.472Z", + "updated": "2023-10-08T19:39:09.472Z", + "datetime": "2023-10-08T12:53:47.401000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231008T171758_A043321_T28VER_N05.09", + "eo:cloud_cover": 0.990257, + "s2:datatake_id": "GS2A_20231008T125301_043321_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231008T125301_N0509_R138_T28VER_20231008T171758.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231008T171758_S20231008T125300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.850822393337, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-10-08T17:17:58.000000Z", + "view:sun_elevation": 20.5331749515192, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/10/S2A_28VER_20231008_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.00974, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5fb60d9be6d557c6ffc6095b94aefc7a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.990257, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.734856, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.00003067866686, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28WES_20231007_0_L2A", + "bbox": [ + -15.000401773127397, + 63.921569687083434, + -12.679773506360489, + 64.92412942351285 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000401773127397, + 64.92412942351285 + ], + [ + -15.000387604657645, + 63.93885826745158 + ], + [ + -12.761511194452027, + 63.921569687083434 + ], + [ + -12.679773506360489, + 64.90606378004084 + ], + [ + -15.000401773127397, + 64.92412942351285 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-07T19:34:36.420Z", + "updated": "2023-10-07T19:34:36.420Z", + "datetime": "2023-10-07T12:33:44.747000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WES", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231007T162514_A034398_T28WES_N05.09", + "eo:cloud_cover": 3.881029, + "s2:datatake_id": "GS2B_20231007T123309_034398_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231007T123309_N0509_R052_T28WES_20231007T162514.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231007T162514_S20231007T123306_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ES", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.467842141405, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-07T16:25:14.000000Z", + "view:sun_elevation": 20.0305316174575, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/ES/2023/10/S2B_28WES_20231007_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 80.010283, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/59d52f273b6546dc393b81c179f3d906", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.924486, + "s2:vegetation_percentage": 3.072853, + "s2:thin_cirrus_percentage": 2.865302, + "s2:cloud_shadow_percentage": 0.819861, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.157405, + "s2:dark_features_percentage": 2.316147, + "s2:not_vegetated_percentage": 7.817934, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0221, + "s2:high_proba_clouds_percentage": 0.41111, + "s2:reflectance_conversion_factor": 0.999447480239397, + "s2:medium_proba_clouds_percentage": 0.604616, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28WDT_20231007_0_L2A", + "bbox": [ + -15.591247250929971, + 64.83521652930435, + -14.790203794743004, + 65.79183010488934 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -14.796417215705416, + 64.83625266477104 + ], + [ + -14.790203794743004, + 65.79183010488934 + ], + [ + -15.094946273647334, + 65.43255061988778 + ], + [ + -15.32276606818522, + 65.16532986997689 + ], + [ + -15.591247250929971, + 64.83521652930435 + ], + [ + -14.796417215705416, + 64.83625266477104 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-07T19:26:24.468Z", + "updated": "2023-10-07T19:26:24.468Z", + "datetime": "2023-10-07T12:33:36.727000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20231007T162514_A034398_T28WDT_N05.09", + "eo:cloud_cover": 2.597111, + "s2:datatake_id": "GS2B_20231007T123309_034398_N05.09", + "s2:product_uri": "S2B_MSIL2A_20231007T123309_N0509_R052_T28WDT_20231007T162514.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20231007T162514_S20231007T123306_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.218225539735, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-07T16:25:14.000000Z", + "view:sun_elevation": 19.075510417685706, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/10/S2B_28WDT_20231007_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 2.699091, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/240a9d0ed8fe4b1448dc1d1f4b9f4310", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 22.890744, + "s2:vegetation_percentage": 6.134175, + "s2:thin_cirrus_percentage": 2.054662, + "s2:cloud_shadow_percentage": 0.033416, + "s2:nodata_pixel_percentage": 83.150518, + "s2:unclassified_percentage": 0.364718, + "s2:dark_features_percentage": 2.878319, + "s2:not_vegetated_percentage": 62.402427, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.019317, + "s2:reflectance_conversion_factor": 0.999447480239397, + "s2:medium_proba_clouds_percentage": 0.523132, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20231004_0_L2A", + "bbox": [ + -18.88739365385378, + 64.89468843619017, + -18.870887508384108, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.88739365385378, + 64.89468843619017 + ], + [ + -18.870887508384108, + 64.90891858996378 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-10-04T19:55:56.259Z", + "updated": "2023-10-04T19:55:56.259Z", + "datetime": "2023-10-04T13:13:39.652000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20231004T174052_A043264_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20231004T131301_043264_N05.09", + "s2:product_uri": "S2A_MSIL2A_20231004T131301_N0509_R081_T27WXM_20231004T174052.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20231004T174052_S20231004T131257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 183.713099606132, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-10-04T17:40:52.000000Z", + "view:sun_elevation": 21.1770031349552, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/10/S2A_27WXM_20231004_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ad01fe44750fa76bc415e2640b5777db", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.992955, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.997742179421901, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26VPR_20230921_0_L2A", + "bbox": [ + -24.171684138321442, + 63.36441724271571, + -22.713777643413493, + 63.99274489102884 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.839379285156383, + 63.99274489102884 + ], + [ + -24.171684138321442, + 63.54997659473291 + ], + [ + -23.317339814630184, + 63.43714199521313 + ], + [ + -23.178761492372345, + 63.42020608901253 + ], + [ + -22.80346229647446, + 63.36441724271571 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -23.839379285156383, + 63.99274489102884 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-21T22:50:05.770Z", + "updated": "2023-09-21T22:50:05.770Z", + "datetime": "2023-09-21T13:04:14.413000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230921T191059_A043078_T26VPR_N05.09", + "eo:cloud_cover": 0.382577, + "s2:datatake_id": "GS2A_20230921T130301_043078_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230921T130301_N0509_R038_T26VPR_20230921T191059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230921T191059_S20230921T130259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.15720264261, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-21T19:10:59.000000Z", + "view:sun_elevation": 27.010084479129297, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230921_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.545866, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/85720b2a508587e316dacbb51993f943", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000226, + "s2:vegetation_percentage": 0.007768, + "s2:thin_cirrus_percentage": 0.380142, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 69.203621, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.063563, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0175, + "s2:high_proba_clouds_percentage": 0.000377, + "s2:reflectance_conversion_factor": 0.990457170256363, + "s2:medium_proba_clouds_percentage": 0.002058, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27VUL_20230921_0_L2A", + "bbox": [ + -24.170339478510677, + 63.36411466152973, + -22.80345366931261, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.834559709421008, + 63.999481741280555 + ], + [ + -24.170339478510677, + 63.54982952638141 + ], + [ + -23.782025520799635, + 63.50023786728939 + ], + [ + -23.384142159231, + 63.44617965795509 + ], + [ + -23.180205009633355, + 63.4201588407507 + ], + [ + -22.80345366931261, + 63.36411466152973 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -23.834559709421008, + 63.999481741280555 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-21T22:43:24.528Z", + "updated": "2023-09-21T22:43:24.528Z", + "datetime": "2023-09-21T13:04:14.304000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230921T191059_A043078_T27VUL_N05.09", + "eo:cloud_cover": 0.387297, + "s2:datatake_id": "GS2A_20230921T130301_043078_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230921T130301_N0509_R038_T27VUL_20230921T191059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230921T191059_S20230921T130259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.125979835354, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-21T19:10:59.000000Z", + "view:sun_elevation": 27.0043949760665, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230921_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.612701, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/23e12b06a1e06d7dc98bedca999ed668", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.384808, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 69.738269, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0184, + "s2:high_proba_clouds_percentage": 0.00034, + "s2:reflectance_conversion_factor": 0.990457170256363, + "s2:medium_proba_clouds_percentage": 0.002149, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VVL_20230921_0_L2A", + "bbox": [ + -23.046477379055293, + 63.04252130688109, + -20.800286063143044, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.046477379055293, + 64.01273102956839 + ], + [ + -23.002212376502445, + 63.39305876100009 + ], + [ + -22.258484856404785, + 63.28259386899819 + ], + [ + -21.831457349352164, + 63.21517446009258 + ], + [ + -20.972314886913786, + 63.06734710996805 + ], + [ + -20.86289057505551, + 63.04481028146549 + ], + [ + -20.80705358651042, + 63.04252130688109 + ], + [ + -20.800286063143044, + 64.02700769020842 + ], + [ + -23.046477379055293, + 64.01273102956839 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-21T22:48:24.869Z", + "updated": "2023-09-21T22:48:24.869Z", + "datetime": "2023-09-21T13:04:12.139000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VVL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230921T191059_A043078_T27VVL_N05.09", + "eo:cloud_cover": 0.73953, + "s2:datatake_id": "GS2A_20230921T130301_043078_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230921T130301_N0509_R038_T27VVL_20230921T191059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230921T191059_S20230921T130259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.356974092476, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-21T19:10:59.000000Z", + "view:sun_elevation": 27.0667411120333, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230921_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 80.281061, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/48269b37a501415bbd28e6c686552c20", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.001648, + "s2:vegetation_percentage": 10.455456, + "s2:thin_cirrus_percentage": 0.739384, + "s2:cloud_shadow_percentage": 0.004058, + "s2:nodata_pixel_percentage": 18.482301, + "s2:unclassified_percentage": 0.00188, + "s2:dark_features_percentage": 0.083644, + "s2:not_vegetated_percentage": 8.432718, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000016, + "s2:reflectance_conversion_factor": 0.990457170256363, + "s2:medium_proba_clouds_percentage": 0.00013, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPS_20230921_0_L2A", + "bbox": [ + -23.905450363077826, + 63.875786719781686, + -22.571643586550366, + 64.8741193601908 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.14143154385645, + 64.8741193601908 + ], + [ + -23.905450363077826, + 63.905803175676375 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -23.14143154385645, + 64.8741193601908 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-21T22:47:28.442Z", + "updated": "2023-09-21T22:47:28.442Z", + "datetime": "2023-09-21T13:04:04.164000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230921T191059_A043078_T26WPS_N05.09", + "eo:cloud_cover": 0.060618, + "s2:datatake_id": "GS2A_20230921T130301_043078_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230921T130301_N0509_R038_T26WPS_20230921T191059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230921T191059_S20230921T130259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.255303793879, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-21T19:10:59.000000Z", + "view:sun_elevation": 26.122853936377297, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230921_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 95.074493, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ab6bf46e39104a764da13ee76aac41ca", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000845, + "s2:vegetation_percentage": 3.842645, + "s2:thin_cirrus_percentage": 0.04223, + "s2:cloud_shadow_percentage": 0.089233, + "s2:nodata_pixel_percentage": 61.133832, + "s2:unclassified_percentage": 0.005557, + "s2:dark_features_percentage": 0.001682, + "s2:not_vegetated_percentage": 0.924929, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0291, + "s2:high_proba_clouds_percentage": 0.002971, + "s2:reflectance_conversion_factor": 0.990457170256363, + "s2:medium_proba_clouds_percentage": 0.015417, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VCR_20230921_0_L2A", + "bbox": [ + -19.08663529333112, + 62.987511731828626, + -17.322270107418415, + 64.00858209904182 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.08663529333112, + 63.96959674829309 + ], + [ + -18.948599281465345, + 62.987511731828626 + ], + [ + -18.31873431149273, + 63.00425424478118 + ], + [ + -17.322270107418415, + 64.00858209904182 + ], + [ + -19.08663529333112, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-21T22:47:55.891Z", + "updated": "2023-09-21T22:47:55.891Z", + "datetime": "2023-09-21T13:04:02.771000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230921T191059_A043078_T28VCR_N05.09", + "eo:cloud_cover": 1.922898, + "s2:datatake_id": "GS2A_20230921T130301_043078_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230921T130301_N0509_R038_T28VCR_20230921T191059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230921T191059_S20230921T130259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.796026803208, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-21T19:10:59.000000Z", + "view:sun_elevation": 27.168031935722098, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/9/S2A_28VCR_20230921_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 39.247173, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2f808728736077b38699346a48c5bbf2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 2.226514, + "s2:vegetation_percentage": 12.730624, + "s2:thin_cirrus_percentage": 1.151414, + "s2:cloud_shadow_percentage": 2.206157, + "s2:nodata_pixel_percentage": 45.972094, + "s2:unclassified_percentage": 0.262557, + "s2:dark_features_percentage": 0.241991, + "s2:not_vegetated_percentage": 41.162086, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0195, + "s2:high_proba_clouds_percentage": 0.315075, + "s2:reflectance_conversion_factor": 0.990457170256363, + "s2:medium_proba_clouds_percentage": 0.456409, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VXL_20230921_0_L2A", + "bbox": [ + -19.023565045903645, + 63.017539779879094, + -17.350474733153032, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.95429938185454, + 64.01274197384028 + ], + [ + -19.023565045903645, + 63.02884996273519 + ], + [ + -18.305919708917592, + 63.017539779879094 + ], + [ + -17.350474733153032, + 63.98126437970607 + ], + [ + -18.95429938185454, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-21T22:50:30.382Z", + "updated": "2023-09-21T22:50:30.382Z", + "datetime": "2023-09-21T13:04:02.763000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230921T191059_A043078_T27VXL_N05.09", + "eo:cloud_cover": 1.748545, + "s2:datatake_id": "GS2A_20230921T130301_043078_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230921T130301_N0509_R038_T27VXL_20230921T191059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230921T191059_S20230921T130259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.827496463435, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-21T19:10:59.000000Z", + "view:sun_elevation": 27.172296234489203, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/9/S2A_27VXL_20230921_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 39.437217, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/43b9f55ac867b2807f3905cbc9ad77ec", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.435413, + "s2:vegetation_percentage": 12.98741, + "s2:thin_cirrus_percentage": 1.077017, + "s2:cloud_shadow_percentage": 2.293572, + "s2:nodata_pixel_percentage": 47.575891, + "s2:unclassified_percentage": 0.255711, + "s2:dark_features_percentage": 0.223111, + "s2:not_vegetated_percentage": 41.619021, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0196, + "s2:high_proba_clouds_percentage": 0.255888, + "s2:reflectance_conversion_factor": 0.990457170256363, + "s2:medium_proba_clouds_percentage": 0.41564, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26VNR_20230914_0_L2A", + "bbox": [ + -26.441624197768952, + 63.65259291392411, + -24.754449695195, + 64.02561885221935 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -26.333989209689456, + 64.02561885221935 + ], + [ + -26.441624197768952, + 63.88287115392941 + ], + [ + -25.433641758236046, + 63.751372619568116 + ], + [ + -25.015094911629085, + 63.68947469894928 + ], + [ + -24.78273710289551, + 63.65259291392411 + ], + [ + -24.754449695195, + 64.00978893785071 + ], + [ + -26.333989209689456, + 64.02561885221935 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-14T21:37:37.343Z", + "updated": "2023-09-14T21:37:37.343Z", + "datetime": "2023-09-14T13:14:17.574000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VNR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230914T173502_A042978_T26VNR_N05.09", + "eo:cloud_cover": 3.464052, + "s2:datatake_id": "GS2A_20230914T131301_042978_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230914T131301_N0509_R081_T26VNR_20230914T173502.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230914T173502_S20230914T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.868779637363, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-14T17:35:02.000000Z", + "view:sun_elevation": 29.675086047214897, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230914_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 96.535945, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1ba84917b145e441c7d26dea756dabb6", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 3.464052, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 81.339067, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0104, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.98674533007783, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WNT_20230914_0_L2A", + "bbox": [ + -25.699612631585357, + 64.81839788328173, + -24.599305506964253, + 65.80688526901143 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.881446976057298, + 65.80688526901143 + ], + [ + -25.699612631585357, + 64.83070496696745 + ], + [ + -24.68732176995665, + 64.81839788328173 + ], + [ + -24.599305506964253, + 65.80271861196661 + ], + [ + -24.881446976057298, + 65.80688526901143 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-14T21:41:23.818Z", + "updated": "2023-09-14T21:41:23.818Z", + "datetime": "2023-09-14T13:13:55.711000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WNT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230914T173502_A042978_T26WNT_N05.09", + "eo:cloud_cover": 2.914503, + "s2:datatake_id": "GS2A_20230914T131301_042978_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230914T131301_N0509_R081_T26WNT_20230914T173502.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230914T173502_S20230914T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.938587980837, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-14T17:35:02.000000Z", + "view:sun_elevation": 27.892348616709597, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NT/2023/9/S2A_26WNT_20230914_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.0855, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/963b2d073d03b2bb4f326d426cee7568", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 2.914467, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 72.165585, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0411, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.98674533007783, + "s2:medium_proba_clouds_percentage": 0.000036, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPT_20230914_0_L2A", + "bbox": [ + -24.89313457574395, + 64.77075092227982, + -22.41853010224337, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.81293549288733, + 65.80592141721391 + ], + [ + -24.89313457574395, + 64.82145944293943 + ], + [ + -22.58600870874394, + 64.77075092227982 + ], + [ + -22.41853010224337, + 65.75287787308291 + ], + [ + -24.81293549288733, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-14T21:43:05.949Z", + "updated": "2023-09-14T21:43:05.949Z", + "datetime": "2023-09-14T13:13:51.030000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230914T173502_A042978_T26WPT_N05.09", + "eo:cloud_cover": 4.35688, + "s2:datatake_id": "GS2A_20230914T131301_042978_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230914T131301_N0509_R081_T26WPT_20230914T173502.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230914T173502_S20230914T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.33922604706, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-14T17:35:02.000000Z", + "view:sun_elevation": 28.015005367029097, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230914_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 67.045867, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/dfd6acd4a37f413d914da1ec88ccc888", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.11856, + "s2:vegetation_percentage": 13.504292, + "s2:thin_cirrus_percentage": 4.336449, + "s2:cloud_shadow_percentage": 0.06, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.009353, + "s2:dark_features_percentage": 1.088653, + "s2:not_vegetated_percentage": 13.816397, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0021, + "s2:high_proba_clouds_percentage": 0.006719, + "s2:reflectance_conversion_factor": 0.98674533007783, + "s2:medium_proba_clouds_percentage": 0.013713, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WVN_20230914_0_L2A", + "bbox": [ + -23.187894843472783, + 64.82144809642227, + -20.78647238925867, + 65.82139457717805 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.187894843472783, + 65.80590954715973 + ], + [ + -23.10766536839332, + 64.82144809642227 + ], + [ + -20.794309519428296, + 64.83624976412734 + ], + [ + -20.78647238925867, + 65.82139457717805 + ], + [ + -23.187894843472783, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-14T21:47:15.393Z", + "updated": "2023-09-14T21:47:15.393Z", + "datetime": "2023-09-14T13:13:46.276000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230914T173502_A042978_T27WVN_N05.09", + "eo:cloud_cover": 4.021088, + "s2:datatake_id": "GS2A_20230914T131301_042978_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230914T131301_N0509_R081_T27WVN_20230914T173502.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230914T173502_S20230914T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.251171062713, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-14T17:35:02.000000Z", + "view:sun_elevation": 28.027155088603102, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/9/S2A_27WVN_20230914_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 30.64025, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/bc60625aa61aa231509ecfaebef8cfd1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.139177, + "s2:vegetation_percentage": 37.453908, + "s2:thin_cirrus_percentage": 0.25416, + "s2:cloud_shadow_percentage": 0.112033, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.221585, + "s2:dark_features_percentage": 0.962263, + "s2:not_vegetated_percentage": 26.449695, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 1.681308, + "s2:reflectance_conversion_factor": 0.98674533007783, + "s2:medium_proba_clouds_percentage": 2.08562, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WNU_20230914_0_L2A", + "bbox": [ + -24.95656966394107, + 65.71510240016951, + -24.568919524684844, + 66.16104994129765 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.60962047764682, + 65.71510240016951 + ], + [ + -24.568919524684844, + 66.16104994129765 + ], + [ + -24.95656966394107, + 65.72014277891431 + ], + [ + -24.60962047764682, + 65.71510240016951 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-14T21:39:40.243Z", + "updated": "2023-09-14T21:39:40.243Z", + "datetime": "2023-09-14T13:13:45.101000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230914T173502_A042978_T26WNU_N05.09", + "eo:cloud_cover": 0.7922, + "s2:datatake_id": "GS2A_20230914T131301_042978_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230914T131301_N0509_R081_T26WNU_20230914T173502.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230914T173502_S20230914T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.97483036113, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-14T17:35:02.000000Z", + "view:sun_elevation": 27.001074719460597, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/9/S2A_26WNU_20230914_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.207801, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/7d57311f90c798e047fe0f75e6d9c83e", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.791906, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.611798, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0627, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.98674533007783, + "s2:medium_proba_clouds_percentage": 0.000294, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WPU_20230914_0_L2A", + "bbox": [ + -24.818172859179867, + 65.66542962794706, + -22.2532751547688, + 66.69189596229995 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.085996032967905, + 66.69189596229995 + ], + [ + -24.801545737587062, + 65.89866315670146 + ], + [ + -24.818172859179867, + 65.71822694675735 + ], + [ + -22.434012525314998, + 65.66542962794706 + ], + [ + -22.2532751547688, + 66.64722308988246 + ], + [ + -24.085996032967905, + 66.69189596229995 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-14T21:48:15.387Z", + "updated": "2023-09-14T21:48:15.387Z", + "datetime": "2023-09-14T13:13:36.942000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230914T173502_A042978_T26WPU_N05.09", + "eo:cloud_cover": 4.786962, + "s2:datatake_id": "GS2A_20230914T131301_042978_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230914T131301_N0509_R081_T26WPU_20230914T173502.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230914T173502_S20230914T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.44113961484, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-14T17:35:02.000000Z", + "view:sun_elevation": 27.1240447809016, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PU/2023/9/S2A_26WPU_20230914_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 63.393199, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/9f69d9010ba1121ba8fb725ee12066ab", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.890235, + "s2:vegetation_percentage": 10.499243, + "s2:thin_cirrus_percentage": 1.573531, + "s2:cloud_shadow_percentage": 0.429272, + "s2:nodata_pixel_percentage": 10.651418, + "s2:unclassified_percentage": 0.055054, + "s2:dark_features_percentage": 3.003901, + "s2:not_vegetated_percentage": 16.942129, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0128, + "s2:high_proba_clouds_percentage": 0.694418, + "s2:reflectance_conversion_factor": 0.98674533007783, + "s2:medium_proba_clouds_percentage": 2.519013, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28WEU_20230913_0_L2A", + "bbox": [ + -15.000430785994116, + 65.71971263184588, + -12.539620320664364, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000430785994116, + 66.71885135769092 + ], + [ + -15.000414312255502, + 65.7338165451806 + ], + [ + -12.92469141424591, + 65.71971263184588 + ], + [ + -12.57982928622794, + 66.00985429530797 + ], + [ + -12.539620320664364, + 66.42608962469195 + ], + [ + -12.579978592023368, + 66.4358070931263 + ], + [ + -13.938576419772918, + 66.71527770652911 + ], + [ + -15.000430785994116, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-13T20:44:51.673Z", + "updated": "2023-09-13T20:44:51.673Z", + "datetime": "2023-09-13T12:53:14.902000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230913T133802_A034055_T28WEU_N05.09", + "eo:cloud_cover": 4.489853, + "s2:datatake_id": "GS2B_20230913T125309_034055_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230913T125309_N0509_R138_T28WEU_20230913T133802.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230913T133802_S20230913T125303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.606131107727, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-13T13:38:02.000000Z", + "view:sun_elevation": 27.543493586390397, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2B_28WEU_20230913_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 90.540653, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d611ca644ac7af53ecab7be98fef124d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000029, + "s2:vegetation_percentage": 3.441973, + "s2:thin_cirrus_percentage": 4.486309, + "s2:cloud_shadow_percentage": 0.001875, + "s2:nodata_pixel_percentage": 9.765936, + "s2:unclassified_percentage": 0.007828, + "s2:dark_features_percentage": 0.03967, + "s2:not_vegetated_percentage": 1.478124, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0191, + "s2:high_proba_clouds_percentage": 0.000375, + "s2:reflectance_conversion_factor": 0.986223441789206, + "s2:medium_proba_clouds_percentage": 0.00317, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDS_20230912_0_L2A", + "bbox": [ + -16.335020153995924, + 63.932710917175605, + -14.793637446475577, + 64.92398659290882 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.551327812677494, + 64.92310991223222 + ], + [ + -16.01184595003266, + 64.34156604320502 + ], + [ + -16.335020153995924, + 63.932710917175605 + ], + [ + -14.800914731674622, + 63.93872158431219 + ], + [ + -14.793637446475577, + 64.92398659290882 + ], + [ + -15.551327812677494, + 64.92310991223222 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-12T22:51:42.235Z", + "updated": "2023-09-12T22:51:42.235Z", + "datetime": "2023-09-12T12:33:53.514000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDS", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230912T170157_A042949_T28WDS_N05.09", + "eo:cloud_cover": 1.499627, + "s2:datatake_id": "GS2A_20230912T123311_042949_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230912T123311_N0509_R052_T28WDS_20230912T170157.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230912T170157_S20230912T123311_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.48626826265, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-12T17:01:57.000000Z", + "view:sun_elevation": 29.539767025185, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DS/2023/9/S2A_28WDS_20230912_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 38.286233, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/618d00654655cb8db9df8f183bca23b5", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 29.662272, + "s2:vegetation_percentage": 9.980978, + "s2:thin_cirrus_percentage": 1.000804, + "s2:cloud_shadow_percentage": 0.076021, + "s2:nodata_pixel_percentage": 49.4605, + "s2:unclassified_percentage": 0.027139, + "s2:dark_features_percentage": 1.728477, + "s2:not_vegetated_percentage": 18.739253, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0228, + "s2:high_proba_clouds_percentage": 0.010885, + "s2:reflectance_conversion_factor": 0.985706074282784, + "s2:medium_proba_clouds_percentage": 0.487939, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WES_20230912_0_L2A", + "bbox": [ + -15.000401773127397, + 63.921569687083434, + -12.679773506360489, + 64.92412942351285 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000401773127397, + 64.92412942351285 + ], + [ + -15.000387604657645, + 63.93885826745158 + ], + [ + -12.761511194452027, + 63.921569687083434 + ], + [ + -12.679773506360489, + 64.90606378004084 + ], + [ + -15.000401773127397, + 64.92412942351285 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-12T22:53:24.646Z", + "updated": "2023-09-12T22:53:24.646Z", + "datetime": "2023-09-12T12:33:48.949000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WES", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230912T170157_A042949_T28WES_N05.09", + "eo:cloud_cover": 0.073304, + "s2:datatake_id": "GS2A_20230912T123311_042949_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230912T123311_N0509_R052_T28WES_20230912T170157.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230912T170157_S20230912T123311_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ES", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.844307932216, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-12T17:01:57.000000Z", + "view:sun_elevation": 29.639265579629203, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/ES/2023/9/S2A_28WES_20230912_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 82.130343, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ad7dd11eb1ac3137b588c4840d939b2d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 4.046675, + "s2:vegetation_percentage": 6.798916, + "s2:thin_cirrus_percentage": 0.04704, + "s2:cloud_shadow_percentage": 0.005382, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.003251, + "s2:dark_features_percentage": 0.667592, + "s2:not_vegetated_percentage": 6.274535, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000036, + "s2:reflectance_conversion_factor": 0.985706074282784, + "s2:medium_proba_clouds_percentage": 0.026228, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WDT_20230912_0_L2A", + "bbox": [ + -15.622437975064335, + 64.83508922802505, + -14.786472389258659, + 65.82141152466137 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -14.79899635470166, + 65.82141152466137 + ], + [ + -15.142270275224023, + 65.41474917406285 + ], + [ + -15.362304609816558, + 65.15535279402965 + ], + [ + -15.622437975064335, + 64.83508922802505 + ], + [ + -14.794309519428289, + 64.83624976412734 + ], + [ + -14.786472389258659, + 65.82139457717805 + ], + [ + -14.79899635470166, + 65.82141152466137 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-12T22:47:01.758Z", + "updated": "2023-09-12T22:47:01.758Z", + "datetime": "2023-09-12T12:33:40.745000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230912T170157_A042949_T28WDT_N05.09", + "eo:cloud_cover": 0.280169, + "s2:datatake_id": "GS2A_20230912T123311_042949_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230912T123311_N0509_R052_T28WDT_20230912T170157.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230912T170157_S20230912T123311_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.44749413981, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-12T17:01:57.000000Z", + "view:sun_elevation": 28.645130627028898, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/9/S2A_28WDT_20230912_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 2.959228, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/411395db403ac1f37945ea8cf37410ab", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 36.508363, + "s2:vegetation_percentage": 24.277672, + "s2:thin_cirrus_percentage": 0.051382, + "s2:cloud_shadow_percentage": 0.00514, + "s2:nodata_pixel_percentage": 81.797248, + "s2:unclassified_percentage": 0.084136, + "s2:dark_features_percentage": 0.641485, + "s2:not_vegetated_percentage": 35.243803, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0484, + "s2:high_proba_clouds_percentage": 0.003117, + "s2:reflectance_conversion_factor": 0.985706074282784, + "s2:medium_proba_clouds_percentage": 0.22567, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WET_20230912_0_L2A", + "bbox": [ + -15.00041196334691, + 64.81839788328173, + -12.599305506964235, + 65.82141152212077 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -14.798994418749594, + 65.82141152212077 + ], + [ + -15.00041196334691, + 65.58628947572639 + ], + [ + -15.000400464638181, + 64.83639202908054 + ], + [ + -12.68732176995663, + 64.81839788328173 + ], + [ + -12.599305506964235, + 65.80271861196661 + ], + [ + -14.798994418749594, + 65.82141152212077 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-12T22:56:10.142Z", + "updated": "2023-09-12T22:56:10.142Z", + "datetime": "2023-09-12T12:33:34.836000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WET", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230912T170157_A042949_T28WET_N05.09", + "eo:cloud_cover": 2.219823, + "s2:datatake_id": "GS2A_20230912T123311_042949_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230912T123311_N0509_R052_T28WET_20230912T170157.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230912T170157_S20230912T123311_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ET", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.865399718357, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-12T17:01:57.000000Z", + "view:sun_elevation": 28.744854756345497, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/ET/2023/9/S2A_28WET_20230912_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 52.007437, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/575e42fe5a1887c94391475575ee762d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 10.408473, + "s2:vegetation_percentage": 21.100174, + "s2:thin_cirrus_percentage": 2.212576, + "s2:cloud_shadow_percentage": 0.014189, + "s2:nodata_pixel_percentage": 0.975096, + "s2:unclassified_percentage": 0.010397, + "s2:dark_features_percentage": 1.766362, + "s2:not_vegetated_percentage": 12.47315, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0057, + "s2:high_proba_clouds_percentage": 0.001655, + "s2:reflectance_conversion_factor": 0.985706074282784, + "s2:medium_proba_clouds_percentage": 0.005592, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WEU_20230912_0_L2A", + "bbox": [ + -14.873800571640384, + 65.71506827539704, + -12.545188205517048, + 66.58239766468947 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -12.545188205517048, + 66.3693451883804 + ], + [ + -13.038576697512005, + 66.44052909733236 + ], + [ + -13.045644249010339, + 66.43979183419441 + ], + [ + -13.29702301065877, + 66.47296554617691 + ], + [ + -14.117897427510401, + 66.58239766468947 + ], + [ + -14.873800571640384, + 65.73376441426792 + ], + [ + -12.607443335907321, + 65.71506827539704 + ], + [ + -12.545188205517048, + 66.3693451883804 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-12T22:54:44.674Z", + "updated": "2023-09-12T22:54:44.674Z", + "datetime": "2023-09-12T12:33:22.394000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230912T170157_A042949_T28WEU_N05.09", + "eo:cloud_cover": 3.741753, + "s2:datatake_id": "GS2A_20230912T123311_042949_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230912T123311_N0509_R052_T28WEU_20230912T170157.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230912T170157_S20230912T123311_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.888199480076, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-12T17:01:57.000000Z", + "view:sun_elevation": 27.850671491789, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230912_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 94.684327, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/867a8997464840a054539853d43b8b9a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000149, + "s2:vegetation_percentage": 0.878472, + "s2:thin_cirrus_percentage": 3.369148, + "s2:cloud_shadow_percentage": 0.140886, + "s2:nodata_pixel_percentage": 37.505952, + "s2:unclassified_percentage": 0.006137, + "s2:dark_features_percentage": 0.046943, + "s2:not_vegetated_percentage": 0.501344, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0156, + "s2:high_proba_clouds_percentage": 0.083256, + "s2:reflectance_conversion_factor": 0.985706074282784, + "s2:medium_proba_clouds_percentage": 0.289348, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27VUL_20230911_1_L2A", + "bbox": [ + -24.159341405436127, + 63.38456474586738, + -22.804736798927838, + 63.93453385040773 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.83093744799026, + 63.795089891524356 + ], + [ + -23.198314203513775, + 63.84266753390073 + ], + [ + -23.886951614851714, + 63.93453385040773 + ], + [ + -24.159341405436127, + 63.567463236697044 + ], + [ + -23.683463434460332, + 63.506392632734425 + ], + [ + -23.67379180046594, + 63.50376652172225 + ], + [ + -23.32260952847638, + 63.45691178057391 + ], + [ + -23.179246014783565, + 63.4390304663575 + ], + [ + -22.804736798927838, + 63.38456474586738 + ], + [ + -22.83093744799026, + 63.795089891524356 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:25:15.891Z", + "updated": "2023-09-11T21:25:15.891Z", + "datetime": "2023-09-11T13:04:18.568000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T171455_A042935_T27VUL_N05.09", + "eo:cloud_cover": 1.236756, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T27VUL_20230911T171455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T171455_S20230911T130411_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.873454088252, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-11T17:14:55.000000Z", + "view:sun_elevation": 30.800453395503602, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.763216, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c941674f27a61c79167a8df5615be207", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000029, + "s2:thin_cirrus_percentage": 0.141207, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 77.502376, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0192, + "s2:high_proba_clouds_percentage": 0.364249, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.731299, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26VPR_20230911_1_L2A", + "bbox": [ + -24.16208683621445, + 63.38350838124168, + -22.743580239949406, + 63.934567820132905 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.005012631812484, + 63.81774660491726 + ], + [ + -23.887051637735112, + 63.934567820132905 + ], + [ + -24.16208683621445, + 63.56781728553152 + ], + [ + -23.427529104031137, + 63.47100589247385 + ], + [ + -23.176241344970983, + 63.4390094508172 + ], + [ + -22.802675965487346, + 63.38350838124168 + ], + [ + -22.743580239949406, + 63.78260114951217 + ], + [ + -22.901275052845758, + 63.80495833059008 + ], + [ + -23.005012631812484, + 63.81774660491726 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:15:57.865Z", + "updated": "2023-09-11T21:15:57.865Z", + "datetime": "2023-09-11T13:04:18.556000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T171455_A042935_T26VPR_N05.09", + "eo:cloud_cover": 1.191237, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T26VPR_20230911T171455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T171455_S20230911T130411_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.905633928028, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-11T17:14:55.000000Z", + "view:sun_elevation": 30.806402407486303, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.808724, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a5dad0cb99481b0c6ad48e3178119e8f", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000028, + "s2:vegetation_percentage": 0.000014, + "s2:thin_cirrus_percentage": 0.135392, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 76.624322, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0185, + "s2:high_proba_clouds_percentage": 0.351063, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.704781, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VVL_20230911_1_L2A", + "bbox": [ + -23.03259472299106, + 63.05466015743191, + -20.80716125067633, + 63.82164968879672 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.00353846714512, + 63.41207105540405 + ], + [ + -22.75472372041486, + 63.37663648041301 + ], + [ + -21.89082537831841, + 63.243897263064326 + ], + [ + -21.340215314043398, + 63.15149661723007 + ], + [ + -20.921641554359603, + 63.076843360018316 + ], + [ + -20.808955092282165, + 63.05466015743191 + ], + [ + -20.80716125067633, + 63.473938763132246 + ], + [ + -21.959910153151363, + 63.66585614554863 + ], + [ + -21.968031948510124, + 63.66544383314666 + ], + [ + -22.90017437148393, + 63.80489656993132 + ], + [ + -22.90569107051255, + 63.80456478296256 + ], + [ + -23.03259472299106, + 63.82164968879672 + ], + [ + -23.00353846714512, + 63.41207105540405 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:20:39.652Z", + "updated": "2023-09-11T21:20:39.652Z", + "datetime": "2023-09-11T13:04:18.356000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VVL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T171455_A042935_T27VVL_N05.09", + "eo:cloud_cover": 1.167208, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T27VVL_20230911T171455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T171455_S20230911T130411_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.180312353806, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-11T17:14:55.000000Z", + "view:sun_elevation": 30.881538424624303, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/VL/2023/9/S2A_27VVL_20230911_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.832744, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/7111dd234c99c47c7ba930fbaf2a8147", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000047, + "s2:thin_cirrus_percentage": 1.167082, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 57.771456, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000016, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.00011, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26VPR_20230911_0_L2A", + "bbox": [ + -24.009049330430624, + 63.607144876672464, + -22.713777643413493, + 63.99282489049624 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.843052947139004, + 63.99282489049624 + ], + [ + -24.009049330430624, + 63.773300956361034 + ], + [ + -23.229668705020448, + 63.67015312829248 + ], + [ + -23.017727614376142, + 63.643372058344525 + ], + [ + -22.861047338582452, + 63.619709777766694 + ], + [ + -22.767658182800385, + 63.607144876672464 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -23.843052947139004, + 63.99282489049624 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:16:43.168Z", + "updated": "2023-09-11T21:16:43.168Z", + "datetime": "2023-09-11T13:04:15.554000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T154755_A042935_T26VPR_N05.09", + "eo:cloud_cover": 1.126885, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T26VPR_20230911T154755.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T154755_S20230911T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.905633928028, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-11T15:47:55.000000Z", + "view:sun_elevation": 30.806402407486303, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/9/S2A_26VPR_20230911_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.735124, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/be5be4cf998493a2070bb36f1ef024f5", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.018237, + "s2:thin_cirrus_percentage": 0.077372, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 83.880782, + "s2:unclassified_percentage": 0.000062, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.119691, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0173, + "s2:high_proba_clouds_percentage": 0.348349, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.701164, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27VUL_20230911_0_L2A", + "bbox": [ + -24.00923858350082, + 63.6136641423315, + -22.819253516688825, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.83741663788473, + 63.99942590621513 + ], + [ + -24.00923858350082, + 63.772797853458485 + ], + [ + -23.174080686490395, + 63.662557363528045 + ], + [ + -23.00569694292001, + 63.64105772562283 + ], + [ + -22.819253516688825, + 63.6136641423315 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -23.83741663788473, + 63.99942590621513 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:14:00.152Z", + "updated": "2023-09-11T21:14:00.152Z", + "datetime": "2023-09-11T13:04:15.347000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T154755_A042935_T27VUL_N05.09", + "eo:cloud_cover": 1.149433, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T27VUL_20230911T154755.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T154755_S20230911T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.873454088252, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-11T15:47:55.000000Z", + "view:sun_elevation": 30.800453395503602, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/9/S2A_27VUL_20230911_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.850548, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/b78a65da9019bb2cb1765aceea41b1b4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000021, + "s2:thin_cirrus_percentage": 0.070952, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 84.11963, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0186, + "s2:high_proba_clouds_percentage": 0.357411, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.72107, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WPS_20230911_0_L2A", + "bbox": [ + -23.908705710610903, + 63.875786719781686, + -22.571643586550366, + 64.8741958648012 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.144379681697053, + 64.8741958648012 + ], + [ + -23.908705710610903, + 63.90587274946861 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -23.144379681697053, + 64.8741958648012 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:17:03.058Z", + "updated": "2023-09-11T21:17:03.058Z", + "datetime": "2023-09-11T13:04:07.472000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T154755_A042935_T26WPS_N05.09", + "eo:cloud_cover": 0.589745, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T26WPS_20230911T154755.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T154755_S20230911T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.025589098511, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-11T15:47:55.000000Z", + "view:sun_elevation": 29.922053206047202, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/9/S2A_26WPS_20230911_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 94.600028, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5a3e47128351fcf3766567bea411cde9", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.0004, + "s2:vegetation_percentage": 3.871776, + "s2:thin_cirrus_percentage": 0.106033, + "s2:cloud_shadow_percentage": 0.135492, + "s2:nodata_pixel_percentage": 60.986745, + "s2:unclassified_percentage": 0.007696, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.794863, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.029, + "s2:high_proba_clouds_percentage": 0.190303, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.29341, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WVM_20230911_0_L2A", + "bbox": [ + -23.114545771039616, + 63.924500361371166, + -20.793637446475586, + 64.92398659290882 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.114545771039616, + 64.90912610608407 + ], + [ + -23.040040785180654, + 63.924500361371166 + ], + [ + -20.80091473167463, + 63.93872158431219 + ], + [ + -20.793637446475586, + 64.92398659290882 + ], + [ + -23.114545771039616, + 64.90912610608407 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:27:21.422Z", + "updated": "2023-09-11T21:27:21.422Z", + "datetime": "2023-09-11T13:04:02.885000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T154755_A042935_T27WVM_N05.09", + "eo:cloud_cover": 4.79448, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T27WVM_20230911T154755.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T154755_S20230911T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.13167961709, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-11T15:47:55.000000Z", + "view:sun_elevation": 29.985372983079998, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/9/S2A_27WVM_20230911_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 35.783464, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/86d25dce55ac8f85b335332712aedc4e", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.077571, + "s2:vegetation_percentage": 41.608021, + "s2:thin_cirrus_percentage": 3.324727, + "s2:cloud_shadow_percentage": 1.870953, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.099439, + "s2:dark_features_percentage": 0.680492, + "s2:not_vegetated_percentage": 15.085581, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0027, + "s2:high_proba_clouds_percentage": 0.731729, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.738023, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WPT_20230911_0_L2A", + "bbox": [ + -23.216917722900178, + 64.77081337932353, + -22.42524748097626, + 65.73467744428305 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.588105077111244, + 64.77081337932353 + ], + [ + -22.42524748097626, + 65.73467744428305 + ], + [ + -23.14208041842476, + 64.8765923884759 + ], + [ + -23.216917722900178, + 64.78819941439268 + ], + [ + -22.588105077111244, + 64.77081337932353 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:15:13.323Z", + "updated": "2023-09-11T21:15:13.323Z", + "datetime": "2023-09-11T13:03:54.923000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T154755_A042935_T26WPT_N05.09", + "eo:cloud_cover": 3.602068, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T26WPT_20230911T154755.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T154755_S20230911T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.150180695956, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-11T15:47:55.000000Z", + "view:sun_elevation": 29.0374344694142, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/9/S2A_26WPT_20230911_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 52.479023, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/67e76e56bfc41b16162374c46d3077de", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.507942, + "s2:vegetation_percentage": 29.238752, + "s2:thin_cirrus_percentage": 2.804525, + "s2:cloud_shadow_percentage": 0.947961, + "s2:nodata_pixel_percentage": 86.386156, + "s2:unclassified_percentage": 0.155682, + "s2:dark_features_percentage": 1.10418, + "s2:not_vegetated_percentage": 11.964391, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0566, + "s2:high_proba_clouds_percentage": 0.164237, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.633307, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WVP_20230911_0_L2A", + "bbox": [ + -22.431317522952543, + 65.72710926075132, + -20.778735723758246, + 66.71869608061229 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.545778388873867, + 66.71790657926734 + ], + [ + -22.09799585055133, + 66.1058584008886 + ], + [ + -22.431317522952543, + 65.72710926075132 + ], + [ + -20.78719703799272, + 65.73366831377798 + ], + [ + -20.778735723758246, + 66.71869608061229 + ], + [ + -21.545778388873867, + 66.71790657926734 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:22:19.928Z", + "updated": "2023-09-11T21:22:19.928Z", + "datetime": "2023-09-11T13:03:34.499000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T154755_A042935_T27WVP_N05.09", + "eo:cloud_cover": 4.310957, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T27WVP_20230911T154755.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T154755_S20230911T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.024498782441, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-11T15:47:55.000000Z", + "view:sun_elevation": 28.1925424996085, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VP/2023/9/S2A_27WVP_20230911_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 67.318535, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/bb144424b4f2c5a2bba489772f73c371", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.475722, + "s2:vegetation_percentage": 7.478013, + "s2:thin_cirrus_percentage": 4.190867, + "s2:cloud_shadow_percentage": 0.358222, + "s2:nodata_pixel_percentage": 50.167811, + "s2:unclassified_percentage": 0.023996, + "s2:dark_features_percentage": 0.462766, + "s2:not_vegetated_percentage": 19.571787, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0234, + "s2:high_proba_clouds_percentage": 0.011379, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.108712, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXQ_20230911_0_L2A", + "bbox": [ + -18.741837109485385, + 66.55926906893346, + -16.159937106641397, + 67.54484356915154 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.159937106641397, + 67.12282283239476 + ], + [ + -16.313070410313053, + 67.14990016609278 + ], + [ + -16.72938044834187, + 67.22705384446122 + ], + [ + -16.738063536660437, + 67.22981016278028 + ], + [ + -17.21799010458215, + 67.31541698098779 + ], + [ + -17.352061525021796, + 67.33599702328758 + ], + [ + -18.21514473372763, + 67.47983971170844 + ], + [ + -18.293574102532354, + 67.49178082759602 + ], + [ + -18.300568349770845, + 67.49144242389107 + ], + [ + -18.653451234255808, + 67.54484356915154 + ], + [ + -18.741837109485385, + 66.61436755664185 + ], + [ + -16.270106902659847, + 66.55926906893346 + ], + [ + -16.159937106641397, + 67.12282283239476 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-11T21:24:41.960Z", + "updated": "2023-09-11T21:24:41.960Z", + "datetime": "2023-09-11T13:03:12.472000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXQ", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230911T154755_A042935_T27WXQ_N05.09", + "eo:cloud_cover": 3.550027, + "s2:datatake_id": "GS2A_20230911T130301_042935_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230911T130301_N0509_R038_T27WXQ_20230911T154755.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230911T154755_S20230911T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XQ", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.090672178199, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-11T15:47:55.000000Z", + "view:sun_elevation": 27.4410506824049, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230911_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 96.449918, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ae722b4bfdd7183ee7761e902d6d620d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000052, + "s2:thin_cirrus_percentage": 3.544267, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 23.512065, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000338, + "s2:reflectance_conversion_factor": 0.98521081848655, + "s2:medium_proba_clouds_percentage": 0.005422, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WEU_20230905_0_L2A", + "bbox": [ + -15.000430785994116, + 65.71506827539704, + -12.529411751974589, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000430785994116, + 66.71885135769092 + ], + [ + -15.000414312255502, + 65.7338165451806 + ], + [ + -12.607443335907321, + 65.71506827539704 + ], + [ + -12.529411751974589, + 66.52940046205163 + ], + [ + -13.471261706589905, + 66.68907308430167 + ], + [ + -13.59953669434212, + 66.71262956323496 + ], + [ + -15.000430785994116, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-05T22:22:00.982Z", + "updated": "2023-09-05T22:22:00.982Z", + "datetime": "2023-09-05T12:43:19.746000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230905T172053_A042849_T28WEU_N05.09", + "eo:cloud_cover": 1.989705, + "s2:datatake_id": "GS2A_20230905T124311_042849_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230905T124311_N0509_R095_T28WEU_20230905T172053.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230905T172053_S20230905T124307_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.959813885978, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-05T17:20:53.000000Z", + "view:sun_elevation": 30.5368537444079, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/9/S2A_28WEU_20230905_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 93.541092, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/83fd7d05a951fe0c22224ce186c67e88", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000017, + "s2:vegetation_percentage": 2.791516, + "s2:thin_cirrus_percentage": 1.5875, + "s2:cloud_shadow_percentage": 0.496415, + "s2:nodata_pixel_percentage": 3.743389, + "s2:unclassified_percentage": 0.00111, + "s2:dark_features_percentage": 0.017879, + "s2:not_vegetated_percentage": 1.162267, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000186, + "s2:reflectance_conversion_factor": 0.982273343162297, + "s2:medium_proba_clouds_percentage": 0.402019, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXQ_20230905_0_L2A", + "bbox": [ + -16.64731781100767, + 66.55933692356453, + -16.17665932559102, + 67.07106683164403 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.27235205301668, + 66.55933692356453 + ], + [ + -16.17665932559102, + 67.07106683164403 + ], + [ + -16.64731781100767, + 66.57021357882097 + ], + [ + -16.27235205301668, + 66.55933692356453 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-05T22:12:14.817Z", + "updated": "2023-09-05T22:12:14.817Z", + "datetime": "2023-09-05T12:43:18.221000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXQ", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230905T172053_A042849_T27WXQ_N05.09", + "eo:cloud_cover": 3.620753, + "s2:datatake_id": "GS2A_20230905T124311_042849_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230905T124311_N0509_R095_T27WXQ_20230905T172053.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230905T172053_S20230905T124307_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XQ", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.787344380688, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-05T17:20:53.000000Z", + "view:sun_elevation": 29.5487945333255, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XQ/2023/9/S2A_27WXQ_20230905_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 96.37925, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ef6d4bb8ce38f75f1013530540ec20f8", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 3.620753, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.893884, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0643, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.982273343162297, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26VNR_20230904_0_L2A", + "bbox": [ + -26.431623496954444, + 63.66281260231826, + -24.754449695195, + 64.02561888354998 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -26.333996046187735, + 64.02561888354998 + ], + [ + -26.431623496954444, + 63.89156919271697 + ], + [ + -25.43550221826175, + 63.76162528695988 + ], + [ + -24.781938896725855, + 63.66281260231826 + ], + [ + -24.754449695195, + 64.00978893785071 + ], + [ + -26.333996046187735, + 64.02561888354998 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-04T20:54:45.110Z", + "updated": "2023-09-04T20:54:45.110Z", + "datetime": "2023-09-04T13:14:18.648000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VNR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230904T173156_A042835_T26VNR_N05.09", + "eo:cloud_cover": 3.553349, + "s2:datatake_id": "GS2A_20230904T131301_042835_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230904T131301_N0509_R081_T26VNR_20230904T173156.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230904T173156_S20230904T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.598365939677, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-04T17:31:56.000000Z", + "view:sun_elevation": 33.38756577075, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/NR/2023/9/S2A_26VNR_20230904_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 96.446097, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/7f2e70f7b6e756a9d1d7adb23884477d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000556, + "s2:thin_cirrus_percentage": 0.095422, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 82.096821, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0102, + "s2:high_proba_clouds_percentage": 1.272119, + "s2:reflectance_conversion_factor": 0.981813137477523, + "s2:medium_proba_clouds_percentage": 2.185808, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WNS_20230904_0_L2A", + "bbox": [ + -26.400529149236977, + 63.921569687083434, + -24.679773506360508, + 64.91783575131362 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -25.63028008488632, + 64.91783575131362 + ], + [ + -26.400529149236977, + 63.93761893483512 + ], + [ + -24.761511194452044, + 63.921569687083434 + ], + [ + -24.679773506360508, + 64.90606378004084 + ], + [ + -25.63028008488632, + 64.91783575131362 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-04T21:06:06.654Z", + "updated": "2023-09-04T21:06:06.654Z", + "datetime": "2023-09-04T13:14:10.710000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WNS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230904T173156_A042835_T26WNS_N05.09", + "eo:cloud_cover": 1.196883, + "s2:datatake_id": "GS2A_20230904T131301_042835_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230904T131301_N0509_R081_T26WNS_20230904T173156.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230904T173156_S20230904T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.654506704405, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-04T17:31:56.000000Z", + "view:sun_elevation": 32.4987668951715, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NS/2023/9/S2A_26WNS_20230904_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.802972, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/0269bfd82a1e096c92b349ffcee9bca7", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000139, + "s2:thin_cirrus_percentage": 0.339762, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 42.837504, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0201, + "s2:high_proba_clouds_percentage": 0.243423, + "s2:reflectance_conversion_factor": 0.981813137477523, + "s2:medium_proba_clouds_percentage": 0.613698, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDU_20230904_0_L2A", + "bbox": [ + -17.26708751458163, + 66.32313582684642, + -16.747933355406616, + 66.70915807104018 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -17.23282025195767, + 66.32313582684642 + ], + [ + -16.747933355406616, + 66.70915807104018 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-04T20:57:05.109Z", + "updated": "2023-09-04T20:57:05.109Z", + "datetime": "2023-09-04T13:13:13.300000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230904T173156_A042835_T28WDU_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230904T131301_042835_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230904T131301_N0509_R081_T28WDU_20230904T173156.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230904T173156_S20230904T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.953068219454, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-09-04T17:31:56.000000Z", + "view:sun_elevation": 30.8989720410233, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/9/S2A_28WDU_20230904_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/fa2be222cde50c1918369855f8dfd1d9", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.914596, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.981813137477523, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28VER_20230903_0_L2A", + "bbox": [ + -15.000388828639831, + 63.82153881334376, + -14.78903550180283, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -15.000385991480114, + 63.82153881334376 + ], + [ + -14.78903550180283, + 64.02699179492079 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-09-03T21:08:16.167Z", + "updated": "2023-09-03T21:08:16.167Z", + "datetime": "2023-09-03T12:53:52.174000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230903T134926_A033912_T28VER_N05.09", + "eo:cloud_cover": 0.528214, + "s2:datatake_id": "GS2B_20230903T125309_033912_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230903T125309_N0509_R138_T28VER_20230903T134926.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230903T134926_S20230903T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.693915487475, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-09-03T13:49:26.000000Z", + "view:sun_elevation": 33.9908199215265, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/9/S2B_28VER_20230903_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.471784, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c7e85c5a7e7e03d8661eacbf50e769d3", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.409003, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.992491, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.04314, + "s2:reflectance_conversion_factor": 0.981342411888122, + "s2:medium_proba_clouds_percentage": 0.076071, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20230830_0_L2A", + "bbox": [ + -18.886366528015756, + 64.90774340959017, + -18.884815227989407, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.886366528015756, + 64.90774340959017 + ], + [ + -18.884815227989407, + 64.90911703286696 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-30T21:15:33.162Z", + "updated": "2023-08-30T21:15:33.162Z", + "datetime": "2023-08-30T13:13:42.916000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230830T134910_A033855_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230830T131259_033855_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230830T131259_N0509_R081_T27WXM_20230830T134910.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230830T134910_S20230830T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.602709282952, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-30T13:49:10.000000Z", + "view:sun_elevation": 34.5685574193366, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230830_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c7f51b4288c786b323ff75dd434b46b0", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 100, + "s2:nodata_pixel_percentage": 99.99969, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.979550217342603, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WVM_20230829_0_L2A", + "bbox": [ + -21.36011765537454, + 63.93841103790198, + -20.799043295449703, + 64.65191626615554 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -20.80295474998994, + 63.938724371154265 + ], + [ + -20.799043295449703, + 64.65191626615554 + ], + [ + -20.844261365207696, + 64.5924827709238 + ], + [ + -21.36011765537454, + 63.93841103790198 + ], + [ + -20.80295474998994, + 63.938724371154265 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-29T22:19:26.005Z", + "updated": "2023-08-29T22:19:26.005Z", + "datetime": "2023-08-29T12:54:07.733000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230829T154159_A042749_T27WVM_N05.09", + "eo:cloud_cover": 2.426597, + "s2:datatake_id": "GS2A_20230829T125311_042749_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230829T125311_N0509_R138_T27WVM_20230829T154159.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230829T154159_S20230829T125305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.597150828754, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-29T15:41:59.000000Z", + "view:sun_elevation": 34.5599494296777, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2A_27WVM_20230829_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 7.094505, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/adc9516056694fe02b92e513d44fa58a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.001597, + "s2:vegetation_percentage": 61.371285, + "s2:thin_cirrus_percentage": 0.30219, + "s2:cloud_shadow_percentage": 2.694379, + "s2:nodata_pixel_percentage": 90.858638, + "s2:unclassified_percentage": 0.816161, + "s2:dark_features_percentage": 0.598247, + "s2:not_vegetated_percentage": 24.997233, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0594, + "s2:high_proba_clouds_percentage": 0.975749, + "s2:reflectance_conversion_factor": 0.979109978472806, + "s2:medium_proba_clouds_percentage": 1.148657, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230829_0_L2A", + "bbox": [ + -15.000388828639831, + 63.812402212619986, + -14.781664739166619, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -15.000385866481334, + 63.812402212619986 + ], + [ + -14.781664739166619, + 64.02698090898666 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-29T22:19:25.684Z", + "updated": "2023-08-29T22:19:25.684Z", + "datetime": "2023-08-29T12:53:52.963000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230829T154159_A042749_T28VER_N05.09", + "eo:cloud_cover": 0.182588, + "s2:datatake_id": "GS2A_20230829T125311_042749_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230829T125311_N0509_R138_T28VER_20230829T154159.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230829T154159_S20230829T125305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.212096262445, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-29T15:41:59.000000Z", + "view:sun_elevation": 35.7954269053574, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230829_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.817413, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2c1e42393da797c214afc65656299e59", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.000609, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.90973, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.979109978472806, + "s2:medium_proba_clouds_percentage": 0.181979, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28VCR_20230827_0_L2A", + "bbox": [ + -19.08663529333112, + 62.98751173171735, + -17.319817690887696, + 64.00862130524486 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.08663529333112, + 63.96959674829309 + ], + [ + -18.9485992814503, + 62.98751173171735 + ], + [ + -18.315681087267066, + 63.00432550719631 + ], + [ + -17.319817690887696, + 64.00862130524486 + ], + [ + -19.08663529333112, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-27T21:06:28.929Z", + "updated": "2023-08-27T21:06:28.929Z", + "datetime": "2023-08-27T13:04:05.627000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230827T134337_A033812_T28VCR_N05.09", + "eo:cloud_cover": 0.583127, + "s2:datatake_id": "GS2B_20230827T130259_033812_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230827T130259_N0509_R038_T28VCR_20230827T134337.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230827T134337_S20230827T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.202875132291, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-27T13:43:37.000000Z", + "view:sun_elevation": 36.5013892314654, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/8/S2B_28VCR_20230827_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 43.265614, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/42674e434ff7c630980da41973be1f92", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.726163, + "s2:vegetation_percentage": 26.40458, + "s2:thin_cirrus_percentage": 0.000428, + "s2:cloud_shadow_percentage": 2.869616, + "s2:nodata_pixel_percentage": 45.797861, + "s2:unclassified_percentage": 0.05263, + "s2:dark_features_percentage": 0.033924, + "s2:not_vegetated_percentage": 25.064349, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0274, + "s2:high_proba_clouds_percentage": 0.20219, + "s2:reflectance_conversion_factor": 0.978263591681317, + "s2:medium_proba_clouds_percentage": 0.380508, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VXL_20230827_0_L2A", + "bbox": [ + -19.023565046646322, + 63.01713364354164, + -17.346804858502967, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.95429938185454, + 64.01274197384028 + ], + [ + -19.023565046646322, + 63.02884995176802 + ], + [ + -18.303432000341118, + 63.01713364354164 + ], + [ + -17.346804858502967, + 63.98117193979587 + ], + [ + -18.95429938185454, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-27T21:03:28.339Z", + "updated": "2023-08-27T21:03:28.339Z", + "datetime": "2023-08-27T13:04:05.620000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230827T134337_A033812_T27VXL_N05.09", + "eo:cloud_cover": 0.35736, + "s2:datatake_id": "GS2B_20230827T130259_033812_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230827T130259_N0509_R038_T27VXL_20230827T134337.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230827T134337_S20230827T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.237023122699, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-27T13:43:37.000000Z", + "view:sun_elevation": 36.5062135772685, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/8/S2B_27VXL_20230827_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 43.961349, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a87ced9f514962a26e2d3b0a20a305b1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.821567, + "s2:vegetation_percentage": 26.991394, + "s2:thin_cirrus_percentage": 0.00017, + "s2:cloud_shadow_percentage": 2.477665, + "s2:nodata_pixel_percentage": 47.407147, + "s2:unclassified_percentage": 0.061092, + "s2:dark_features_percentage": 0.032199, + "s2:not_vegetated_percentage": 25.297374, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0294, + "s2:high_proba_clouds_percentage": 0.148282, + "s2:reflectance_conversion_factor": 0.978263591681317, + "s2:medium_proba_clouds_percentage": 0.208907, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230825_0_L2A", + "bbox": [ + -18.886518759633354, + 64.90580940601119, + -18.882337412550037, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.886518759633354, + 64.90580940601119 + ], + [ + -18.882337412550037, + 64.90908182422957 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-25T22:42:20.957Z", + "updated": "2023-08-25T22:42:20.957Z", + "datetime": "2023-08-25T13:13:44.202000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230825T191658_A042692_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230825T131301_042692_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230825T131301_N0509_R081_T27WXM_20230825T191658.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230825T191658_S20230825T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.172370307204, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-25T19:16:58.000000Z", + "view:sun_elevation": 36.3278811560544, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230825_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/85eeebb9dc8ac415251d578425429ccc", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.999171, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.977443462191106, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXN_20230825_0_L2A", + "bbox": [ + -18.886496806351534, + 64.9060883272758, + -17.874642547111947, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.81293549288732, + 65.80592141721391 + ], + [ + -18.886496806351534, + 64.9060883272758 + ], + [ + -17.874642547111947, + 65.78962562314729 + ], + [ + -18.81293549288732, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-25T22:45:45.539Z", + "updated": "2023-08-25T22:45:45.539Z", + "datetime": "2023-08-25T13:13:34.536000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230825T191658_A042692_T27WXN_N05.09", + "eo:cloud_cover": 2.747291, + "s2:datatake_id": "GS2A_20230825T131301_042692_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230825T131301_N0509_R081_T27WXN_20230825T191658.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230825T191658_S20230825T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.231675892932, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-25T19:16:58.000000Z", + "view:sun_elevation": 35.4318450570728, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2A_27WXN_20230825_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 2.431189, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/426b74c58120f2033fad8d7f5645fbd6", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 5.066377, + "s2:vegetation_percentage": 32.270238, + "s2:thin_cirrus_percentage": 2.688914, + "s2:cloud_shadow_percentage": 0.000074, + "s2:nodata_pixel_percentage": 81.955135, + "s2:unclassified_percentage": 0.005553, + "s2:dark_features_percentage": 1.136991, + "s2:not_vegetated_percentage": 56.342286, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.004063, + "s2:reflectance_conversion_factor": 0.977443462191106, + "s2:medium_proba_clouds_percentage": 0.054314, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDU_20230825_0_L2A", + "bbox": [ + -17.26708751458163, + 66.31883035950018, + -16.74113831896885, + 66.7092333128266 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -17.2324379024425, + 66.31883035950018 + ], + [ + -16.74113831896885, + 66.7092333128266 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-25T22:43:38.600Z", + "updated": "2023-08-25T22:43:38.600Z", + "datetime": "2023-08-25T13:13:13.934000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230825T191658_A042692_T28WDU_N05.09", + "eo:cloud_cover": 0.000477, + "s2:datatake_id": "GS2A_20230825T131301_042692_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230825T131301_N0509_R081_T28WDU_20230825T191658.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230825T191658_S20230825T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.131939965287, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-25T19:16:58.000000Z", + "view:sun_elevation": 34.4878627300284, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230825_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.999523, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e9221655790b09d29cb59e979b0da301", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.000477, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.83059, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.977443462191106, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPU_20230824_0_L2A", + "bbox": [ + -24.766997566666447, + 66.33473745274031, + -24.312610815023334, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.733772814861204, + 66.7025538338594 + ], + [ + -24.766997566666447, + 66.33473745274031 + ], + [ + -24.312610815023334, + 66.69592845813786 + ], + [ + -24.733772814861204, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-24T22:50:42.806Z", + "updated": "2023-08-24T22:50:42.806Z", + "datetime": "2023-08-24T13:43:26.507000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230824T195655_A042678_T26WPU_N05.09", + "eo:cloud_cover": 0.367344, + "s2:datatake_id": "GS2A_20230824T133731_042678_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230824T133731_N0509_R067_T26WPU_20230824T195655.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230824T195655_S20230824T134112_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.056625775355, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-24T19:56:55.000000Z", + "view:sun_elevation": 34.8602647420653, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2A_26WPU_20230824_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.632657, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ee420241c5304bc6e9016e419d38e9c9", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.781003, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.058029, + "s2:reflectance_conversion_factor": 0.977048874240604, + "s2:medium_proba_clouds_percentage": 0.309315, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WVM_20230824_0_L2A", + "bbox": [ + -21.347064875406716, + 63.938442871213724, + -20.799139207930633, + 64.63876993840397 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -20.80295475028149, + 63.93872437115466 + ], + [ + -20.799139207930633, + 64.63876993840397 + ], + [ + -21.043542057222083, + 64.32800688162298 + ], + [ + -21.084688837297694, + 64.27920930292126 + ], + [ + -21.347064875406716, + 63.938442871213724 + ], + [ + -20.80295475028149, + 63.93872437115466 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-24T22:47:32.527Z", + "updated": "2023-08-24T22:47:32.527Z", + "datetime": "2023-08-24T12:54:06.229000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230824T182336_A033769_T27WVM_N05.09", + "eo:cloud_cover": 0.072349, + "s2:datatake_id": "GS2B_20230824T125309_033769_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230824T125309_N0509_R138_T27WVM_20230824T182336.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230824T182336_S20230824T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 168.983548880819, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-24T18:23:36.000000Z", + "view:sun_elevation": 36.2699157102396, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230824_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 6.730536, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/085d3be01fbe1b783c1745786765241a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.010892, + "s2:vegetation_percentage": 64.046103, + "s2:thin_cirrus_percentage": 0.072273, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 91.22721, + "s2:unclassified_percentage": 0.064558, + "s2:dark_features_percentage": 0.726289, + "s2:not_vegetated_percentage": 28.349271, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.977036613972473, + "s2:medium_proba_clouds_percentage": 0.000076, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26VPR_20230822_0_L2A", + "bbox": [ + -24.298260507767115, + 63.17691149975954, + -22.713777643413493, + 63.99270928747291 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.837745709100812, + 63.99270928747291 + ], + [ + -24.298260507767115, + 63.378365999932335 + ], + [ + -23.30199551695143, + 63.248220146579065 + ], + [ + -22.872733056542124, + 63.18461526065884 + ], + [ + -22.830656666667238, + 63.17691149975954 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -23.837745709100812, + 63.99270928747291 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-22T20:35:00.287Z", + "updated": "2023-08-22T20:35:00.287Z", + "datetime": "2023-08-22T13:04:20.704000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230822T172455_A042649_T26VPR_N05.09", + "eo:cloud_cover": 2.701989, + "s2:datatake_id": "GS2A_20230822T130301_042649_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230822T130301_N0509_R038_T26VPR_20230822T172455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230822T172455_S20230822T130353_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.396634910421, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-22T17:24:55.000000Z", + "view:sun_elevation": 37.8963956595874, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2A_26VPR_20230822_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.246134, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e9546100ea50713902ecb3619c8551ff", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.008071, + "s2:thin_cirrus_percentage": 2.701881, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 56.837088, + "s2:unclassified_percentage": 0.000038, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.043769, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0173, + "s2:high_proba_clouds_percentage": 8e-6, + "s2:reflectance_conversion_factor": 0.976257575742189, + "s2:medium_proba_clouds_percentage": 0.0001, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27VUL_20230822_0_L2A", + "bbox": [ + -24.29859142805658, + 63.17082051594823, + -22.79142645953972, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.83251496293084, + 63.999521668629555 + ], + [ + -24.29859142805658, + 63.378560131151296 + ], + [ + -23.313179338777573, + 63.249975894537286 + ], + [ + -22.878682819764247, + 63.18633604616577 + ], + [ + -22.79142645953972, + 63.17082051594823 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -23.83251496293084, + 63.999521668629555 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-22T20:33:47.912Z", + "updated": "2023-08-22T20:33:47.912Z", + "datetime": "2023-08-22T13:04:20.671000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230822T172455_A042649_T27VUL_N05.09", + "eo:cloud_cover": 2.823175, + "s2:datatake_id": "GS2A_20230822T130301_042649_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230822T130301_N0509_R038_T27VUL_20230822T172455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230822T172455_S20230822T130353_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.362515965454, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-22T17:24:55.000000Z", + "view:sun_elevation": 37.8899350920765, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2A_27VUL_20230822_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.176826, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/b353f36f9ded9325da7e705f5ac0b342", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 2.823081, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 57.20017, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0177, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.976257575742189, + "s2:medium_proba_clouds_percentage": 0.000093, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPS_20230822_0_L2A", + "bbox": [ + -23.193199590852085, + 64.73249465938565, + -22.571643586550366, + 64.87410812304269 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.140998706386004, + 64.87410812304269 + ], + [ + -23.193199590852085, + 64.81392029673363 + ], + [ + -23.19284424735645, + 64.81228822403499 + ], + [ + -22.693664157433826, + 64.74746364675501 + ], + [ + -22.592258438632495, + 64.73249465938565 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -23.140998706386004, + 64.87410812304269 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-22T20:27:36.221Z", + "updated": "2023-08-22T20:27:36.221Z", + "datetime": "2023-08-22T13:04:00.767000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230822T154554_A042649_T26WPS_N05.09", + "eo:cloud_cover": 0.160257, + "s2:datatake_id": "GS2A_20230822T130301_042649_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230822T130301_N0509_R038_T26WPS_20230822T154554.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230822T154554_S20230822T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.571551133462, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-22T15:45:54.000000Z", + "view:sun_elevation": 37.0190467606992, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230822_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 28.87992, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/0cab6010c5ede9642cd07ce4fdab9c05", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 59.99921, + "s2:thin_cirrus_percentage": 0.01374, + "s2:cloud_shadow_percentage": 0.388421, + "s2:nodata_pixel_percentage": 97.488695, + "s2:unclassified_percentage": 0.110978, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 10.461217, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0381, + "s2:high_proba_clouds_percentage": 0.032765, + "s2:reflectance_conversion_factor": 0.976257575742189, + "s2:medium_proba_clouds_percentage": 0.113752, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WPT_20230822_1_L2A", + "bbox": [ + -23.214395283673202, + 64.77081338185008, + -22.566623067616717, + 64.9732361393268 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.58810516193525, + 64.77081338185008 + ], + [ + -22.566623067616717, + 64.90909694516593 + ], + [ + -23.062894304860045, + 64.9732361393268 + ], + [ + -23.13875988264766, + 64.87614933649137 + ], + [ + -23.214395283673202, + 64.78813503447239 + ], + [ + -22.58810516193525, + 64.77081338185008 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-22T20:31:43.196Z", + "updated": "2023-08-22T20:31:43.196Z", + "datetime": "2023-08-22T13:04:00.300000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230822T172455_A042649_T26WPT_N05.09", + "eo:cloud_cover": 0.398575, + "s2:datatake_id": "GS2A_20230822T130301_042649_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230822T130301_N0509_R038_T26WPT_20230822T172455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230822T172455_S20230822T130353_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.749257108157, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-22T17:24:55.000000Z", + "view:sun_elevation": 36.1412934236512, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2A_26WPT_20230822_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 15.139973, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/bc72623d50b0975f277ca5b8554b0fca", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 56.7927, + "s2:thin_cirrus_percentage": 0.016574, + "s2:cloud_shadow_percentage": 0.914359, + "s2:nodata_pixel_percentage": 95.816231, + "s2:unclassified_percentage": 0.343459, + "s2:dark_features_percentage": 0.147661, + "s2:not_vegetated_percentage": 26.26327, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0472, + "s2:high_proba_clouds_percentage": 0.080651, + "s2:reflectance_conversion_factor": 0.976257575742189, + "s2:medium_proba_clouds_percentage": 0.30135, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WVN_20230822_1_L2A", + "bbox": [ + -23.114588943446375, + 64.82144809642227, + -22.0000882217746, + 64.97320094563995 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.0000882217746, + 64.83302854645137 + ], + [ + -23.06283850555085, + 64.97320094563995 + ], + [ + -23.114588943446375, + 64.90967425569478 + ], + [ + -23.10766536839332, + 64.82144809642227 + ], + [ + -22.0000882217746, + 64.83302854645137 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-22T20:30:05.860Z", + "updated": "2023-08-22T20:30:05.860Z", + "datetime": "2023-08-22T13:03:59.238000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230822T172455_A042649_T27WVN_N05.09", + "eo:cloud_cover": 0.371738, + "s2:datatake_id": "GS2A_20230822T130301_042649_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230822T130301_N0509_R038_T27WVN_20230822T172455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230822T172455_S20230822T130353_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.800897718127, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-22T17:24:55.000000Z", + "view:sun_elevation": 36.2214912383642, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/8/S2A_27WVN_20230822_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 2.678441, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a7cec0de1d8c16559258e1eb20056730", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 61.600244, + "s2:thin_cirrus_percentage": 0.013363, + "s2:cloud_shadow_percentage": 0.821139, + "s2:nodata_pixel_percentage": 96.176445, + "s2:unclassified_percentage": 0.404539, + "s2:dark_features_percentage": 0.180055, + "s2:not_vegetated_percentage": 33.943844, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0399, + "s2:high_proba_clouds_percentage": 0.07853, + "s2:reflectance_conversion_factor": 0.976257575742189, + "s2:medium_proba_clouds_percentage": 0.279845, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VUL_20230820_0_L2A", + "bbox": [ + -25.086635293331128, + 63.36558351336405, + -22.803545763031263, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -25.086635293331128, + 63.96959674829309 + ], + [ + -25.053343711411422, + 63.73962605278943 + ], + [ + -24.459251663073232, + 63.65130599671676 + ], + [ + -24.022078368575972, + 63.58157795528412 + ], + [ + -23.529710895864767, + 63.49896475544319 + ], + [ + -23.121151618669046, + 63.426044544403986 + ], + [ + -22.803545763031263, + 63.36558351336405 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -25.086635293331128, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-20T21:46:53.297Z", + "updated": "2023-08-20T21:46:53.297Z", + "datetime": "2023-08-20T13:14:15.938000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230820T134708_A033712_T27VUL_N05.09", + "eo:cloud_cover": 0.000277, + "s2:datatake_id": "GS2B_20230820T131259_033712_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230820T131259_N0509_R081_T27VUL_20230820T134708.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230820T134708_S20230820T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.242031517007, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-20T13:47:08.000000Z", + "view:sun_elevation": 38.7208572400135, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230820_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.999726, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/facdf88bc624a376ec9c74ae6ea9f4e2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 55.640596, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0148, + "s2:high_proba_clouds_percentage": 0.000037, + "s2:reflectance_conversion_factor": 0.97550686447748, + "s2:medium_proba_clouds_percentage": 0.000239, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26VPR_20230820_0_L2A", + "bbox": [ + -24.974892377294477, + 63.365873469732435, + -22.713777643413493, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.954299381854547, + 64.01274197384028 + ], + [ + -24.974892377294477, + 63.72813540290278 + ], + [ + -24.459365621358728, + 63.651285851221154 + ], + [ + -24.031583627796806, + 63.583266533618534 + ], + [ + -23.550151074532753, + 63.50241402527753 + ], + [ + -23.12275284913102, + 63.42658021642529 + ], + [ + -22.80324952791714, + 63.365873469732435 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -24.954299381854547, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-20T21:52:07.946Z", + "updated": "2023-08-20T21:52:07.946Z", + "datetime": "2023-08-20T13:14:15.875000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230820T134708_A033712_T26VPR_N05.09", + "eo:cloud_cover": 0.000186, + "s2:datatake_id": "GS2B_20230820T131259_033712_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230820T131259_N0509_R081_T26VPR_20230820T134708.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230820T134708_S20230820T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.276626587346, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-20T13:47:08.000000Z", + "view:sun_elevation": 38.7267278304388, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230820_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.946642, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1449bd3ab9bdb0a526b05b5d96c3975c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000312, + "s2:vegetation_percentage": 0.012566, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 55.404288, + "s2:unclassified_percentage": 0.000052, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.040242, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0154, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.97550686447748, + "s2:medium_proba_clouds_percentage": 0.000186, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230820_0_L2A", + "bbox": [ + -24.960733536790926, + 63.875786719781686, + -22.571643586550366, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -24.960733536790926, + 63.92451126316695 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-20T21:56:08.046Z", + "updated": "2023-08-20T21:56:08.046Z", + "datetime": "2023-08-20T13:14:06.079000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230820T134708_A033712_T26WPS_N05.09", + "eo:cloud_cover": 1.026148, + "s2:datatake_id": "GS2B_20230820T131259_033712_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230820T131259_N0509_R081_T26WPS_20230820T134708.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230820T134708_S20230820T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.421851051187, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-20T13:47:08.000000Z", + "view:sun_elevation": 37.8414746145017, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230820_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 93.540275, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ea8eb59e98334ad276d507462dd3b87f", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.038102, + "s2:vegetation_percentage": 3.891175, + "s2:thin_cirrus_percentage": 0.000199, + "s2:cloud_shadow_percentage": 0.161937, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.022332, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 1.320032, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0219, + "s2:high_proba_clouds_percentage": 0.512424, + "s2:reflectance_conversion_factor": 0.97550686447748, + "s2:medium_proba_clouds_percentage": 0.513525, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WNU_20230820_0_L2A", + "bbox": [ + -24.94001776091312, + 65.7151024001892, + -24.570752866000284, + 66.1419124176627 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.609620478902503, + 65.7151024001892 + ], + [ + -24.570752866000284, + 66.1419124176627 + ], + [ + -24.94001776091312, + 65.71992026941253 + ], + [ + -24.609620478902503, + 65.7151024001892 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-20T21:43:48.353Z", + "updated": "2023-08-20T21:43:48.353Z", + "datetime": "2023-08-20T13:13:45.879000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230820T134708_A033712_T26WNU_N05.09", + "eo:cloud_cover": 0.48576, + "s2:datatake_id": "GS2B_20230820T131259_033712_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230820T131259_N0509_R081_T26WNU_20230820T134708.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230820T134708_S20230820T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.074498284298, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-20T13:47:08.000000Z", + "view:sun_elevation": 35.9045127043752, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230820_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.508554, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8d8c9a1d69712e323603c875dfab1bee", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.005685, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.906608, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.075401, + "s2:reflectance_conversion_factor": 0.97550686447748, + "s2:medium_proba_clouds_percentage": 0.41036, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230815_0_L2A", + "bbox": [ + -18.88713593998502, + 64.8979653568942, + -18.874678674967665, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.88713593998502, + 64.8979653568942 + ], + [ + -18.874678674967665, + 64.90897273594983 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-15T21:23:56.847Z", + "updated": "2023-08-15T21:23:56.847Z", + "datetime": "2023-08-15T13:13:43.819000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230815T174254_A042549_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230815T131301_042549_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230815T131301_N0509_R081_T27WXM_20230815T174254.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230815T174254_S20230815T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.427027389893, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-15T17:42:54.000000Z", + "view:sun_elevation": 39.6222458186752, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2A_27WXM_20230815_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 8.907446, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/efc850fb4789afcf736c51fe50b6e6b7", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 79.123175, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 11.969381, + "s2:nodata_pixel_percentage": 99.995238, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.973753230590634, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXN_20230814_0_L2A", + "bbox": [ + -18.89313457574394, + 64.77075092227982, + -16.418530102243363, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.81293549288732, + 65.80592141721391 + ], + [ + -18.89313457574394, + 64.82145944293943 + ], + [ + -16.58600870874393, + 64.77075092227982 + ], + [ + -16.418530102243363, + 65.75287787308291 + ], + [ + -18.81293549288732, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-14T21:34:28.005Z", + "updated": "2023-08-14T21:34:28.005Z", + "datetime": "2023-08-14T12:53:41.706000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230814T164528_A033626_T27WXN_N05.09", + "eo:cloud_cover": 1.394866, + "s2:datatake_id": "GS2B_20230814T125309_033626_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230814T125309_N0509_R138_T27WXN_20230814T164528.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230814T164528_S20230814T125319_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.227980514235, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-14T16:45:28.000000Z", + "view:sun_elevation": 38.907958940602, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/8/S2B_27WXN_20230814_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 3.807867, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c1712b00843a73f29ff844ffeae5bf80", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 3.437102, + "s2:vegetation_percentage": 21.386349, + "s2:thin_cirrus_percentage": 1.256555, + "s2:cloud_shadow_percentage": 0.569912, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.00065, + "s2:dark_features_percentage": 0.188702, + "s2:not_vegetated_percentage": 69.214553, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0201, + "s2:high_proba_clouds_percentage": 0.02349, + "s2:reflectance_conversion_factor": 0.97342102087485, + "s2:medium_proba_clouds_percentage": 0.11482, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WDT_20230814_0_L2A", + "bbox": [ + -17.187894843472776, + 64.82144809642227, + -14.786472389258659, + 65.82139457717805 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.187894843472776, + 65.80590954715973 + ], + [ + -17.10766536839331, + 64.82144809642227 + ], + [ + -14.794309519428289, + 64.83624976412734 + ], + [ + -14.786472389258659, + 65.82139457717805 + ], + [ + -17.187894843472776, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-14T21:38:06.437Z", + "updated": "2023-08-14T21:38:06.437Z", + "datetime": "2023-08-14T12:53:36.630000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230814T164528_A033626_T28WDT_N05.09", + "eo:cloud_cover": 4.321164, + "s2:datatake_id": "GS2B_20230814T125309_033626_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230814T125309_N0509_R138_T28WDT_20230814T164528.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230814T164528_S20230814T125319_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.333107802152, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-14T16:45:28.000000Z", + "view:sun_elevation": 38.9449173762352, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 3.275762, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d67e6b19d5f4448176fbf63b0c55584d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.172156, + "s2:vegetation_percentage": 24.58522, + "s2:thin_cirrus_percentage": 3.983023, + "s2:cloud_shadow_percentage": 1.522838, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.0008, + "s2:dark_features_percentage": 0.017137, + "s2:not_vegetated_percentage": 66.104925, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0033, + "s2:high_proba_clouds_percentage": 0.028149, + "s2:reflectance_conversion_factor": 0.97342102087485, + "s2:medium_proba_clouds_percentage": 0.309992, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WDU_20230814_0_L2A", + "bbox": [ + -17.236725994469317, + 65.71824624565738, + -14.785425295746464, + 66.36702408630511 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -14.785425295746464, + 65.94700272274136 + ], + [ + -16.027942039028506, + 66.17231744725483 + ], + [ + -16.474498196571073, + 66.24690859393266 + ], + [ + -17.236725994469317, + 66.36702408630511 + ], + [ + -17.18047689480826, + 65.71824624565738 + ], + [ + -14.787197037992712, + 65.73366831377798 + ], + [ + -14.785425295746464, + 65.94700272274136 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-14T21:28:46.288Z", + "updated": "2023-08-14T21:28:46.288Z", + "datetime": "2023-08-14T12:53:27.542000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230814T164528_A033626_T28WDU_N05.09", + "eo:cloud_cover": 0.028544, + "s2:datatake_id": "GS2B_20230814T125309_033626_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230814T125309_N0509_R138_T28WDU_20230814T164528.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230814T164528_S20230814T125319_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.277486987967, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-14T16:45:28.000000Z", + "view:sun_elevation": 38.0476437290912, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2B_28WDU_20230814_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 12.394096, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f18dd754ce36ee1cc4f38f582d49afc3", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.076777, + "s2:vegetation_percentage": 46.594524, + "s2:thin_cirrus_percentage": 0.028476, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 55.666953, + "s2:unclassified_percentage": 0.004146, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 40.901914, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0046, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.97342102087485, + "s2:medium_proba_clouds_percentage": 0.000067, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WDT_20230814_1_L2A", + "bbox": [ + -15.11506763858537, + 65.7583478159338, + -14.786472389258659, + 65.82150019224109 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.11506763858537, + 65.82150019224109 + ], + [ + -15.115064829820533, + 65.8208715561076 + ], + [ + -14.786993725853552, + 65.7583478159338 + ], + [ + -14.786472389258659, + 65.82139457717805 + ], + [ + -15.11506763858537, + 65.82150019224109 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-14T21:30:39.529Z", + "updated": "2023-08-14T21:30:39.529Z", + "datetime": "2023-08-14T12:53:27.445000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230814T150031_A033626_T28WDT_N05.09", + "eo:cloud_cover": 0.002187, + "s2:datatake_id": "GS2B_20230814T125309_033626_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230814T125309_N0509_R138_T28WDT_20230814T150031.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230814T150031_S20230814T125305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.333107802152, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-14T15:00:31.000000Z", + "view:sun_elevation": 38.9449173762352, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/8/S2B_28WDT_20230814_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 15.715484, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/253ea1a011aedc1733cb8330f98b4c7b", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 70.376611, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.544978, + "s2:unclassified_percentage": 0.702906, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 13.202815, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.97342102087485, + "s2:medium_proba_clouds_percentage": 0.002187, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26VNR_20230813_0_L2A", + "bbox": [ + -26.237123406872854, + 63.76755388046684, + -24.754449695195, + 64.02514250412135 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -26.237097584924456, + 64.02514250412135 + ], + [ + -26.237123406872854, + 64.02419650126126 + ], + [ + -26.177617837275044, + 64.01542846960173 + ], + [ + -26.16624088605295, + 64.01242214255007 + ], + [ + -25.28440070217292, + 63.863297106070846 + ], + [ + -24.806696776003655, + 63.77257747251966 + ], + [ + -24.773720689385208, + 63.76755388046684 + ], + [ + -24.754449695195, + 64.00978893785071 + ], + [ + -26.237097584924456, + 64.02514250412135 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:24:49.141Z", + "updated": "2023-08-13T21:24:49.141Z", + "datetime": "2023-08-13T13:24:15.117000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26VNR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26VNR_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26VNR_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.27755805915, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 40.9236705407231, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/NR/2023/8/S2B_26VNR_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/712f2462c4efce9983a33f95d0da7308", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 91.845769, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VUL_20230813_0_L2A", + "bbox": [ + -25.086635293331128, + 63.39257299659426, + -22.815215118961014, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -25.086635293331128, + 63.96959674829309 + ], + [ + -25.064889590463732, + 63.81986171694099 + ], + [ + -24.71391820767993, + 63.75670719950438 + ], + [ + -24.351689786766773, + 63.68670398000548 + ], + [ + -23.8517222340273, + 63.5850340726524 + ], + [ + -23.44768098632945, + 63.50035751831327 + ], + [ + -22.974006815286305, + 63.39257299659426 + ], + [ + -22.815215118961014, + 63.550345452027855 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -25.086635293331128, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:21:55.929Z", + "updated": "2023-08-13T21:21:55.929Z", + "datetime": "2023-08-13T13:24:13.111000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T27VUL_N05.09", + "eo:cloud_cover": 0.944525, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T27VUL_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.786343779249, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 41.0474335497728, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/8/S2B_27VUL_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.05535, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8eef7d6c62f68e79344061587273499b", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.003995, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 59.966385, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.000124, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0235, + "s2:high_proba_clouds_percentage": 0.376756, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.563775, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26VPR_20230813_0_L2A", + "bbox": [ + -24.969562866229133, + 63.39276160550044, + -22.713777643413493, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.954299381854547, + 64.01274197384028 + ], + [ + -24.969562866229133, + 63.80241402868147 + ], + [ + -24.784979130334836, + 63.769780290926036 + ], + [ + -24.36155614073288, + 63.68883261506305 + ], + [ + -23.44533605388187, + 63.49982282041393 + ], + [ + -22.974710277186823, + 63.39276160550044 + ], + [ + -22.769215468082205, + 63.596683808569885 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -24.954299381854547, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:29:26.900Z", + "updated": "2023-08-13T21:29:26.900Z", + "datetime": "2023-08-13T13:24:13.061000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26VPR_N05.09", + "eo:cloud_cover": 1.122537, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26VPR_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.821927270831, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 41.0527715517364, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/8/S2B_26VPR_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.821807, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/b9115af67edbab51c0a053b4fb0c37c2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.010043, + "s2:thin_cirrus_percentage": 0.006024, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 59.631586, + "s2:unclassified_percentage": 0.000337, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.045278, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0219, + "s2:high_proba_clouds_percentage": 0.440352, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.676161, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WNS_20230813_0_L2A", + "bbox": [ + -27.000401773127415, + 63.921569687083434, + -24.679773506360508, + 64.92412942351285 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -27.000401773127415, + 64.92412942351285 + ], + [ + -27.000390432514372, + 64.14189484262954 + ], + [ + -26.51886222249322, + 64.07136621492084 + ], + [ + -25.69641981824095, + 63.93299709784026 + ], + [ + -24.761511194452044, + 63.921569687083434 + ], + [ + -24.679773506360508, + 64.90606378004084 + ], + [ + -27.000401773127415, + 64.92412942351285 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:21:09.989Z", + "updated": "2023-08-13T21:21:09.989Z", + "datetime": "2023-08-13T13:24:08.800000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26WNS_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26WNS_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.350316732445, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 40.0335309518986, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NS/2023/8/S2B_26WNS_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/28edb96ef21ff02e80777658134ab137", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 6.05647, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0171, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230813_0_L2A", + "bbox": [ + -24.960733536790926, + 63.875786719781686, + -22.571643586550366, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -24.960733536790926, + 63.92451126316695 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:22:01.342Z", + "updated": "2023-08-13T21:22:01.342Z", + "datetime": "2023-08-13T13:24:04.099000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26WPS_N05.09", + "eo:cloud_cover": 0.001281, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26WPS_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.943865512339, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 40.1623487345135, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2B_26WPS_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 94.37077, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a3bbd3660ab382b053aecacd43a6a573", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.103251, + "s2:vegetation_percentage": 3.913574, + "s2:thin_cirrus_percentage": 0.000139, + "s2:cloud_shadow_percentage": 0.004157, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.001785, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 1.60518, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0167, + "s2:high_proba_clouds_percentage": 0.000139, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.001002, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WVM_20230813_0_L2A", + "bbox": [ + -23.114545771039616, + 63.925397223542305, + -21.37707724077217, + 64.92365252540638 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.114545771039616, + 64.90912610608407 + ], + [ + -23.040105984540485, + 63.925397223542305 + ], + [ + -22.429361819060837, + 63.933241381231944 + ], + [ + -21.37707724077217, + 64.92365252540638 + ], + [ + -23.114545771039616, + 64.90912610608407 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:20:59.909Z", + "updated": "2023-08-13T21:20:59.909Z", + "datetime": "2023-08-13T13:23:58.197000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T27WVM_N05.09", + "eo:cloud_cover": 0.001017, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T27WVM_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.258356394335, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 40.1838678338555, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/8/S2B_27WVM_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 63.071978, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1356025a98119d39b0dcb3075a70fd5a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.001555, + "s2:vegetation_percentage": 26.865974, + "s2:thin_cirrus_percentage": 0.000019, + "s2:cloud_shadow_percentage": 0.007962, + "s2:nodata_pixel_percentage": 48.787341, + "s2:unclassified_percentage": 0.003531, + "s2:dark_features_percentage": 0.011137, + "s2:not_vegetated_percentage": 10.036846, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0266, + "s2:high_proba_clouds_percentage": 0.000175, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.000823, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WNT_20230813_0_L2A", + "bbox": [ + -27.000415723108187, + 64.81839788328173, + -24.599305506964253, + 65.82154341411521 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -27.000415723108187, + 65.82154341411521 + ], + [ + -27.000400464638197, + 64.83639202908054 + ], + [ + -24.68732176995665, + 64.81839788328173 + ], + [ + -24.599305506964253, + 65.80271861196661 + ], + [ + -27.000415723108187, + 65.82154341411521 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:27:48.838Z", + "updated": "2023-08-13T21:27:48.838Z", + "datetime": "2023-08-13T13:23:55.189000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26WNT_N05.09", + "eo:cloud_cover": 0.000829, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26WNT_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.422708532892, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 39.1430329756391, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NT/2023/8/S2B_26WNT_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.9991, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/4bbf6af3518ca1c46d5ab3506d42688a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.00007, + "s2:thin_cirrus_percentage": 0.000315, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 3e-6, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0221, + "s2:high_proba_clouds_percentage": 0.000036, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.000478, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WPT_20230813_0_L2A", + "bbox": [ + -24.89313457574395, + 64.77075092227982, + -22.41853010224337, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.81293549288733, + 65.80592141721391 + ], + [ + -24.89313457574395, + 64.82145944293943 + ], + [ + -22.58600870874394, + 64.77075092227982 + ], + [ + -22.41853010224337, + 65.75287787308291 + ], + [ + -24.81293549288733, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:23:26.541Z", + "updated": "2023-08-13T21:23:26.541Z", + "datetime": "2023-08-13T13:23:50.160000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26WPT_N05.09", + "eo:cloud_cover": 0.008431, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26WPT_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.070969267517, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 39.2716108304459, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/8/S2B_26WPT_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 71.45223, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d857e670c9bb17e09f68172aa8918d87", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.157428, + "s2:vegetation_percentage": 13.28326, + "s2:thin_cirrus_percentage": 0.002532, + "s2:cloud_shadow_percentage": 0.003713, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.008069, + "s2:dark_features_percentage": 0.253181, + "s2:not_vegetated_percentage": 14.833687, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.002, + "s2:high_proba_clouds_percentage": 0.001666, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.004234, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WNU_20230813_0_L2A", + "bbox": [ + -27.000422568768148, + 65.71506827539704, + -24.512428558908177, + 66.71824424081126 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -26.56248799935992, + 66.71824424081126 + ], + [ + -27.000422568768148, + 66.23805636488488 + ], + [ + -27.00041431225552, + 65.7338165451806 + ], + [ + -24.607443335907337, + 65.71506827539704 + ], + [ + -24.512428558908177, + 66.69921264081668 + ], + [ + -26.56248799935992, + 66.71824424081126 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:26:33.158Z", + "updated": "2023-08-13T21:26:33.158Z", + "datetime": "2023-08-13T13:23:41.203000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26WNU_N05.09", + "eo:cloud_cover": 1.948652, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26WNU_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.495057612873, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 38.252712342877, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.051345, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f5a91f665f0b44389af4c451932e3334", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 1.948104, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 4.250205, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0195, + "s2:high_proba_clouds_percentage": 0.000045, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.000502, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WPU_20230813_0_L2A", + "bbox": [ + -24.820350631782347, + 65.66542962794706, + -22.2532751547688, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.733772814861204, + 66.7025538338594 + ], + [ + -24.820350631782347, + 65.71825806747697 + ], + [ + -22.434012525314998, + 65.66542962794706 + ], + [ + -22.2532751547688, + 66.64722308988246 + ], + [ + -24.733772814861204, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-13T21:27:43.023Z", + "updated": "2023-08-13T21:27:43.023Z", + "datetime": "2023-08-13T13:23:36.151000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230813T171841_A033612_T26WPU_N05.09", + "eo:cloud_cover": 2.133437, + "s2:datatake_id": "GS2B_20230813T131719_033612_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230813T131719_N0509_R124_T26WPU_20230813T171841.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230813T171841_S20230813T132051_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.204015634262, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-13T17:18:41.000000Z", + "view:sun_elevation": 38.3810919744162, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230813_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 68.919945, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2c5752e33879c2d474349dca8ced50a7", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.391422, + "s2:vegetation_percentage": 11.216506, + "s2:thin_cirrus_percentage": 0.006015, + "s2:cloud_shadow_percentage": 0.040673, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.025873, + "s2:dark_features_percentage": 0.781965, + "s2:not_vegetated_percentage": 15.49018, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0062, + "s2:high_proba_clouds_percentage": 1.166685, + "s2:reflectance_conversion_factor": 0.973106554017907, + "s2:medium_proba_clouds_percentage": 0.960737, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WPS_20230812_0_L2A", + "bbox": [ + -23.89405652620841, + 63.875786719781686, + -22.571643586550366, + 64.8738237169693 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.13006004054294, + 64.8738237169693 + ], + [ + -23.89405652620841, + 63.90555908598298 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -23.13006004054294, + 64.8738237169693 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-12T21:11:31.751Z", + "updated": "2023-08-12T21:11:31.751Z", + "datetime": "2023-08-12T13:04:07.569000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230812T173949_A042506_T26WPS_N05.09", + "eo:cloud_cover": 3.001662, + "s2:datatake_id": "GS2A_20230812T130301_042506_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230812T130301_N0509_R038_T26WPS_20230812T173949.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230812T173949_S20230812T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 168.561159807931, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-12T17:39:49.000000Z", + "view:sun_elevation": 40.1568264437236, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/8/S2A_26WPS_20230812_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 93.220794, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/29ca506031abd2ad66ef99633271f15e", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.001314, + "s2:vegetation_percentage": 2.943313, + "s2:thin_cirrus_percentage": 2.216833, + "s2:cloud_shadow_percentage": 0.089199, + "s2:nodata_pixel_percentage": 61.60655, + "s2:unclassified_percentage": 0.039847, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.703873, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0295, + "s2:high_proba_clouds_percentage": 0.185813, + "s2:reflectance_conversion_factor": 0.972791544239886, + "s2:medium_proba_clouds_percentage": 0.599015, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20230810_0_L2A", + "bbox": [ + -18.886634960893126, + 64.90433293619618, + -18.88103387709301, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.886634960893126, + 64.90433293619618 + ], + [ + -18.88103387709301, + 64.90906328500338 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-10T20:12:13.276Z", + "updated": "2023-08-10T20:12:13.276Z", + "datetime": "2023-08-10T13:13:43.733000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230810T152404_A033569_T27WXM_N05.09", + "eo:cloud_cover": 0.230947, + "s2:datatake_id": "GS2B_20230810T131259_033569_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230810T131259_N0509_R081_T27WXM_20230810T152404.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230810T152404_S20230810T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.140148295805, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-10T15:24:04.000000Z", + "view:sun_elevation": 41.135012395666, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/8/S2B_27WXM_20230810_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 1.154734, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/3e40cfd6d78df176099d3bd0b19d5e57", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 98.614317, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.230947, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.998569, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.972193987216567, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WNU_20230809_1_L2A", + "bbox": [ + -26.80182224951241, + 66.30453582700183, + -24.51388372987375, + 66.71872679336074 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -26.80182224951241, + 66.71872679336074 + ], + [ + -26.31096745948956, + 66.62612618994648 + ], + [ + -25.350825524368698, + 66.42837497800792 + ], + [ + -24.80449230926726, + 66.30453582700183 + ], + [ + -24.530223653246754, + 66.52121828699133 + ], + [ + -24.51388372987375, + 66.68476213819436 + ], + [ + -24.58249927873529, + 66.70030409704255 + ], + [ + -26.80182224951241, + 66.71872679336074 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-09T19:36:05.347Z", + "updated": "2023-08-09T19:36:05.347Z", + "datetime": "2023-08-09T13:43:29.003000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230809T172615_A033555_T26WNU_N05.09", + "eo:cloud_cover": 0.00289, + "s2:datatake_id": "GS2B_20230809T133729_033555_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230809T133729_N0509_R067_T26WNU_20230809T172615.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230809T172615_S20230809T134321_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.42663145574, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-09T17:26:15.000000Z", + "view:sun_elevation": 39.5896569747782, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.996817, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ab3376158c86e9d45af75d7db14cb56f", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000257, + "s2:thin_cirrus_percentage": 0.00289, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 80.598819, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.000034, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0244, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.971911206693739, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WNU_20230809_0_L2A", + "bbox": [ + -25.54017544155417, + 66.49841938186462, + -24.512428558908177, + 66.71209040851245 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -25.540130872218153, + 66.71209040851245 + ], + [ + -25.54017544155417, + 66.71133685707022 + ], + [ + -25.07682133549505, + 66.61585812843148 + ], + [ + -24.558944928194407, + 66.49841938186462 + ], + [ + -24.530220888780395, + 66.52124615672426 + ], + [ + -24.512428558908177, + 66.69921264081668 + ], + [ + -25.540130872218153, + 66.71209040851245 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-09T19:34:22.934Z", + "updated": "2023-08-09T19:34:22.934Z", + "datetime": "2023-08-09T13:43:26.417000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230809T160314_A033555_T26WNU_N05.09", + "eo:cloud_cover": 0.01299, + "s2:datatake_id": "GS2B_20230809T133729_033555_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230809T133729_N0509_R067_T26WNU_20230809T160314.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230809T160314_S20230809T133727_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.42663145574, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-09T16:03:14.000000Z", + "view:sun_elevation": 39.5896569747782, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/8/S2B_26WNU_20230809_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.985862, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2399294df6e19bf4194269ecbcfaf8af", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000993, + "s2:thin_cirrus_percentage": 0.01299, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.657986, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.000153, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0146, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.971911206693739, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPU_20230809_1_L2A", + "bbox": [ + -24.767284305607635, + 66.33151080958292, + -24.36616873187851, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.733772814861204, + 66.7025538338594 + ], + [ + -24.767284305607635, + 66.33151080958292 + ], + [ + -24.36616873187851, + 66.65110241242188 + ], + [ + -24.582496481227768, + 66.70030405409118 + ], + [ + -24.733772814861204, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-09T19:38:59.592Z", + "updated": "2023-08-09T19:38:59.592Z", + "datetime": "2023-08-09T13:43:26.081000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230809T172615_A033555_T26WPU_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230809T133729_033555_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230809T133729_N0509_R067_T26WPU_20230809T172615.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230809T172615_S20230809T134321_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 181.1698459597, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-09T17:26:15.000000Z", + "view:sun_elevation": 39.6262035577949, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/013441c0020772a20ddeb2c4ee65672a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.98804, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.971911206693739, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WPU_20230809_0_L2A", + "bbox": [ + -24.748566362221094, + 66.49836249050703, + -24.309893536600555, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.733772814861204, + 66.7025538338594 + ], + [ + -24.748566362221094, + 66.5402507047735 + ], + [ + -24.55916838964753, + 66.49836249050703 + ], + [ + -24.309893536600555, + 66.695882044298 + ], + [ + -24.733772814861204, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-09T19:36:04.303Z", + "updated": "2023-08-09T19:36:04.303Z", + "datetime": "2023-08-09T13:43:25.165000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230809T160314_A033555_T26WPU_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230809T133729_033555_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230809T133729_N0509_R067_T26WPU_20230809T160314.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230809T160314_S20230809T133727_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 181.1698459597, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-09T16:03:14.000000Z", + "view:sun_elevation": 39.6262035577948, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PU/2023/8/S2B_26WPU_20230809_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/9a31ed42e436cba4d77d72b90ccd877b", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 97.57725, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.971911206693739, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VDR_20230809_0_L2A", + "bbox": [ + -17.046477379055286, + 63.02883947055569, + -14.802334076326517, + 64.02701049003203 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.046477379055286, + 64.01273102956839 + ], + [ + -16.977185456577736, + 63.02883947055569 + ], + [ + -15.749668623115728, + 63.041201608089374 + ], + [ + -14.805009335867801, + 63.99184990225951 + ], + [ + -14.802334076326517, + 64.02701049003203 + ], + [ + -17.046477379055286, + 64.01273102956839 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-09T23:08:38.840Z", + "updated": "2023-08-09T23:08:38.840Z", + "datetime": "2023-08-09T12:54:01.905000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VDR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230809T190153_A042463_T28VDR_N05.09", + "eo:cloud_cover": 3.556391, + "s2:datatake_id": "GS2A_20230809T125301_042463_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230809T125301_N0509_R138_T28VDR_20230809T190153.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230809T190153_S20230809T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.087440549378, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-09T19:01:53.000000Z", + "view:sun_elevation": 42.2243165473835, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/DR/2023/8/S2A_28VDR_20230809_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 93.215811, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a3f38a8e1c3b9f2a59952767ee4609ad", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.192965, + "s2:vegetation_percentage": 0.618078, + "s2:thin_cirrus_percentage": 0.000306, + "s2:cloud_shadow_percentage": 1.248233, + "s2:nodata_pixel_percentage": 20.931593, + "s2:unclassified_percentage": 0.051877, + "s2:dark_features_percentage": 0.00206, + "s2:not_vegetated_percentage": 1.114589, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0287, + "s2:high_proba_clouds_percentage": 2.635341, + "s2:reflectance_conversion_factor": 0.971902452301067, + "s2:medium_proba_clouds_percentage": 0.920743, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230809_0_L2A", + "bbox": [ + -15.000388828639831, + 63.801622583181995, + -14.769388293328854, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -15.000385719120972, + 63.801622583181995 + ], + [ + -14.769388293328854, + 64.02696194801034 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-09T22:54:43.308Z", + "updated": "2023-08-09T22:54:43.308Z", + "datetime": "2023-08-09T12:53:51.589000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230809T190153_A042463_T28VER_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230809T125301_042463_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230809T125301_N0509_R138_T28VER_20230809T190153.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230809T190153_S20230809T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.670812835223, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-09T19:01:53.000000Z", + "view:sun_elevation": 42.2817040219592, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2A_28VER_20230809_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/abbd6252a5d4ca125eb16aa1094da120", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.79337, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.971902452301067, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28VER_20230808_0_L2A", + "bbox": [ + -15.000388828639831, + 63.02512387396203, + -12.754449695194982, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -15.00037564104947, + 63.04175097109076 + ], + [ + -12.83053618206236, + 63.02512387396203 + ], + [ + -12.754449695194982, + 64.00978893785071 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-08T22:38:04.607Z", + "updated": "2023-08-08T22:38:04.607Z", + "datetime": "2023-08-08T12:34:03.706000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230808T174421_A033540_T28VER_N05.09", + "eo:cloud_cover": 2.65801, + "s2:datatake_id": "GS2B_20230808T123309_033540_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230808T123309_N0509_R052_T28VER_20230808T174421.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230808T174421_S20230808T123311_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.144130286964, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-08-08T17:44:21.000000Z", + "view:sun_elevation": 42.3541387061185, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/8/S2B_28VER_20230808_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.341985, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5fb545909398e75215b5a195404a01a9", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 3e-6, + "s2:thin_cirrus_percentage": 2.657413, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0156, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.971619427256336, + "s2:medium_proba_clouds_percentage": 0.000597, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDU_20230805_1_L2A", + "bbox": [ + -17.26708751458163, + 66.31023081040185, + -16.731621192687772, + 66.70933820314661 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -17.231674644786118, + 66.31023081040185 + ], + [ + -16.731621192687772, + 66.70933820314661 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-08-06T00:04:53.901Z", + "updated": "2023-08-06T00:04:53.901Z", + "datetime": "2023-08-05T13:13:12.898000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230805T191500_A042406_T28WDU_N05.09", + "eo:cloud_cover": 0.009673, + "s2:datatake_id": "GS2A_20230805T131301_042406_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230805T131301_N0509_R081_T28WDU_20230805T191500.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230805T191500_S20230805T131304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 181.02717338406, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-08-05T19:15:00.000000Z", + "view:sun_elevation": 40.717395054852, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/8/S2A_28WDU_20230805_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.990326, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f1e8fe6202189239818464da911857b1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.009673, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.643997, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.970839268160679, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230727_0_L2A", + "bbox": [ + -24.90388843997121, + 64.5488127999928, + -23.927417979352406, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -24.90388843997121, + 64.68308543260699 + ], + [ + -24.78298509047064, + 64.65853705389948 + ], + [ + -24.639037536098428, + 64.62437699041855 + ], + [ + -24.299844338790646, + 64.5488127999928 + ], + [ + -23.927417979352406, + 64.89243552893043 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-27T22:44:44.756Z", + "updated": "2023-07-27T22:44:44.756Z", + "datetime": "2023-07-27T13:33:56.852000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230727T173952_A033369_T26WPS_N05.09", + "eo:cloud_cover": 0.159934, + "s2:datatake_id": "GS2B_20230727T132729_033369_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230727T132729_N0509_R024_T26WPS_20230727T173952.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230727T173952_S20230727T132723_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.453422110423, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-27T17:39:52.000000Z", + "view:sun_elevation": 44.7688220292662, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230727_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.094618, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c4a7141e406d5f1b136da47bf2ea237e", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000063, + "s2:vegetation_percentage": 1.251383, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 89.48639, + "s2:unclassified_percentage": 0.009783, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.484219, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0151, + "s2:high_proba_clouds_percentage": 0.04396, + "s2:reflectance_conversion_factor": 0.96894476089931, + "s2:medium_proba_clouds_percentage": 0.115974, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20230721_0_L2A", + "bbox": [ + -18.886875235192168, + 64.90127940400077, + -18.878463808256633, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.886875235192168, + 64.90127940400077 + ], + [ + -18.878463808256633, + 64.9090266993242 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-21T19:35:13.641Z", + "updated": "2023-07-21T19:35:13.641Z", + "datetime": "2023-07-21T13:13:44.167000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230721T152242_A033283_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230721T131259_033283_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230721T131259_N0509_R081_T27WXM_20230721T152242.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230721T152242_S20230721T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.741868947255, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-21T15:22:42.000000Z", + "view:sun_elevation": 46.0484371981199, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2B_27WXM_20230721_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/367869d1b411e2fa009e3534fe866bf6", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 2.948403, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 97.051597, + "s2:nodata_pixel_percentage": 99.9973, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.968082197743574, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WVM_20230719_0_L2A", + "bbox": [ + -23.114545771039616, + 63.925397223292286, + -21.363121686127773, + 64.92368717249272 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.114545771039616, + 64.90912610608407 + ], + [ + -23.040105984522313, + 63.925397223292286 + ], + [ + -22.41648212289693, + 63.93337267030347 + ], + [ + -21.363121686127773, + 64.92368717249272 + ], + [ + -23.114545771039616, + 64.90912610608407 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-21T16:22:33.731Z", + "updated": "2023-07-21T16:22:33.731Z", + "datetime": "2023-07-19T13:23:56.693000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230719T183059_A042163_T27WVM_N05.09", + "eo:cloud_cover": 2.389541, + "s2:datatake_id": "GS2A_20230719T131721_042163_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230719T131721_N0509_R124_T27WVM_20230719T183059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230719T183059_S20230719T131716_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.576728351143, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-19T18:30:59.000000Z", + "view:sun_elevation": 46.3626696765019, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2A_27WVM_20230719_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 62.444168, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8db378dd57f39f62abb5dc88b52d8821", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000827, + "s2:vegetation_percentage": 23.488551, + "s2:thin_cirrus_percentage": 0.115506, + "s2:cloud_shadow_percentage": 0.968217, + "s2:nodata_pixel_percentage": 48.218727, + "s2:unclassified_percentage": 1.648268, + "s2:dark_features_percentage": 0.600394, + "s2:not_vegetated_percentage": 8.460032, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0187, + "s2:high_proba_clouds_percentage": 1.112993, + "s2:reflectance_conversion_factor": 0.967869077904551, + "s2:medium_proba_clouds_percentage": 1.161042, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WWP_20230719_0_L2A", + "bbox": [ + -21.000430785994123, + 65.73421813641957, + -19.241818004446845, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.000430785994123, + 66.71885135769092 + ], + [ + -21.000414326631358, + 65.73471375979896 + ], + [ + -20.438488689934793, + 65.73421813641957 + ], + [ + -19.241818004446845, + 66.70904403226635 + ], + [ + -21.000430785994123, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-19T21:05:12.662Z", + "updated": "2023-07-19T21:05:12.662Z", + "datetime": "2023-07-19T13:23:23.372000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WWP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230719T183059_A042163_T27WWP_N05.09", + "eo:cloud_cover": 3.25534, + "s2:datatake_id": "GS2A_20230719T131721_042163_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230719T131721_N0509_R124_T27WWP_20230719T183059.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230719T183059_S20230719T131716_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.332929917156, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-19T18:30:59.000000Z", + "view:sun_elevation": 44.6011166867911, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WP/2023/7/S2A_27WWP_20230719_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 91.871768, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f7392462f4aea3929abee96c3c722ec7", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000879, + "s2:vegetation_percentage": 4.225139, + "s2:thin_cirrus_percentage": 2.123318, + "s2:cloud_shadow_percentage": 0.166822, + "s2:nodata_pixel_percentage": 52.816385, + "s2:unclassified_percentage": 0.009591, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.47046, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0157, + "s2:high_proba_clouds_percentage": 0.206628, + "s2:reflectance_conversion_factor": 0.967869077904551, + "s2:medium_proba_clouds_percentage": 0.925394, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VVL_20230718_0_L2A", + "bbox": [ + -23.046477379055293, + 63.04252603301998, + -20.800286063143044, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.046477379055293, + 64.01273102956839 + ], + [ + -23.0024749665523, + 63.39682579571388 + ], + [ + -22.130659240367017, + 63.26696877773628 + ], + [ + -21.20420336997867, + 63.1124470728311 + ], + [ + -20.924821637728627, + 63.06301931519409 + ], + [ + -20.836860515075188, + 63.044344522297294 + ], + [ + -20.80705355526024, + 63.04252603301998 + ], + [ + -20.800286063143044, + 64.02700769020842 + ], + [ + -23.046477379055293, + 64.01273102956839 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:30:44.839Z", + "updated": "2023-07-18T19:30:44.839Z", + "datetime": "2023-07-18T13:04:16.163000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VVL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T27VVL_N05.09", + "eo:cloud_cover": 0.426866, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T27VVL_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.814401270932, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 47.1811044133552, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/VL/2023/7/S2B_27VVL_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 80.509919, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/52f9b75ec4fbcb458da498dc7f039aee", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.000237, + "s2:vegetation_percentage": 9.591777, + "s2:thin_cirrus_percentage": 0.004589, + "s2:cloud_shadow_percentage": 0.244768, + "s2:nodata_pixel_percentage": 18.873176, + "s2:unclassified_percentage": 1.617732, + "s2:dark_features_percentage": 0.400402, + "s2:not_vegetated_percentage": 7.208303, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0204, + "s2:high_proba_clouds_percentage": 0.103858, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 0.318419, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VWL_20230718_0_L2A", + "bbox": [ + -21.00038882863984, + 63.02512387396203, + -18.754449695194992, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.00038882863984, + 64.02714490644586 + ], + [ + -21.000376069803476, + 63.07501550732696 + ], + [ + -20.932001303835836, + 63.0635720137323 + ], + [ + -20.915290266963712, + 63.06041810879631 + ], + [ + -20.911449738777655, + 63.05830162762249 + ], + [ + -20.823215572769154, + 63.041640613315955 + ], + [ + -18.830536182062367, + 63.02512387396203 + ], + [ + -18.754449695194992, + 64.00978893785071 + ], + [ + -21.00038882863984, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:25:01.017Z", + "updated": "2023-07-18T19:25:01.017Z", + "datetime": "2023-07-18T13:04:12.274000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VWL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T27VWL_N05.09", + "eo:cloud_cover": 1.412053, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T27VWL_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.545647692677, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 47.318594071597, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/WL/2023/7/S2B_27VWL_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 54.814774, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/6d15e3cfcf739b30254354ce0fe41df1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 4.060315, + "s2:vegetation_percentage": 19.86825, + "s2:thin_cirrus_percentage": 0.133625, + "s2:cloud_shadow_percentage": 1.773632, + "s2:nodata_pixel_percentage": 0.133268, + "s2:unclassified_percentage": 7.158019, + "s2:dark_features_percentage": 2.497069, + "s2:not_vegetated_percentage": 8.415893, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0097, + "s2:high_proba_clouds_percentage": 0.619373, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 0.659055, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230718_0_L2A", + "bbox": [ + -23.88734229042879, + 63.875786719781686, + -22.571643586550366, + 64.87363712296559 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.12290023343922, + 64.87363712296559 + ], + [ + -23.88734229042879, + 63.90541482553243 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -23.12290023343922, + 64.87363712296559 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:27:58.504Z", + "updated": "2023-07-18T19:27:58.504Z", + "datetime": "2023-07-18T13:04:08.233000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T26WPS_N05.09", + "eo:cloud_cover": 4.731748, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T26WPS_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 167.394960792132, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 46.1670842646034, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 90.747124, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/09a70b8587d8de133afcf8b27ff7b2e3", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 3.192721, + "s2:thin_cirrus_percentage": 3.699068, + "s2:cloud_shadow_percentage": 0.363093, + "s2:nodata_pixel_percentage": 61.919457, + "s2:unclassified_percentage": 0.117482, + "s2:dark_features_percentage": 0.006421, + "s2:not_vegetated_percentage": 0.84141, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.229937, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 0.802744, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28VCR_20230718_0_L2A", + "bbox": [ + -19.08663529333112, + 62.98751173153471, + -17.31246159166822, + 64.00873865645666 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.08663529333112, + 63.96959674829309 + ], + [ + -18.948599281425604, + 62.98751173153471 + ], + [ + -18.309275428544723, + 63.004476096663 + ], + [ + -17.31246159166822, + 64.00873865645666 + ], + [ + -19.08663529333112, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:23:26.980Z", + "updated": "2023-07-18T19:23:26.980Z", + "datetime": "2023-07-18T13:04:06.825000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T28VCR_N05.09", + "eo:cloud_cover": 2.224685, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T28VCR_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.242824919172, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 47.4368311414436, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/7/S2B_28VCR_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 41.160893, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/17c783a88b8746005683558a899c7279", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.913, + "s2:vegetation_percentage": 20.513813, + "s2:thin_cirrus_percentage": 1.974194, + "s2:cloud_shadow_percentage": 1.027043, + "s2:nodata_pixel_percentage": 45.521879, + "s2:unclassified_percentage": 14.571114, + "s2:dark_features_percentage": 1.458006, + "s2:not_vegetated_percentage": 17.131443, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0275, + "s2:high_proba_clouds_percentage": 0.080677, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 0.169814, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VXL_20230718_0_L2A", + "bbox": [ + -19.023565045926244, + 63.017368962604095, + -17.339465095381048, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.95429938185454, + 64.01274197384028 + ], + [ + -19.023565045926244, + 63.02884996240147 + ], + [ + -18.297178055675374, + 63.017368962604095 + ], + [ + -17.339465095381048, + 63.980986779439654 + ], + [ + -18.95429938185454, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:26:03.084Z", + "updated": "2023-07-18T19:26:03.084Z", + "datetime": "2023-07-18T13:04:06.819000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T27VXL_N05.09", + "eo:cloud_cover": 2.088227, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T27VXL_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.281069179109, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 47.4420720694745, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/7/S2B_27VXL_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 41.759703, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/807dc380bb4abc157a11c26c3bceb91c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.803696, + "s2:vegetation_percentage": 20.943078, + "s2:thin_cirrus_percentage": 1.837797, + "s2:cloud_shadow_percentage": 0.871069, + "s2:nodata_pixel_percentage": 47.144678, + "s2:unclassified_percentage": 14.117324, + "s2:dark_features_percentage": 1.436916, + "s2:not_vegetated_percentage": 17.979985, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0294, + "s2:high_proba_clouds_percentage": 0.08102, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 0.169409, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WVM_20230718_0_L2A", + "bbox": [ + -23.11265557613695, + 63.924500361371166, + -20.793637446475586, + 64.92398659290882 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.097135207109865, + 64.90937226302854 + ], + [ + -23.11265557613695, + 64.8851023379949 + ], + [ + -23.040040785180654, + 63.924500361371166 + ], + [ + -20.80091473167463, + 63.93872158431219 + ], + [ + -20.793637446475586, + 64.92398659290882 + ], + [ + -23.097135207109865, + 64.90937226302854 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:31:34.943Z", + "updated": "2023-07-18T19:31:34.943Z", + "datetime": "2023-07-18T13:04:03.629000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T27WVM_N05.09", + "eo:cloud_cover": 1.05975, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T27WVM_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.862345525481, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 46.2914154657946, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 37.860411, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/30f62fc47f087cbb896d9a11a006d30d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.126279, + "s2:vegetation_percentage": 40.632913, + "s2:thin_cirrus_percentage": 0.050318, + "s2:cloud_shadow_percentage": 0.98659, + "s2:nodata_pixel_percentage": 0.006775, + "s2:unclassified_percentage": 1.679421, + "s2:dark_features_percentage": 1.702017, + "s2:not_vegetated_percentage": 15.952617, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0227, + "s2:high_proba_clouds_percentage": 0.383887, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 0.625545, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WWM_20230718_0_L2A", + "bbox": [ + -21.000401773127408, + 63.921569687083434, + -18.679773506360497, + 64.92412942351285 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.000401773127408, + 64.92412942351285 + ], + [ + -21.000387604657654, + 63.93885826745158 + ], + [ + -18.761511194452034, + 63.921569687083434 + ], + [ + -18.679773506360497, + 64.90606378004084 + ], + [ + -21.000401773127408, + 64.92412942351285 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:29:49.296Z", + "updated": "2023-07-18T19:29:49.296Z", + "datetime": "2023-07-18T13:03:58.425000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WWM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T27WWM_N05.09", + "eo:cloud_cover": 3.950571, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T27WWM_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.637790249945, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 46.4279321894662, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WM/2023/7/S2B_27WWM_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 4.392786, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/53a9560d46ac5af65ff5e8e35f784bfa", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 9.874725, + "s2:vegetation_percentage": 26.883814, + "s2:thin_cirrus_percentage": 0.225427, + "s2:cloud_shadow_percentage": 1.312955, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 16.198897, + "s2:dark_features_percentage": 4.464318, + "s2:not_vegetated_percentage": 32.921934, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0012, + "s2:high_proba_clouds_percentage": 1.067876, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 2.657267, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPT_20230718_0_L2A", + "bbox": [ + -23.195923932933773, + 64.77081337933645, + -22.43130902737207, + 65.70042885584161 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.588105077544885, + 64.77081337933645 + ], + [ + -22.43130902737207, + 65.70042885584161 + ], + [ + -23.11037347160273, + 64.88825636949394 + ], + [ + -23.195923932933773, + 64.78766227717583 + ], + [ + -22.588105077544885, + 64.77081337933645 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-18T19:24:07.591Z", + "updated": "2023-07-18T19:24:07.591Z", + "datetime": "2023-07-18T13:03:55.813000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230718T151504_A033240_T26WPT_N05.09", + "eo:cloud_cover": 4.615417, + "s2:datatake_id": "GS2B_20230718T130309_033240_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230718T130309_N0509_R038_T26WPT_20230718T151504.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230718T151504_S20230718T130303_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 167.657436064138, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-18T15:15:04.000000Z", + "view:sun_elevation": 45.2966510449921, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230718_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 53.04575, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/3b23c4f6bb2e58380c539fa5f11a7600", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.051872, + "s2:vegetation_percentage": 25.398085, + "s2:thin_cirrus_percentage": 0.000942, + "s2:cloud_shadow_percentage": 2.461545, + "s2:nodata_pixel_percentage": 87.316287, + "s2:unclassified_percentage": 1.750485, + "s2:dark_features_percentage": 0.977848, + "s2:not_vegetated_percentage": 11.698998, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 1.742507, + "s2:reflectance_conversion_factor": 0.967775395065711, + "s2:medium_proba_clouds_percentage": 2.871969, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WVN_20230717_0_L2A", + "bbox": [ + -23.187894843472783, + 65.5609867035132, + -22.87701748126789, + 65.81003820878934 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.187894843472783, + 65.80590954715973 + ], + [ + -23.16730798031291, + 65.5609867035132 + ], + [ + -22.87701748126789, + 65.81003820878934 + ], + [ + -23.187894843472783, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-20T00:10:35.296Z", + "updated": "2023-07-20T00:10:35.296Z", + "datetime": "2023-07-17T13:33:37.339000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230717T160031_A033226_T27WVN_N05.09", + "eo:cloud_cover": 4.014096, + "s2:datatake_id": "GS2B_20230717T132719_033226_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230717T132719_N0509_R024_T27WVN_20230717T160031.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230717T160031_S20230717T132722_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.888906255943, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-17T16:00:31.000000Z", + "view:sun_elevation": 45.8492817200706, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230717_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 5.130065, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/66a4839d5776c704d53f489a507ecfa2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 19.918732, + "s2:vegetation_percentage": 11.360541, + "s2:thin_cirrus_percentage": 3.83588, + "s2:cloud_shadow_percentage": 0.350572, + "s2:nodata_pixel_percentage": 98.357981, + "s2:unclassified_percentage": 1.846209, + "s2:dark_features_percentage": 2.628984, + "s2:not_vegetated_percentage": 54.7508, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.039806, + "s2:reflectance_conversion_factor": 0.967693309202473, + "s2:medium_proba_clouds_percentage": 0.13841, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26VNR_20230716_0_L2A", + "bbox": [ + -26.405190935957826, + 63.68317264972004, + -24.754449695195, + 64.0255390662858 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -26.316801439218032, + 64.0255390662858 + ], + [ + -26.405190935957826, + 63.90830432465922 + ], + [ + -25.39212486813197, + 63.775690734592466 + ], + [ + -24.967702528365617, + 63.71287410302791 + ], + [ + -24.780346751907842, + 63.68317264972004 + ], + [ + -24.754449695195, + 64.00978893785071 + ], + [ + -26.316801439218032, + 64.0255390662858 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-16T22:38:15.758Z", + "updated": "2023-07-16T22:38:15.758Z", + "datetime": "2023-07-16T13:14:17.808000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VNR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230716T190655_A042120_T26VNR_N05.09", + "eo:cloud_cover": 2.945537, + "s2:datatake_id": "GS2A_20230716T131301_042120_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230716T131301_N0509_R081_T26VNR_20230716T190655.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230716T190655_S20230716T131343_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 167.825595911707, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-16T19:06:55.000000Z", + "view:sun_elevation": 47.3977705858129, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/NR/2023/7/S2A_26VNR_20230716_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.05438, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1579e521547b38139032663bbbffedfb", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000081, + "s2:thin_cirrus_percentage": 2.919277, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 83.713788, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.01, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.967618387953434, + "s2:medium_proba_clouds_percentage": 0.02626, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WNS_20230716_0_L2A", + "bbox": [ + -26.38380193522716, + 63.921569687083434, + -24.679773506360508, + 64.91765181586376 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -25.610412683782965, + 64.91765181586376 + ], + [ + -26.38380193522716, + 63.937548804329396 + ], + [ + -24.761511194452044, + 63.921569687083434 + ], + [ + -24.679773506360508, + 64.90606378004084 + ], + [ + -25.610412683782965, + 64.91765181586376 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-16T22:35:51.950Z", + "updated": "2023-07-16T22:35:51.950Z", + "datetime": "2023-07-16T13:14:10.023000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WNS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230716T190655_A042120_T26WNS_N05.09", + "eo:cloud_cover": 1.959018, + "s2:datatake_id": "GS2A_20230716T131301_042120_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230716T131301_N0509_R081_T26WNS_20230716T190655.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230716T190655_S20230716T131343_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 167.993989893625, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-16T19:06:55.000000Z", + "view:sun_elevation": 46.5185954737833, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NS/2023/7/S2A_26WNS_20230716_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.040986, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/23418008d5dd21bcbad5a6890ce1c5ac", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 1.949514, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 43.654662, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0204, + "s2:high_proba_clouds_percentage": 6e-6, + "s2:reflectance_conversion_factor": 0.967618387953434, + "s2:medium_proba_clouds_percentage": 0.009498, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WNU_20230716_0_L2A", + "bbox": [ + -24.938709495244414, + 65.71510240019454, + -24.571186101033575, + 66.13739784480497 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.60962047924418, + 65.71510240019454 + ], + [ + -24.571186101033575, + 66.13739784480497 + ], + [ + -24.938709495244414, + 65.71990260553785 + ], + [ + -24.60962047924418, + 65.71510240019454 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-16T22:34:56.743Z", + "updated": "2023-07-16T22:34:56.743Z", + "datetime": "2023-07-16T13:13:45.695000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230716T173155_A042120_T26WNU_N05.09", + "eo:cloud_cover": 2.236782, + "s2:datatake_id": "GS2A_20230716T131301_042120_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230716T131301_N0509_R081_T26WNU_20230716T173155.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230716T173155_S20230716T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 168.317458252376, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-16T17:31:55.000000Z", + "view:sun_elevation": 44.7589391926631, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2A_26WNU_20230716_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 97.763216, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/9b63b18bdbbf87632daa62c19b667cd6", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 2.236238, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.95254, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.061, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.967618387953434, + "s2:medium_proba_clouds_percentage": 0.000544, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VUL_20230711_0_L2A", + "bbox": [ + -25.086635293331128, + 63.36414606359188, + -22.803455638040557, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -25.086635293331128, + 63.96959674829309 + ], + [ + -25.05303564121939, + 63.737478143696144 + ], + [ + -24.45728901699569, + 63.64847806298157 + ], + [ + -24.03535550925224, + 63.581297785235485 + ], + [ + -23.51970183285863, + 63.49483129310475 + ], + [ + -23.157987004839093, + 63.43070201689109 + ], + [ + -22.803455638040557, + 63.36414606359188 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -25.086635293331128, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:14:05.218Z", + "updated": "2023-07-11T21:14:05.218Z", + "datetime": "2023-07-11T13:14:15.927000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T27VUL_N05.09", + "eo:cloud_cover": 1.072875, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T27VUL_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.628872673826, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 48.3400390691025, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2B_27VUL_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 98.927128, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1c9a05d6c2fa4104d4c31dbf470eb49d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 1.069563, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 55.414224, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0148, + "s2:high_proba_clouds_percentage": 0.000141, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0.00317, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26VPR_20230711_0_L2A", + "bbox": [ + -24.975046342277224, + 63.363724379352675, + -22.713777643413493, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.954299381854547, + 64.01274197384028 + ], + [ + -24.975046342277224, + 63.72598302603569 + ], + [ + -24.412135427411794, + 63.6418222799903 + ], + [ + -24.01875379579523, + 63.57868888195173 + ], + [ + -23.537436825467505, + 63.49779423785841 + ], + [ + -23.116842866716606, + 63.42282494197354 + ], + [ + -22.803563521824657, + 63.363724379352675 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -24.954299381854547, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:23:19.172Z", + "updated": "2023-07-11T21:23:19.172Z", + "datetime": "2023-07-11T13:14:15.867000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T26VPR_N05.09", + "eo:cloud_cover": 0.003606, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T26VPR_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.667090651646, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 48.3462401017544, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2B_26VPR_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.949181, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/9db73e5e1ba77fd5703359696c217b47", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.005486, + "s2:thin_cirrus_percentage": 0.002465, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 55.186677, + "s2:unclassified_percentage": 0.033842, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.007885, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0158, + "s2:high_proba_clouds_percentage": 0.000141, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0.000999, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230711_0_L2A", + "bbox": [ + -24.960733536790926, + 63.875786719781686, + -22.571643586550366, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -24.960733536790926, + 63.92451126316695 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:23:51.544Z", + "updated": "2023-07-11T21:23:51.544Z", + "datetime": "2023-07-11T13:14:06.048000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T26WPS_N05.09", + "eo:cloud_cover": 0.167664, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T26WPS_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.882830633824, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 47.4650617547027, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 94.406152, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/93e8429d7ccbbfbded99545f081bc96c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.112236, + "s2:vegetation_percentage": 3.655704, + "s2:thin_cirrus_percentage": 0.005703, + "s2:cloud_shadow_percentage": 0.106516, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.12275, + "s2:dark_features_percentage": 0.148742, + "s2:not_vegetated_percentage": 1.280238, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0218, + "s2:high_proba_clouds_percentage": 0.095942, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0.066018, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WVM_20230711_0_L2A", + "bbox": [ + -23.114545771039616, + 63.924500361371166, + -20.793637446475586, + 64.92398659290882 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.114545771039616, + 64.90912610608407 + ], + [ + -23.040040785180654, + 63.924500361371166 + ], + [ + -20.80091473167463, + 63.93872158431219 + ], + [ + -20.793637446475586, + 64.92398659290882 + ], + [ + -23.114545771039616, + 64.90912610608407 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:21:25.531Z", + "updated": "2023-07-11T21:21:25.531Z", + "datetime": "2023-07-11T13:14:00.656000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T27WVM_N05.09", + "eo:cloud_cover": 4.751544, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T27WVM_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.391415998864, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 47.5412091447894, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/7/S2B_27WVM_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 38.094246, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/07d70e75787b2267a2590c278ffb305c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.126629, + "s2:vegetation_percentage": 37.821567, + "s2:thin_cirrus_percentage": 0.146841, + "s2:cloud_shadow_percentage": 2.930856, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 1.673259, + "s2:dark_features_percentage": 1.47825, + "s2:not_vegetated_percentage": 13.123649, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0036, + "s2:high_proba_clouds_percentage": 3.125079, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 1.479623, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WNT_20230711_0_L2A", + "bbox": [ + -25.67622840845803, + 64.81839788328173, + -24.599305506964253, + 65.80655671609367 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.857846495568964, + 65.80655671609367 + ], + [ + -25.67622840845803, + 64.83049855663161 + ], + [ + -24.68732176995665, + 64.81839788328173 + ], + [ + -24.599305506964253, + 65.80271861196661 + ], + [ + -24.857846495568964, + 65.80655671609367 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:15:51.796Z", + "updated": "2023-07-11T21:15:51.796Z", + "datetime": "2023-07-11T13:13:56.436000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T26WNT_N05.09", + "eo:cloud_cover": 3.195468, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T26WNT_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 168.251308407544, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 46.3925288424091, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NT/2023/7/S2B_26WNT_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 96.804529, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/06cd14342b6b30a396cdd6f2105eac90", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 3.195419, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 73.123419, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0.000049, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPT_20230711_0_L2A", + "bbox": [ + -24.89313457574395, + 64.77075092227982, + -22.41853010224337, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.81293549288733, + 65.80592141721391 + ], + [ + -24.89313457574395, + 64.82145944293943 + ], + [ + -22.58600870874394, + 64.77075092227982 + ], + [ + -22.41853010224337, + 65.75287787308291 + ], + [ + -24.81293549288733, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:22:55.735Z", + "updated": "2023-07-11T21:22:55.735Z", + "datetime": "2023-07-11T13:13:51.708000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T26WPT_N05.09", + "eo:cloud_cover": 0.641607, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T26WPT_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.09950500659, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 46.5833599524162, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 71.37599, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/86e2d082d1d8635b6fab0f38936b688c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.4004, + "s2:vegetation_percentage": 11.705452, + "s2:thin_cirrus_percentage": 0.594676, + "s2:cloud_shadow_percentage": 0.09286, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.47386, + "s2:dark_features_percentage": 1.47401, + "s2:not_vegetated_percentage": 13.835824, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0219, + "s2:high_proba_clouds_percentage": 0.011563, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0.035368, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WVN_20230711_0_L2A", + "bbox": [ + -23.187894843472783, + 64.82144809642227, + -20.78647238925867, + 65.82139457717805 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.187894843472783, + 65.80590954715973 + ], + [ + -23.10766536839332, + 64.82144809642227 + ], + [ + -20.794309519428296, + 64.83624976412734 + ], + [ + -20.78647238925867, + 65.82139457717805 + ], + [ + -23.187894843472783, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:22:17.254Z", + "updated": "2023-07-11T21:22:17.254Z", + "datetime": "2023-07-11T13:13:46.955000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T27WVN_N05.09", + "eo:cloud_cover": 0.477454, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T27WVN_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.38034163206, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 46.6454503730931, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 32.939669, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/944409c441c94d6b9f38473bff71f1f2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.724002, + "s2:vegetation_percentage": 43.933648, + "s2:thin_cirrus_percentage": 0.452115, + "s2:cloud_shadow_percentage": 0.040882, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.902031, + "s2:dark_features_percentage": 1.81153, + "s2:not_vegetated_percentage": 19.170786, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.007, + "s2:high_proba_clouds_percentage": 0.004273, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0.021065, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WNU_20230711_0_L2A", + "bbox": [ + -24.933264685365142, + 65.71510240020127, + -24.571819981154167, + 66.13075059816255 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.609620479672987, + 65.71510240020127 + ], + [ + -24.571819981154167, + 66.13075059816255 + ], + [ + -24.933264685365142, + 65.71982897041329 + ], + [ + -24.609620479672987, + 65.71510240020127 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:18:13.141Z", + "updated": "2023-07-11T21:18:13.141Z", + "datetime": "2023-07-11T13:13:45.901000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T26WNU_N05.09", + "eo:cloud_cover": 0.109129, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T26WNU_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 168.414237443565, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 45.5123723372567, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/7/S2B_26WNU_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.89087, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/fdd5244fff8a44f0d1102cce4715a0d4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.109129, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 97.050935, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPU_20230711_0_L2A", + "bbox": [ + -24.81817291852447, + 65.66542962794706, + -22.2532751547688, + 66.69145862756538 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.06247309011647, + 66.69145862756538 + ], + [ + -24.805339880944558, + 65.8668204699153 + ], + [ + -24.81817291852447, + 65.71822694760583 + ], + [ + -22.434012525314998, + 65.66542962794706 + ], + [ + -22.2532751547688, + 66.64722308988246 + ], + [ + -24.06247309011647, + 66.69145862756538 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:22:37.161Z", + "updated": "2023-07-11T21:22:37.161Z", + "datetime": "2023-07-11T13:13:37.619000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T26WPU_N05.09", + "eo:cloud_cover": 2.050854, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T26WPU_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.31828985082, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 45.7016853270078, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PU/2023/7/S2B_26WPU_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 65.27853, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f5de37b943a6d854f1388b77bbf8e5f3", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 2.916438, + "s2:vegetation_percentage": 11.813372, + "s2:thin_cirrus_percentage": 2.048853, + "s2:cloud_shadow_percentage": 0.001488, + "s2:nodata_pixel_percentage": 11.463051, + "s2:unclassified_percentage": 0.242952, + "s2:dark_features_percentage": 2.857674, + "s2:not_vegetated_percentage": 14.838699, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0171, + "s2:high_proba_clouds_percentage": 0.000315, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0.001686, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WPV_20230711_0_L2A", + "bbox": [ + -24.142552447786773, + 66.55926906893346, + -22.074548801924198, + 67.57137232755429 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.214412433773056, + 67.57137232755429 + ], + [ + -24.142552447786773, + 66.60460248189783 + ], + [ + -22.270106902659858, + 66.55926906893346 + ], + [ + -22.074548801924198, + 67.54070663181375 + ], + [ + -23.214412433773056, + 67.57137232755429 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-11T21:23:01.415Z", + "updated": "2023-07-11T21:23:01.415Z", + "datetime": "2023-07-11T13:13:22.945000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPV", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230711T170239_A033140_T26WPV_N05.09", + "eo:cloud_cover": 0.535139, + "s2:datatake_id": "GS2B_20230711T131259_033140_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230711T131259_N0509_R081_T26WPV_20230711T170239.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230711T170239_S20230711T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PV", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.540297251838, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-11T17:02:39.000000Z", + "view:sun_elevation": 44.8205790396005, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PV/2023/7/S2B_26WPV_20230711_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 99.464852, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/afd29df28ca164bb83e4b8c76cbe6036", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.535139, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 39.821994, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0036, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.967388284924053, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXQ_20230710_0_L2A", + "bbox": [ + -18.741837109485385, + 66.55933692137245, + -16.16478755050636, + 67.41675060830025 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.27235198046834, + 66.55933692137245 + ], + [ + -18.741837109485385, + 66.61436755664185 + ], + [ + -18.701665114166456, + 67.04695814002937 + ], + [ + -18.34230966233382, + 67.41675060830025 + ], + [ + -17.530623499556818, + 67.3081378535109 + ], + [ + -17.234750982558353, + 67.26907329765498 + ], + [ + -17.224957415452288, + 67.26955897528389 + ], + [ + -16.436632802239767, + 67.15130381786402 + ], + [ + -16.178880376106033, + 67.1129323748686 + ], + [ + -16.16478755050636, + 67.1124440139211 + ], + [ + -16.27235198046834, + 66.55933692137245 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-10T23:35:33.887Z", + "updated": "2023-07-10T23:35:33.887Z", + "datetime": "2023-07-10T12:53:15.344000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXQ", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230710T185803_A042034_T27WXQ_N05.09", + "eo:cloud_cover": 0.223697, + "s2:datatake_id": "GS2A_20230710T125311_042034_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230710T125311_N0509_R138_T27WXQ_20230710T185803.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230710T185803_S20230710T125305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XQ", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.826217244776, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-10T18:58:03.000000Z", + "view:sun_elevation": 45.0048501274217, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XQ/2023/7/S2A_27WXQ_20230710_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.77628, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ca09490af199c860274a9e299633f18f", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000029, + "s2:thin_cirrus_percentage": 0.222779, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 31.34779, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 5e-6, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0104, + "s2:high_proba_clouds_percentage": 5e-6, + "s2:reflectance_conversion_factor": 0.967370284134319, + "s2:medium_proba_clouds_percentage": 0.000913, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230708_0_L2A", + "bbox": [ + -23.88815575857673, + 63.875786719781686, + -22.571643586550366, + 64.87362063314502 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.122268141342513, + 64.87362063314502 + ], + [ + -23.88815575857673, + 63.90543232016033 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -23.122268141342513, + 64.87362063314502 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-12T14:58:37.976Z", + "updated": "2023-07-12T14:58:37.976Z", + "datetime": "2023-07-08T13:04:07.870000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230708T151459_A033097_T26WPS_N05.09", + "eo:cloud_cover": 0.011667, + "s2:datatake_id": "GS2B_20230708T130259_033097_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230708T130259_N0509_R038_T26WPS_20230708T151459.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230708T151459_S20230708T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 167.576269034994, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-08T15:14:59.000000Z", + "view:sun_elevation": 47.6429737883573, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230708_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 95.157605, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/24f64c44712e7c4dd512284dd1a9ab13", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 3.981698, + "s2:thin_cirrus_percentage": 0.007886, + "s2:cloud_shadow_percentage": 0.002074, + "s2:nodata_pixel_percentage": 61.922038, + "s2:unclassified_percentage": 0.081504, + "s2:dark_features_percentage": 0.006038, + "s2:not_vegetated_percentage": 0.759414, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000366, + "s2:reflectance_conversion_factor": 0.96736310988857, + "s2:medium_proba_clouds_percentage": 0.003416, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_26WPT_20230708_0_L2A", + "bbox": [ + -23.1955037598369, + 64.77081337933558, + -22.430978415252813, + 65.70229687957041 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.58810507751598, + 64.77081337933558 + ], + [ + -22.430978415252813, + 65.70229687957041 + ], + [ + -23.10997789543874, + 64.88806645322197 + ], + [ + -23.1955037598369, + 64.78765149630858 + ], + [ + -22.58810507751598, + 64.77081337933558 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-12T14:59:03.194Z", + "updated": "2023-07-12T14:59:03.194Z", + "datetime": "2023-07-08T13:03:55.433000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230708T151459_A033097_T26WPT_N05.09", + "eo:cloud_cover": 0.368973, + "s2:datatake_id": "GS2B_20230708T130259_033097_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230708T130259_N0509_R038_T26WPT_20230708T151459.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230708T151459_S20230708T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 167.847294831795, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-08T15:14:59.000000Z", + "view:sun_elevation": 46.7718440561115, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/7/S2B_26WPT_20230708_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 54.241788, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e2fd44ec66103ffb8be1ec23dfdbc8d2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.100702, + "s2:vegetation_percentage": 29.313445, + "s2:thin_cirrus_percentage": 0.21638, + "s2:cloud_shadow_percentage": 0.321413, + "s2:nodata_pixel_percentage": 87.282479, + "s2:unclassified_percentage": 1.197733, + "s2:dark_features_percentage": 1.807922, + "s2:not_vegetated_percentage": 12.648021, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.046334, + "s2:reflectance_conversion_factor": 0.96736310988857, + "s2:medium_proba_clouds_percentage": 0.106259, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WVN_20230708_0_L2A", + "bbox": [ + -23.112600287304197, + 64.82144809642227, + -20.78647238925867, + 65.82139457717805 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.334300500576866, + 65.81573057774881 + ], + [ + -23.073391008535584, + 64.93549963900111 + ], + [ + -23.099435631414114, + 64.90635375653818 + ], + [ + -23.112600287304197, + 64.88439891518377 + ], + [ + -23.10766536839332, + 64.82144809642227 + ], + [ + -20.794309519428296, + 64.83624976412734 + ], + [ + -20.78647238925867, + 65.82139457717805 + ], + [ + -22.334300500576866, + 65.81573057774881 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-12T14:58:47.708Z", + "updated": "2023-07-12T14:58:47.708Z", + "datetime": "2023-07-08T13:03:49.469000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230708T151459_A033097_T27WVN_N05.09", + "eo:cloud_cover": 0.912574, + "s2:datatake_id": "GS2B_20230708T130259_033097_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230708T130259_N0509_R038_T27WVN_20230708T151459.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230708T151459_S20230708T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.130984435945, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-08T15:14:59.000000Z", + "view:sun_elevation": 46.8739040183174, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230708_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 29.266512, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e0f3306426a31ca22bd36e78cda3339d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.279541, + "s2:vegetation_percentage": 47.411606, + "s2:thin_cirrus_percentage": 0.091087, + "s2:cloud_shadow_percentage": 0.594411, + "s2:nodata_pixel_percentage": 16.47394, + "s2:unclassified_percentage": 1.231337, + "s2:dark_features_percentage": 1.652086, + "s2:not_vegetated_percentage": 18.651934, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0139, + "s2:high_proba_clouds_percentage": 0.230274, + "s2:reflectance_conversion_factor": 0.96736310988857, + "s2:medium_proba_clouds_percentage": 0.591213, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WXP_20230708_0_L2A", + "bbox": [ + -18.82035063178234, + 65.66542962794706, + -16.253275154768794, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.733772814861197, + 66.7025538338594 + ], + [ + -18.82035063178234, + 65.71825806747697 + ], + [ + -16.434012525314987, + 65.66542962794706 + ], + [ + -16.253275154768794, + 66.64722308988246 + ], + [ + -18.733772814861197, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-12T14:58:16.681Z", + "updated": "2023-07-12T14:58:16.681Z", + "datetime": "2023-07-08T13:03:24.794000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230708T151459_A033097_T27WXP_N05.09", + "eo:cloud_cover": 2.808136, + "s2:datatake_id": "GS2B_20230708T130259_033097_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230708T130259_N0509_R038_T27WXP_20230708T151459.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230708T151459_S20230708T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.026112406074, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-08T15:14:59.000000Z", + "view:sun_elevation": 46.2316427511386, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XP/2023/7/S2B_27WXP_20230708_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.1" + }, + "s2:water_percentage": 57.335258, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/095daea8a4d73396d8315f4c1fc2c52d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 3.392222, + "s2:vegetation_percentage": 23.301469, + "s2:thin_cirrus_percentage": 2.663316, + "s2:cloud_shadow_percentage": 0.066499, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 2.582002, + "s2:dark_features_percentage": 2.443768, + "s2:not_vegetated_percentage": 8.070647, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0033, + "s2:high_proba_clouds_percentage": 0.022024, + "s2:reflectance_conversion_factor": 0.96736310988857, + "s2:medium_proba_clouds_percentage": 0.122797, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230707_0_L2A", + "bbox": [ + -24.90132116164447, + 64.57654183757786, + -23.92615292126405, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -23.92615292126405, + 64.89240940060184 + ], + [ + -24.269256295181467, + 64.57654183757786 + ], + [ + -24.550907808979414, + 64.63949915131758 + ], + [ + -24.760472165843353, + 64.68782631813202 + ], + [ + -24.90132116164447, + 64.71626306338621 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-07T20:15:30.725Z", + "updated": "2023-07-07T20:15:30.725Z", + "datetime": "2023-07-07T13:33:56.136000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230707T155905_A033083_T26WPS_N05.09", + "eo:cloud_cover": 3.942848, + "s2:datatake_id": "GS2B_20230707T132719_033083_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230707T132719_N0509_R024_T26WPS_20230707T155905.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230707T155905_S20230707T132722_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.912129682927, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-07T15:59:05.000000Z", + "view:sun_elevation": 48.1617054130102, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2B_26WPS_20230707_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 94.08344, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/31aee617588fe2218bdb09fdad579849", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 1.387772, + "s2:thin_cirrus_percentage": 0.028731, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 90.415174, + "s2:unclassified_percentage": 0.133374, + "s2:dark_features_percentage": 0.001904, + "s2:not_vegetated_percentage": 0.45066, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0167, + "s2:high_proba_clouds_percentage": 2.319691, + "s2:reflectance_conversion_factor": 0.967373349315838, + "s2:medium_proba_clouds_percentage": 1.594426, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WVN_20230707_0_L2A", + "bbox": [ + -23.187894843472783, + 65.56206889877993, + -22.879638335209407, + 65.81000604568978 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.187894843472783, + 65.80590954715973 + ], + [ + -22.879638335209407, + 65.81000604568978 + ], + [ + -23.167398003068985, + 65.56206889877993 + ], + [ + -23.187894843472783, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-07T20:14:17.060Z", + "updated": "2023-07-07T20:14:17.060Z", + "datetime": "2023-07-07T13:33:37.190000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230707T155905_A033083_T27WVN_N05.09", + "eo:cloud_cover": 0.066686, + "s2:datatake_id": "GS2B_20230707T132719_033083_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230707T132719_N0509_R024_T27WVN_20230707T155905.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230707T155905_S20230707T132722_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.311973910131, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-07T15:59:05.000000Z", + "view:sun_elevation": 47.2437547372528, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/7/S2B_27WVN_20230707_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 5.223848, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5b7164b928c2b61b00a25de8c340dc3a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 26.200086, + "s2:vegetation_percentage": 11.90801, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0.36318, + "s2:nodata_pixel_percentage": 98.383015, + "s2:unclassified_percentage": 1.468932, + "s2:dark_features_percentage": 1.992158, + "s2:not_vegetated_percentage": 52.7771, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.01703, + "s2:reflectance_conversion_factor": 0.967373349315838, + "s2:medium_proba_clouds_percentage": 0.049655, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VUL_20230706_0_L2A", + "bbox": [ + -25.086635293331128, + 63.31606559451505, + -22.800446940135394, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -25.086635293331128, + 63.96959674829309 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -22.800446940135394, + 63.31606559451505 + ], + [ + -23.170235749380655, + 63.385981787944054 + ], + [ + -23.577938523675606, + 63.45877136218672 + ], + [ + -24.059929351059647, + 63.539816136063955 + ], + [ + -24.46773686450582, + 63.604921447279246 + ], + [ + -25.04637184297029, + 63.690927153066276 + ], + [ + -25.086635293331128, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-06T22:38:44.802Z", + "updated": "2023-07-06T22:38:44.802Z", + "datetime": "2023-07-06T13:14:16.569000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230706T190257_A041977_T27VUL_N05.09", + "eo:cloud_cover": 0.104362, + "s2:datatake_id": "GS2A_20230706T131301_041977_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230706T131301_N0509_R081_T27VUL_20230706T190257.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230706T190257_S20230706T131359_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.823926073299, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-06T19:02:57.000000Z", + "view:sun_elevation": 48.9381453114449, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/7/S2A_27VUL_20230706_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.895602, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8c2bd5019a1c22a8933f15bbea7edadd", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000034, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 50.637084, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.023988, + "s2:reflectance_conversion_factor": 0.967393343443057, + "s2:medium_proba_clouds_percentage": 0.080374, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26VPR_20230706_0_L2A", + "bbox": [ + -24.97832498223365, + 63.317896542945995, + -22.713777643413493, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.954299381854547, + 64.01274197384028 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -22.810246619901676, + 63.317896542945995 + ], + [ + -23.172258276760903, + 63.38639692565734 + ], + [ + -23.5842291256623, + 63.45956736857812 + ], + [ + -24.06142497807789, + 63.540229361729565 + ], + [ + -24.487836494992553, + 63.60814536302134 + ], + [ + -24.97832498223365, + 63.680061272539994 + ], + [ + -24.954299381854547, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-06T22:38:27.598Z", + "updated": "2023-07-06T22:38:27.598Z", + "datetime": "2023-07-06T13:14:16.496000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230706T190257_A041977_T26VPR_N05.09", + "eo:cloud_cover": 0.037375, + "s2:datatake_id": "GS2A_20230706T131301_041977_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230706T131301_N0509_R081_T26VPR_20230706T190257.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230706T190257_S20230706T131359_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.86244724225, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-07-06T19:02:57.000000Z", + "view:sun_elevation": 48.944306575269, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/7/S2A_26VPR_20230706_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.913108, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8e453cae7e36f50071a3fe26a38b1ae0", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.013391, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 50.572103, + "s2:unclassified_percentage": 0.029515, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.006612, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.00443, + "s2:reflectance_conversion_factor": 0.967393343443057, + "s2:medium_proba_clouds_percentage": 0.032945, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPS_20230706_0_L2A", + "bbox": [ + -24.960733536790926, + 63.875786719781686, + -22.643935300181226, + 64.75809911382878 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -22.643935300181226, + 64.41147163692538 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -24.960733536790926, + 63.92451126316695 + ], + [ + -24.89807389410972, + 64.75809911382878 + ], + [ + -24.558479994734572, + 64.71294483421246 + ], + [ + -24.065061507734352, + 64.63840720189604 + ], + [ + -23.685832519453943, + 64.58219751559253 + ], + [ + -23.676847235891454, + 64.58202182760806 + ], + [ + -23.20041754580302, + 64.50525535747309 + ], + [ + -23.194227711510713, + 64.50284546680432 + ], + [ + -22.925352357466487, + 64.45765899463072 + ], + [ + -22.643935300181226, + 64.41147163692538 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-06T22:40:11.988Z", + "updated": "2023-07-06T22:40:11.988Z", + "datetime": "2023-07-06T13:14:08.803000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230706T190257_A041977_T26WPS_N05.09", + "eo:cloud_cover": 0.042591, + "s2:datatake_id": "GS2A_20230706T131301_041977_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230706T131301_N0509_R081_T26WPS_20230706T190257.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230706T190257_S20230706T131359_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.078536839856, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-06T19:02:57.000000Z", + "view:sun_elevation": 48.062575271954, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.775833, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f0d5c701eb512ba3e74eaa88ab5497c7", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.108234, + "s2:thin_cirrus_percentage": 0.013466, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 29.951763, + "s2:unclassified_percentage": 0.023247, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.050103, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.006617, + "s2:reflectance_conversion_factor": 0.967393343443057, + "s2:medium_proba_clouds_percentage": 0.022508, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WPS_20230706_1_L2A", + "bbox": [ + -24.911759259415437, + 64.23181715981652, + -22.571643586550366, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -22.672269607561457, + 64.23181715981652 + ], + [ + -22.872391559457665, + 64.26736032870907 + ], + [ + -23.806540041345507, + 64.42190317806678 + ], + [ + -24.77339891564723, + 64.56526276827047 + ], + [ + -24.911759259415437, + 64.58080197981874 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-06T22:43:23.201Z", + "updated": "2023-07-06T22:43:23.201Z", + "datetime": "2023-07-06T13:14:02.070000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230706T173751_A041977_T26WPS_N05.09", + "eo:cloud_cover": 4.866856, + "s2:datatake_id": "GS2A_20230706T131301_041977_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230706T131301_N0509_R081_T26WPS_20230706T173751.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230706T173751_S20230706T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.078536839856, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-06T17:37:51.000000Z", + "view:sun_elevation": 48.0625752719539, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/7/S2A_26WPS_20230706_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 85.808104, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/0cc9adcb4576954b7999eec9f6691474", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.209058, + "s2:vegetation_percentage": 5.981826, + "s2:thin_cirrus_percentage": 0.444409, + "s2:cloud_shadow_percentage": 0.53844, + "s2:nodata_pixel_percentage": 51.709396, + "s2:unclassified_percentage": 0.380629, + "s2:dark_features_percentage": 0.107112, + "s2:not_vegetated_percentage": 2.107973, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 2.557486, + "s2:reflectance_conversion_factor": 0.967393343443057, + "s2:medium_proba_clouds_percentage": 1.864961, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230706_0_L2A", + "bbox": [ + -18.88713593998502, + 64.8979653568942, + -18.874678674967665, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.874678674967665, + 64.90897273594983 + ], + [ + -18.88713593998502, + 64.8979653568942 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-07-06T22:30:22.652Z", + "updated": "2023-07-06T22:30:22.652Z", + "datetime": "2023-07-06T13:13:43.420000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230706T173751_A041977_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230706T131301_041977_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230706T131301_N0509_R081_T27WXM_20230706T173751.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230706T173751_S20230706T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.288117220606, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-07-06T17:37:51.000000Z", + "view:sun_elevation": 48.2780092308026, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/7/S2A_27WXM_20230706_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ad993d76d28daf57885380a05052dbbe", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.995416, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.967393343443057, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230626_0_L2A", + "bbox": [ + -18.887479198910558, + 64.89360050477532, + -18.869622989657284, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.869622989657284, + 64.90890050842539 + ], + [ + -18.887479198910558, + 64.89360050477532 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-26T20:40:20.560Z", + "updated": "2023-06-26T20:40:20.560Z", + "datetime": "2023-06-26T13:13:41.768000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230626T173756_A041834_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230626T131301_041834_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230626T131301_N0509_R081_T27WXM_20230626T173756.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230626T173756_S20230626T131259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.938211580934, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-06-26T17:37:56.000000Z", + "view:sun_elevation": 48.9568433292558, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/6/S2A_27WXM_20230626_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5a07803fc7bd05dde84da05dce8feddc", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.991983, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.968107331168135, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WNT_20230621_0_L2A", + "bbox": [ + -25.676227797993015, + 64.81839788328173, + -24.599305506964253, + 65.80652610199893 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.855660689597475, + 65.80652610199893 + ], + [ + -24.599305506964253, + 65.80271861196661 + ], + [ + -24.68732176995665, + 64.81839788328173 + ], + [ + -25.676227797993015, + 64.83049855119503 + ], + [ + -24.855660689597475, + 65.80652610199893 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-21T18:26:35.374Z", + "updated": "2023-06-21T18:26:35.374Z", + "datetime": "2023-06-21T13:13:55.532000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230621T151954_A032854_T26WNT_N05.09", + "eo:cloud_cover": 0.608347, + "s2:datatake_id": "GS2B_20230621T131259_032854_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230621T131259_N0509_R081_T26WNT_20230621T151954.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230621T151954_S20230621T131259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.331965415809, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-06-21T15:19:54.000000Z", + "view:sun_elevation": 47.8103066819346, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NT/2023/6/S2B_26WNT_20230621_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.38972, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5862dae37fd23230699c0f7e20297ea9", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.001932, + "s2:thin_cirrus_percentage": 0.192763, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 73.211211, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.020287, + "s2:reflectance_conversion_factor": 0.968811758101908, + "s2:medium_proba_clouds_percentage": 0.395298, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WDT_20230614_0_L2A", + "bbox": [ + -15.60726276914075, + 64.83515198125797, + -14.790026875898425, + 65.81362808888959 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -14.796417215433365, + 64.83625266477068 + ], + [ + -15.60726276914075, + 64.83515198125797 + ], + [ + -15.11262499656209, + 65.43379678391162 + ], + [ + -14.790026875898425, + 65.81362808888959 + ], + [ + -14.796417215433365, + 64.83625266477068 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-14T21:33:30.807Z", + "updated": "2023-06-14T21:33:30.807Z", + "datetime": "2023-06-14T12:33:40.348000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230614T183758_A041662_T28WDT_N05.09", + "eo:cloud_cover": 0.095836, + "s2:datatake_id": "GS2A_20230614T123311_041662_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230614T123311_N0509_R052_T28WDT_20230614T183758.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230614T183758_S20230614T123314_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.583262764134, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-06-14T18:37:58.000000Z", + "view:sun_elevation": 47.6487816568414, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/6/S2A_28WDT_20230614_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 2.650242, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/78f27eef8d1f8304ebceff4239fe0c17", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 5.398224, + "s2:vegetation_percentage": 22.063495, + "s2:thin_cirrus_percentage": 0.000226, + "s2:cloud_shadow_percentage": 0.376085, + "s2:nodata_pixel_percentage": 82.402658, + "s2:unclassified_percentage": 2.728072, + "s2:dark_features_percentage": 1.317532, + "s2:not_vegetated_percentage": 65.370518, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0487, + "s2:high_proba_clouds_percentage": 0.025378, + "s2:reflectance_conversion_factor": 0.970182869334554, + "s2:medium_proba_clouds_percentage": 0.070232, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WET_20230614_0_L2A", + "bbox": [ + -15.000411688223862, + 64.81839788328173, + -12.599305506964235, + 65.82139065607261 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -14.783678008138113, + 65.82139065607261 + ], + [ + -12.599305506964235, + 65.80271861196661 + ], + [ + -12.68732176995663, + 64.81839788328173 + ], + [ + -15.000400464638181, + 64.83639202908054 + ], + [ + -15.000411688223862, + 65.56888825039931 + ], + [ + -14.783678008138113, + 65.82139065607261 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-14T21:39:42.200Z", + "updated": "2023-06-14T21:39:42.200Z", + "datetime": "2023-06-14T12:33:34.361000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WET", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230614T183758_A041662_T28WET_N05.09", + "eo:cloud_cover": 4.876885, + "s2:datatake_id": "GS2A_20230614T123311_041662_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230614T123311_N0509_R052_T28WET_20230614T183758.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230614T183758_S20230614T123314_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ET", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.48296428339, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-06-14T18:37:58.000000Z", + "view:sun_elevation": 47.7888036920184, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/ET/2023/6/S2A_28WET_20230614_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 49.303347, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a0e0ff905b6ce732bf584051aae936d4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 7.041023, + "s2:vegetation_percentage": 19.680625, + "s2:thin_cirrus_percentage": 0.354364, + "s2:cloud_shadow_percentage": 0.011671, + "s2:nodata_pixel_percentage": 1.129807, + "s2:unclassified_percentage": 0.564203, + "s2:dark_features_percentage": 2.093587, + "s2:not_vegetated_percentage": 16.428657, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0059, + "s2:high_proba_clouds_percentage": 1.233165, + "s2:reflectance_conversion_factor": 0.970182869334554, + "s2:medium_proba_clouds_percentage": 3.289356, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VCR_20230613_0_L2A", + "bbox": [ + -19.08663529333112, + 62.98751173146269, + -17.312460907121068, + 64.00873866735982 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.08663529333112, + 63.96959674829309 + ], + [ + -17.312460907121068, + 64.00873866735982 + ], + [ + -18.30769890037551, + 63.00451235187692 + ], + [ + -18.948599281415866, + 62.98751173146269 + ], + [ + -19.08663529333112, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-13T23:58:57.491Z", + "updated": "2023-06-13T23:58:57.491Z", + "datetime": "2023-06-13T13:04:05.389000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230613T190705_A041648_T28VCR_N05.09", + "eo:cloud_cover": 2.662409, + "s2:datatake_id": "GS2A_20230613T130301_041648_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230613T130301_N0509_R038_T28VCR_20230613T190705.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230613T190705_S20230613T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.305797476498, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-06-13T19:07:05.000000Z", + "view:sun_elevation": 49.6876101604009, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/6/S2A_28VCR_20230613_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 37.723607, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ec931f2edfbe42dbf2f5b63a3e702fe4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 3.74185, + "s2:vegetation_percentage": 5.519735, + "s2:thin_cirrus_percentage": 2.40879, + "s2:cloud_shadow_percentage": 0.127969, + "s2:nodata_pixel_percentage": 45.475668, + "s2:unclassified_percentage": 17.893317, + "s2:dark_features_percentage": 1.490092, + "s2:not_vegetated_percentage": 30.84102, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.02, + "s2:high_proba_clouds_percentage": 0.075656, + "s2:reflectance_conversion_factor": 0.970408470231462, + "s2:medium_proba_clouds_percentage": 0.177964, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27VXL_20230613_0_L2A", + "bbox": [ + -19.02356504592068, + 63.017338869600934, + -17.340687411297445, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.95429938185454, + 64.01274197384028 + ], + [ + -17.340687411297445, + 63.98101764075567 + ], + [ + -18.295399503632613, + 63.017338869600934 + ], + [ + -19.02356504592068, + 63.02884996248363 + ], + [ + -18.95429938185454, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-13T23:57:11.054Z", + "updated": "2023-06-13T23:57:11.054Z", + "datetime": "2023-06-13T13:04:05.382000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230613T190705_A041648_T27VXL_N05.09", + "eo:cloud_cover": 2.670998, + "s2:datatake_id": "GS2A_20230613T130301_041648_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230613T130301_N0509_R038_T27VXL_20230613T190705.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230613T190705_S20230613T130302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.345341626355, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-06-13T19:07:05.000000Z", + "view:sun_elevation": 49.6924118309857, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/6/S2A_27VXL_20230613_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 38.28111, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a78dbf812f61969b68fe718284c6af78", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 2.004622, + "s2:vegetation_percentage": 5.584352, + "s2:thin_cirrus_percentage": 2.456796, + "s2:cloud_shadow_percentage": 0.167133, + "s2:nodata_pixel_percentage": 47.097889, + "s2:unclassified_percentage": 18.365388, + "s2:dark_features_percentage": 1.542602, + "s2:not_vegetated_percentage": 31.383792, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.02, + "s2:high_proba_clouds_percentage": 0.037812, + "s2:reflectance_conversion_factor": 0.970408470231462, + "s2:medium_proba_clouds_percentage": 0.17639, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VDR_20230604_0_L2A", + "bbox": [ + -16.975147358842065, + 63.02797008752798, + -14.800286063143037, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.255387378299663, + 64.02172226058613 + ], + [ + -14.800286063143037, + 64.02700769020842 + ], + [ + -14.80705954909264, + 63.041619520644396 + ], + [ + -16.975147358842065, + 63.02797008752798 + ], + [ + -16.9746229395037, + 63.05369746916554 + ], + [ + -16.255387378299663, + 64.02172226058613 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-04T23:27:55.606Z", + "updated": "2023-06-04T23:27:55.606Z", + "datetime": "2023-06-04T12:34:07.268000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VDR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230604T184354_A041519_T28VDR_N05.09", + "eo:cloud_cover": 0.004817, + "s2:datatake_id": "GS2A_20230604T123311_041519_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230604T123311_N0509_R052_T28VDR_20230604T184354.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230604T184354_S20230604T123310_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.248360932013, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-06-04T18:43:54.000000Z", + "view:sun_elevation": 48.6419817791504, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/DR/2023/6/S2A_28VDR_20230604_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.994975, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/56f362e1131ca5e255a3dd7572046ca4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000084, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 17.202471, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.00012, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.014, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.972868602180185, + "s2:medium_proba_clouds_percentage": 0.004817, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230604_0_L2A", + "bbox": [ + -15.000388828639831, + 63.02512387396203, + -12.754449695194982, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -12.754449695194982, + 64.00978893785071 + ], + [ + -12.83053618206236, + 63.02512387396203 + ], + [ + -15.00037564104947, + 63.04175097109076 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-06-04T23:28:14.317Z", + "updated": "2023-06-04T23:28:14.317Z", + "datetime": "2023-06-04T12:34:02.176000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230604T184354_A041519_T28VER_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230604T123311_041519_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230604T123311_N0509_R052_T28VER_20230604T184354.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230604T184354_S20230604T123310_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.032567500182, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-06-04T18:43:54.000000Z", + "view:sun_elevation": 48.7724949565298, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/6/S2A_28VER_20230604_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5804ac90dd5a0378afc8973489ec3c19", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.972868602180185, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXN_20230531_0_L2A", + "bbox": [ + -18.89313457574394, + 64.77075092227982, + -16.418530102243363, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.81293549288732, + 65.80592141721391 + ], + [ + -16.418530102243363, + 65.75287787308291 + ], + [ + -16.58600870874393, + 64.77075092227982 + ], + [ + -18.89313457574394, + 64.82145944293943 + ], + [ + -18.81293549288732, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-31T22:43:27.978Z", + "updated": "2023-05-31T22:43:27.978Z", + "datetime": "2023-05-31T12:53:40.012000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230531T190457_A041462_T27WXN_N05.09", + "eo:cloud_cover": 1.339345, + "s2:datatake_id": "GS2A_20230531T125301_041462_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230531T125301_N0509_R138_T27WXN_20230531T190457.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230531T190457_S20230531T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.033825420526, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-31T19:04:57.000000Z", + "view:sun_elevation": 46.5647769627074, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230531_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 3.155869, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2d4e51988a64e33f50692b42a483ecfa", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 31.731877, + "s2:vegetation_percentage": 6.209289, + "s2:thin_cirrus_percentage": 0.215062, + "s2:cloud_shadow_percentage": 0.122777, + "s2:nodata_pixel_percentage": 3e-6, + "s2:unclassified_percentage": 6.381448, + "s2:dark_features_percentage": 3.340321, + "s2:not_vegetated_percentage": 47.719073, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.175318, + "s2:reflectance_conversion_factor": 0.974166594340934, + "s2:medium_proba_clouds_percentage": 0.948965, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDT_20230531_0_L2A", + "bbox": [ + -17.187894843472776, + 64.82144809642227, + -14.786472389258659, + 65.82139457717805 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.187894843472776, + 65.80590954715973 + ], + [ + -14.786472389258659, + 65.82139457717805 + ], + [ + -14.794309519428289, + 64.83624976412734 + ], + [ + -17.10766536839331, + 64.82144809642227 + ], + [ + -17.187894843472776, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-31T22:39:55.926Z", + "updated": "2023-05-31T22:39:55.926Z", + "datetime": "2023-05-31T12:53:34.936000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230531T190457_A041462_T28WDT_N05.09", + "eo:cloud_cover": 0.001987, + "s2:datatake_id": "GS2A_20230531T125301_041462_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230531T125301_N0509_R138_T28WDT_20230531T190457.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230531T190457_S20230531T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.315415621759, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-31T19:04:57.000000Z", + "view:sun_elevation": 46.5783688560939, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/5/S2A_28WDT_20230531_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 3.075133, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ad86bc37e6d01e90610a42a019f47570", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 8.633432, + "s2:vegetation_percentage": 2.963656, + "s2:thin_cirrus_percentage": 0.000053, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 14.751372, + "s2:dark_features_percentage": 4.615927, + "s2:not_vegetated_percentage": 65.958494, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0091, + "s2:high_proba_clouds_percentage": 0.000232, + "s2:reflectance_conversion_factor": 0.974166594340934, + "s2:medium_proba_clouds_percentage": 0.001702, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WWP_20230531_0_L2A", + "bbox": [ + -19.90007797020923, + 65.71506827539704, + -18.512428558908166, + 66.70647324370671 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.024861339594356, + 66.70647324370671 + ], + [ + -18.512428558908166, + 66.69921264081668 + ], + [ + -18.60744333590733, + 65.71506827539704 + ], + [ + -19.90007797020923, + 65.72985593985527 + ], + [ + -19.78844266942658, + 65.85561143441915 + ], + [ + -19.769234083797233, + 65.8813600778251 + ], + [ + -19.024861339594356, + 66.70647324370671 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-31T22:35:22.309Z", + "updated": "2023-05-31T22:35:22.309Z", + "datetime": "2023-05-31T12:53:30.146000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WWP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230531T190457_A041462_T27WWP_N05.09", + "eo:cloud_cover": 0.017842, + "s2:datatake_id": "GS2A_20230531T125301_041462_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230531T125301_N0509_R138_T27WWP_20230531T190457.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230531T190457_S20230531T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.276121570815, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-31T19:04:57.000000Z", + "view:sun_elevation": 45.544005545358, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/WP/2023/5/S2A_27WWP_20230531_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 59.789109, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/9aa64840188aea8d985a3d1b6267eaed", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 17.596126, + "s2:vegetation_percentage": 6.788154, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0.01848, + "s2:nodata_pixel_percentage": 62.60336, + "s2:unclassified_percentage": 0.167291, + "s2:dark_features_percentage": 2.208566, + "s2:not_vegetated_percentage": 13.414429, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0309, + "s2:high_proba_clouds_percentage": 0.000426, + "s2:reflectance_conversion_factor": 0.974166594340934, + "s2:medium_proba_clouds_percentage": 0.017416, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WET_20230531_0_L2A", + "bbox": [ + -15.00041572310817, + 64.83387853762423, + -12.81013776228843, + 65.82154341411521 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.00041572310817, + 65.82154341411521 + ], + [ + -12.81013776228843, + 65.80588140430048 + ], + [ + -13.633636692103702, + 65.08994743811543 + ], + [ + -13.891680251781816, + 64.85952576180252 + ], + [ + -13.916474611789155, + 64.83387853762423 + ], + [ + -15.000400477972438, + 64.83728933928884 + ], + [ + -15.00041572310817, + 65.82154341411521 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-31T22:43:53.418Z", + "updated": "2023-05-31T22:43:53.418Z", + "datetime": "2023-05-31T12:53:28.561000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WET", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230531T190457_A041462_T28WET_N05.09", + "eo:cloud_cover": 0.37101, + "s2:datatake_id": "GS2A_20230531T125301_041462_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230531T125301_N0509_R138_T28WET_20230531T190457.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230531T190457_S20230531T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ET", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.183124836728, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-31T19:04:57.000000Z", + "view:sun_elevation": 46.599236505459, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/ET/2023/5/S2A_28WET_20230531_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 34.503871, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f82e9a7bfb3ae58d6e1bae62a65e6352", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 18.722165, + "s2:vegetation_percentage": 11.699636, + "s2:thin_cirrus_percentage": 0.003239, + "s2:cloud_shadow_percentage": 0.255763, + "s2:nodata_pixel_percentage": 30.866501, + "s2:unclassified_percentage": 0.945649, + "s2:dark_features_percentage": 3.178908, + "s2:not_vegetated_percentage": 30.322999, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0271, + "s2:high_proba_clouds_percentage": 0.174436, + "s2:reflectance_conversion_factor": 0.974166594340934, + "s2:medium_proba_clouds_percentage": 0.193335, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXP_20230531_0_L2A", + "bbox": [ + -18.82035063178234, + 65.66542962794706, + -16.253275154768794, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.733772814861197, + 66.7025538338594 + ], + [ + -16.253275154768794, + 66.64722308988246 + ], + [ + -16.434012525314987, + 65.66542962794706 + ], + [ + -18.82035063178234, + 65.71825806747697 + ], + [ + -18.733772814861197, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-31T22:36:50.455Z", + "updated": "2023-05-31T22:36:50.455Z", + "datetime": "2023-05-31T12:53:25.718000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXP", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230531T190457_A041462_T27WXP_N05.09", + "eo:cloud_cover": 0.002236, + "s2:datatake_id": "GS2A_20230531T125301_041462_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230531T125301_N0509_R138_T27WXP_20230531T190457.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230531T190457_S20230531T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XP", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.190106666401, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-31T19:04:57.000000Z", + "view:sun_elevation": 45.6742142348907, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XP/2023/5/S2A_27WXP_20230531_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 57.482809, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/0789fb798d3d1d5a6628ecd7b3ec3468", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 10.380769, + "s2:vegetation_percentage": 12.676673, + "s2:thin_cirrus_percentage": 0.000816, + "s2:cloud_shadow_percentage": 3e-6, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 1.807068, + "s2:dark_features_percentage": 1.295487, + "s2:not_vegetated_percentage": 16.354953, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.00001, + "s2:reflectance_conversion_factor": 0.974166594340934, + "s2:medium_proba_clouds_percentage": 0.00141, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WDU_20230531_0_L2A", + "bbox": [ + -17.26708751458163, + 65.71824624565738, + -14.778735723758237, + 66.71869608061229 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -14.778735723758237, + 66.71869608061229 + ], + [ + -14.787197037992712, + 65.73366831377798 + ], + [ + -17.18047689480826, + 65.71824624565738 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-31T22:48:34.646Z", + "updated": "2023-05-31T22:48:34.646Z", + "datetime": "2023-05-31T12:53:21.327000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230531T190457_A041462_T28WDU_N05.09", + "eo:cloud_cover": 0.149041, + "s2:datatake_id": "GS2A_20230531T125301_041462_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230531T125301_N0509_R138_T28WDU_20230531T190457.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230531T190457_S20230531T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.23646966885, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-31T19:04:57.000000Z", + "view:sun_elevation": 45.6803265582058, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230531_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 45.65016, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2cc96ecf75ffa36b6f05c7061294a9a5", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 2.991696, + "s2:vegetation_percentage": 13.551265, + "s2:thin_cirrus_percentage": 0.001165, + "s2:cloud_shadow_percentage": 0.106118, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 4.154854, + "s2:dark_features_percentage": 1.270155, + "s2:not_vegetated_percentage": 32.126713, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.053454, + "s2:reflectance_conversion_factor": 0.974166594340934, + "s2:medium_proba_clouds_percentage": 0.094422, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXQ_20230531_0_L2A", + "bbox": [ + -18.741837109485385, + 66.55933692138225, + -16.16935053937457, + 67.39673694881755 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.27235198079304, + 66.55933692138225 + ], + [ + -18.741837109485385, + 66.61436755664185 + ], + [ + -18.701342577302707, + 67.0503645385394 + ], + [ + -18.365002081721226, + 67.39673694881755 + ], + [ + -17.733777689208654, + 67.31239708531689 + ], + [ + -17.256605665050888, + 67.24961953529595 + ], + [ + -17.252400786551103, + 67.2501317935231 + ], + [ + -16.396394019767268, + 67.12209568457679 + ], + [ + -16.16935053937457, + 67.08962611671626 + ], + [ + -16.27235198079304, + 66.55933692138225 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-31T22:36:36.483Z", + "updated": "2023-05-31T22:36:36.483Z", + "datetime": "2023-05-31T12:53:14.150000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXQ", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230531T190457_A041462_T27WXQ_N05.09", + "eo:cloud_cover": 0.837197, + "s2:datatake_id": "GS2A_20230531T125301_041462_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230531T125301_N0509_R138_T27WXQ_20230531T190457.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230531T190457_S20230531T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XQ", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 175.352455545104, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-31T19:04:57.000000Z", + "view:sun_elevation": 44.7843675595374, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XQ/2023/5/S2A_27WXQ_20230531_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.162805, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2f2b0a135898e27c15809eefb72b4d0d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.681787, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 33.323178, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0103, + "s2:high_proba_clouds_percentage": 0.019566, + "s2:reflectance_conversion_factor": 0.974166594340934, + "s2:medium_proba_clouds_percentage": 0.135845, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230527_0_L2A", + "bbox": [ + -18.886754149425037, + 64.90281832212521, + -18.87974516997032, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.87974516997032, + 64.90904494543513 + ], + [ + -18.886754149425037, + 64.90281832212521 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-27T21:42:00.122Z", + "updated": "2023-05-27T21:42:00.122Z", + "datetime": "2023-05-27T13:13:41.806000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230527T190759_A041405_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230527T131301_041405_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230527T131301_N0509_R081_T27WXM_20230527T190759.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230527T190759_S20230527T131335_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 181.885170617434, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-27T19:07:59.000000Z", + "view:sun_elevation": 46.9030726649364, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230527_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/6d93f5a9588186ae2f6abc447a8332f9", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.997985, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.975586422787773, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXN_20230527_0_L2A", + "bbox": [ + -18.88675232605552, + 64.90284149441877, + -18.68414587938, + 65.12494771121702 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88675232605552, + 64.90284149441877 + ], + [ + -18.869113197995294, + 65.12494771121702 + ], + [ + -18.68414587938, + 65.08355301749073 + ], + [ + -18.88675232605552, + 64.90284149441877 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-27T21:35:39.676Z", + "updated": "2023-05-27T21:35:39.676Z", + "datetime": "2023-05-27T13:13:39.636000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230527T190759_A041405_T27WXN_N05.09", + "eo:cloud_cover": 2.03795, + "s2:datatake_id": "GS2A_20230527T131301_041405_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230527T131301_N0509_R081_T27WXN_20230527T190759.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230527T190759_S20230527T131335_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 181.922508948067, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-27T19:07:59.000000Z", + "view:sun_elevation": 46.0068036178726, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/5/S2A_27WXN_20230527_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 2.57565, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/acc22cbfd836ecefe543c9ec30640c52", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 95.167685, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.673959, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.050367, + "s2:unclassified_percentage": 0.002795, + "s2:dark_features_percentage": 0.020963, + "s2:not_vegetated_percentage": 0.194956, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.617709, + "s2:reflectance_conversion_factor": 0.975586422787773, + "s2:medium_proba_clouds_percentage": 0.746282, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WDU_20230527_0_L2A", + "bbox": [ + -17.26708751458163, + 66.31453251134172, + -16.737058597690716, + 66.70927834681122 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -16.737058597690716, + 66.70927834681122 + ], + [ + -17.232056372938196, + 66.31453251134172 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-27T21:43:26.591Z", + "updated": "2023-05-27T21:43:26.591Z", + "datetime": "2023-05-27T13:13:11.547000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230527T172454_A041405_T28WDU_N05.09", + "eo:cloud_cover": 0.004049, + "s2:datatake_id": "GS2A_20230527T131301_041405_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230527T131301_N0509_R081_T28WDU_20230527T172454.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230527T172454_S20230527T131259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 183.995843765421, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-27T17:24:54.000000Z", + "view:sun_elevation": 45.0434296199295, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2A_28WDU_20230527_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.995875, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/af70d491f92606046d5db2ba407dc1da", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000078, + "s2:thin_cirrus_percentage": 0.003426, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.738506, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.975586422787773, + "s2:medium_proba_clouds_percentage": 0.000623, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WDU_20230522_0_L2A", + "bbox": [ + -17.26708751458163, + 66.3182945636355, + -16.741137477833135, + 66.70923332212236 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -16.741137477833135, + 66.70923332212236 + ], + [ + -17.232390330841508, + 66.3182945636355 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-22T20:31:50.833Z", + "updated": "2023-05-22T20:31:50.833Z", + "datetime": "2023-05-22T13:13:12.912000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230522T152140_A032425_T28WDU_N05.09", + "eo:cloud_cover": 2.414841, + "s2:datatake_id": "GS2B_20230522T131259_032425_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230522T131259_N0509_R081_T28WDU_20230522T152140.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230522T152140_S20230522T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 184.123992286351, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-22T15:21:40.000000Z", + "view:sun_elevation": 44.1313641246564, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/5/S2B_28WDU_20230522_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 97.58516, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/4458a93b77422e4844ee82b1e4314972", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.474866, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.814854, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 1.420873, + "s2:reflectance_conversion_factor": 0.977530606509328, + "s2:medium_proba_clouds_percentage": 0.519102, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230517_0_L2A", + "bbox": [ + -18.887479198910558, + 64.89360050477532, + -18.869622989657284, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.869622989657284, + 64.90890050842539 + ], + [ + -18.887479198910558, + 64.89360050477532 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-17T21:39:01.528Z", + "updated": "2023-05-17T21:39:01.528Z", + "datetime": "2023-05-17T13:13:39.769000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230517T191451_A041262_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230517T131301_041262_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230517T131301_N0509_R081_T27WXM_20230517T191451.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230517T191451_S20230517T131315_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.085067028599, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-17T19:14:51.000000Z", + "view:sun_elevation": 44.9368897768159, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2A_27WXM_20230517_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e4f63f9c15b3e6e817d7e8515ca8e9c4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.992079, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.979644370071296, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WEU_20230516_0_L2A", + "bbox": [ + -15.000430785994116, + 65.71958797190838, + -12.53818848923219, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000430785994116, + 66.71885135769092 + ], + [ + -13.865586382702991, + 66.71476924716653 + ], + [ + -12.53818848923219, + 66.44063644195685 + ], + [ + -12.580645386416064, + 66.0012485497738 + ], + [ + -12.915544123838336, + 65.71958797190838 + ], + [ + -15.000414312255502, + 65.7338165451806 + ], + [ + -15.000430785994116, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-16T20:21:06.831Z", + "updated": "2023-05-16T20:21:06.831Z", + "datetime": "2023-05-16T12:53:16.043000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230516T150208_A032339_T28WEU_N05.09", + "eo:cloud_cover": 4.408107, + "s2:datatake_id": "GS2B_20230516T125309_032339_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230516T125309_N0509_R138_T28WEU_20230516T150208.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230516T150208_S20230516T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.579753394129, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-16T15:02:08.000000Z", + "view:sun_elevation": 42.8920544827816, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/5/S2B_28WEU_20230516_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 90.537423, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/89b58056f97faf37c33d1beb165630f0", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.005893, + "s2:vegetation_percentage": 0.589297, + "s2:thin_cirrus_percentage": 4.205908, + "s2:cloud_shadow_percentage": 0.308977, + "s2:nodata_pixel_percentage": 8.880325, + "s2:unclassified_percentage": 0.008928, + "s2:dark_features_percentage": 0.000717, + "s2:not_vegetated_percentage": 3.140663, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0192, + "s2:high_proba_clouds_percentage": 0.042456, + "s2:reflectance_conversion_factor": 0.980092397987045, + "s2:medium_proba_clouds_percentage": 0.159743, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WNU_20230512_0_L2A", + "bbox": [ + -24.935008187914317, + 65.71510240019636, + -24.571403285251396, + 66.13510723969773 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.609620479359858, + 65.71510240019636 + ], + [ + -24.935008187914317, + 65.71985257056485 + ], + [ + -24.571403285251396, + 66.13510723969773 + ], + [ + -24.609620479359858, + 65.71510240019636 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-12T18:55:38.740Z", + "updated": "2023-05-12T18:55:38.740Z", + "datetime": "2023-05-12T13:13:43.807000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230512T152143_A032282_T26WNU_N05.09", + "eo:cloud_cover": 1.348797, + "s2:datatake_id": "GS2B_20230512T131259_032282_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230512T131259_N0509_R081_T26WNU_20230512T152143.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230512T152143_S20230512T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.769271554678, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-12T15:21:43.000000Z", + "view:sun_elevation": 41.7456028259952, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/5/S2B_26WNU_20230512_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 98.650652, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/206468ec2f87d1b9a171f2c0c8fd47be", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000553, + "s2:thin_cirrus_percentage": 1.348797, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.999717, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.981913668231774, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20230512_0_L2A", + "bbox": [ + -18.88689259082999, + 64.90105880952652, + -18.87724358132885, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.87724358132885, + 64.90900931348413 + ], + [ + -18.88689259082999, + 64.90105880952652 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-05-12T18:57:56.764Z", + "updated": "2023-05-12T18:57:56.764Z", + "datetime": "2023-05-12T13:13:41.092000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230512T152143_A032282_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230512T131259_032282_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230512T131259_N0509_R081_T27WXM_20230512T152143.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230512T152143_S20230512T131300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.07740741041, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-05-12T15:21:43.000000Z", + "view:sun_elevation": 43.7452467751384, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/5/S2B_27WXM_20230512_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/3866b887ffc2e4324b5a39df781e2d1b", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 100, + "s2:nodata_pixel_percentage": 99.997145, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.981913668231774, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WVM_20230430_0_L2A", + "bbox": [ + -23.114545771039616, + 63.925397223416525, + -21.36692781723031, + 64.92367785268631 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.114545771039616, + 64.90912610608407 + ], + [ + -21.36692781723031, + 64.92367785268631 + ], + [ + -22.420152328635414, + 63.933336747999874 + ], + [ + -23.04010598453134, + 63.925397223416525 + ], + [ + -23.114545771039616, + 64.90912610608407 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-30T22:17:27.938Z", + "updated": "2023-04-30T22:17:27.938Z", + "datetime": "2023-04-30T13:23:52.913000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230430T175659_A041019_T27WVM_N05.09", + "eo:cloud_cover": 2.212463, + "s2:datatake_id": "GS2A_20230430T132231_041019_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230430T132231_N0509_R124_T27WVM_20230430T175659.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230430T175659_S20230430T132232_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.656591515186, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-30T17:56:59.000000Z", + "view:sun_elevation": 40.3701159617207, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VM/2023/4/S2A_27WVM_20230430_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 60.945606, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/0af85c9dea3cb8dccdeddb294c86bf36", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 2.050981, + "s2:vegetation_percentage": 2.522049, + "s2:thin_cirrus_percentage": 2.19976, + "s2:cloud_shadow_percentage": 0.041691, + "s2:nodata_pixel_percentage": 48.414648, + "s2:unclassified_percentage": 0.021894, + "s2:dark_features_percentage": 0.002592, + "s2:not_vegetated_percentage": 32.202724, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0185, + "s2:high_proba_clouds_percentage": 0.001126, + "s2:reflectance_conversion_factor": 0.987897173215445, + "s2:medium_proba_clouds_percentage": 0.011577, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPU_20230430_0_L2A", + "bbox": [ + -24.820350631782347, + 65.66542962794706, + -22.2532751547688, + 66.7025538338594 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.733772814861204, + 66.7025538338594 + ], + [ + -22.2532751547688, + 66.64722308988246 + ], + [ + -22.434012525314998, + 65.66542962794706 + ], + [ + -24.820350631782347, + 65.71825806747697 + ], + [ + -24.733772814861204, + 66.7025538338594 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-30T22:13:50.405Z", + "updated": "2023-04-30T22:13:50.405Z", + "datetime": "2023-04-30T13:23:30.875000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230430T175659_A041019_T26WPU_N05.09", + "eo:cloud_cover": 3.084489, + "s2:datatake_id": "GS2A_20230430T132231_041019_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230430T132231_N0509_R124_T26WPU_20230430T175659.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230430T175659_S20230430T132232_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.537846819381, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-30T17:56:59.000000Z", + "view:sun_elevation": 38.5935221095688, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PU/2023/4/S2A_26WPU_20230430_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 68.178374, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1fa1affbd1d03c3d3d63922eb3dd0b82", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 16.125265, + "s2:vegetation_percentage": 1.15273, + "s2:thin_cirrus_percentage": 2.768544, + "s2:cloud_shadow_percentage": 0.320954, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.062249, + "s2:dark_features_percentage": 0.596438, + "s2:not_vegetated_percentage": 10.479501, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.062827, + "s2:reflectance_conversion_factor": 0.987897173215445, + "s2:medium_proba_clouds_percentage": 0.253118, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPS_20230428_0_L2A", + "bbox": [ + -24.922752454958648, + 64.34567370973988, + -23.924886885819102, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.886256779754657, + 64.90913749766527 + ], + [ + -23.924886885819102, + 64.8923832412785 + ], + [ + -24.5122325058535, + 64.34567370973988 + ], + [ + -24.922752454958648, + 64.436494739039 + ], + [ + -24.886256779754657, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-28T20:56:02.713Z", + "updated": "2023-04-28T20:56:02.713Z", + "datetime": "2023-04-28T13:33:54.153000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230428T155814_A032082_T26WPS_N05.09", + "eo:cloud_cover": 0.277295, + "s2:datatake_id": "GS2B_20230428T132719_032082_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230428T132719_N0509_R024_T26WPS_20230428T155814.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230428T155814_S20230428T132719_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.415298363519, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-28T15:58:14.000000Z", + "view:sun_elevation": 39.7837391119784, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2B_26WPS_20230428_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 98.531508, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c7bda23ed2d7700c8f9312a6ce0c1da3", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.445099, + "s2:thin_cirrus_percentage": 0.272474, + "s2:cloud_shadow_percentage": 0.00425, + "s2:nodata_pixel_percentage": 83.761108, + "s2:unclassified_percentage": 0.000041, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.741804, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.01, + "s2:high_proba_clouds_percentage": 0.000511, + "s2:reflectance_conversion_factor": 0.988955338609217, + "s2:medium_proba_clouds_percentage": 0.004311, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WPT_20230428_0_L2A", + "bbox": [ + -24.89306448653168, + 64.80786527462858, + -22.92890830882543, + 65.80592141721391 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.81293549288733, + 65.80592141721391 + ], + [ + -22.92890830882543, + 65.76734883977919 + ], + [ + -24.016252453340844, + 64.80786527462858 + ], + [ + -24.89306448653168, + 64.82235615099076 + ], + [ + -24.81293549288733, + 65.80592141721391 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-28T20:58:34.005Z", + "updated": "2023-04-28T20:58:34.005Z", + "datetime": "2023-04-28T13:33:43.135000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WPT", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230428T155814_A032082_T26WPT_N05.09", + "eo:cloud_cover": 4.188546, + "s2:datatake_id": "GS2B_20230428T132719_032082_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230428T132719_N0509_R024_T26WPT_20230428T155814.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230428T155814_S20230428T132719_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.47282070812, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-28T15:58:14.000000Z", + "view:sun_elevation": 38.8875273472212, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PT/2023/4/S2B_26WPT_20230428_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 74.065387, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/208c02d980628dfa0f24dcccf8ff9623", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 4.977784, + "s2:vegetation_percentage": 1.380101, + "s2:thin_cirrus_percentage": 2.520452, + "s2:cloud_shadow_percentage": 0.560824, + "s2:nodata_pixel_percentage": 41.528574, + "s2:unclassified_percentage": 0.035947, + "s2:dark_features_percentage": 0.294518, + "s2:not_vegetated_percentage": 14.496896, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0299, + "s2:high_proba_clouds_percentage": 1.011329, + "s2:reflectance_conversion_factor": 0.988955338609217, + "s2:medium_proba_clouds_percentage": 0.656765, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26WNU_20230427_0_L2A", + "bbox": [ + -24.94088961795246, + 65.71510240018745, + -24.570524266047784, + 66.14432425746791 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -24.609620478790315, + 65.71510240018745 + ], + [ + -24.94088961795246, + 65.71993203476963 + ], + [ + -24.570524266047784, + 66.14432425746791 + ], + [ + -24.609620478790315, + 65.71510240018745 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-27T20:24:38.117Z", + "updated": "2023-04-27T20:24:38.117Z", + "datetime": "2023-04-27T13:13:41.004000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230427T173353_A040976_T26WNU_N05.09", + "eo:cloud_cover": 1.415214, + "s2:datatake_id": "GS2A_20230427T131301_040976_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230427T131301_N0509_R081_T26WNU_20230427T173353.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230427T173353_S20230427T131255_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.680915633857, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-27T17:33:53.000000Z", + "view:sun_elevation": 37.4395594990697, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/4/S2A_26WNU_20230427_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 98.584789, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/b3d5e4a22d7570932269bd354010c6fb", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.418893, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.8817, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0613, + "s2:high_proba_clouds_percentage": 0.917053, + "s2:reflectance_conversion_factor": 0.989496217146292, + "s2:medium_proba_clouds_percentage": 0.079267, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230427_0_L2A", + "bbox": [ + -18.88722206781852, + 64.89687031068432, + -18.87341543517544, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.87341543517544, + 64.9089547049171 + ], + [ + -18.88722206781852, + 64.89687031068432 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-27T20:27:01.329Z", + "updated": "2023-04-27T20:27:01.329Z", + "datetime": "2023-04-27T13:13:38.288000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230427T173353_A040976_T27WXM_N05.09", + "eo:cloud_cover": 1.667696, + "s2:datatake_id": "GS2A_20230427T131301_040976_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230427T131301_N0509_R081_T27WXM_20230427T173353.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230427T173353_S20230427T131255_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 181.55677235313, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-27T17:33:53.000000Z", + "view:sun_elevation": 39.4562847724342, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230427_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/2ba0c7c84fde982a183f0815ee899513", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 98.332304, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 1.667696, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.994624, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.989496217146292, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXQ_20230423_0_L2A", + "bbox": [ + -16.639003021240494, + 66.55926906893346, + -16.18485951022964, + 67.00378119643797 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7500000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7500000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7500000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.18485951022964, + 66.99780412338787 + ], + [ + -16.270106902659847, + 66.55926906893346 + ], + [ + -16.639003021240494, + 66.56998220967849 + ], + [ + -16.23217860589906, + 67.00378119643797 + ], + [ + -16.18485951022964, + 66.99780412338787 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-23T18:16:19.475Z", + "updated": "2023-04-23T18:16:19.475Z", + "datetime": "2023-04-23T12:43:15.068000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXQ", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230423T133656_A032010_T27WXQ_N05.09", + "eo:cloud_cover": 4.864239, + "s2:datatake_id": "GS2B_20230423T124309_032010_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230423T124309_N0509_R095_T27WXQ_20230423T133656.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230423T133656_S20230423T124305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XQ", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.544144671095, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-23T13:36:56.000000Z", + "view:sun_elevation": 35.3092932566429, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XQ/2023/4/S2B_27WXQ_20230423_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 95.134813, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/95fb407f05bf091f35f157ec898732ea", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000948, + "s2:thin_cirrus_percentage": 4.853466, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 96.15016, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.991683624617302, + "s2:medium_proba_clouds_percentage": 0.010773, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28WDT_20230420_0_L2A", + "bbox": [ + -15.610425898285344, + 64.83513902872747, + -14.792630793438887, + 65.81349303478959 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -14.796417241004159, + 64.83625266480568 + ], + [ + -15.610425898285344, + 64.83513902872747 + ], + [ + -15.346692667323596, + 65.16034508706589 + ], + [ + -15.119928406483469, + 65.42786775096396 + ], + [ + -14.792630793438887, + 65.81349303478959 + ], + [ + -14.796417241004159, + 64.83625266480568 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-20T20:10:55.039Z", + "updated": "2023-04-20T20:10:55.039Z", + "datetime": "2023-04-20T12:33:38.049000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDT", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230420T132340_A031967_T28WDT_N05.09", + "eo:cloud_cover": 0.113764, + "s2:datatake_id": "GS2B_20230420T123309_031967_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230420T123309_N0509_R052_T28WDT_20230420T132340.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230420T132340_S20230420T123310_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DT", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.146807189228, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-20T13:23:40.000000Z", + "view:sun_elevation": 35.9727815230285, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DT/2023/4/S2B_28WDT_20230420_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 1.681971, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1c68cdcf0f9adf0dcb9c3c3bfe9051d0", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 76.631975, + "s2:vegetation_percentage": 0.527338, + "s2:thin_cirrus_percentage": 0.001742, + "s2:cloud_shadow_percentage": 0.021621, + "s2:nodata_pixel_percentage": 82.291466, + "s2:unclassified_percentage": 0.030521, + "s2:dark_features_percentage": 0.107, + "s2:not_vegetated_percentage": 20.88581, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000112, + "s2:reflectance_conversion_factor": 0.993350711528883, + "s2:medium_proba_clouds_percentage": 0.111909, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WEU_20230420_0_L2A", + "bbox": [ + -14.861589253009043, + 65.71506827539704, + -12.55604887946766, + 66.48280176242639 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -12.55604887946766, + 66.25784277374468 + ], + [ + -12.607443335907321, + 65.71506827539704 + ], + [ + -14.861589253009043, + 65.73375383744627 + ], + [ + -14.196647016749557, + 66.48280176242639 + ], + [ + -13.561369536163427, + 66.39809477307236 + ], + [ + -13.127363908388192, + 66.34121630203933 + ], + [ + -13.118806314754558, + 66.34111311369884 + ], + [ + -12.55604887946766, + 66.25784277374468 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-20T20:04:32.966Z", + "updated": "2023-04-20T20:04:32.966Z", + "datetime": "2023-04-20T12:33:20.419000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230420T132340_A031967_T28WEU_N05.09", + "eo:cloud_cover": 0.341024, + "s2:datatake_id": "GS2B_20230420T123309_031967_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230420T123309_N0509_R052_T28WEU_20230420T132340.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230420T132340_S20230420T123310_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.770480951087, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-20T13:23:40.000000Z", + "view:sun_elevation": 35.1985865421892, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230420_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 97.975063, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/26e6ea874d459ee44b64b766cd90e53f", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.702108, + "s2:vegetation_percentage": 0.099398, + "s2:thin_cirrus_percentage": 0.339648, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 45.254639, + "s2:unclassified_percentage": 0.002521, + "s2:dark_features_percentage": 0.01046, + "s2:not_vegetated_percentage": 0.869426, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0119, + "s2:high_proba_clouds_percentage": 0.000012, + "s2:reflectance_conversion_factor": 0.993350711528883, + "s2:medium_proba_clouds_percentage": 0.001364, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WEU_20230419_0_L2A", + "bbox": [ + -15.000430785994116, + 66.08793220769404, + -14.354314923379292, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000430785994116, + 66.71885135769092 + ], + [ + -14.83914468389622, + 66.71876929361548 + ], + [ + -14.354314923379292, + 66.60979198597735 + ], + [ + -15.000420072945028, + 66.08793220769404 + ], + [ + -15.000430785994116, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-19T19:33:06.612Z", + "updated": "2023-04-19T19:33:06.612Z", + "datetime": "2023-04-19T13:03:07.780000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230419T151246_A031953_T28WEU_N05.09", + "eo:cloud_cover": 0.022654, + "s2:datatake_id": "GS2B_20230419T130259_031953_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230419T130259_N0509_R038_T28WEU_20230419T151246.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230419T151246_S20230419T130301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 182.67043411863, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-19T15:12:46.000000Z", + "view:sun_elevation": 34.954095042351, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/4/S2B_28WEU_20230419_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 88.96631, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e9d43b5757be43db20bd3d7ef3aa76a1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.431442, + "s2:vegetation_percentage": 2.241002, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0.06932, + "s2:nodata_pixel_percentage": 91.198039, + "s2:unclassified_percentage": 0.012062, + "s2:dark_features_percentage": 0.131817, + "s2:not_vegetated_percentage": 7.125394, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.003242, + "s2:reflectance_conversion_factor": 0.993898586077295, + "s2:medium_proba_clouds_percentage": 0.019413, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230417_0_L2A", + "bbox": [ + -18.886518759633354, + 64.90580940601119, + -18.882337412550037, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.882337412550037, + 64.90908182422957 + ], + [ + -18.886518759633354, + 64.90580940601119 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-17T21:41:57.820Z", + "updated": "2023-04-17T21:41:57.820Z", + "datetime": "2023-04-17T13:13:37.493000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230417T190506_A040833_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230417T131301_040833_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230417T131301_N0509_R081_T27WXM_20230417T190506.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230417T190506_S20230417T131331_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 180.917383510642, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-17T19:05:06.000000Z", + "view:sun_elevation": 36.1023649615513, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2A_27WXM_20230417_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/20c1047e75fb9f351c5f724a303331c1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 21.259843, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 78.740156, + "s2:nodata_pixel_percentage": 99.99916, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.995020183777024, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_26VPR_20230414_0_L2A", + "bbox": [ + -24.157303157121298, + 63.384646054004065, + -22.713777643413493, + 63.99282493420868 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.84305495563487, + 63.99282493420868 + ], + [ + -22.713777643413493, + 63.96382791885894 + ], + [ + -22.800504493760428, + 63.384646054004065 + ], + [ + -23.16304508033587, + 63.438655988724335 + ], + [ + -23.386624574821386, + 63.466748386526014 + ], + [ + -23.674605687845414, + 63.50524182462707 + ], + [ + -23.676900217366246, + 63.50696708948656 + ], + [ + -24.157303157121298, + 63.5691022769511 + ], + [ + -23.84305495563487, + 63.99282493420868 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-14T22:45:35.636Z", + "updated": "2023-04-14T22:45:35.636Z", + "datetime": "2023-04-14T13:04:12.563000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26VPR", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230414T190652_A040790_T26VPR_N05.09", + "eo:cloud_cover": 0.000292, + "s2:datatake_id": "GS2A_20230414T130301_040790_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230414T130301_N0509_R038_T26VPR_20230414T190652.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230414T190652_S20230414T130257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.404381667426, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-04-14T19:06:52.000000Z", + "view:sun_elevation": 35.6356220164979, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/V/PR/2023/4/S2A_26VPR_20230414_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.926645, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/21e0b158d6c00ce7b1b260912ccab032", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.003087, + "s2:thin_cirrus_percentage": 0.000146, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 70.446873, + "s2:unclassified_percentage": 0.000056, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.06992, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0176, + "s2:high_proba_clouds_percentage": 0.000011, + "s2:reflectance_conversion_factor": 0.996726600614558, + "s2:medium_proba_clouds_percentage": 0.000135, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VUL_20230414_0_L2A", + "bbox": [ + -24.159853032256642, + 63.38564334480602, + -22.804804532223525, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.83741752690481, + 63.99942588883158 + ], + [ + -22.845356096733013, + 64.01542581444056 + ], + [ + -22.804804532223525, + 63.38564334480602 + ], + [ + -23.1757637294944, + 63.44069985206759 + ], + [ + -23.353815666435764, + 63.46232029243425 + ], + [ + -24.159853032256642, + 63.569437732343886 + ], + [ + -23.83741752690481, + 63.99942588883158 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-14T22:48:04.636Z", + "updated": "2023-04-14T22:48:04.636Z", + "datetime": "2023-04-14T13:04:12.445000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VUL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230414T190652_A040790_T27VUL_N05.09", + "eo:cloud_cover": 0.00032, + "s2:datatake_id": "GS2A_20230414T130301_040790_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230414T130301_N0509_R038_T27VUL_20230414T190652.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230414T190652_S20230414T130257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "UL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.370892186836, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-04-14T19:06:52.000000Z", + "view:sun_elevation": 35.6293653808887, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/UL/2023/4/S2A_27VUL_20230414_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.999666, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/69e9ff32bb0b16455c41ea2760916cd0", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0.000011, + "s2:thin_cirrus_percentage": 0.000149, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 70.977497, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0185, + "s2:high_proba_clouds_percentage": 0.000011, + "s2:reflectance_conversion_factor": 0.996726600614558, + "s2:medium_proba_clouds_percentage": 0.00016, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VVL_20230414_0_L2A", + "bbox": [ + -23.046477379055293, + 63.055707673655725, + -20.800286063143044, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.046477379055293, + 64.01273102956839 + ], + [ + -20.800286063143044, + 64.02700769020842 + ], + [ + -20.806966351011766, + 63.055707673655725 + ], + [ + -20.920049438256925, + 63.07827767098044 + ], + [ + -21.33068890627962, + 63.15151897105608 + ], + [ + -21.845255957433153, + 63.23824966362317 + ], + [ + -22.236144228810375, + 63.30110007171875 + ], + [ + -23.003726468220066, + 63.41476414899383 + ], + [ + -23.046477379055293, + 64.01273102956839 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-14T22:53:52.139Z", + "updated": "2023-04-14T22:53:52.139Z", + "datetime": "2023-04-14T13:04:10.302000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VVL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230414T190652_A040790_T27VVL_N05.09", + "eo:cloud_cover": 2.837035, + "s2:datatake_id": "GS2A_20230414T130301_040790_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230414T130301_N0509_R038_T27VVL_20230414T190652.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230414T190652_S20230414T130257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 172.782922581294, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-04-14T19:06:52.000000Z", + "view:sun_elevation": 35.7327319652485, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/VL/2023/4/S2A_27VVL_20230414_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 80.338824, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e67e34c1b544b62f1e14a7c140d8f0c6", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.404884, + "s2:vegetation_percentage": 3.181478, + "s2:thin_cirrus_percentage": 0.467452, + "s2:cloud_shadow_percentage": 1.486981, + "s2:nodata_pixel_percentage": 20.595741, + "s2:unclassified_percentage": 0.174357, + "s2:dark_features_percentage": 0.003205, + "s2:not_vegetated_percentage": 11.57323, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 1.258438, + "s2:reflectance_conversion_factor": 0.996726600614558, + "s2:medium_proba_clouds_percentage": 1.111145, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_26WPS_20230414_0_L2A", + "bbox": [ + -23.90789152996958, + 63.875786719781686, + -22.571643586550366, + 64.87414121484339 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.1422734909872, + 64.87414121484339 + ], + [ + -22.571643586550366, + 64.85822796282541 + ], + [ + -22.727220069569885, + 63.875786719781686 + ], + [ + -23.90789152996958, + 63.9058553555664 + ], + [ + -23.1422734909872, + 64.87414121484339 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-14T22:54:59.588Z", + "updated": "2023-04-14T22:54:59.588Z", + "datetime": "2023-04-14T13:04:02.503000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-26WPS", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230414T190652_A040790_T26WPS_N05.09", + "eo:cloud_cover": 0.10638, + "s2:datatake_id": "GS2A_20230414T130301_040790_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230414T130301_N0509_R038_T26WPS_20230414T190652.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230414T190652_S20230414T130257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "PS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 170.557525148333, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-14T19:06:52.000000Z", + "view:sun_elevation": 34.7551422129948, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/PS/2023/4/S2A_26WPS_20230414_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 95.075345, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/b518e4da4a73f6e97d9963038804f01c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.143966, + "s2:vegetation_percentage": 0.138285, + "s2:thin_cirrus_percentage": 0.002555, + "s2:cloud_shadow_percentage": 0.212973, + "s2:nodata_pixel_percentage": 61.045426, + "s2:unclassified_percentage": 0.009565, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 4.313484, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0291, + "s2:high_proba_clouds_percentage": 0.05118, + "s2:reflectance_conversion_factor": 0.996726600614558, + "s2:medium_proba_clouds_percentage": 0.052645, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WVN_20230413_0_L2A", + "bbox": [ + -23.187894843472783, + 65.57175643853377, + -22.892751831021403, + 65.80984444196245 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.187894843472783, + 65.80590954715973 + ], + [ + -22.892751831021403, + 65.80984444196245 + ], + [ + -23.168204232464905, + 65.57175643853377 + ], + [ + -23.187894843472783, + 65.80590954715973 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-13T21:43:25.860Z", + "updated": "2023-04-13T21:43:25.860Z", + "datetime": "2023-04-13T13:33:31.801000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WVN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230413T175555_A040776_T27WVN_N05.09", + "eo:cloud_cover": 4.124211, + "s2:datatake_id": "GS2A_20230413T132721_040776_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230413T132721_N0509_R024_T27WVN_20230413T175555.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230413T175555_S20230413T133144_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 181.544753808803, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-13T17:55:55.000000Z", + "view:sun_elevation": 33.7436383642338, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/VN/2023/4/S2A_27WVN_20230413_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0.641475, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/22d120ab9ce6e3cac8d5e3b436f2fce1", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 85.706943, + "s2:vegetation_percentage": 2.02674, + "s2:thin_cirrus_percentage": 3.493191, + "s2:cloud_shadow_percentage": 0.146578, + "s2:nodata_pixel_percentage": 98.50834, + "s2:unclassified_percentage": 2.687788, + "s2:dark_features_percentage": 0.262684, + "s2:not_vegetated_percentage": 4.403577, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.081408, + "s2:reflectance_conversion_factor": 0.997287574486362, + "s2:medium_proba_clouds_percentage": 0.549613, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230411_0_L2A", + "bbox": [ + -15.000388828639831, + 63.818304992911294, + -14.785352563818034, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -14.785352563818034, + 64.026986402289 + ], + [ + -15.000385947227485, + 63.818304992911294 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-11T22:33:53.508Z", + "updated": "2023-04-11T22:33:53.508Z", + "datetime": "2023-04-11T12:53:47.537000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230411T185951_A040747_T28VER_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230411T125301_040747_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230411T125301_N0509_R138_T28VER_20230411T185951.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230411T185951_S20230411T125302_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.169318662723, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-04-11T18:59:51.000000Z", + "view:sun_elevation": 34.8043687339478, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230411_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/ee347708cb28464af0b793ad58a3871a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.956156, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 0.998446165980861, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28VER_20230406_0_L2A", + "bbox": [ + -15.000388828639831, + 63.81615955152056, + -14.784122929662372, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -14.784122929662372, + 64.02698458105206 + ], + [ + -15.000385917874867, + 63.81615955152056 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-06T20:24:44.139Z", + "updated": "2023-04-06T20:24:44.139Z", + "datetime": "2023-04-06T12:53:50.311000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230406T150410_A031767_T28VER_N05.09", + "eo:cloud_cover": 3.741515, + "s2:datatake_id": "GS2B_20230406T125309_031767_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230406T125309_N0509_R138_T28VER_20230406T150410.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230406T150410_S20230406T125304_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.790417461329, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-04-06T15:04:10.000000Z", + "view:sun_elevation": 32.9382055083157, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2B_28VER_20230406_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 96.258485, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f653f9f0554c2d833ede42419b81fd96", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 3.741515, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.939872, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.00132226503005, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20230402_0_L2A", + "bbox": [ + -18.886415413275245, + 64.90712238796057, + -18.88418029882633, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.88418029882633, + 64.90910801474557 + ], + [ + -18.886415413275245, + 64.90712238796057 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-02T20:20:13.116Z", + "updated": "2023-04-02T20:20:13.116Z", + "datetime": "2023-04-02T13:13:41.650000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230402T152001_A031710_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230402T131259_031710_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230402T131259_N0509_R081_T27WXM_20230402T152001.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230402T152001_S20230402T131301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.730649974776, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-04-02T15:20:01.000000Z", + "view:sun_elevation": 30.5573011213084, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/4/S2B_27WXM_20230402_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/223195046abb19cd5ecb0b52cbe476bd", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 17.424242, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 82.575756, + "s2:nodata_pixel_percentage": 99.999565, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.00361817780224, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230401_0_L2A", + "bbox": [ + -15.000388828639831, + 63.80646826168631, + -14.774299831724374, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -14.774299831724374, + 64.02696965833125 + ], + [ + -15.000385785347024, + 63.80646826168631 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-04-01T22:58:09.021Z", + "updated": "2023-04-01T22:58:09.021Z", + "datetime": "2023-04-01T12:53:46.219000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230401T185455_A040604_T28VER_N05.09", + "eo:cloud_cover": 0.388816, + "s2:datatake_id": "GS2A_20230401T125301_040604_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230401T125301_N0509_R138_T28VER_20230401T185455.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230401T185455_S20230401T125301_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.367402527779, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-04-01T18:54:55.000000Z", + "view:sun_elevation": 31.0242660687067, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/4/S2A_28VER_20230401_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.611187, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5268a0a0b8c985200f88c3809e8cf4ce", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.00373, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.843753, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.208612, + "s2:reflectance_conversion_factor": 1.00420109057165, + "s2:medium_proba_clouds_percentage": 0.176474, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230328_0_L2A", + "bbox": [ + -18.887270683770534, + 64.89625215407953, + -18.87216619511917, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.87216619511917, + 64.90893686315596 + ], + [ + -18.887270683770534, + 64.89625215407953 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-03-28T20:28:56.953Z", + "updated": "2023-03-28T20:28:56.953Z", + "datetime": "2023-03-28T13:13:36.113000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230328T173859_A040547_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2A_20230328T131301_040547_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230328T131301_N0509_R081_T27WXM_20230328T173859.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230328T173859_S20230328T131255_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 179.283693710365, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-03-28T17:38:59.000000Z", + "view:sun_elevation": 28.6171103812395, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/3/S2A_27WXM_20230328_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/56fffcd7da5794921a92f5766b4346a7", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 100, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.994183, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.00648365231598, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27VVL_20230327_0_L2A", + "bbox": [ + -22.00371802629525, + 63.03894185907423, + -20.800286063143044, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -21.279617852656884, + 64.02687592582643 + ], + [ + -20.800286063143044, + 64.02700769020842 + ], + [ + -20.80705954909265, + 63.041619520644396 + ], + [ + -21.891887775430927, + 63.03894185907423 + ], + [ + -22.00173133928358, + 63.053256801014236 + ], + [ + -22.00371802629525, + 63.055412412581184 + ], + [ + -21.279617852656884, + 64.02687592582643 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-03-27T20:03:07.700Z", + "updated": "2023-03-27T20:03:07.700Z", + "datetime": "2023-03-27T12:54:16.658000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VVL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230327T150226_A031624_T27VVL_N05.09", + "eo:cloud_cover": 0.344641, + "s2:datatake_id": "GS2B_20230327T125309_031624_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230327T125309_N0509_R138_T27VVL_20230327T150226.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230327T150226_S20230327T125305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 168.950693668699, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-03-27T15:02:26.000000Z", + "view:sun_elevation": 28.671311953783402, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2B_27VVL_20230327_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 88.034046, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c2852c048f564496e80e365c50e7178a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 3.670213, + "s2:vegetation_percentage": 0.246215, + "s2:thin_cirrus_percentage": 0.321046, + "s2:cloud_shadow_percentage": 0.007641, + "s2:nodata_pixel_percentage": 61.39977, + "s2:unclassified_percentage": 0.015051, + "s2:dark_features_percentage": 0.019976, + "s2:not_vegetated_percentage": 7.66222, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.001306, + "s2:reflectance_conversion_factor": 1.00706095876931, + "s2:medium_proba_clouds_percentage": 0.022288, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28VCR_20230327_0_L2A", + "bbox": [ + -19.08663529333112, + 62.98661631438856, + -16.78280972664897, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -19.08663529333112, + 63.96959674829309 + ], + [ + -16.845356096733006, + 64.01542581444056 + ], + [ + -16.78280972664897, + 63.03052412067892 + ], + [ + -18.94847821702855, + 62.98661631438856 + ], + [ + -19.08663529333112, + 63.96959674829309 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-03-27T20:08:04.202Z", + "updated": "2023-03-27T20:08:04.202Z", + "datetime": "2023-03-27T12:54:07.476000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230327T150226_A031624_T28VCR_N05.09", + "eo:cloud_cover": 2.426395, + "s2:datatake_id": "GS2B_20230327T125309_031624_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230327T125309_N0509_R138_T28VCR_20230327T150226.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230327T150226_S20230327T125305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.449589349875, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-03-27T15:02:26.000000Z", + "view:sun_elevation": 28.9676189806883, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/3/S2B_28VCR_20230327_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 58.829296, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/3f71f78f1e017ab30e355cf33ea45891", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 38.607317, + "s2:vegetation_percentage": 0.000027, + "s2:thin_cirrus_percentage": 1.878657, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.000013, + "s2:dark_features_percentage": 0.059393, + "s2:not_vegetated_percentage": 0.077564, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0013, + "s2:high_proba_clouds_percentage": 0.029579, + "s2:reflectance_conversion_factor": 1.00706095876931, + "s2:medium_proba_clouds_percentage": 0.51816, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27VXL_20230327_0_L2A", + "bbox": [ + -19.023625787506408, + 62.9810889090727, + -16.713777643413486, + 64.01274197384028 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.95429938185454, + 64.01274197384028 + ], + [ + -16.713777643413486, + 63.96382791885894 + ], + [ + -16.858635396179572, + 62.9810889090727 + ], + [ + -19.023625787506408, + 63.02795295593004 + ], + [ + -18.95429938185454, + 64.01274197384028 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-03-27T20:12:10.268Z", + "updated": "2023-03-27T20:12:10.268Z", + "datetime": "2023-03-27T12:54:07.439000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230327T150226_A031624_T27VXL_N05.09", + "eo:cloud_cover": 1.773129, + "s2:datatake_id": "GS2B_20230327T125309_031624_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230327T125309_N0509_R138_T27VXL_20230327T150226.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230327T150226_S20230327T125305_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.481299058955, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-03-27T15:02:26.000000Z", + "view:sun_elevation": 28.973238488362398, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/3/S2B_27VXL_20230327_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 60.060769, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/6ed10be0741b2b8cca7d02e47fb57853", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 38.036066, + "s2:vegetation_percentage": 0.00001, + "s2:thin_cirrus_percentage": 1.34475, + "s2:cloud_shadow_percentage": 0.005109, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0.055799, + "s2:not_vegetated_percentage": 0.069117, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0012, + "s2:high_proba_clouds_percentage": 0.030667, + "s2:reflectance_conversion_factor": 1.00706095876931, + "s2:medium_proba_clouds_percentage": 0.397713, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_26WNU_20230312_0_L2A", + "bbox": [ + -27.000430785994133, + 66.1686258683907, + -24.512428558908177, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -27.000430785994133, + 66.71885135769092 + ], + [ + -24.512428558908177, + 66.69921264081668 + ], + [ + -24.52994581544232, + 66.52401894327215 + ], + [ + -24.97183803132624, + 66.1686258683907 + ], + [ + -25.56780930358227, + 66.30291944945294 + ], + [ + -26.49124662926522, + 66.4927825545936 + ], + [ + -26.943194944925732, + 66.57902146971868 + ], + [ + -27.00042850967082, + 66.58768570696762 + ], + [ + -27.000430785994133, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-03-12T23:29:08.241Z", + "updated": "2023-03-12T23:29:08.241Z", + "datetime": "2023-03-12T13:43:29.493000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-26WNU", + "proj:epsg": 32626, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 26, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230312T192258_A031410_T26WNU_N05.09", + "eo:cloud_cover": 3.664511, + "s2:datatake_id": "GS2B_20230312T133859_031410_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230312T133859_N0509_R067_T26WNU_20230312T192258.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230312T192258_S20230312T133855_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "NU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.532538528174, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-03-12T19:22:58.000000Z", + "view:sun_elevation": 20.471773152827694, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/26/W/NU/2023/3/S2B_26WNU_20230312_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 96.335441, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f52796461e50bf9b48765f13d5e28a37", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 2.153465, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 65.90066, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.000049, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0225, + "s2:high_proba_clouds_percentage": 0.547289, + "s2:reflectance_conversion_factor": 1.01529523933136, + "s2:medium_proba_clouds_percentage": 0.963758, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VVL_20230308_0_L2A", + "bbox": [ + -23.046477379055293, + 63.03900382969097, + -20.800286063143044, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -23.046477379055293, + 64.01273102956839 + ], + [ + -20.800286063143044, + 64.02700769020842 + ], + [ + -20.807053614722918, + 63.042517040146194 + ], + [ + -22.028336186807078, + 63.03900382969097 + ], + [ + -22.367005975604535, + 63.11029021006324 + ], + [ + -22.778988887050676, + 63.18886148497796 + ], + [ + -22.99071141022119, + 63.226968797051896 + ], + [ + -23.046477379055293, + 64.01273102956839 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-03-08T21:55:41.622Z", + "updated": "2023-03-08T21:55:41.622Z", + "datetime": "2023-03-08T13:14:04.194000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VVL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230308T172753_A040261_T27VVL_N05.09", + "eo:cloud_cover": 2.828994, + "s2:datatake_id": "GS2A_20230308T131251_040261_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230308T131251_N0509_R081_T27VVL_20230308T172753.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230308T172753_S20230308T131253_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "VL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.490689808392, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-03-08T17:27:53.000000Z", + "view:sun_elevation": 21.452437078138004, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/VL/2023/3/S2A_27VVL_20230308_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 81.307447, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/5dd6204b695a5e15a59fac0baedb2777", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.69365, + "s2:vegetation_percentage": 3.068994, + "s2:thin_cirrus_percentage": 1.980672, + "s2:cloud_shadow_percentage": 0.190876, + "s2:nodata_pixel_percentage": 4.47113, + "s2:unclassified_percentage": 0.014146, + "s2:dark_features_percentage": 0.192946, + "s2:not_vegetated_percentage": 10.702948, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0241, + "s2:high_proba_clouds_percentage": 0.450819, + "s2:reflectance_conversion_factor": 1.0173701632784, + "s2:medium_proba_clouds_percentage": 0.397503, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230302_0_L2A", + "bbox": [ + -15.000388828639831, + 63.8048563546446, + -14.773071246072732, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -14.773071246072732, + 64.02696774521742 + ], + [ + -15.0003857633142, + 63.8048563546446 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-03-02T22:00:06.340Z", + "updated": "2023-03-02T22:00:06.340Z", + "datetime": "2023-03-02T12:53:44.526000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230302T172150_A040175_T28VER_N05.09", + "eo:cloud_cover": 0.000566, + "s2:datatake_id": "GS2A_20230302T125301_040175_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230302T125301_N0509_R138_T28VER_20230302T172150.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230302T172150_S20230302T125259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.357072596517, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-03-02T17:21:50.000000Z", + "view:sun_elevation": 19.2356506263921, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/3/S2A_28VER_20230302_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.999434, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/275b0682876730e681a00378be4f4416", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.000566, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.827088, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.02032686792882, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28WDU_20230228_0_L2A", + "bbox": [ + -17.26708751458163, + 65.71824624565738, + -14.778879985124615, + 66.71877949086476 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -14.84946988134509, + 66.71877949086476 + ], + [ + -14.778879985124615, + 66.70259412560307 + ], + [ + -14.78288373730536, + 66.24634292596963 + ], + [ + -15.404541859992788, + 65.73328084940746 + ], + [ + -17.18047689480826, + 65.71824624565738 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-28T20:23:21.313Z", + "updated": "2023-02-28T20:23:21.313Z", + "datetime": "2023-02-28T13:03:15.108000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230228T152817_A031238_T28WDU_N05.09", + "eo:cloud_cover": 0.435491, + "s2:datatake_id": "GS2B_20230228T130259_031238_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230228T130259_N0509_R038_T28WDU_20230228T152817.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230228T152817_S20230228T130300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.589613386514, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-28T15:28:17.000000Z", + "view:sun_elevation": 15.794381958302793, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230228_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 47.537616, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/6696cb0b8efc2fb7f82f9b0885a085e0", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 47.879779, + "s2:vegetation_percentage": 0.312337, + "s2:thin_cirrus_percentage": 0.10037, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 6.669633, + "s2:unclassified_percentage": 0.01668, + "s2:dark_features_percentage": 0.56579, + "s2:not_vegetated_percentage": 3.252305, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.023, + "s2:high_proba_clouds_percentage": 0.102279, + "s2:reflectance_conversion_factor": 1.02126237845225, + "s2:medium_proba_clouds_percentage": 0.232841, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WEU_20230228_0_L2A", + "bbox": [ + -15.000430785994116, + 66.06909128886397, + -14.338746853312703, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000430785994116, + 66.71885135769092 + ], + [ + -14.849557284448716, + 66.71877957429825 + ], + [ + -14.338746853312703, + 66.60339024240896 + ], + [ + -15.00041976200054, + 66.06909128886397 + ], + [ + -15.000430785994116, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-28T20:15:41.847Z", + "updated": "2023-02-28T20:15:41.847Z", + "datetime": "2023-02-28T13:03:06.869000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230228T152817_A031238_T28WEU_N05.09", + "eo:cloud_cover": 0.121596, + "s2:datatake_id": "GS2B_20230228T130259_031238_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230228T130259_N0509_R038_T28WEU_20230228T152817.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230228T152817_S20230228T130300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.85206305118, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-28T15:28:17.000000Z", + "view:sun_elevation": 15.831183358167905, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230228_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 89.223301, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/7b2cc5d670c6ef0a17d2451be1a7d6f3", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 6.996234, + "s2:vegetation_percentage": 0.301123, + "s2:thin_cirrus_percentage": 0.111815, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 90.739197, + "s2:unclassified_percentage": 0.044533, + "s2:dark_features_percentage": 0.290948, + "s2:not_vegetated_percentage": 3.022267, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.001791, + "s2:reflectance_conversion_factor": 1.02126237845225, + "s2:medium_proba_clouds_percentage": 0.007989, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20230221_0_L2A", + "bbox": [ + -18.88819214787635, + 64.88452966281959, + -18.860948199389288, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.860948199389288, + 64.90877617635677 + ], + [ + -18.88819214787635, + 64.88452966281959 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-21T19:47:14.690Z", + "updated": "2023-02-21T19:47:14.690Z", + "datetime": "2023-02-21T13:13:37.943000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230221T151914_A031138_T27WXM_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230221T131259_031138_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230221T131259_N0509_R081_T27WXM_20230221T151914.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230221T151914_S20230221T131257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.210211972469, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-21T15:19:14.000000Z", + "view:sun_elevation": 15.039637995420406, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230221_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/4ce24d7b7eed1aea34fd1d329f19304c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 4.207823, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 95.792174, + "s2:nodata_pixel_percentage": 99.983203, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.02434623605277, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VDR_20230220_1_L2A", + "bbox": [ + -17.046477379055286, + 63.0279424710906, + -14.917247943432347, + 64.0260362712452 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.046477379055286, + 64.01273102956839 + ], + [ + -15.5676664445608, + 64.0260362712452 + ], + [ + -14.917247943432347, + 63.88099970712541 + ], + [ + -15.749865026506614, + 63.03976531016712 + ], + [ + -16.977124692416314, + 63.0279424710906 + ], + [ + -17.046477379055286, + 64.01273102956839 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-20T20:04:15.002Z", + "updated": "2023-02-20T20:04:15.002Z", + "datetime": "2023-02-20T12:53:55.367000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VDR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230220T170907_A040032_T28VDR_N05.09", + "eo:cloud_cover": 1.603496, + "s2:datatake_id": "GS2A_20230220T125301_040032_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230220T125301_N0509_R138_T28VDR_20230220T170907.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230220T170907_S20230220T125342_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.048047503734, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-20T17:09:07.000000Z", + "view:sun_elevation": 15.4321847711916, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 90.883946, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d127c5a935154ec24b967d19513aa0c2", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.06753, + "s2:vegetation_percentage": 0.003749, + "s2:thin_cirrus_percentage": 1.365639, + "s2:cloud_shadow_percentage": 5.478472, + "s2:nodata_pixel_percentage": 23.452567, + "s2:unclassified_percentage": 0.001669, + "s2:dark_features_percentage": 0.236782, + "s2:not_vegetated_percentage": 0.724358, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0297, + "s2:high_proba_clouds_percentage": 0.049936, + "s2:reflectance_conversion_factor": 1.02476574294655, + "s2:medium_proba_clouds_percentage": 0.18792, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28WDS_20230220_0_L2A", + "bbox": [ + -17.06937855271764, + 63.925397212174104, + -15.178503014291136, + 64.32167189703785 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.04010598371401, + 63.925397212174104 + ], + [ + -17.06937855271764, + 64.32167189703785 + ], + [ + -16.310602454001753, + 64.17874336681326 + ], + [ + -16.307577956027416, + 64.1769147182351 + ], + [ + -16.277999242458247, + 64.1707879264058 + ], + [ + -15.791832344844732, + 64.07152960676872 + ], + [ + -15.178503014291136, + 63.940360365658314 + ], + [ + -17.04010598371401, + 63.925397212174104 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-20T19:54:17.642Z", + "updated": "2023-02-20T19:54:17.642Z", + "datetime": "2023-02-20T12:53:48.857000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WDS", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230220T170907_A040032_T28WDS_N05.09", + "eo:cloud_cover": 1.316325, + "s2:datatake_id": "GS2A_20230220T125301_040032_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230220T125301_N0509_R138_T28WDS_20230220T170907.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230220T170907_S20230220T125342_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DS", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 173.984485085627, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-20T17:09:07.000000Z", + "view:sun_elevation": 14.536096311611104, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DS/2023/2/S2A_28WDS_20230220_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 33.311981, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/7610065897cb8db55df32d76c45c6c6a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 52.631831, + "s2:vegetation_percentage": 0.047451, + "s2:thin_cirrus_percentage": 0.632664, + "s2:cloud_shadow_percentage": 0.000019, + "s2:nodata_pixel_percentage": 82.778466, + "s2:unclassified_percentage": 0.019285, + "s2:dark_features_percentage": 4.436548, + "s2:not_vegetated_percentage": 8.23656, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0226, + "s2:high_proba_clouds_percentage": 0.000019, + "s2:reflectance_conversion_factor": 1.02476574294655, + "s2:medium_proba_clouds_percentage": 0.683641, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VDR_20230220_0_L2A", + "bbox": [ + -16.462915582382244, + 63.72548894908474, + -14.800286063143037, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.462915582382244, + 64.01978083023278 + ], + [ + -14.800286063143037, + 64.02700769020842 + ], + [ + -14.800525388764052, + 63.99347190944773 + ], + [ + -15.076459397438157, + 63.72621014002751 + ], + [ + -15.078777751571605, + 63.72548894908474 + ], + [ + -15.569045930448379, + 63.837311244581436 + ], + [ + -16.46288082368886, + 64.01911671046102 + ], + [ + -16.462915582382244, + 64.01978083023278 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-20T19:56:37.550Z", + "updated": "2023-02-20T19:56:37.550Z", + "datetime": "2023-02-20T12:53:47.460000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VDR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230220T153401_A040032_T28VDR_N05.09", + "eo:cloud_cover": 1.266111, + "s2:datatake_id": "GS2A_20230220T125301_040032_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230220T125301_N0509_R138_T28VDR_20230220T153401.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230220T153401_S20230220T125259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 174.048047503734, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-20T15:34:01.000000Z", + "view:sun_elevation": 15.4321847711916, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230220_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 97.330284, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/e1a38019742c2cffce40161f3a705eed", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 1.00785, + "s2:vegetation_percentage": 0.000516, + "s2:thin_cirrus_percentage": 1.231823, + "s2:cloud_shadow_percentage": 0.395238, + "s2:nodata_pixel_percentage": 88.436532, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0165, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.02476574294655, + "s2:medium_proba_clouds_percentage": 0.034287, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230220_1_L2A", + "bbox": [ + -15.000387068034208, + 63.798941273349236, + -14.917235506218784, + 63.89995376294672 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000385682486392, + 63.798941273349236 + ], + [ + -15.000387068034208, + 63.89995376294672 + ], + [ + -14.917235506218784, + 63.88100256710247 + ], + [ + -15.000385682486392, + 63.798941273349236 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-20T19:56:55.236Z", + "updated": "2023-02-20T19:56:55.236Z", + "datetime": "2023-02-20T12:53:46.230000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230220T170907_A040032_T28VER_N05.09", + "eo:cloud_cover": 0.006355, + "s2:datatake_id": "GS2A_20230220T125301_040032_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230220T125301_N0509_R138_T28VER_20230220T170907.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230220T170907_S20230220T125342_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.072343462725, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-20T17:09:07.000000Z", + "view:sun_elevation": 15.509870259961104, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 99.993646, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/55a7c9dca988ce158b9fe95611726f3c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.006355, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.791175, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.02476574294655, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VER_20230220_0_L2A", + "bbox": [ + -15.000388828639831, + 63.79893268466304, + -14.766932071869133, + 64.02714490644586 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000388828639831, + 64.02714490644586 + ], + [ + -14.766932071869133, + 64.02695802988048 + ], + [ + -15.000385682369059, + 63.79893268466304 + ], + [ + -15.000388828639831, + 64.02714490644586 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-20T19:52:15.878Z", + "updated": "2023-02-20T19:52:15.878Z", + "datetime": "2023-02-20T12:53:44.743000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VER", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230220T153401_A040032_T28VER_N05.09", + "eo:cloud_cover": 1.041969, + "s2:datatake_id": "GS2A_20230220T125301_040032_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230220T125301_N0509_R138_T28VER_20230220T153401.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230220T153401_S20230220T125259_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ER", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 176.072343462725, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-20T15:34:01.000000Z", + "view:sun_elevation": 15.509870259961104, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/ER/2023/2/S2A_28VER_20230220_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 98.958033, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/8f5d2dcccb0b9af2177a8de60b3ca7fc", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 1.041163, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 98.764527, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.02476574294655, + "s2:medium_proba_clouds_percentage": 0.000806, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VWL_20230217_0_L2A", + "bbox": [ + -19.493283783961694, + 63.02512387396203, + -18.754449695194992, + 64.00996359141074 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.765771225886443, + 64.00996359141074 + ], + [ + -18.754449695194992, + 64.00978893785071 + ], + [ + -18.830536182062367, + 63.02512387396203 + ], + [ + -19.493283783961694, + 63.03373284220477 + ], + [ + -19.1519519322871, + 63.49994309270019 + ], + [ + -19.092805757267524, + 63.572681645528185 + ], + [ + -18.765771225886443, + 64.00996359141074 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-17T19:57:17.005Z", + "updated": "2023-02-17T19:57:17.005Z", + "datetime": "2023-02-17T12:44:08.839000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VWL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230217T170855_A039989_T27VWL_N05.09", + "eo:cloud_cover": 1.990486, + "s2:datatake_id": "GS2A_20230217T124301_039989_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230217T124301_N0509_R095_T27VWL_20230217T170855.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230217T170855_S20230217T124300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "WL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 167.547659100107, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-17T17:08:55.000000Z", + "view:sun_elevation": 13.904581405468505, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/WL/2023/2/S2A_27VWL_20230217_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 61.028123, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/9059596bbb1a23f03c99a9a40031796a", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 34.820253, + "s2:vegetation_percentage": 0.000106, + "s2:thin_cirrus_percentage": 1.123502, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 84.413129, + "s2:unclassified_percentage": 0.000873, + "s2:dark_features_percentage": 1.864855, + "s2:not_vegetated_percentage": 0.295302, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.053, + "s2:high_proba_clouds_percentage": 0.000149, + "s2:reflectance_conversion_factor": 1.02596577048152, + "s2:medium_proba_clouds_percentage": 0.866834, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_28VCR_20230217_0_L2A", + "bbox": [ + -19.039889206843704, + 62.98661631438856, + -16.78280972664897, + 64.01542581444056 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 300000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 300000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 300000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.790605356401358, + 63.97764350540867 + ], + [ + -16.845356096733006, + 64.01542581444056 + ], + [ + -16.78280972664897, + 63.03052412067892 + ], + [ + -18.94847821702855, + 62.98661631438856 + ], + [ + -19.039889206843704, + 63.64547587826544 + ], + [ + -18.790605356401358, + 63.97764350540867 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-17T20:00:01.737Z", + "updated": "2023-02-17T20:00:01.737Z", + "datetime": "2023-02-17T12:44:03.321000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VCR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230217T170855_A039989_T28VCR_N05.09", + "eo:cloud_cover": 1.531984, + "s2:datatake_id": "GS2A_20230217T124301_039989_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230217T124301_N0509_R095_T28VCR_20230217T170855.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230217T170855_S20230217T124300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "CR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.519847062338, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-17T17:08:55.000000Z", + "view:sun_elevation": 14.103642289105395, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/CR/2023/2/S2A_28VCR_20230217_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 59.379399, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1d0b7494d285522e00651249bcd59f5c", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 38.431674, + "s2:vegetation_percentage": 0.000037, + "s2:thin_cirrus_percentage": 0.977627, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 2.144392, + "s2:unclassified_percentage": 0.000105, + "s2:dark_features_percentage": 0.391222, + "s2:not_vegetated_percentage": 0.265575, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0065, + "s2:high_proba_clouds_percentage": 0.111261, + "s2:reflectance_conversion_factor": 1.02596577048152, + "s2:medium_proba_clouds_percentage": 0.443097, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27VXL_20230217_0_L2A", + "bbox": [ + -19.023625787506408, + 62.9810889090727, + -16.713777643413486, + 64.00996357277968 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.765770015103843, + 64.00996357277968 + ], + [ + -16.713777643413486, + 63.96382791885894 + ], + [ + -16.858635396179572, + 62.9810889090727 + ], + [ + -19.023625787506408, + 63.02795295593004 + ], + [ + -18.97444066482827, + 63.73444806341149 + ], + [ + -18.765770015103843, + 64.00996357277968 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-17T19:59:52.644Z", + "updated": "2023-02-17T19:59:52.644Z", + "datetime": "2023-02-17T12:44:03.311000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27VXL", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230217T170855_A039989_T27VXL_N05.09", + "eo:cloud_cover": 1.702529, + "s2:datatake_id": "GS2A_20230217T124301_039989_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230217T124301_N0509_R095_T27VXL_20230217T170855.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230217T170855_S20230217T124300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XL", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.5478760598, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-17T17:08:55.000000Z", + "view:sun_elevation": 14.110070679724998, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/V/XL/2023/2/S2A_27VXL_20230217_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 60.084009, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/d03e6fc23ea70e08fd0ac9371d312932", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 37.335819, + "s2:vegetation_percentage": 0.000148, + "s2:thin_cirrus_percentage": 1.025462, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 1.159711, + "s2:unclassified_percentage": 0.000111, + "s2:dark_features_percentage": 0.384387, + "s2:not_vegetated_percentage": 0.492995, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0065, + "s2:high_proba_clouds_percentage": 0.148587, + "s2:reflectance_conversion_factor": 1.02596577048152, + "s2:medium_proba_clouds_percentage": 0.528479, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28VDR_20230217_0_L2A", + "bbox": [ + -17.046477379055286, + 63.0279424710906, + -14.800286063143037, + 64.02700769020842 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7100040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7100040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7100040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.046477379055286, + 64.01273102956839 + ], + [ + -14.800286063143037, + 64.02700769020842 + ], + [ + -14.80705954909264, + 63.041619520644396 + ], + [ + -16.977124692416314, + 63.0279424710906 + ], + [ + -17.046477379055286, + 64.01273102956839 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-17T20:01:12.091Z", + "updated": "2023-02-17T20:01:12.091Z", + "datetime": "2023-02-17T12:43:57.820000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28VDR", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230217T170855_A039989_T28VDR_N05.09", + "eo:cloud_cover": 1.29972, + "s2:datatake_id": "GS2A_20230217T124301_039989_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230217T124301_N0509_R095_T28VDR_20230217T170855.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230217T170855_S20230217T124300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DR", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.520297637026, + "mgrs:latitude_band": "V", + "s2:generation_time": "2023-02-17T17:08:55.000000Z", + "view:sun_elevation": 14.223175950163807, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/V/DR/2023/2/S2A_28VDR_20230217_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 93.561631, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/6a0a995cbbf000e7079cc3032314ef5d", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 3.199936, + "s2:vegetation_percentage": 0.000929, + "s2:thin_cirrus_percentage": 1.244412, + "s2:cloud_shadow_percentage": 1.018092, + "s2:nodata_pixel_percentage": 0, + "s2:unclassified_percentage": 0.000766, + "s2:dark_features_percentage": 0.210643, + "s2:not_vegetated_percentage": 0.708279, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.016808, + "s2:reflectance_conversion_factor": 1.02596577048152, + "s2:medium_proba_clouds_percentage": 0.0385, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_27WXM_20230217_0_L2A", + "bbox": [ + -18.831459151056237, + 63.875786719781686, + -16.57164358655036, + 64.89523051378649 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.065903117758964, + 64.89523051378649 + ], + [ + -16.57164358655036, + 64.85822796282541 + ], + [ + -16.727220069569878, + 63.875786719781686 + ], + [ + -18.831459151056237, + 63.92263375713348 + ], + [ + -18.065903117758964, + 64.89523051378649 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-17T19:57:31.131Z", + "updated": "2023-02-17T19:57:31.131Z", + "datetime": "2023-02-17T12:43:49.002000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230217T170855_A039989_T27WXM_N05.09", + "eo:cloud_cover": 0.936512, + "s2:datatake_id": "GS2A_20230217T124301_039989_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230217T124301_N0509_R095_T27WXM_20230217T170855.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230217T170855_S20230217T124300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.628091174461, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-17T17:08:55.000000Z", + "view:sun_elevation": 13.232310486102506, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2A_27WXM_20230217_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0.409229, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/c543af379f317b9edb9a085e9cf635d6", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 95.486957, + "s2:vegetation_percentage": 0.000292, + "s2:thin_cirrus_percentage": 0.133582, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 20.495141, + "s2:unclassified_percentage": 0.000768, + "s2:dark_features_percentage": 2.414501, + "s2:not_vegetated_percentage": 0.751743, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0144, + "s2:high_proba_clouds_percentage": 0.016213, + "s2:reflectance_conversion_factor": 1.02596577048152, + "s2:medium_proba_clouds_percentage": 0.786718, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2A_27WXN_20230217_0_L2A", + "bbox": [ + -18.136412027220647, + 64.77075092227982, + -16.418530102243363, + 65.7774512066918 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7300020 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7300020 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7300020 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.327328838501828, + 65.7774512066918 + ], + [ + -16.418530102243363, + 65.75287787308291 + ], + [ + -16.58600870874393, + 64.77075092227982 + ], + [ + -18.136412027220647, + 64.80879608083914 + ], + [ + -17.746531011821673, + 65.2808592243223 + ], + [ + -17.327328838501828, + 65.7774512066918 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-17T19:57:01.438Z", + "updated": "2023-02-17T19:57:01.438Z", + "datetime": "2023-02-17T12:43:34.196000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-27WXN", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230217T170855_A039989_T27WXN_N05.09", + "eo:cloud_cover": 3.701592, + "s2:datatake_id": "GS2A_20230217T124301_039989_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230217T124301_N0509_R095_T27WXN_20230217T170855.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230217T170855_S20230217T124300_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XN", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 169.712868535846, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-17T17:08:55.000000Z", + "view:sun_elevation": 12.354439481613895, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XN/2023/2/S2A_27WXN_20230217_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0.838723, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/1437637e46aaa639d2d3e13ea7e680c4", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 93.906194, + "s2:vegetation_percentage": 0.000554, + "s2:thin_cirrus_percentage": 0.105013, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 47.34129, + "s2:unclassified_percentage": 0.00184, + "s2:dark_features_percentage": 0.794808, + "s2:not_vegetated_percentage": 0.756292, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0215, + "s2:high_proba_clouds_percentage": 0.308612, + "s2:reflectance_conversion_factor": 1.02596577048152, + "s2:medium_proba_clouds_percentage": 3.287967, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2A_28WEU_20230213_0_L2A", + "bbox": [ + -15.000430785994116, + 66.07285694902376, + -14.348366555114511, + 66.71885135769092 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000430785994116, + 66.71885135769092 + ], + [ + -14.87487362792568, + 66.71880170103626 + ], + [ + -14.828961755997579, + 66.70668993684794 + ], + [ + -14.348366555114511, + 66.59875717866274 + ], + [ + -15.000419824107288, + 66.07285694902376 + ], + [ + -15.000430785994116, + 66.71885135769092 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-13T18:31:58.898Z", + "updated": "2023-02-13T18:31:58.898Z", + "datetime": "2023-02-13T13:03:03.768000Z", + "platform": "sentinel-2a", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2A_OPER_MSI_L2A_TL_2APS_20230213T154900_A039932_T28WEU_N05.09", + "eo:cloud_cover": 0.335626, + "s2:datatake_id": "GS2A_20230213T130301_039932_N05.09", + "s2:product_uri": "S2A_MSIL2A_20230213T130301_N0509_R038_T28WEU_20230213T154900.SAFE", + "s2:datastrip_id": "S2A_OPER_MSI_L2A_DS_2APS_20230213T154900_S20230213T130257_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.483932686695, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-13T15:49:00.000000Z", + "view:sun_elevation": 10.431730133805004, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2A_28WEU_20230213_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 88.780993, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/53d7688ac09819f1706f773bcdd0644b", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 6.830569, + "s2:vegetation_percentage": 0.058512, + "s2:thin_cirrus_percentage": 0.32485, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 90.978462, + "s2:unclassified_percentage": 0.078629, + "s2:dark_features_percentage": 0.530286, + "s2:not_vegetated_percentage": 3.385385, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.000625, + "s2:reflectance_conversion_factor": 1.02744994706617, + "s2:medium_proba_clouds_percentage": 0.01015, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_27WXM_20230211_0_L2A", + "bbox": [ + -18.8869276521946, + 64.90061315856939, + -18.87722189976871, + 64.90913749766527 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 600000, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 600000, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 600000, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -18.88625677975465, + 64.90913749766527 + ], + [ + -18.87722189976871, + 64.90900900447386 + ], + [ + -18.8869276521946, + 64.90061315856939 + ], + [ + -18.88625677975465, + 64.90913749766527 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-11T21:14:35.839Z", + "updated": "2023-02-11T21:14:35.839Z", + "datetime": "2023-02-11T13:13:36.791000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-27WXM", + "proj:epsg": 32627, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 27, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230211T152022_A030995_T27WXM_N05.09", + "eo:cloud_cover": 3.85439, + "s2:datatake_id": "GS2B_20230211T131259_030995_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230211T131259_N0509_R081_T27WXM_20230211T152022.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230211T152022_S20230211T131256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "XM", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 177.136704533184, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-11T15:20:22.000000Z", + "view:sun_elevation": 11.5704895401867, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/27/W/XM/2023/2/S2B_27WXM_20230211_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 0, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/a6ee8adc596e968cd394ae4981906249", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 47.751606, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0.107066, + "s2:cloud_shadow_percentage": 48.394004, + "s2:nodata_pixel_percentage": 99.996901, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 3.747323, + "s2:reflectance_conversion_factor": 1.02814425310801, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json" + ] + }, + { + "id": "S2B_28WDU_20230211_0_L2A", + "bbox": [ + -17.26708751458163, + 66.31452872211169, + -16.735700906169647, + 66.70929331022484 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 399960, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 399960, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 399960, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -17.26708751458163, + 66.70254145085241 + ], + [ + -16.735700906169647, + 66.70929331022484 + ], + [ + -17.23205603662303, + 66.31452872211169 + ], + [ + -17.26708751458163, + 66.70254145085241 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-12T00:13:26.255Z", + "updated": "2023-02-12T00:13:26.255Z", + "datetime": "2023-02-11T13:13:06.511000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WDU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230211T152022_A030995_T28WDU_N05.09", + "eo:cloud_cover": 2.735271, + "s2:datatake_id": "GS2B_20230211T131259_030995_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230211T131259_N0509_R081_T28WDU_20230211T152022.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230211T152022_S20230211T131256_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "DU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.775208121987, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-11T15:20:22.000000Z", + "view:sun_elevation": 9.769409500271195, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/DU/2023/2/S2B_28WDU_20230211_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 97.249186, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/4e51dad0fde63a2225e4c7412e138cfe", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0.00202, + "s2:vegetation_percentage": 0.002642, + "s2:thin_cirrus_percentage": 1.345838, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 95.730418, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0.010879, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0.346581, + "s2:reflectance_conversion_factor": 1.02814425310801, + "s2:medium_proba_clouds_percentage": 1.042852, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WES_20230209_1_L2A", + "bbox": [ + -15.000401773127397, + 64.0477096319534, + -12.679773506360489, + 64.92412942351285 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7200000 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7200000 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7200000 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000401773127397, + 64.92412942351285 + ], + [ + -12.679773506360489, + 64.90606378004084 + ], + [ + -12.751398957657019, + 64.0477096319534 + ], + [ + -12.964702039711, + 64.08539094928425 + ], + [ + -13.881290162615617, + 64.23695012063965 + ], + [ + -14.833179465354487, + 64.37790417333827 + ], + [ + -15.000394063397925, + 64.39780993922794 + ], + [ + -15.000401773127397, + 64.92412942351285 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-09T19:48:43.694Z", + "updated": "2023-02-09T19:48:43.694Z", + "datetime": "2023-02-09T12:33:40.174000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WES", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "1", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230209T144420_A030966_T28WES_N05.09", + "eo:cloud_cover": 4.273869, + "s2:datatake_id": "GS2B_20230209T123309_030966_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230209T123309_N0509_R052_T28WES_20230209T144420.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230209T144420_S20230209T123306_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "ES", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 171.17725826421, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-09T14:44:20.000000Z", + "view:sun_elevation": 10.614127176519204, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/ES/2023/2/S2B_28WES_20230209_1_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 72.510606, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/f121d29938fdc62bc9171b0359a25f48", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 12.85231, + "s2:vegetation_percentage": 0.068096, + "s2:thin_cirrus_percentage": 3.256277, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 29.975301, + "s2:unclassified_percentage": 0.006302, + "s2:dark_features_percentage": 6.713336, + "s2:not_vegetated_percentage": 3.575483, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0.0097, + "s2:high_proba_clouds_percentage": 0.379209, + "s2:reflectance_conversion_factor": 1.02881663924427, + "s2:medium_proba_clouds_percentage": 0.638383, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + }, + { + "id": "S2B_28WEU_20230208_0_L2A", + "bbox": [ + -15.000420164144641, + 66.07719042322626, + -14.984804814843304, + 66.09345240632487 + ], + "type": "Feature", + "links": [ + { + "rel": "collection", + "type": "application/json", + "href": "collections.json" + } + ], + "assets": { + "aot": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/AOT.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Aerosol optical thickness (AOT)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B08.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 1 (band 8) - 10m", + "eo:bands": [ + { + "name": "nir", + "common_name": "nir", + "description": "NIR 1 (band 8)", + "center_wavelength": 0.842, + "full_width_half_max": 0.145 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "red": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B04.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red (band 4) - 10m", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "scl": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/SCL.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Scene classification map (SCL)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "nodata": 0, + "data_type": "uint8", + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "wvp": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/WVP.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Water vapour (WVP)", + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "unit": "cm", + "scale": 0.001, + "nodata": 0, + "offset": 0, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "blue": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B02.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Blue (band 2) - 10m", + "eo:bands": [ + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "green": { + "gsd": 10, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B03.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Green (band 3) - 10m", + "eo:bands": [ + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 10 + } + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "nir08": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B8A.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 2 (band 8A) - 20m", + "eo:bands": [ + { + "name": "nir08", + "common_name": "nir08", + "description": "NIR 2 (band 8A)", + "center_wavelength": 0.865, + "full_width_half_max": 0.033 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "nir09": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B09.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "NIR 3 (band 9) - 60m", + "eo:bands": [ + { + "name": "nir09", + "common_name": "nir09", + "description": "NIR 3 (band 9)", + "center_wavelength": 0.945, + "full_width_half_max": 0.026 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "swir16": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B11.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 1 (band 11) - 20m", + "eo:bands": [ + { + "name": "swir16", + "common_name": "swir16", + "description": "SWIR 1 (band 11)", + "center_wavelength": 1.61, + "full_width_half_max": 0.143 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "swir22": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B12.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "SWIR 2 (band 12) - 20m", + "eo:bands": [ + { + "name": "swir22", + "common_name": "swir22", + "description": "SWIR 2 (band 12)", + "center_wavelength": 2.19, + "full_width_half_max": 0.242 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "visual": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/TCI.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "visual" + ], + "title": "True color image", + "eo:bands": [ + { + "name": "red", + "common_name": "red", + "description": "Red (band 4)", + "center_wavelength": 0.665, + "full_width_half_max": 0.038 + }, + { + "name": "green", + "common_name": "green", + "description": "Green (band 3)", + "center_wavelength": 0.56, + "full_width_half_max": 0.045 + }, + { + "name": "blue", + "common_name": "blue", + "description": "Blue (band 2)", + "center_wavelength": 0.49, + "full_width_half_max": 0.098 + } + ], + "proj:shape": [ + 10980, + 10980 + ], + "proj:transform": [ + 10, + 0, + 499980, + 0, + -10, + 7400040 + ] + }, + "coastal": { + "gsd": 60, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B01.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Coastal aerosol (band 1) - 60m", + "eo:bands": [ + { + "name": "coastal", + "common_name": "coastal", + "description": "Coastal aerosol (band 1)", + "center_wavelength": 0.443, + "full_width_half_max": 0.027 + } + ], + "proj:shape": [ + 1830, + 1830 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 60 + } + ], + "proj:transform": [ + 60, + 0, + 499980, + 0, + -60, + 7400040 + ] + }, + "rededge1": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B05.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 1 (band 5) - 20m", + "eo:bands": [ + { + "name": "rededge1", + "common_name": "rededge", + "description": "Red edge 1 (band 5)", + "center_wavelength": 0.704, + "full_width_half_max": 0.019 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge2": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B06.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 2 (band 6) - 20m", + "eo:bands": [ + { + "name": "rededge2", + "common_name": "rededge", + "description": "Red edge 2 (band 6)", + "center_wavelength": 0.74, + "full_width_half_max": 0.018 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "rededge3": { + "gsd": 20, + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/B07.tif", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "reflectance" + ], + "title": "Red edge 3 (band 7) - 20m", + "eo:bands": [ + { + "name": "rededge3", + "common_name": "rededge", + "description": "Red edge 3 (band 7)", + "center_wavelength": 0.783, + "full_width_half_max": 0.028 + } + ], + "proj:shape": [ + 5490, + 5490 + ], + "raster:bands": [ + { + "scale": 0.0001, + "nodata": 0, + "offset": -0.1, + "data_type": "uint16", + "bits_per_sample": 15, + "spatial_resolution": 20 + } + ], + "proj:transform": [ + 20, + 0, + 499980, + 0, + -20, + 7400040 + ] + }, + "thumbnail": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/thumbnail.jpg", + "type": "image/jpeg", + "roles": [ + "thumbnail" + ], + "title": "Thumbnail image" + }, + "granule_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/granule_metadata.xml", + "type": "application/xml", + "roles": [ + "metadata" + ] + }, + "tileinfo_metadata": { + "href": "https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A/tileinfo_metadata.json", + "type": "application/json", + "roles": [ + "metadata" + ] + } + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -15.000419895603981, + 66.07719042322626 + ], + [ + -15.000420164144641, + 66.09345240632487 + ], + [ + -14.984804814843304, + 66.09028374343072 + ], + [ + -15.000419895603981, + 66.07719042322626 + ] + ] + ] + }, + "collection": "sentinel-2-iceland", + "properties": { + "created": "2023-02-08T19:50:24.359Z", + "updated": "2023-02-08T19:50:24.359Z", + "datetime": "2023-02-08T13:03:10.549000Z", + "platform": "sentinel-2b", + "grid:code": "MGRS-28WEU", + "proj:epsg": 32628, + "instruments": [ + "msi" + ], + "s2:sequence": "0", + "constellation": "sentinel-2", + "mgrs:utm_zone": 28, + "s2:granule_id": "S2B_OPER_MSI_L2A_TL_2BPS_20230208T133248_A030952_T28WEU_N05.09", + "eo:cloud_cover": 0, + "s2:datatake_id": "GS2B_20230208T130309_030952_N05.09", + "s2:product_uri": "S2B_MSIL2A_20230208T130309_N0509_R038_T28WEU_20230208T133248.SAFE", + "s2:datastrip_id": "S2B_OPER_MSI_L2A_DS_2BPS_20230208T133248_S20230208T130307_N05.09", + "s2:product_type": "S2MSI2A", + "mgrs:grid_square": "EU", + "s2:datatake_type": "INS-NOBS", + "view:sun_azimuth": 178.513237095003, + "mgrs:latitude_band": "W", + "s2:generation_time": "2023-02-08T13:32:48.000000Z", + "view:sun_elevation": 8.796766128582107, + "earthsearch:s3_path": "s3://sentinel-cogs/sentinel-s2-l2a-cogs/28/W/EU/2023/2/S2B_28WEU_20230208_0_L2A", + "processing:software": { + "sentinel2-to-stac": "0.1.0" + }, + "s2:water_percentage": 100, + "earthsearch:payload_id": "roda-sentinel2/workflow-sentinel2-to-stac/db30ec5167bd68d6421f92b1e1ab002b", + "s2:processing_baseline": "05.09", + "s2:snow_ice_percentage": 0, + "s2:vegetation_percentage": 0, + "s2:thin_cirrus_percentage": 0, + "s2:cloud_shadow_percentage": 0, + "s2:nodata_pixel_percentage": 99.991161, + "s2:unclassified_percentage": 0, + "s2:dark_features_percentage": 0, + "s2:not_vegetated_percentage": 0, + "earthsearch:boa_offset_applied": true, + "s2:degraded_msi_data_percentage": 0, + "s2:high_proba_clouds_percentage": 0, + "s2:reflectance_conversion_factor": 1.02912879807333, + "s2:medium_proba_clouds_percentage": 0, + "s2:saturated_defective_pixel_percentage": 0 + }, + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/grid/v1.0.0/schema.json", + "https://stac-extensions.github.io/view/v1.0.0/schema.json", + "https://stac-extensions.github.io/processing/v1.1.0/schema.json", + "https://stac-extensions.github.io/eo/v1.0.0/schema.json", + "https://stac-extensions.github.io/projection/v1.0.0/schema.json", + "https://stac-extensions.github.io/raster/v1.1.0/schema.json", + "https://stac-extensions.github.io/mgrs/v1.0.0/schema.json" + ] + } +] diff --git a/scripts/data-access/configure-data-access.sh b/scripts/data-access/configure-data-access.sh index b30b943d..726cd657 100644 --- a/scripts/data-access/configure-data-access.sh +++ b/scripts/data-access/configure-data-access.sh @@ -17,8 +17,6 @@ ask "S3_SECRET_KEY" "Enter the S3 (MinIO) secret key" "" is_non_empty envsubst <"eoapi/values-template.yaml" >"eoapi/generated-values.yaml" envsubst <"eoapi/ingress-template.yaml" >"eoapi/generated-ingress.yaml" envsubst <"stacture/values-template.yaml" >"stacture/generated-values.yaml" -envsubst <"tyk-gateway/values-template.yaml" >"tyk-gateway/generated-values.yaml" -envsubst <"tyk-gateway/redis-values-template.yaml" >"tyk-gateway/redis-generated-values.yaml" envsubst <"postgres/values-template.yaml" >"postgres/generated-values.yaml" envsubst <"eoapi-support/values-template.yaml" >"eoapi-support/generated-values.yaml" 2>/dev/null || true diff --git a/scripts/data-access/eoapi/values-template.yaml b/scripts/data-access/eoapi/values-template.yaml index eb4a40e8..b9c4c3bf 100644 --- a/scripts/data-access/eoapi/values-template.yaml +++ b/scripts/data-access/eoapi/values-template.yaml @@ -49,14 +49,13 @@ stac: settings: envVars: EOAPI_STAC_EXTENSIONS: "filter,query,sort,fields,pagination,transaction" + EOAPI_STAC_CORS_METHODS: "GET,POST,PUT,OPTIONS" resources: limits: cpu: "1280m" memory: "1536Mi" requests: cpu: "512m" - memory: "512Mi" - vector: enabled: true settings: @@ -66,5 +65,6 @@ vector: requests: memory: "1024Mi" envVars: + # needs to on so we can call /refresh for integration tests TIPG_DEBUG: "True" - TIPG_CATALOG_TTL: "30" \ No newline at end of file + TIPG_CATALOG_TTL: "30" diff --git a/scripts/data-access/tyk-gateway/.gitignore b/scripts/data-access/tyk-gateway/.gitignore deleted file mode 100644 index a97bb815..00000000 --- a/scripts/data-access/tyk-gateway/.gitignore +++ /dev/null @@ -1 +0,0 @@ -redis-generated-values.yaml \ No newline at end of file diff --git a/scripts/data-access/tyk-gateway/redis-values-template.yaml b/scripts/data-access/tyk-gateway/redis-values-template.yaml deleted file mode 100644 index e06374b2..00000000 --- a/scripts/data-access/tyk-gateway/redis-values-template.yaml +++ /dev/null @@ -1,4 +0,0 @@ -global: - storageClass: ${STORAGE_CLASS} - redis: - password: "" \ No newline at end of file diff --git a/scripts/data-access/tyk-gateway/values-template.yaml b/scripts/data-access/tyk-gateway/values-template.yaml deleted file mode 100644 index 1a4813e3..00000000 --- a/scripts/data-access/tyk-gateway/values-template.yaml +++ /dev/null @@ -1,28 +0,0 @@ -global: - addrs: - - tyk-redis-master:6379 - redis: - passSecret: - name: tyk-redis - keyName: redis-password - -tyk-gateway: - gateway: - service: - type: ClusterIP - ingress: - enabled: true - className: apisix - annotations: - kubernetes.io/ingress.class: apisix - ${CLUSTER_ISSUER_ANNOTATION} - k8s.apisix.apache.org/http-to-https: "true" - hosts: - - host: tyk-gateway.${INGRESS_HOST} - paths: - - path: / - pathType: Prefix - tls: - - hosts: - - tyk-gateway.${INGRESS_HOST} - secretName: tyk-gateway-tls diff --git a/scripts/data-access/validation.sh b/scripts/data-access/validation.sh index b242fc1d..3e1ccb1f 100644 --- a/scripts/data-access/validation.sh +++ b/scripts/data-access/validation.sh @@ -12,7 +12,6 @@ check_service_exists "data-access" "stac" check_service_exists "data-access" "vector" check_service_exists "data-access" "doc-server-eoapi" check_service_exists "data-access" "stacture" -check_service_exists "data-access" "gateway-svc-tyk-oss-tyk-gateway" check_service_exists "data-access" "eoapi-support-prometheus-server" "Skipping: eoapi-support not found." || true check_service_exists "data-access" "eoapi-support-grafana" "Skipping: eoapi-support not found." || true