Build interactive 3D terrain HTML scenes from DEMs, rasters, vectors, and configurable map styles.
Project description
Piece of Cake
Piece of Cake builds interactive 3D terrain scenes from DEMs, rasters, vectors, and configurable geospatial styles.
It is deliberately focused on the 3D model. Give it a DEM and optional layers, then export a clickable HTML file or display it in a Jupyter/Colab notebook.
What It Does
- Builds Plotly-based 3D terrain from a DEM.
- Drapes custom raster layers on the terrain.
- Draws vector overlays from GeoPackages, shapefiles, GeoJSON, or other GeoPandas-readable formats.
- Lets users click the terrain to capture latitude, longitude, and elevation.
- Exports standalone HTML.
- Supports custom style profiles for unknown layers.
- Helps inspect unknown raster/vector layers before styling them.
- Can fetch DEMs from configured provider sources such as OpenTopography.
Install
For the lightweight core:
pip install piece-of-cake-terrain
For geospatial raster/vector IO:
pip install "piece-of-cake-terrain[geo]"
For YAML source configs and provider-backed DEM download:
pip install "piece-of-cake-terrain[geo,providers]"
For notebook display:
pip install "piece-of-cake-terrain[geo,notebook]"
For place-name lookup:
pip install "piece-of-cake-terrain[geo,places]"
From GitHub source:
pip install "piece-of-cake-terrain[geo,places,providers] @ git+https://github.com/WhatsThisClint/piece-of-cake.git@v0.1.2"
For an isolated terminal command:
pipx install "piece-of-cake-terrain[geo,places]"
With uv:
uv tool install piece-of-cake-terrain --with rasterio --with geopandas --with pyproj --with shapely --with geopy --with PyYAML
Quick Start
from piece_of_cake import TerrainScene
scene = TerrainScene.from_dem(
"data/dem.tif",
bounds=(76.1, 18.0, 76.4, 18.3),
title="Dharashiv Terrain",
)
scene.add_raster(
"Tree Canopy",
"data/tree_canopy.tif",
style={
"type": "continuous",
"label": "Tree canopy (%)",
"cmap": "Greens",
"opacity": 0.65,
},
)
scene.to_html("dharashiv_terrain.html")
From the terminal:
piece-of-cake render --dem data/dem.tif --out dharashiv_terrain.html --title "Dharashiv Terrain"
You can also start from a place name when the optional places extra is installed:
scene = TerrainScene.from_place("Dharashiv, Maharashtra, India")
scene.add_dem(path="data/dem.tif")
scene.to_html("dharashiv_terrain.html")
Unknown Custom Layers
Piece of Cake does not assume what a custom layer means. Inspect it first:
from piece_of_cake import inspect_raster, inspect_vector
inspect_raster("custom_tree_canopy.tif")
inspect_vector("villages.gpkg")
For a GeoPackage with many columns, choose the column explicitly:
scene.add_vector(
"SC/ST share",
"villages.gpkg",
column="sc_st_pct",
label_column="village_name",
hover_fields=["village_name", "population", "sc_st_pct"],
style={
"type": "continuous",
"cmap": "Reds",
"opacity": 0.55,
},
)
DEM Sources
Piece of Cake supports local DEM files, custom provider hooks, and configured provider sources such as OpenTopography.
scene = TerrainScene.from_bbox(76.1, 18.0, 76.4, 18.3)
scene.add_dem(path="/content/drive/MyDrive/DEM/India.tif")
Fetch a DEM automatically from OpenTopography:
scene = TerrainScene.from_bbox(76.1, 18.0, 76.4, 18.3)
scene.add_dem(source="opentopography", width=500)
scene.to_html("terrain.html")
Use an IHEWAcollect-style YAML config for accounts and named sources:
accounts:
opentopography:
api_key_env: OPENTOPOGRAPHY_API_KEY
default_dem: opentopography_cop30
sources:
opentopography_cop30:
provider: opentopography
dem_type: COP30
cache_dir: .piece-of-cake/cache
scene.add_dem(source="auto", config="sources.yml")
Or plug in your own provider:
scene.add_dem(provider=my_dem_provider)
See docs/providers.md.
Beginner Course
A self-contained Jupyter course is available in course/. It includes 15 beginner-friendly notebooks covering DEM terrain, HTML export, bounding boxes, DEM providers, raster drapes, custom styling, vector overlays, and a mini diagnosis dashboard. The notebooks use synthetic local data and do not require Drive files or public data downloads.
Terminal Commands
piece-of-cake --help
piece-of-cake render --dem data/dem.tif --out terrain.html
piece-of-cake inspect-raster custom_tree_canopy.tif
piece-of-cake inspect-vector villages.gpkg
If Windows cannot find piece-of-cake because Python's Scripts folder is not on PATH, use:
python -m piece_of_cake --help
See docs/cli.md.
PyPI Publishing
The package is published on PyPI as
piece-of-cake-terrain.
Publishing uses GitHub Actions and PyPI Trusted Publishing; see
docs/publishing.md.
Citation
If you use Piece of Cake in research, reports, or public-facing tools, please cite it using the metadata in CITATION.cff.
License
MIT. See LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file piece_of_cake_terrain-0.1.2.tar.gz.
File metadata
- Download URL: piece_of_cake_terrain-0.1.2.tar.gz
- Upload date:
- Size: 32.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e110d0d41ff799ea4e2c0574be8005430c7aa432a591ffcf8b386815e8628a2
|
|
| MD5 |
b8e3da35c88df116f4fee38e7da873f7
|
|
| BLAKE2b-256 |
5d350dc2998933d9bbc72ae900c06657f9742197a6624b168d1744a073f06808
|
Provenance
The following attestation bundles were made for piece_of_cake_terrain-0.1.2.tar.gz:
Publisher:
publish.yml on WhatsThisClint/piece-of-cake
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
piece_of_cake_terrain-0.1.2.tar.gz -
Subject digest:
1e110d0d41ff799ea4e2c0574be8005430c7aa432a591ffcf8b386815e8628a2 - Sigstore transparency entry: 1707470889
- Sigstore integration time:
-
Permalink:
WhatsThisClint/piece-of-cake@8048a5da67a9e1fd1cb53e2be6c2bc42eb982e8c -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/WhatsThisClint
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8048a5da67a9e1fd1cb53e2be6c2bc42eb982e8c -
Trigger Event:
release
-
Statement type:
File details
Details for the file piece_of_cake_terrain-0.1.2-py3-none-any.whl.
File metadata
- Download URL: piece_of_cake_terrain-0.1.2-py3-none-any.whl
- Upload date:
- Size: 22.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ab6730566093e439cdd20d324bac8722b7001fb662474c11734b5d7ca725f85
|
|
| MD5 |
0808c71312e0ca70adb33b5993f9e493
|
|
| BLAKE2b-256 |
98e76c142cb4957610c942084f4843b5ff984e393c344297bdeea16ff93189c3
|
Provenance
The following attestation bundles were made for piece_of_cake_terrain-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on WhatsThisClint/piece-of-cake
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
piece_of_cake_terrain-0.1.2-py3-none-any.whl -
Subject digest:
7ab6730566093e439cdd20d324bac8722b7001fb662474c11734b5d7ca725f85 - Sigstore transparency entry: 1707470903
- Sigstore integration time:
-
Permalink:
WhatsThisClint/piece-of-cake@8048a5da67a9e1fd1cb53e2be6c2bc42eb982e8c -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/WhatsThisClint
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8048a5da67a9e1fd1cb53e2be6c2bc42eb982e8c -
Trigger Event:
release
-
Statement type: