Datasets:
The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 81, in _split_generators
first_examples = list(islice(pipeline, self.NUM_EXAMPLES_FOR_FEATURES_INFERENCE))
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 32, in _get_pipeline_from_tar
fs: fsspec.AbstractFileSystem = fsspec.filesystem("memory")
~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 302, in filesystem
cls = get_filesystem_class(protocol)
File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 239, in get_filesystem_class
raise ValueError(f"Protocol not known: {protocol}")
ValueError: Protocol not known: memory
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
ONERA/S1_GRD_LC — Sentinel-1 GRD + Land Cover
For each high-resolution SAR imagette (UMBRA) from SARLO-80 dataset, we provide the co-located Sentinel-1 GRD 10 m backscatter (VV/VH) and the corresponding ESA WorldCover 10 m land-cover map.
Source
Each sample is anchored on a high-resolution UMBRA SAR imagette. From the SICD metadata we recover the imagette's 4 WGS84 corners (image-to-ground projection) and derive its geographic bounding box.
Adding Sentinel-1 GRD (method + format)
Method. From the 4 corners we build a north-up UTM grid at 10.0 m.
We then query Sentinel-1 GRD (IW mode, VV + VH) from the
Copernicus Data Space Ecosystem through the Sentinel Hub Process API,
sampled directly on that grid. Backscatter is orthorectified
(Copernicus DEM), expressed as GAMMA0_TERRAIN, and converted to dB.
The composite is built over 2020-01-01 → 2021-01-01.
Because the S1 GRD is orthorectified (north-up product), there is no warp
to the SAR geometry at this stage: S1 and land cover share the same grid
(crs + transform + dimensions) and are therefore co-registered.
Format.
| File | Type | Description |
|---|---|---|
{id}.map.s1_grd.npy |
float32 (2, H, W) |
[VV, VH] in dB, UTM grid |
{id}.map.s1_vv.png / s1_vh.png |
uint8 (H, W) |
dB visualization (VV∈[-25,0], VH∈[-30,-5]) |
{id}.map.s1_rgb.png |
uint8 (H, W, 3) |
RGB = [VV, VH, VV−VH] |
Collection: SENTINEL1_IW. Units of the .npy: dB. PNGs are simple 8-bit
renderings with a fixed dynamic range (for visual inspection only).
Land cover
Source: ESA WorldCover v100 (2020), sampled on the same grid as the S1 GRD.
| File | Type | Description |
|---|---|---|
{id}.map.landcover.npy |
uint8 (H, W) |
WorldCover class IDs |
{id}.map.landcover.png |
uint8 (H, W, 3) |
official colorization |
Class table:
| ID | Class | Color |
|---|---|---|
| 10 | Tree cover | #006400 |
| 20 | Shrubland | #ffbb22 |
| 30 | Grassland | #ffff4c |
| 40 | Cropland | #f096ff |
| 50 | Built-up | #fa0000 |
| 60 | Bare / sparse vegetation | #b4b4b4 |
| 70 | Snow and ice | #f0f0f0 |
| 80 | Permanent water bodies | #0064c8 |
| 90 | Herbaceous wetland | #0096a0 |
| 95 | Mangroves | #00cf75 |
| 100 | Moss and lichen | #fae6a0 |
Without / with affine transform
Every sample is available in two co-registered frames:
map_grid(prefixmap.) — north-up UTM 10.0 m map grid, without any affine transform.sar_frame(prefixsar.) — the same S1 and land cover resampled into the native UMBRA SAR image frame using an affine transform estimated from the 4 corners (S1 bilinear, land cover nearest-neighbor). Aligned with the original SAR amplitude ({id}.umbra_sar.png). The 2×3 affine matrix is stored inmeta.json(affine_map_to_sar_2x3).
Sample contents
{id}.map.s1_grd.npy {id}.sar.s1_grd.npy
{id}.map.s1_vv.png {id}.sar.s1_vv.png
{id}.map.s1_vh.png {id}.sar.s1_vh.png
{id}.map.s1_rgb.png {id}.sar.s1_rgb.png
{id}.map.landcover.npy {id}.sar.landcover.npy
{id}.map.landcover.png {id}.sar.landcover.png
{id}.umbra_sar.png (original UMBRA SAR amplitude, SAR frame)
{id}.meta.json (corners, bbox, grid, affine, S1/LC info)
Directory structure
train/chunk_XXX/shard-YYYYY.tar (WebDataset)
Loading (WebDataset)
import webdataset as wds, numpy as np, io, json
url = "https://huggingface.co/datasets/ONERA/S1_GRD_LC/resolve/main/train/chunk_000/shard-00000.tar"
ds = wds.WebDataset(url)
for s in ds:
vv_vh = np.load(io.BytesIO(s["map.s1_grd.npy"])) # (2,H,W) dB
lc = np.load(io.BytesIO(s["map.landcover.npy"])) # (H,W) classes
meta = json.loads(s["meta.json"])
break
map_grid = without affine (UTM), sar_frame = with affine (SAR frame).
- Downloads last month
- 185
