export¶
occulus.export
¶
3D Tiles and Potree export for web visualization.
Converts point clouds to formats suitable for browser-based 3-D viewers:
- 3D Tiles (Cesium) —
tileset.json+.pntsbinary tiles - Potree — octree hierarchy with
metadata.json
export_3dtiles(cloud, output_dir, *, max_points_per_tile=50000, geometric_error=10.0)
¶
Export a point cloud as a 3D Tiles tileset.
Generates a tileset.json and .pnts binary files suitable
for display in CesiumJS or other 3D Tiles viewers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cloud
|
PointCloud
|
Input point cloud. |
required |
output_dir
|
str or Path
|
Output directory for the tileset. |
required |
max_points_per_tile
|
int
|
Maximum points per |
50000
|
geometric_error
|
float
|
Root tile geometric error in metres. |
10.0
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the generated |
Raises:
| Type | Description |
|---|---|
OcculusExportError
|
If the export fails. |
Source code in src/occulus/export/__init__.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
export_potree(cloud, output_dir, *, max_depth=10, max_points_per_node=50000)
¶
Export a point cloud in Potree 2.0 format.
Generates an octree hierarchy with metadata.json and binary
.bin chunks for use with the Potree web viewer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cloud
|
PointCloud
|
Input point cloud. |
required |
output_dir
|
str or Path
|
Output directory. |
required |
max_depth
|
int
|
Maximum octree depth. |
10
|
max_points_per_node
|
int
|
Maximum points before splitting a node. |
50000
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the generated |
Raises:
| Type | Description |
|---|---|
OcculusExportError
|
If the export fails. |
Source code in src/occulus/export/__init__.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | |