Cell & Coordinate Operations#
Cell coordinate retrieval, cell polygons/points, and map-to-array coordinate conversions.
pyramids.dataset.ops.cell.Cell
#
Mixin providing cell coordinate and geometry utilities for Dataset.
Source code in src/pyramids/dataset/ops/cell.py
20 21 22 23 24 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 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 158 159 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 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 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 318 319 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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | |
get_cell_coords(location='center', domain_only=False)
#
Get coordinates for the center/corner of cells inside the dataset domain.
Returns the coordinates of the cell centers inside the domain (only the cells that do not have nodata value)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
location
|
str
|
Location of the coordinates. Use |
'center'
|
domain_only
|
bool
|
True to exclude the cells out of the domain. Default is False. |
False
|
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray: Array with a list of the coordinates to be interpolated, without the NaN. |
ndarray
|
np.ndarray: Array with all the centers of cells in the domain of the DEM. |
Examples:
- Create
Datasetconsists of 1 bands, 3 rows, 3 columns, at the point lon/lat (0, 0).
>>> import numpy as np
>>> arr = np.random.randint(1,3, size=(3, 3))
>>> top_left_corner = (0, 0)
>>> cell_size = 0.05
>>> dataset = Dataset.create_from_array(arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326)
- Get the coordinates of the center of cells inside the domain.
>>> coords = dataset.get_cell_coords()
>>> print(coords)
[[ 0.025 -0.025]
[ 0.075 -0.025]
[ 0.125 -0.025]
[ 0.025 -0.075]
[ 0.075 -0.075]
[ 0.125 -0.075]
[ 0.025 -0.125]
[ 0.075 -0.125]
[ 0.125 -0.125]]
- Get the coordinates of the top left corner of cells inside the domain.
>>> coords = dataset.get_cell_coords(location="corner")
>>> print(coords)
[[ 0. 0. ]
[ 0.05 0. ]
[ 0.1 0. ]
[ 0. -0.05]
[ 0.05 -0.05]
[ 0.1 -0.05]
[ 0. -0.1 ]
[ 0.05 -0.1 ]
[ 0.1 -0.1 ]]
Source code in src/pyramids/dataset/ops/cell.py
23 24 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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | |
get_cell_polygons(domain_only=False)
#
Get a polygon shapely geometry for the raster cells.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain_only
|
bool
|
True to get the polygons of the cells inside the domain. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
GeoDataFrame
|
With two columns, geometry, and id. |
Examples:
- Create
Datasetconsists of 1 band, 3 rows, 3 columns, at the point lon/lat (0, 0).
>>> import numpy as np
>>> arr = np.random.randint(1,3, size=(3, 3))
>>> top_left_corner = (0, 0)
>>> cell_size = 0.05
>>> dataset = Dataset.create_from_array(arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326)
- Get the coordinates of the center of cells inside the domain.
>>> gdf = dataset.get_cell_polygons()
>>> print(gdf)
geometry id
0 POLYGON ((0 0, 0.05 0, 0.05 -0.05, 0 -0.05, 0 0)) 0
1 POLYGON ((0.05 0, 0.1 0, 0.1 -0.05, 0.05 -0.05... 1
2 POLYGON ((0.1 0, 0.15 0, 0.15 -0.05, 0.1 -0.05... 2
3 POLYGON ((0 -0.05, 0.05 -0.05, 0.05 -0.1, 0 -0... 3
4 POLYGON ((0.05 -0.05, 0.1 -0.05, 0.1 -0.1, 0.0... 4
5 POLYGON ((0.1 -0.05, 0.15 -0.05, 0.15 -0.1, 0.... 5
6 POLYGON ((0 -0.1, 0.05 -0.1, 0.05 -0.15, 0 -0.... 6
7 POLYGON ((0.05 -0.1, 0.1 -0.1, 0.1 -0.15, 0.05... 7
8 POLYGON ((0.1 -0.1, 0.15 -0.1, 0.15 -0.15, 0.1... 8
>>> fig, ax = dataset.plot()
>>> gdf.plot(ax=ax, facecolor='none', edgecolor="gray", linewidth=2)
<Axes: >

Source code in src/pyramids/dataset/ops/cell.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 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 | |
get_cell_points(location='center', domain_only=False)
#
Get a point shapely geometry for the raster cells center point.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
location
|
str
|
Location of the point, ["corner", "center"]. Default is "center". |
'center'
|
domain_only
|
bool
|
True to get the points of the cells inside the domain only. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
GeoDataFrame
|
With two columns, geometry, and id. |
Examples:
- Create
Datasetconsists of 1 band, 3 rows, 3 columns, at the point lon/lat (0, 0).
>>> import numpy as np
>>> arr = np.random.randint(1,3, size=(3, 3))
>>> top_left_corner = (0, 0)
>>> cell_size = 0.05
>>> dataset = Dataset.create_from_array(arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326)
- Get the coordinates of the center of cells inside the domain.
>>> gdf = dataset.get_cell_points()
>>> print(gdf)
geometry id
0 POINT (0.025 -0.025) 0
1 POINT (0.075 -0.025) 1
2 POINT (0.125 -0.025) 2
3 POINT (0.025 -0.075) 3
4 POINT (0.075 -0.075) 4
5 POINT (0.125 -0.075) 5
6 POINT (0.025 -0.125) 6
7 POINT (0.075 -0.125) 7
8 POINT (0.125 -0.125) 8
>>> fig, ax = dataset.plot()
>>> gdf.plot(ax=ax, facecolor='black', linewidth=2)
<Axes: >

- Get the coordinates of the top left corner of cells inside the domain.
>>> gdf = dataset.get_cell_points(location="corner")
>>> print(gdf)
geometry id
0 POINT (0 0) 0
1 POINT (0.05 0) 1
2 POINT (0.1 0) 2
3 POINT (0 -0.05) 3
4 POINT (0.05 -0.05) 4
5 POINT (0.1 -0.05) 5
6 POINT (0 -0.1) 6
7 POINT (0.05 -0.1) 7
8 POINT (0.1 -0.1) 8
>>> fig, ax = dataset.plot()
>>> gdf.plot(ax=ax, facecolor='black', linewidth=4)
<Axes: >

Source code in src/pyramids/dataset/ops/cell.py
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 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | |
map_to_array_coordinates(points)
#
Convert coordinates of points to array indices.
- map_to_array_coordinates locates a point with real coordinates (x, y) or (lon, lat) on the array by finding the cell indices (row, column) of the nearest cell in the raster.
- The point coordinate system of the raster has to be projected to be able to calculate the distance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
points
|
GeoDataFrame | DataFrame | FeatureCollection
|
|
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray: Array with shape (N, 2) containing the row and column indices in the array. |
Examples:
- Create
Datasetconsisting of 2 bands, 10 rows, 10 columns, at the point lon/lat (0, 0).
>>> import numpy as np
>>> import pandas as pd
>>> arr = np.random.randint(1, 3, size=(2, 10, 10))
>>> top_left_corner = (0, 0)
>>> cell_size = 0.05
>>> dataset = Dataset.create_from_array(arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326)
- We can give the function a DataFrame with x, y columns to array the coordinates of the points that are located within the dataset domain.
>>> points = pd.DataFrame({"x": [0.025, 0.175, 0.375], "y": [0.025, 0.225, 0.125]})
>>> indices = dataset.map_to_array_coordinates(points)
>>> print(indices)
[[0 0]
[0 3]
[0 7]]
- We can give the function a GeoDataFrame with POINT geometry to array the coordinates of the points that locate within the dataset domain.
>>> from shapely.geometry import Point
>>> from geopandas import GeoDataFrame
>>> points = GeoDataFrame({"geometry": [Point(0.025, 0.025), Point(0.175, 0.225), Point(0.375, 0.125)]})
>>> indices = dataset.map_to_array_coordinates(points)
>>> print(indices)
[[0 0]
[0 3]
[0 7]]
Source code in src/pyramids/dataset/ops/cell.py
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 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 | |
array_to_map_coordinates(rows_index, column_index, center=False)
#
Convert array indices to map coordinates.
array_to_map_coordinates converts the array indices (rows, cols) to real coordinates (x, y) or (lon, lat).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rows_index
|
List[Number] | ndarray
|
The row indices of the cells in the raster array. |
required |
column_index
|
List[Number] | ndarray
|
The column indices of the cells in the raster array. |
required |
center
|
bool
|
If True, the coordinates will be the center of the cell. Default is False. |
False
|
Returns:
| Type | Description |
|---|---|
tuple[list[Number], list[Number]]
|
Tuple[List[Number], List[Number]]: A tuple of two lists: the x coordinates and the y coordinates of the cells. |
Examples:
- Create
Datasetconsisting of 1 band, 10 rows, 10 columns, at the point lon/lat (0, 0):
>>> import numpy as np
>>> import pandas as pd
>>> arr = np.random.randint(1, 3, size=(10, 10))
>>> top_left_corner = (0, 0)
>>> cell_size = 0.05
>>> dataset = Dataset.create_from_array(arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326)
- Now call the function with two lists of row and column indices:
>>> rows_index = [1, 3, 5]
>>> column_index = [2, 4, 6]
>>> coords = dataset.array_to_map_coordinates(rows_index, column_index)
>>> print(coords) # doctest: +SKIP
([0.1, 0.2, 0.3], [-0.05, -0.15, -0.25])