LouisGeist commited on
Commit
a855d26
·
verified ·
1 Parent(s): 9abe3d0

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -28
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- license: etalab-2.0
3
  pretty_name: MALiBU3D
4
  task_categories:
5
  - image-segmentation
@@ -19,18 +19,33 @@ configs:
19
 
20
  # MALiBU3D
21
 
22
- Large-scale **training-ready** airborne LiDAR point clouds over France, with
23
- land-cover labels, natural-habitat axes, canopy-height (`elevation`), RGB, and
24
- road-network graphs. Built on
25
- [IGNF/FLAIR-HUB](https://huggingface.co/datasets/IGNF/FLAIR-HUB) 100 m tiles
26
- plus IGN LiDAR HD. Former working name: Flair3D.
27
 
28
- This Hub repo ships the **preprocessed** arrays used for training (NumPy `.npy`
29
- inside one **zip per ROI**), not the raw GeoTIFFs / PLYs. Unzip onto local
30
- scratch for training (`np.load` / mmap). The zip is the distribution format.
31
 
32
- A **tile** is a ~100×100 m square. An **ROI** groups neighbouring tiles (and
33
- holds the optional road graph).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  ## Download
36
 
@@ -56,7 +71,7 @@ A tiny extracted ROI lives under `toy/` for inspection.
56
  ```text
57
  labels.json
58
  palettes.json
59
- scene_split_manifest.csv # original split table (all FLAIR-HUB rows)
60
  tiles.parquet # Hub viewer catalog (released tiles only)
61
  tiles.csv # same catalog (zip_path, forest georef, n_points, …)
62
  SHA256SUMS
@@ -72,14 +87,22 @@ Each `{roi}.zip` (flat, no wrapping `{roi}/` folder):
72
  {tile_id}/color.npy uint8 (N, 3)
73
  {tile_id}/segment.npy uint8 (N,) land cover, Void=15
74
  {tile_id}/strength.npy float32 (N,) LiDAR intensity ~[0, 1]
75
- {tile_id}/elevation.npy float32 (N,) z − DTM (optional)
76
- {tile_id}/natural_habitat.npy uint8 (N, 4) ecological axes (optional)
77
  {tile_id}/forest_2d.npy uint8 (1, H, W)
78
- {deptcode}_{roi}_ROADS_graph.gpkg optional, EPSG:2154
79
  ```
80
 
81
  Absolute coordinates: `xyz_abs = coord + coord_translation` (EPSG:2154).
82
 
 
 
 
 
 
 
 
 
83
  **Not included:** per-tile `meta.json`, `network.npy`, per-point `forest.npy`,
84
  `land_use.npy`, rail / transmission-line graphs. `RAILROADS` /
85
  `TRANSMISSION_LINES` columns in the catalog remain as FLAIR-HUB availability
@@ -87,9 +110,10 @@ flags.
87
 
88
  ## Manifest vs catalog
89
 
90
- `scene_split_manifest.csv` is the **original** split table (identifiers only,
91
- column `patch_id` = the 100 m tile). It still lists FLAIR-HUB rows without
92
- LiDAR. Reconstruct on disk:
 
93
 
94
  ```text
95
  {data_root}/{split}/{dept_year}_LIDARHD/{roi}/{tile_id}
@@ -107,12 +131,12 @@ global (`labels.json`).
107
  See `labels.json`. Land cover (`segment.npy`): 15 train classes + Void=15.
108
 
109
  Natural habitat (`natural_habitat.npy`): **`(N, 4)` uint8**, already remapped
110
- from CarHab. Column order is `labels.json` → `natural_habitat.columns`:
111
 
112
  | col | key | classes | Void |
113
  | --- | --- | --- | --- |
114
  | 0 | `nathab_habitat_type` | Open, Forest, Mineral, Aquatic | 4 |
115
- | 1 | `nathab_moisture_regime` | Humide, Mesique, Sec | 3 |
116
  | 2 | `nathab_soil_chemistry` | Acidic, Alkaline | 2 |
117
  | 3 | `nathab_bioclimatic_zone` | Temperate, Mediterranean, Alpine | 3 |
118
 
@@ -152,11 +176,4 @@ absolute EPSG:2154.
152
 
153
  ## Licence and attribution
154
 
155
- Licence Ouverte 2.0 / Etalab (see `LICENSE`). Attribute IGN and FLAIR-HUB.
156
- Derived semantic labels and graphs are produced by this project.
157
-
158
- ## Loader notes
159
-
160
- On-disk `segment` is **uint8** `(N,)`. `natural_habitat` is **uint8** `(N, 4)`.
161
- Cast if a loader asserts another integer dtype. Per-point `forest.npy`,
162
- `land_use.npy`, and `network.npy` are absent.
 
1
  ---
2
+ license: other
3
  pretty_name: MALiBU3D
4
  task_categories:
5
  - image-segmentation
 
19
 
20
  # MALiBU3D
21
 
22
+ **A Multitask Aerial LiDAR Benchmark for Large-Scale 3D Scene Understanding.**
 
 
 
 
23
 
24
+ Paper (arXiv, TODO): [https://arxiv.org/abs/XXXX.XXXXX](https://arxiv.org/abs/XXXX.XXXXX)
 
 
25
 
26
+ Training code (GitHub, TODO): [https://github.com/louisgeist/MALiBU3D](https://github.com/louisgeist/MALiBU3D)
27
+
28
+ MALiBU3D is a large-scale multitask ALS benchmark: **59 billion** LiDAR
29
+ points over **2,221 km²** of metropolitan France (overlap of the national
30
+ [LiDAR HD](https://geoservices.ign.fr/lidarhd) programme and
31
+ [IGNF/FLAIR-HUB](https://huggingface.co/datasets/IGNF/FLAIR-HUB)). It spans
32
+ urban, agricultural, forested, mountainous, and coastal landscapes, with
33
+ point-wise intensity and aerial RGB.
34
+
35
+ Supervision covers five complementary tasks:
36
+
37
+ - land-cover segmentation (15 classes)
38
+ - forest-cover segmentation
39
+ - natural-habitat distribution (four ecological axes)
40
+ - road-network prediction
41
+ - elevation regression
42
+
43
+ Zones are ~1 km² and split into **100 × 100 m tiles**. Train / val / test
44
+ follow the FLAIR-HUB departmental split.
45
+
46
+ This Hub repo ships the **training-ready** arrays (NumPy `.npy` inside one
47
+ **zip per ROI**), not the raw GeoTIFFs / PLYs. Unzip onto local scratch for
48
+ training (`np.load` / mmap). The zip is the distribution format.
49
 
50
  ## Download
51
 
 
71
  ```text
72
  labels.json
73
  palettes.json
74
+ scene_split_manifest.csv # split table (all FLAIR-HUB rows)
75
  tiles.parquet # Hub viewer catalog (released tiles only)
76
  tiles.csv # same catalog (zip_path, forest georef, n_points, …)
77
  SHA256SUMS
 
87
  {tile_id}/color.npy uint8 (N, 3)
88
  {tile_id}/segment.npy uint8 (N,) land cover, Void=15
89
  {tile_id}/strength.npy float32 (N,) LiDAR intensity ~[0, 1]
90
+ {tile_id}/elevation.npy float32 (N,) z − DTM, if present
91
+ {tile_id}/natural_habitat.npy uint8 (N, 4) ecological axes, if present
92
  {tile_id}/forest_2d.npy uint8 (1, H, W)
93
+ {deptcode}_{roi}_ROADS_graph.gpkg EPSG:2154, if the ROI has roads
94
  ```
95
 
96
  Absolute coordinates: `xyz_abs = coord + coord_translation` (EPSG:2154).
97
 
98
+ Not every tile has a DTM or CarHab coverage, and not every ROI has
99
+ roads. `elevation.npy` is omitted where `DEM_ELEV` is false;
100
+ `natural_habitat.npy` where `NATURAL_HABITAT` is false; the GeoPackage
101
+ where `ROADS` is false. Those flags come from
102
+ `scene_split_manifest.csv` (the Pointcept split table). `tiles.csv`
103
+ repeats them as `has_elevation`, `has_natural_habitat`, and
104
+ `has_roads_graph`.
105
+
106
  **Not included:** per-tile `meta.json`, `network.npy`, per-point `forest.npy`,
107
  `land_use.npy`, rail / transmission-line graphs. `RAILROADS` /
108
  `TRANSMISSION_LINES` columns in the catalog remain as FLAIR-HUB availability
 
110
 
111
  ## Manifest vs catalog
112
 
113
+ `scene_split_manifest.csv` is the Pointcept split table
114
+ (identifiers plus modality flags `LIDARHD`, `NATURAL_HABITAT`, `DEM_ELEV`,
115
+ `ROADS`, …). Column `patch_id` is the 100 m tile. It still lists FLAIR-HUB
116
+ rows without LiDAR. Reconstruct on disk:
117
 
118
  ```text
119
  {data_root}/{split}/{dept_year}_LIDARHD/{roi}/{tile_id}
 
131
  See `labels.json`. Land cover (`segment.npy`): 15 train classes + Void=15.
132
 
133
  Natural habitat (`natural_habitat.npy`): **`(N, 4)` uint8**, already remapped
134
+ from CarHab to the 4 ecological axes. Column order is `labels.json` → `natural_habitat.columns`:
135
 
136
  | col | key | classes | Void |
137
  | --- | --- | --- | --- |
138
  | 0 | `nathab_habitat_type` | Open, Forest, Mineral, Aquatic | 4 |
139
+ | 1 | `nathab_moisture_regime` | Humid, Mesic, Dry | 3 |
140
  | 2 | `nathab_soil_chemistry` | Acidic, Alkaline | 2 |
141
  | 3 | `nathab_bioclimatic_zone` | Temperate, Mediterranean, Alpine | 3 |
142
 
 
176
 
177
  ## Licence and attribution
178
 
179
+ TODO: licence to be defined (see `LICENSE`).