raster¶
occulus.raster
¶
DEM / DSM / DTM rasterization and export.
Create regular-grid elevation models from point clouds and export them as GeoTIFF files.
Functions:
| Name | Description |
|---|---|
- :func:`create_dsm` — Digital Surface Model |
|
- :func:`create_dtm` — Digital Terrain Model |
|
- :func:`create_dem` — Alias for :func:`create_dtm` |
|
- :func:`idw_interpolate` — Inverse Distance Weighting interpolation |
|
- :func:`nearest_interpolate` — Nearest-neighbour interpolation |
|
- :func:`export_geotiff` — Write raster to GeoTIFF |
|
Types
- :class:
RasterResult— Container for rasterized elevation data
RasterResult
dataclass
¶
Result container for rasterized elevation models.
Attributes:
| Name | Type | Description |
|---|---|---|
data |
NDArray[float64]
|
Elevation grid of shape (ny, nx). |
x_edges |
NDArray[float64]
|
X bin edges of length nx + 1. |
y_edges |
NDArray[float64]
|
Y bin edges of length ny + 1. |
resolution |
float
|
Grid cell size in coordinate units. |
crs |
str
|
Coordinate reference system identifier (EPSG code or WKT), or empty string if unknown. |
nodata |
float
|
Value used for cells with no data. Default -9999.0. |
Source code in src/occulus/raster/dem.py
create_dem(cloud, resolution=1.0, *, method='idw', ground_class=2, nodata=-9999.0)
¶
Create a Digital Elevation Model (alias for :func:create_dtm).
This function is a convenience alias. In common usage, DEM and DTM are
used interchangeably to mean the bare-earth surface. See
:func:create_dtm for full documentation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cloud
|
PointCloud
|
Input point cloud with ground classification. |
required |
resolution
|
float
|
Grid cell size in coordinate units, by default 1.0. |
1.0
|
method
|
str
|
Interpolation method: |
'idw'
|
ground_class
|
int
|
ASPRS classification code for ground, by default 2. |
2
|
nodata
|
float
|
Nodata value, by default -9999.0. |
-9999.0
|
Returns:
| Type | Description |
|---|---|
RasterResult
|
DTM elevation grid with metadata. |
Raises:
| Type | Description |
|---|---|
OcculusRasterError
|
See :func: |
Source code in src/occulus/raster/dem.py
create_dsm(cloud, resolution=1.0, *, method='idw', nodata=-9999.0)
¶
Create a Digital Surface Model (max-Z of all points).
The DSM represents the highest surface at each grid cell, including buildings, vegetation, and other above-ground features.
For cells that contain at least one point, the maximum Z value is used directly. Empty cells are filled using the specified interpolation method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cloud
|
PointCloud
|
Input point cloud. |
required |
resolution
|
float
|
Grid cell size in coordinate units, by default 1.0. |
1.0
|
method
|
str
|
Interpolation method for gap-filling: |
'idw'
|
nodata
|
float
|
Value assigned to cells with insufficient data, by default -9999.0. |
-9999.0
|
Returns:
| Type | Description |
|---|---|
RasterResult
|
DSM elevation grid with metadata. |
Raises:
| Type | Description |
|---|---|
OcculusRasterError
|
If the cloud is empty, resolution is non-positive, or interpolation method is unknown. |
Source code in src/occulus/raster/dem.py
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 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | |
create_dtm(cloud, resolution=1.0, *, method='idw', ground_class=2, nodata=-9999.0)
¶
Create a Digital Terrain Model from ground-classified points.
The DTM represents the bare-earth surface using only points classified as ground (ASPRS class 2 by default). Empty cells are filled using the specified interpolation method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cloud
|
PointCloud
|
Input point cloud. Must have a classification array with ground
points matching |
required |
resolution
|
float
|
Grid cell size in coordinate units, by default 1.0. |
1.0
|
method
|
str
|
Interpolation method for gap-filling: |
'idw'
|
ground_class
|
int
|
ASPRS classification code for ground points, by default 2. |
2
|
nodata
|
float
|
Value assigned to cells with no data, by default -9999.0. |
-9999.0
|
Returns:
| Type | Description |
|---|---|
RasterResult
|
DTM elevation grid with metadata. |
Raises:
| Type | Description |
|---|---|
OcculusRasterError
|
If the cloud is empty, has no classification, contains no ground points, resolution is non-positive, or method is unknown. |
Source code in src/occulus/raster/dem.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | |
export_geotiff(raster, path, *, crs='')
¶
Write a RasterResult to a GeoTIFF file.
Uses rasterio to produce a single-band Float64 GeoTIFF with the
appropriate affine transform derived from the raster's edge coordinates
and resolution. The CRS can be overridden via the crs parameter;
otherwise the raster's own CRS is used.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
raster
|
RasterResult
|
Raster data to export. |
required |
path
|
str or Path
|
Output file path. Parent directory must exist. |
required |
crs
|
str
|
CRS override as an EPSG string (e.g. |
''
|
Returns:
| Type | Description |
|---|---|
Path
|
Absolute path to the written GeoTIFF file. |
Raises:
| Type | Description |
|---|---|
OcculusRasterError
|
If the raster data is invalid. |
OcculusExportError
|
If the file cannot be written (I/O error, rasterio failure). |
ImportError
|
If |
Source code in src/occulus/raster/export.py
25 26 27 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 | |
idw_interpolate(xy, z, grid_x, grid_y, *, power=2.0, max_dist=None, k=12, nodata=-9999.0)
¶
Inverse Distance Weighting interpolation onto a regular grid.
For each grid cell centre, the k nearest source points are found via
KDTree and their Z values are combined using inverse-distance weights
raised to power.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xy
|
NDArray[float64]
|
Source point XY coordinates, shape (N, 2). |
required |
z
|
NDArray[float64]
|
Source point Z values, shape (N,). |
required |
grid_x
|
NDArray[float64]
|
Grid cell centre X coordinates, shape (nx,). |
required |
grid_y
|
NDArray[float64]
|
Grid cell centre Y coordinates, shape (ny,). |
required |
power
|
float
|
Distance weighting exponent, by default 2.0. |
2.0
|
max_dist
|
float or None
|
Maximum search distance. Grid cells with no neighbours within this
radius are set to |
None
|
k
|
int
|
Number of nearest neighbours to use, by default 12. |
12
|
nodata
|
float
|
Value assigned to cells with no data, by default -9999.0. |
-9999.0
|
Returns:
| Type | Description |
|---|---|
NDArray[float64]
|
Interpolated grid of shape (ny, nx). |
Raises:
| Type | Description |
|---|---|
OcculusRasterError
|
If inputs are invalid or interpolation fails. |
Source code in src/occulus/raster/interpolation.py
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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |
nearest_interpolate(xy, z, grid_x, grid_y, *, max_dist=None, nodata=-9999.0)
¶
Nearest-neighbour interpolation onto a regular grid.
Each grid cell centre is assigned the Z value of the closest source point.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xy
|
NDArray[float64]
|
Source point XY coordinates, shape (N, 2). |
required |
z
|
NDArray[float64]
|
Source point Z values, shape (N,). |
required |
grid_x
|
NDArray[float64]
|
Grid cell centre X coordinates, shape (nx,). |
required |
grid_y
|
NDArray[float64]
|
Grid cell centre Y coordinates, shape (ny,). |
required |
max_dist
|
float or None
|
Maximum distance to accept a neighbour. Cells with no point within
this radius are set to |
None
|
nodata
|
float
|
Value assigned to cells with no data, by default -9999.0. |
-9999.0
|
Returns:
| Type | Description |
|---|---|
NDArray[float64]
|
Interpolated grid of shape (ny, nx). |
Raises:
| Type | Description |
|---|---|
OcculusRasterError
|
If inputs are invalid or interpolation fails. |
Source code in src/occulus/raster/interpolation.py
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 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 | |