Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
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/packaged_modules/json/json.py", line 290, in _generate_tables
                  pa_table = paj.read_json(
                      io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
                  )
                File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
                File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
                  return check_status(status)
                File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
                  raise convert_status(status)
              pyarrow.lib.ArrowInvalid: JSON parse error: Column(/styles/[]/geometry/visible) changed from boolean to object in row 0
              
              During handling of the above exception, another exception occurred:
              
              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/json/json.py", line 101, in _split_generators
                  pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
                             ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 304, in _generate_tables
                  batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
                  examples = [ujson_loads(line) for line in original_batch.splitlines()]
                              ~~~~~~~~~~~^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
                  return pd.io.json.ujson_loads(*args, **kwargs)
                         ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
              ValueError: Expected object or value
              
              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.

City3D-MultiGen

A benchmark of ~163K densely annotated city tiles from Melbourne (Australia) and London (UK), each with aligned point-cloud geometry, satellite imagery, semantic segmentation maps, and a Digital Surface Model (DSM).

City3D-MultiGen is the benchmark introduced in our ECCV 2026 paper "GridFlow: Structured Latent Flow for Seamless City-Scale 3D Point Cloud Generation."


⚠️ Important: this repository does not redistribute third-party data

To comply with the Google Maps Platform Terms of Service and the licenses of the source 3D datasets, this repository does not contain:

  • ❌ Satellite images (*_sat.png) — retrieved from the Google Maps Static API
  • ❌ Styled map renders (*_map.png) — Google Maps content
  • ❌ Semantic masks (*_Building.png, *_RoadSurface.png, …) — derived from the Google map renders, and therefore also Google-derived content
  • ❌ Source point clouds (City of Melbourne LiDAR, HoliCity meshes)

Instead, this repository provides everything you need to reproduce the full dataset yourself:

  • ✅ The complete processing pipeline scripts
  • Tile coordinate metadata (the geographic grid that defines every tile)
  • ✅ Train / validation / test split lists
  • ✅ Step-by-step instructions below

You bring your own Google Maps Platform API key and download the source 3D data from its official providers; the scripts then rebuild the aligned multi-modal tiles locally.


What gets reconstructed (per-tile layout)

After running the pipeline, each tile grid_<id>/ contains:

File Modality Produced by
grid_<id>.las Point cloud (geometry + RGB) tiling the source point cloud
grid_<id>.json Tile metadata (geo-extent, grid index) tiling
grid_<id>_sat.png Satellite image Google Maps Static API
grid_<id>_map.png Styled semantic render Google Maps Static API
grid_<id>_<Class>.png Per-class binary masks parsing _map.png
grid_<id>_dsm.tif / _dsm.png Digital Surface Model rasterized from the point cloud
grid_<id>_bev.png Bird's-eye-view render rendered from the point cloud

Semantic classes (6): Building, RoadSurface, Railway, VegetationLand, UrbanLand, WaterSurface.


Prerequisites

pip install -r requirements.txt

System dependency — PDAL. The tiling scripts call PDAL (pdal translate and PDAL pipelines) to crop tiles and write LAS spatial-reference headers. PDAL is not a pip package; install it via conda or your system package manager:

conda install -c conda-forge pdal
# or (Debian/Ubuntu):  sudo apt-get install pdal

You will also need a Google Maps Platform account with the Maps Static API enabled:

  • GOOGLE_MAPS_API_KEY — your API key
  • GOOGLE_MAPS_URL_SIGNING_SECRET — your URL-signing secret
  • GOOGLE_MAPS_STYLE_MAP_ID — the ID of your own Google Cloud map style used to render the semantic maps (see note below)

Set them as environment variables (the scripts read them from the environment; never commit keys to this repo):

export GOOGLE_MAPS_API_KEY="your-key"
export GOOGLE_MAPS_URL_SIGNING_SECRET="your-signing-secret"
export GOOGLE_MAPS_STYLE_MAP_ID="your-map-style-id"

Recreating the semantic map style. The per-class semantic masks are parsed from a custom-styled Google map in which each land-cover class is rendered in a fixed colour. We provide the exact style definition at docs/semantic_map_style.json. To reproduce it, open the Google Cloud console, go to Map Styles → Create style → JSON tab → Upload JSON File, upload this file, and save. The style is built on the light base map, which supplies the default water / vegetation / land colours, while building, railway and road surfaces are recoloured explicitly. Set the resulting Map ID as GOOGLE_MAPS_STYLE_MAP_ID. The class→colour mapping consumed by the parser is in CLASS_COLORS_HEX at the top of Obtain_corresponding_map_signed.py.

By using these scripts you are making live calls to the Google Maps Platform under your own account, and you are responsible for complying with the Google Maps Platform Terms of Service. See docs/GOOGLE_MAPS_NOTICE.md.


Reproducing the dataset

Step 1 — Download the source 3D data (link only, not hosted here)

City Source Link
Melbourne City of Melbourne 3D Point Cloud 2018 (LAS; MGA Zone 55 / AHD) https://data.melbourne.vic.gov.au/explore/dataset/city-of-melbourne-3d-point-cloud-2018/
London HoliCity (FBX CAD models) https://holicity.io/ · https://github.com/zhou13/holicity

⚠️ HoliCity is for non-commercial (academic/research) use only. You must accept the HoliCity Terms of Use before downloading. The underlying CAD models are owned by AccuCities Inc. and the panoramas by Google; commercial use requires their explicit permission. The London portion of City3D-MultiGen inherits these restrictions.

Place the downloaded files where the tiling scripts expect them (see scripts/README.md).

Step 2 — Tile the point clouds

HoliCity only — first sample a point cloud from the FBX meshes. The London source is distributed as FBX CAD meshes, not point clouds. Sample a dense point cloud from each mesh and export it to LAS using CloudCompare (Edit ▸ Mesh ▸ Sample Points). Then attach the geographic spatial reference to the tiles with holicity/convert_coord.py and holicity/add_coord_head.py before tiling. (Melbourne is already distributed as LAS, so it skips this step.)

Then partition the point clouds into 150 m × 150 m tiles:

# Melbourne
python scripts/melbourne/export_las_blocks_noKML.py   # see script header for arguments

# London / HoliCity
python scripts/holicity/export_las_blocks_noKML.py

This also produces the per-tile DSM and BEV render.

Step 3 — Fetch satellite + semantic maps (your own Google key)

python scripts/melbourne/Obtain_corresponding_map_signed.py   # reads keys from env vars

This retrieves the satellite image and the styled map for each tile and parses the per-class semantic masks.

Step 4 — Generate the DSM (and BEV render)

The DSM is rasterized from the point-cloud elevation (no Google data involved); it is produced by the export/tiling scripts (see the DSM variant) or the dedicated step in build_dataset.py.

Step 5 — Assemble the final dataset

python scripts/build_dataset.py   # orchestrates steps 2–4 into the per-tile layout above

Splits

Train / validation / test tile IDs are listed in metadata/splits/. Splits are spatially separated (≥150 m between regions) to prevent geographic leakage.


Licenses & attribution

  • Pipeline code & metadata in this repo: MIT — see LICENSE.
  • City of Melbourne 3D Point Cloud 2018: distributed via the City of Melbourne Open Data Portal. Confirm the exact license on the portal (City of Melbourne open data is generally Creative Commons Attribution 4.0) and provide the required attribution to the City of Melbourne.
  • HoliCity: non-commercial / academic use only, subject to the HoliCity Terms of Use. CAD models © AccuCities Inc.; street-view panoramas © Google. Commercial use requires permission from the respective owners.
  • Google Maps content: governed by the Google Maps Platform ToS; not redistributed here. See docs/GOOGLE_MAPS_NOTICE.md.

Because the London/HoliCity portion is non-commercial and the satellite/semantic imagery is Google-derived, City3D-MultiGen as a whole cannot be redistributed as a single open archive — which is exactly why this repository ships a reconstruction recipe rather than the assembled data.


Citation

@inproceedings{wang2026gridflow,
  title     = {GridFlow: Structured Latent Flow for Seamless City-Scale 3D Point Cloud Generation},
  author    = {Wang, Xinyu and Ibrahim, Muhammad and Mansoor, Atif and Mian, Ajmal},
  booktitle = {European Conference on Computer Vision (ECCV)},
  year      = {2026}
}
Downloads last month
62