Flood Mapping Explained#
import pystac_client
from odc import stac as odc_stac
import xarray as xr
import numpy as np
Dask makes parallel computing easy by providing a familiar API common libraries, such as Pandas and Numpy. This allow efficient scaling of the here presented workflow for this adaptation of the TU Wien Bayesian flood mapping algorithm. The data size will be a main limiting factor as the data grows larger than RAM. For this reason we will partition our data in chunks which will presented to the machine workers by Dasks task scheduler in a most efficient manner. Although many of Dask’ settings can be handled automatically, we can also modify some parameters for optimal performance of the workflow for the desired processing environment. So, note, that this highly depends on your own machine’s specifications.
We can then set the Dask Client, where we avoid inter-worker communication which is common for working with numpy
and xarray
in this case.
from dask.distributed import Client, wait
client = Client(processes=False, threads_per_worker=2, n_workers=3, memory_limit="12GB")
client
Client
Client-af9fbf1c-0b3d-11f0-8873-00224804924a
Connection method: Cluster object | Cluster type: distributed.LocalCluster |
Dashboard: http://10.1.0.77:8787/status |
Cluster Info
LocalCluster
6e249b06
Dashboard: http://10.1.0.77:8787/status | Workers: 3 |
Total threads: 6 | Total memory: 33.53 GiB |
Status: running | Using processes: False |
Scheduler Info
Scheduler
Scheduler-6fc2a1a4-f72d-474c-b5fa-19988a4758cb
Comm: inproc://10.1.0.77/2163/1 | Workers: 3 |
Dashboard: http://10.1.0.77:8787/status | Total threads: 6 |
Started: Just now | Total memory: 33.53 GiB |
Workers
Worker: 0
Comm: inproc://10.1.0.77/2163/4 | Total threads: 2 |
Dashboard: http://10.1.0.77:41389/status | Memory: 11.18 GiB |
Nanny: None | |
Local directory: /tmp/dask-scratch-space/worker-weia8y2u |
Worker: 1
Comm: inproc://10.1.0.77/2163/5 | Total threads: 2 |
Dashboard: http://10.1.0.77:33977/status | Memory: 11.18 GiB |
Nanny: None | |
Local directory: /tmp/dask-scratch-space/worker-yidsnwpj |
Worker: 2
Comm: inproc://10.1.0.77/2163/6 | Total threads: 2 |
Dashboard: http://10.1.0.77:36769/status | Memory: 11.18 GiB |
Nanny: None | |
Local directory: /tmp/dask-scratch-space/worker-7ii0wpcx |
In conjunction with setting up the Dask client qw will chunk the arrays along three dimensions according to the following specifications for maximum performance on my setup.
chunks = {"time": 1, "latitude": 1300, "longitude": 1300}
Cube Definitions#
The following generic specifications are used for presenting the data.
crs = "EPSG:4326" # Coordinate Reference System - World Geodetic System 1984 (WGS84) in this case
res = 0.00018 # 20 meter in degree
Northern Germany Flood#
Storm Babet hit the Denmark and Northern coast at the 20th of October 2023 Wikipedia. Here an area around Zingst at the Baltic coast of Northern Germany is selected as the study area.
time_range = "2022-10-11/2022-10-25"
minlon, maxlon = 12.3, 13.1
minlat, maxlat = 54.3, 54.6
bounding_box = [minlon, minlat, maxlon, maxlat]
EODC STAC Catalog#
The pystac_client
establishes a connection to the EODC STAC Catalog. This results in a catalog object that can be used to discover collections and items hosted at EODC.
eodc_catalog = pystac_client.Client.open("https://stac.eodc.eu/api/v1")
Microwave Backscatter Measurements#
The basic premise of microwave-based backscattering can be seen in the sketch below, the characteristics of backscattering over land and water differ considerably. With this knowledge we can detect whenever a pixel with a predominant land like signature changes to a water like signature in the event of flooding.
Schematic backscattering over land and water. Image from Geological Survey Ireland
We discover Sentinel-1 microwave backscatter (\(\sigma_0\) [1]) at a 20 meter resolution, like so:
search = eodc_catalog.search(
collections="SENTINEL1_SIG0_20M",
bbox=bounding_box,
datetime=time_range,
)
items_sig0 = search.item_collection()
items_sig0
- type "FeatureCollection"
features[] 67 items
0
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221025T050931_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221025T050931_20221025T050956_045594_057398_2E62.zip"
- checksum "3bffc002f66bfa9f2185f8a034f12c19"
- datetime "2022-10-25T05:09:31Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221025T050931_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050931__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050931__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050931__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050931__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050931__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
1
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221025T050906_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221025T050906_20221025T050931_045594_057398_8EF9.zip"
- checksum "d856a1b69e686b8a244954bc85129335"
- datetime "2022-10-25T05:09:06Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221025T050906_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050906__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050906__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050906__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050906__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050906__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
2
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221025T050841_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221025T050841_20221025T050906_045594_057398_729B.zip"
- checksum "d40b1a2f3a80fa2ce4e5a64850e78976"
- datetime "2022-10-25T05:08:41Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221025T050841_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050841__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050841__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050841__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050841__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050841__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
3
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221025T050816_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221025T050816_20221025T050841_045594_057398_F203.zip"
- checksum "34a1da3f45199fac2a75d524617a73d1"
- datetime "2022-10-25T05:08:16Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221025T050816_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050816__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050816__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050816__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050816__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221025T050816__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
4
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221024T171747_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221024T171747_20221024T171812_045587_057357_47CB.zip"
- checksum "9b2b41356f23b9ce406d49fe654dd8f6"
- datetime "2022-10-24T17:17:47Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 15
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221024T171747_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171747__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171747__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171747__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171747__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171747__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
5
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221024T171722_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221024T171722_20221024T171747_045587_057357_CB91.zip"
- checksum "624be54be9545376ac5d60b509ca3554"
- datetime "2022-10-24T17:17:22Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 15
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221024T171722_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171722__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171722__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171722__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171722__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171722__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
6
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221024T171657_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221024T171657_20221024T171722_045587_057357_BE92.zip"
- checksum "67cdd9693576e378135c05314532d98c"
- datetime "2022-10-24T17:16:57Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 15
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221024T171657_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171657__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171657__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171657__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171657__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221024T171657__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
7
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T163654_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T163654_20221023T163719_045572_0572CB_554F.zip"
- checksum "41506ac47eef97b5e7e431bf6baf6817"
- datetime "2022-10-23T16:36:54Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 175
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T163654_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163654__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163654__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163654__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163654__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163654__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
8
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T163629_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T163629_20221023T163654_045572_0572CB_2955.zip"
- checksum "4a15e841ec57e739bca9390e7eff5731"
- datetime "2022-10-23T16:36:29Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 175
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T163629_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163629__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163629__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163629__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163629__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163629__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
9
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T163604_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T163604_20221023T163629_045572_0572CB_2E8B.zip"
- checksum "f2ae24583af92a6825e4a921b208eb0e"
- datetime "2022-10-23T16:36:04Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 175
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T163604_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163604__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163604__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163604__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163604__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T163604__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
10
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T052551_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T052551_20221023T052616_045565_057294_F89D.zip"
- checksum "59695663bcc43dbd3d2cd7559a9078eb"
- datetime "2022-10-23T05:25:51Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T052551_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052551__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052551__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052551__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052551__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052551__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
11
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T052551_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T052551_20221023T052616_045565_057294_F89D.zip"
- checksum "0bc086f3b2c575c1f6a68b88353880db"
- datetime "2022-10-23T05:25:51Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T052551_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052551__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052551__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052551__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052551__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052551__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
12
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T052526_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T052526_20221023T052551_045565_057294_42B7.zip"
- checksum "9f64f44a8ec92b1354ddcfaf48e29b57"
- datetime "2022-10-23T05:25:26Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T052526_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052526__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052526__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052526__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052526__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052526__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
13
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T052526_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T052526_20221023T052551_045565_057294_42B7.zip"
- checksum "e322b2f54e483dd350c367026b30358f"
- datetime "2022-10-23T05:25:26Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T052526_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052526__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052526__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052526__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052526__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052526__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
14
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T052501_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T052501_20221023T052526_045565_057294_BF8C.zip"
- checksum "f176ef7dac92bf9f8d96b7c9d8305630"
- datetime "2022-10-23T05:25:01Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T052501_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052501__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052501__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052501__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052501__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221023T052501__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
15
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221023T052501_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221023T052501_20221023T052526_045565_057294_BF8C.zip"
- checksum "95aa4b889d70c1a92f3ccbcc49772e84"
- datetime "2022-10-23T05:25:01Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221023T052501_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052501__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052501__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052501__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052501__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221023T052501__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
16
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T165324_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T165324_20221021T165349_045543_0571D2_4393.zip"
- checksum "35a7b82c08c254e4293f15b28b1acb29"
- datetime "2022-10-21T16:53:24Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 146
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T165324_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165324__VH_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165324__VH_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165324__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165324__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165324__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
17
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T165324_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T165324_20221021T165349_045543_0571D2_4393.zip"
- checksum "858a3263659c8a0441db477034913e19"
- datetime "2022-10-21T16:53:24Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 146
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T165324_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165324__VH_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165324__VH_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165324__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165324__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165324__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
18
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T165259_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T165259_20221021T165324_045543_0571D2_6951.zip"
- checksum "b884940015c71a6b21e85dd2f2e211a5"
- datetime "2022-10-21T16:52:59Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 146
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T165259_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165259__VH_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165259__VH_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165259__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165259__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165259__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
19
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T165259_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T165259_20221021T165324_045543_0571D2_6951.zip"
- checksum "fb9c7d641f0d2df7e34a2e8d141533bd"
- datetime "2022-10-21T16:52:59Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 146
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T165259_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165259__VH_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165259__VH_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165259__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165259__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165259__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
20
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T165234_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T165234_20221021T165259_045543_0571D2_B9CA.zip"
- checksum "3dfdfcd2935092999dbbc06179f3e156"
- datetime "2022-10-21T16:52:34Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 146
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T165234_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165234__VH_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165234__VH_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165234__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165234__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221021T165234__VV_A146_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
21
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T165234_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T165234_20221021T165259_045543_0571D2_B9CA.zip"
- checksum "dd39394f137c19ffab4e657b8b0fe59b"
- datetime "2022-10-21T16:52:34Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 146
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T165234_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165234__VH_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165234__VH_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165234__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165234__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T165234__VV_A146_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
22
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T054226_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T054226_20221021T054251_045536_057197_4954.zip"
- checksum "8aec43bb53a5416db462971d42fad37f"
- datetime "2022-10-21T05:42:26Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 139
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T054226_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054226__VH_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054226__VH_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054226__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054226__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054226__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
23
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T054201_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T054201_20221021T054226_045536_057197_7392.zip"
- checksum "41856983157ce7cebb623e9157ccc9f1"
- datetime "2022-10-21T05:42:01Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 139
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T054201_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054201__VH_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054201__VH_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054201__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054201__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054201__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
24
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221021T054136_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221021T054136_20221021T054201_045536_057197_A6AA.zip"
- checksum "f5e4f9bf8d9638ce95db51211ca55049"
- datetime "2022-10-21T05:41:36Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 139
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221021T054136_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054136__VH_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054136__VH_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054136__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054136__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221021T054136__VV_D139_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
25
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221020T050058_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221020T050058_20221020T050123_045521_057137_9C2A.zip"
- checksum "41a268c6e40e43ef0e84c6cd90fd6e45"
- datetime "2022-10-20T05:00:58Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 124
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221020T050058_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050058__VH_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050058__VH_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050058__VV_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050058__VV_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050058__VV_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
26
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221020T050033_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221020T050033_20221020T050058_045521_057137_D43A.zip"
- checksum "7accee8546a1d4c0910b5b87f8a5e30a"
- datetime "2022-10-20T05:00:33Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 124
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221020T050033_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050033__VH_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050033__VH_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050033__VV_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050033__VV_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221020T050033__VV_D124_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
27
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221019T170951_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221019T170951_20221019T171016_045514_057116_B8C4.zip"
- checksum "ce138071ffcbf0a7fb28d78868cbda00"
- datetime "2022-10-19T17:09:51Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 117
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221019T170951_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170951__VH_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170951__VH_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170951__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170951__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170951__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
28
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221019T170926_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221019T170926_20221019T170951_045514_057116_1CD0.zip"
- checksum "0998e2b2127d7b51cc1026ef7ffe2dd9"
- datetime "2022-10-19T17:09:26Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 117
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221019T170926_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170926__VH_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170926__VH_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170926__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170926__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170926__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
29
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221019T170901_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221019T170901_20221019T170926_045514_057116_B57F.zip"
- checksum "d1eea62c9fe2766f1545d15c4240bd61"
- datetime "2022-10-19T17:09:01Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 117
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221019T170901_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170901__VH_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170901__VH_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170901__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170901__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221019T170901__VV_A117_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
30
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221018T162842_A102_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221018T162842_20221018T162907_045499_0570B6_539E.zip"
- checksum "4f92883550d235e66c1954a218f12e8b"
- datetime "2022-10-18T16:28:42Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 102
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221018T162842_A102_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T162842__VH_A102_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T162842__VH_A102_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T162842__VV_A102_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T162842__VV_A102_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T162842__VV_A102_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
31
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221018T051742_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221018T051742_20221018T051807_045492_057078_24CE.zip"
- checksum "a75e8167a303f274629635fd748c57ad"
- datetime "2022-10-18T05:17:42Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 95
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221018T051742_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051742__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051742__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051742__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051742__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051742__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
32
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221018T051742_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221018T051742_20221018T051807_045492_057078_24CE.zip"
- checksum "da5ebe6d92c1f43b2635bf53fc105de4"
- datetime "2022-10-18T05:17:42Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 95
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221018T051742_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051742__VH_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051742__VH_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051742__VV_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051742__VV_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051742__VV_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
33
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221018T051717_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221018T051717_20221018T051742_045492_057078_D81C.zip"
- checksum "659ebb1448d2d60398e6c67bb5893be6"
- datetime "2022-10-18T05:17:17Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 95
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221018T051717_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051717__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051717__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051717__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051717__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051717__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
34
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221018T051717_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221018T051717_20221018T051742_045492_057078_D81C.zip"
- checksum "73eb7102dac6356d7bc8c782f672d870"
- datetime "2022-10-18T05:17:17Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 95
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221018T051717_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051717__VH_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051717__VH_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051717__VV_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051717__VV_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221018T051717__VV_D095_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
35
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221018T051652_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221018T051652_20221018T051717_045492_057078_9201.zip"
- checksum "d78749b7bc920b768c971ef19647ca7d"
- datetime "2022-10-18T05:16:52Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 95
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221018T051652_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051652__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051652__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051652__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051652__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051652__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
36
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221018T051627_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221018T051627_20221018T051652_045492_057078_068A.zip"
- checksum "5ea64d3b480471e2ddf6c714119222c9"
- datetime "2022-10-18T05:16:27Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 95
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221018T051627_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051627__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051627__VH_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051627__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051627__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221018T051627__VV_D095_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
37
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221016T164456_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221016T164456_20221016T164521_045470_057003_1D47.zip"
- checksum "0d5c2a152273e6ce31ee1d386285990b"
- datetime "2022-10-16T16:44:56Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 73
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221016T164456_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164456__VH_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164456__VH_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164456__VV_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164456__VV_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164456__VV_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
38
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221016T164431_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221016T164431_20221016T164456_045470_057003_FCCD.zip"
- checksum "ca8495dd8245004eb2d2eac9cb24ab39"
- datetime "2022-10-16T16:44:31Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 73
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221016T164431_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164431__VH_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164431__VH_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164431__VV_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164431__VV_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T164431__VV_A073_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
39
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221016T053404_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221016T053404_20221016T053429_045463_056FCA_CDF6.zip"
- checksum "7a1f04ed9f0b543200a7b58adbc85757"
- datetime "2022-10-16T05:34:04Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 66
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221016T053404_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053404__VH_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053404__VH_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053404__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053404__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053404__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
40
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221016T053339_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221016T053339_20221016T053404_045463_056FCA_0512.zip"
- checksum "c58c44f6c6990772569220e352376434"
- datetime "2022-10-16T05:33:39Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 66
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221016T053339_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053339__VH_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053339__VH_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053339__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053339__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053339__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
41
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221016T053314_D066_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221016T053314_20221016T053339_045463_056FCA_867E.zip"
- checksum "0ba10b0881599b62433b75caf1986ec9"
- datetime "2022-10-16T05:33:14Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 66
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221016T053314_D066_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T053314__VH_D066_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T053314__VH_D066_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T053314__VV_D066_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T053314__VV_D066_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221016T053314__VV_D066_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
42
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221016T053314_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221016T053314_20221016T053339_045463_056FCA_867E.zip"
- checksum "afa7ce8d26847db92a87fffc9a8be830"
- datetime "2022-10-16T05:33:14Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 66
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221016T053314_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053314__VH_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053314__VH_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053314__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053314__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221016T053314__VV_D066_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
43
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T170134_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T170134_20221014T170159_045441_056F18_32F6.zip"
- checksum "9d15975245d32c03eebb2b4b01655c7e"
- datetime "2022-10-14T17:01:34Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 44
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T170134_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170134__VH_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170134__VH_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170134__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170134__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170134__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
44
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T170134_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T170134_20221014T170159_045441_056F18_32F6.zip"
- checksum "864af244608a1138a05f54e49e388232"
- datetime "2022-10-14T17:01:34Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 44
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T170134_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170134__VH_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170134__VH_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170134__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170134__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170134__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
45
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T170109_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T170109_20221014T170134_045441_056F18_964C.zip"
- checksum "b2a3a5c6b9452a0713356dd3d11e6328"
- datetime "2022-10-14T17:01:09Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 44
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T170109_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170109__VH_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170109__VH_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170109__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170109__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170109__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
46
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T170109_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T170109_20221014T170134_045441_056F18_964C.zip"
- checksum "452e92eb88c1348cb49aaf9ea388dee5"
- datetime "2022-10-14T17:01:09Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 44
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T170109_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170109__VH_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170109__VH_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170109__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170109__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170109__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
47
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T170044_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T170044_20221014T170109_045441_056F18_7881.zip"
- checksum "fff48794a670683bab175b1676a96794"
- datetime "2022-10-14T17:00:44Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 44
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T170044_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170044__VH_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170044__VH_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170044__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170044__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221014T170044__VV_A044_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
48
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T170044_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T170044_20221014T170109_045441_056F18_7881.zip"
- checksum "1cefb143426f6e2defcaee11b0b82db6"
- datetime "2022-10-14T17:00:44Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 44
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T170044_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170044__VH_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170044__VH_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170044__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170044__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T170044__VV_A044_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
49
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T055012_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T055012_20221014T055037_045434_056EDB_F4A0.zip"
- checksum "dd95c49ee47c914e2d7eb5f58cee6d18"
- datetime "2022-10-14T05:50:12Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 37
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T055012_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T055012__VH_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T055012__VH_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T055012__VV_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T055012__VV_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T055012__VV_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
50
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221014T054947_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221014T054947_20221014T055012_045434_056EDB_B4AD.zip"
- checksum "99dea8e9b2ed131a02906396555f36b2"
- datetime "2022-10-14T05:49:47Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 37
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221014T054947_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T054947__VH_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T054947__VH_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T054947__VV_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T054947__VV_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221014T054947__VV_D037_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
51
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221013T050930_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221013T050930_20221013T050955_045419_056E67_E79A.zip"
- checksum "f88291252e4c552c39a9207b20d5af02"
- datetime "2022-10-13T05:09:30Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221013T050930_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050930__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050930__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050930__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050930__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050930__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
52
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221013T050905_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221013T050905_20221013T050930_045419_056E67_B9D3.zip"
- checksum "6baedba2a4e340b34beb99fb69d1fca3"
- datetime "2022-10-13T05:09:05Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221013T050905_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050905__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050905__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050905__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050905__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050905__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
53
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221013T050840_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221013T050840_20221013T050905_045419_056E67_2084.zip"
- checksum "59b523ee20986c1c1535b3c9caf8eaf5"
- datetime "2022-10-13T05:08:40Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221013T050840_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050840__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050840__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050840__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050840__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050840__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
54
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221013T050815_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221013T050815_20221013T050840_045419_056E67_A263.zip"
- checksum "f6319256140631ed3a03eb136ebe9ebf"
- datetime "2022-10-13T05:08:15Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 22
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221013T050815_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050815__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050815__VH_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050815__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050815__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221013T050815__VV_D022_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
55
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221012T171747_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221012T171747_20221012T171812_045412_056E2B_46A6.zip"
- checksum "8f601a54e7a0a49668aa4df45146ef60"
- datetime "2022-10-12T17:17:47Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 15
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221012T171747_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171747__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171747__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171747__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171747__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171747__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
56
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221012T171722_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221012T171722_20221012T171747_045412_056E2B_6F59.zip"
- checksum "4e632f797a6baf9164adfd7d7c70242e"
- datetime "2022-10-12T17:17:22Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 15
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221012T171722_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171722__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171722__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171722__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171722__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171722__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
57
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221012T171657_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221012T171657_20221012T171722_045412_056E2B_9DD8.zip"
- checksum "1a7c95803efd2b8e61d976d7fcf42bda"
- datetime "2022-10-12T17:16:57Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 15
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221012T171657_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171657__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171657__VH_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171657__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171657__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221012T171657__VV_A015_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
58
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T163654_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T163654_20221011T163719_045397_056DA0_04F2.zip"
- checksum "70b863e370ad7bdc0182aed0cdba9b86"
- datetime "2022-10-11T16:36:54Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 175
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T163654_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163654__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163654__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163654__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163654__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163654__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
59
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T163629_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T163629_20221011T163654_045397_056DA0_131F.zip"
- checksum "588881396f81a9e8e374a58c7d51b6c7"
- datetime "2022-10-11T16:36:29Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 175
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T163629_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163629__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163629__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163629__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163629__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163629__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
60
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T163604_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T163604_20221011T163629_045397_056DA0_5BF1.zip"
- checksum "98fdd50c97e3130851a5480fc71eba4e"
- datetime "2022-10-11T16:36:04Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "ascending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 175
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T163604_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163604__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163604__VH_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163604__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163604__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T163604__VV_A175_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
61
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T052551_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T052551_20221011T052616_045390_056D69_610B.zip"
- checksum "5c139c184080cb1fb7635e9441e4eda0"
- datetime "2022-10-11T05:25:51Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T052551_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052551__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052551__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052551__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052551__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052551__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
62
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T052551_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T052551_20221011T052616_045390_056D69_610B.zip"
- checksum "bc81f11f71d3aa3ab1285ed970c6654f"
- datetime "2022-10-11T05:25:51Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T052551_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052551__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052551__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052551__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052551__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052551__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
63
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T052526_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T052526_20221011T052551_045390_056D69_C1D0.zip"
- checksum "2b7fc72055f6530b2a4a72ba9ce026f5"
- datetime "2022-10-11T05:25:26Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T052526_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052526__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052526__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052526__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052526__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052526__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
64
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T052526_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T052526_20221011T052551_045390_056D69_C1D0.zip"
- checksum "0e7639b52bc28e2aa5b1e9a14f1a2311"
- datetime "2022-10-11T05:25:26Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T052526_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052526__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052526__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052526__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052526__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052526__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
65
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T052501_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 13.14982232
- 1 52.306556519
1[] 2 items
- 0 12.440351848
- 1 54.962810256
2[] 2 items
- 0 17.104148268
- 1 55.311871657
3[] 2 items
- 0 17.53297656
- 1 52.630546184
4[] 2 items
- 0 13.14982232
- 1 52.306556519
bbox[] 4 items
- 0 12.440351847963198
- 1 52.30655651888066
- 2 17.532976559623787
- 3 55.31187165740993
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T052501_20221011T052526_045390_056D69_8196.zip"
- checksum "299687143a82daea176ac33ae79d75cb"
- datetime "2022-10-11T05:25:01Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 5100000
- 1 2100000
- 2 5400000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E051N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 5100000.0
- 1 2100000.0
1[] 2 items
- 0 5100000.0
- 1 2400000.0
2[] 2 items
- 0 5400000.0
- 1 2400000.0
3[] 2 items
- 0 5400000.0
- 1 2100000.0
4[] 2 items
- 0 5100000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 5100000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VV"
- 1 "VH"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T052501_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052501__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052501__VH_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052501__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052501__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E051N021T3/SIG0_20221011T052501__VV_D168_E051N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
66
- type "Feature"
- stac_version "1.0.0"
stac_extensions[] 4 items
- 0 "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/sar/v1.0.0/schema.json"
- 2 "https://stac-extensions.github.io/projection/v1.1.0/schema.json"
- 3 "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
- id "SIG0_20221011T052501_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 8.845755602
- 1 51.822339363
1[] 2 items
- 0 7.875111625
- 1 54.441998586
2[] 2 items
- 0 12.440351848
- 1 54.962810256
3[] 2 items
- 0 13.14982232
- 1 52.306556519
4[] 2 items
- 0 8.845755602
- 1 51.822339363
bbox[] 4 items
- 0 7.875111625004859
- 1 51.82233936342244
- 2 13.149822320324414
- 3 54.962810255948426
properties
- gsd 20
- parent "S1A_IW_GRDH_1SDV_20221011T052501_20221011T052526_045390_056D69_8196.zip"
- checksum "199acef8f713e1f5909d2bf2ec6c3770"
- datetime "2022-10-11T05:25:01Z"
blocksize
- x 15000
- y 5
proj:bbox[] 4 items
- 0 4800000
- 1 2100000
- 2 5100000
- 3 2400000
- proj:wkt2 "PROJCS["Azimuthal_Equidistant",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["latitude_of_center",53],PARAMETER["longitude_of_center",24],PARAMETER["false_easting",5837287.81977],PARAMETER["false_northing",2121415.69617],UNIT["metre",1,AUTHORITY["EPSG","9001"]]]"
proj:shape[] 2 items
- 0 15000
- 1 15000
- Equi7_TileID "EU020M_E048N021T3"
- constellation "sentinel-1"
proj:geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 4800000.0
- 1 2100000.0
1[] 2 items
- 0 4800000.0
- 1 2400000.0
2[] 2 items
- 0 5100000.0
- 1 2400000.0
3[] 2 items
- 0 5100000.0
- 1 2100000.0
4[] 2 items
- 0 4800000.0
- 1 2100000.0
proj:transform[] 6 items
- 0 20
- 1 0
- 2 4800000
- 3 0
- 4 -20
- 5 2400000
- sat:orbit_state "descending"
- sar:product_type "GRD"
- slice_gap_filled False
sar:polarizations[] 2 items
- 0 "VH"
- 1 "VV"
- sar:frequency_band "C"
- sat:relative_orbit 168
- sar:instrument_mode "IW"
- border_noise_removed True
- sar:center_frequency 5.405
- sar:resolution_range 40
- thermal_noise_removed True
- sar:resolution_azimuth 40
- sar:pixel_spacing_range 20
- sar:observation_direction "right"
- sar:pixel_spacing_azimuth 20
- sat:platform_international_designator "2014-016A"
links[] 4 items
0
- rel "collection"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
1
- rel "parent"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M"
- type "application/json"
2
- rel "root"
- href "https://stac.eodc.eu/api/v1"
- type "application/json"
- title "EODC Data Catalogue"
3
- rel "self"
- href "https://stac.eodc.eu/api/v1/collections/SENTINEL1_SIG0_20M/items/SIG0_20221011T052501_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH"
- type "application/geo+json"
assets
VH
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052501__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VH Polarization"
- description "The Sigma Nought backscatter in VH polarization"
eo:bands[] 1 items
0
- name "VH"
- description "Sigma Nought in VH polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052501__VH_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
VV
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052501__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "VV Polarization"
- description "The Sigma Nought backscatter in VV polarization"
eo:bands[] 1 items
0
- name "VV"
- description "Sigma Nought in VV polarization"
alternate
local
- href "/eodc/products/eodc.eu/S1_CSAR_IWGRDH/SIG0/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052501__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif"
- type "image/tiff; application=geotiff"
- title "Local file path of the asset."
raster:bands[] 1 items
0
- scale 10
- nodata -9999
- offset 0
- data_type "int16"
- spatial_resolution 20
thumbnail
- href "https://data.eodc.eu/collections/SENTINEL1_SIG0_20M/V1M1R1/EQUI7_EU020M/E048N021T3/SIG0_20221011T052501__VV_D168_E048N021T3_EU020M_V1M1R1_S1AIWGRDH_TUWIEN.tif/thumbnail"
- type "image/png"
- title "Preview Image"
- description "thumbnail image of asset VV"
roles[] 1 items
- 0 "thumbnail"
- collection "SENTINEL1_SIG0_20M"
The state of the orbit and relative orbit number is also saved, as the water and land likelihoods (which are calculated later on) dependent on the orbital configuration. These variables will be added as additional coordinates to the data cube. For this purpose a small helper function is defined, like so:
def extract_orbit_names(items):
return np.array(
[
items[i].properties["sat:orbit_state"][0].upper()
+ str(items[i].properties["sat:relative_orbit"])
for i in range(len(items))
]
)
We will also save the scaling factor and nodata values of STAC items to correct the loaded data accordingly. Again a helper function will be used to correctly scale and fill no data values of the cube.
def post_process_eodc_cube(dc: xr.Dataset, items, bands):
if not isinstance(bands, tuple):
bands = tuple([bands])
for i in bands:
dc[i] = post_process_eodc_cube_(
dc[i], items, i
) # https://github.com/TUW-GEO/dask-flood-mapper.git
return dc
def post_process_eodc_cube_(dc: xr.Dataset, items, band):
scale = items[0].assets[band].extra_fields.get("raster:bands")[0]["scale"]
nodata = items[0].assets[band].extra_fields.get("raster:bands")[0]["nodata"]
return dc.where(dc != nodata) / scale
The VV polarization of the discover items can be loaded with odc-stac
and cast in the desired projection and resolution. The data is at this point only lazily loaded, meaning that we only make an instance of the outlines of the datacube with the proper shape and resolution, but without actually loading all the data. This is done by providing the chunks as defined before, which partitions the data in portions which are more easily handled by the setup used for processing the data (in this case my own pc).
bands = "VV"
sig0_dc = odc_stac.load(
items_sig0,
bands=bands,
crs=crs,
chunks=chunks,
resolution=res,
bbox=bounding_box,
resampling="bilinear",
groupby=None,
)
Now we can rescale our variable, fill the no data values with np.nan
values, and add the orbit names, with the previous defined functions.
sig0_dc = (
post_process_eodc_cube(sig0_dc, items_sig0, bands)
.rename_vars({"VV": "sig0"})
.assign_coords(orbit=("time", extract_orbit_names(items_sig0)))
.dropna(dim="time", how="all")
.sortby("time")
)
Then we remove duplicate time dimensions from the data cube and extract the orbit names as we will need those for obtaining the correct harmonic parameters and local incidence angles,as explained in the next section. Also, note, that we call dask.persist
to materialize the object but retain it as a delayed object in the workers memory.
__, indices = np.unique(sig0_dc.time, return_index=True)
indices.sort()
orbit_sig0 = sig0_dc.orbit[indices].data
sig0_dc = sig0_dc.groupby("time").mean(skipna=True)
sig0_dc = sig0_dc.assign_coords(orbit=("time", orbit_sig0))
sig0_dc = sig0_dc.persist()
wait(sig0_dc)
sig0_dc
<xarray.Dataset> Size: 237MB Dimensions: (time: 8, latitude: 1668, longitude: 4445) Coordinates: * latitude (latitude) float64 13kB 54.6 54.6 54.6 54.6 ... 54.3 54.3 54.3 * longitude (longitude) float64 36kB 12.3 12.3 12.3 12.3 ... 13.1 13.1 13.1 spatial_ref int32 4B 4326 * time (time) datetime64[ns] 64B 2022-10-11T05:25:01 ... 2022-10-23... orbit (time) <U4 128B 'D168' 'A44' 'A44' ... 'A146' 'A146' 'D168' Data variables: sig0 (time, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray>
Harmonic Parameters#
The so-called likelihoods of \(P(\sigma^0|flood)\) and \(P(\sigma^0|nonflood)\) can be calculated from past backscattering information. To be able to this we load the harmonic parameters we can model the expected variations in land back scattering based on seasonal changes in vegetation. The procedure is similar to the backscattering routine.
We discover items.
search = eodc_catalog.search(collections="SENTINEL1_HPAR", bbox=bounding_box)
items_hpar = search.item_collection()
Load the data as a lazy object.
bands = ("C1", "C2", "C3", "M0", "S1", "S2", "S3", "STD")
hpar_dc = odc_stac.load(
items_hpar,
bands=bands,
crs=crs,
chunks=chunks,
resolution=res,
bbox=bounding_box,
groupby=None,
)
hpar_dc = post_process_eodc_cube(hpar_dc, items_hpar, bands).rename({"time": "orbit"})
hpar_dc["orbit"] = extract_orbit_names(items_hpar)
hpar_dc = hpar_dc.groupby("orbit").mean(skipna=True)
We expand the variables along the orbits of sigma naught to be able to calculate the correct land reference backscatter signatures.
hpar_dc = hpar_dc.sel(orbit=orbit_sig0)
hpar_dc = hpar_dc.persist()
wait(hpar_dc)
hpar_dc
<xarray.Dataset> Size: 2GB Dimensions: (orbit: 8, latitude: 1668, longitude: 4445) Coordinates: * latitude (latitude) float64 13kB 54.6 54.6 54.6 54.6 ... 54.3 54.3 54.3 * longitude (longitude) float64 36kB 12.3 12.3 12.3 12.3 ... 13.1 13.1 13.1 spatial_ref int32 4B 4326 * orbit (orbit) object 64B 'D168' 'A44' 'A44' ... 'A146' 'A146' 'D168' Data variables: C1 (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> C2 (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> C3 (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> M0 (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> S1 (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> S2 (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> S3 (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> STD (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray>
Local Incidence Angles#
Local incidence angles of measured microwave backscattering is as well important for calculating reference backscatter values, but now for water bodies. The procedure is much the same as for the harmonic parameters.
search = eodc_catalog.search(collections="SENTINEL1_MPLIA", bbox=bounding_box)
items_plia = search.item_collection()
Load the lazy object and preprocess.
bands = "MPLIA"
plia_dc = odc_stac.load(
items_plia,
bands=bands,
crs=crs,
chunks=chunks,
resolution=res,
bbox=bounding_box,
groupby=None,
)
plia_dc = post_process_eodc_cube(plia_dc, items_plia, bands).rename({"time": "orbit"})
plia_dc["orbit"] = extract_orbit_names(items_plia)
plia_dc = plia_dc.groupby("orbit").mean(skipna=True)
We expand the variables along the orbits of sigma naught to be able to calculate the correct land reference backscatter signatures.
plia_dc = plia_dc.sel(orbit=orbit_sig0)
plia_dc = plia_dc.persist()
wait(plia_dc)
plia_dc
<xarray.Dataset> Size: 237MB Dimensions: (orbit: 8, latitude: 1668, longitude: 4445) Coordinates: * latitude (latitude) float64 13kB 54.6 54.6 54.6 54.6 ... 54.3 54.3 54.3 * longitude (longitude) float64 36kB 12.3 12.3 12.3 12.3 ... 13.1 13.1 13.1 spatial_ref int32 4B 4326 * orbit (orbit) object 64B 'D168' 'A44' 'A44' ... 'A146' 'A146' 'D168' Data variables: MPLIA (orbit, latitude, longitude) float32 237MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray>
ESA World Cover from Terrascope#
For flood mapping we are only interested in microwave backscattering over what used to be land, as such, we need a way to mask water bodies. For this we use the ESA World Cover data from the following STAC catalog.
import os
os.environ["AWS_NO_SIGN_REQUEST"] = "YES"
wcover_catalog = pystac_client.Client.open("https://services.terrascope.be/stac/")
Similarly, we discover the required items.
search = wcover_catalog.search(
collections="urn:eop:VITO:ESA_WorldCover_10m_2021_AWS_V2", bbox=bounding_box
)
items_wcover = search.item_collection()
Load the data lazily.
wcover_dc = (
odc_stac.load(
items_wcover,
crs=crs,
chunks=chunks,
resolution=res,
bbox=bounding_box,
)
.squeeze("time")
.drop_vars("time")
.rename_vars({"ESA_WORLDCOVER_10M_MAP": "wcover"})
)
wcover_dc = wcover_dc.persist()
wait(wcover_dc)
wcover_dc
<xarray.Dataset> Size: 30MB Dimensions: (latitude: 1668, longitude: 4445) Coordinates: * latitude (latitude) float64 13kB 54.6 54.6 54.6 54.6 ... 54.3 54.3 54.3 * longitude (longitude) float64 36kB 12.3 12.3 12.3 12.3 ... 13.1 13.1 13.1 spatial_ref int32 4B 4326 Data variables: wcover (latitude, longitude) float32 30MB dask.array<chunksize=(1300, 1300), meta=np.ndarray>
Fuse cube#
Here we fuse the four data cubes together and filter for the values that have a HAND value of above zero. We can now drop the obit coordinates as well as time slices which contain no land backscattering data.
flood_dc = xr.merge([sig0_dc, plia_dc, hpar_dc, wcover_dc])
flood_dc = flood_dc.where(flood_dc.wcover != 80)
flood_dc = (
flood_dc.reset_index("orbit", drop=True)
.rename({"orbit": "time"})
.dropna(dim="time", how="all", subset=["sig0"])
)
flood_dc = flood_dc.persist()
wait(flood_dc)
flood_dc
<xarray.Dataset> Size: 2GB Dimensions: (time: 6, latitude: 1668, longitude: 4445) Coordinates: * latitude (latitude) float64 13kB 54.6 54.6 54.6 54.6 ... 54.3 54.3 54.3 * longitude (longitude) float64 36kB 12.3 12.3 12.3 12.3 ... 13.1 13.1 13.1 spatial_ref int32 4B 4326 * time (time) datetime64[ns] 48B 2022-10-11T05:25:01 ... 2022-10-23... Data variables: sig0 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> MPLIA (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> C1 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> C2 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> C3 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> M0 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> S1 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> S2 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> S3 (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> STD (time, latitude, longitude) float32 178MB dask.array<chunksize=(1, 1300, 1300), meta=np.ndarray> wcover (latitude, longitude) float32 30MB dask.array<chunksize=(1300, 1300), meta=np.ndarray>
Likelihoods#
Now we are ready to calculate the likelihoods of micorwave backscattering given flooding (or non flooding).
Water#
We start with water which is the simplest calculation, where the hard coded values are coefficients of a regression model fitted to global water backscattering values.
def calc_water_likelihood(dc):
return dc.MPLIA * -0.394181 + -4.142015
flood_dc["wbsc"] = calc_water_likelihood(flood_dc)
Land#
For land backscattering we construct the harmonic model from the parameters as contained in the fused data cube. By doing so, we obtain a reference land backscattering value to which to compare our actual observed sigma naught values.
def harmonic_expected_backscatter(dc):
w = np.pi * 2 / 365
t = dc.time.dt.dayofyear
wt = w * t
M0 = dc.M0
S1 = dc.S1
S2 = dc.S2
S3 = dc.S3
C1 = dc.C1
C2 = dc.C2
C3 = dc.C3
hm_c1 = (M0 + S1 * np.sin(wt)) + (C1 * np.cos(wt))
hm_c2 = (hm_c1 + S2 * np.sin(2 * wt)) + C2 * np.cos(2 * wt)
hm_c3 = (hm_c2 + S3 * np.sin(3 * wt)) + C3 * np.cos(3 * wt)
return hm_c3
flood_dc["hbsc"] = harmonic_expected_backscatter(flood_dc)
Flood mapping#
Having calculated the likelihoods, we can now move on to calculate the probability of (non-)flooding given a pixel’s \(\sigma^0\). These so-called posteriors need one more piece of information, as can be seen in the equation above. We need the probability that a pixel is flooded \(P(F)\) or not flooded \(P(NF)\). Of course, these are the figures we’ve been trying to find this whole time. We don’t actually have them yet, so what can we do? In Bayesian statistics, we can just start with our best guess. These guesses are called our “priors”, because they are the beliefs we hold prior to looking at the data. This subjective prior belief is the foundation Bayesian statistics, and we use the likelihoods we just calculated to update our belief in this particular hypothesis. This updated belief is called the “posterior”.
Let’s say that our best estimate for the chance of flooding versus non-flooding of a pixel is 50-50: a coin flip. We now can also calculate the probability of backscattering \(P(\sigma^0)\), as the weighted average of the water and land likelihoods, ensuring that our posteriors range between 0 to 1.
The following code block shows how we calculate the priors which allow use to predict whether it is likely if a land pixel became flooded.
def bayesian_flood_decision(dc):
nf_std = 2.754041
sig0 = dc.sig0
std = dc.STD
wbsc = dc.wbsc
hbsc = dc.hbsc
f_prob = (1.0 / (std * np.sqrt(2 * np.pi))) * np.exp(
-0.5 * (((sig0 - wbsc) / nf_std) ** 2)
)
nf_prob = (1.0 / (nf_std * np.sqrt(2 * np.pi))) * np.exp(
-0.5 * (((sig0 - hbsc) / nf_std) ** 2)
)
evidence = (nf_prob * 0.5) + (f_prob * 0.5)
nf_post_prob = (nf_prob * 0.5) / evidence
f_post_prob = (f_prob * 0.5) / evidence
decision = xr.where(
np.isnan(f_post_prob) | np.isnan(nf_post_prob),
np.nan,
np.greater(f_post_prob, nf_post_prob),
)
return nf_post_prob, f_post_prob, decision
flood_dc[["nf_post_prob", "f_post_prob", "decision"]] = bayesian_flood_decision(
flood_dc
)
Postprocessing#
We continue by improving our flood map by filtering out observations that we expect to have low sensitivity to flooding based on a predefined set of criteria.
These criteria include:
Masking of Exceeding Incidence Angles
Identification of Conflicting Distributions
Removal of Measurement Outliers
Denial of High Uncertainty on Decision
def post_processing(dc):
dc = dc * np.logical_and(dc.MPLIA >= 27, dc.MPLIA <= 48)
dc = dc * (dc.hbsc > (dc.wbsc + 0.5 * 2.754041))
land_bsc_lower = dc.hbsc - 3 * dc.STD
land_bsc_upper = dc.hbsc + 3 * dc.STD
water_bsc_upper = dc.wbsc + 3 * 2.754041
mask_land_outliers = np.logical_and(
dc.sig0 > land_bsc_lower, dc.sig0 < land_bsc_upper
)
mask_water_outliers = dc.sig0 < water_bsc_upper
dc = dc * (mask_land_outliers | mask_water_outliers)
return (dc * (dc.f_post_prob > 0.8)).decision
flood_output = post_processing(flood_dc)
Removal of Speckles#
The following step is designed to further improve the clarity of the floodmaps. These filters do not directly relate to prior knowledge on backscattering, but consists of contextual evidence that supports, or oppose, a flood classification. This mainly targets so-called speckles. These speckles are areas of one or a few pixels, and which are likely the result of the diversity of scattering surfaces at a sub-pixel level. In this approach it is argued that small, solitary flood surfaces are unlikely. Hence speckles are removed by applying a smoothing filter which consists of a rolling window median along the x and y-axis simultaneously.
flood_output = (
flood_output.rolling({"longitude": 5, "latitude": 5}, center=True)
.median(skipna=True)
.persist()
)
wait(flood_output)
flood_output
<xarray.DataArray 'decision' (time: 6, latitude: 1668, longitude: 4445)> Size: 356MB dask.array<where, shape=(6, 1668, 4445), dtype=float64, chunksize=(1, 1302, 1302), chunktype=numpy.ndarray> Coordinates: * latitude (latitude) float64 13kB 54.6 54.6 54.6 54.6 ... 54.3 54.3 54.3 * longitude (longitude) float64 36kB 12.3 12.3 12.3 12.3 ... 13.1 13.1 13.1 spatial_ref int32 4B 4326 * time (time) datetime64[ns] 48B 2022-10-11T05:25:01 ... 2022-10-23...
Results#
In the following graphic we superimpose the data on a map and we can move the slider to see which areas become flooded over time.
import hvplot.xarray
flood_output.hvplot.image(
x="longitude",
y="latitude",
rasterize=True,
geo=True,
tiles=True,
project=True,
cmap=["rgba(0, 0, 1, 0.1)", "darkred"],
cticks=[(0, "non-flood"), (1, "flood")],
frame_height=400,
)
client.close()