Handlers API¶
Cloud Handler¶
Mapillary
¶
Class to interact with Mapillary's API to fetch image data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mapillary_token
|
str
|
The authentication token for Mapillary. |
required |
Examples:
1 2 | |
Source code in landlensdb/handlers/cloud.py
17 18 19 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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 | |
__init__(mapillary_token)
¶
Initialize a Mapillary object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mapillary_token
|
str
|
The authentication token for Mapillary. |
required |
Source code in landlensdb/handlers/cloud.py
72 73 74 75 76 77 78 79 | |
_bbox_to_tile_coords(bbox, zoom)
¶
Convert a bounding box to tile coordinates at a given zoom level.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bbox
|
list
|
[west, south, east, north] coordinates |
required |
zoom
|
int
|
Zoom level |
required |
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
(min_x, min_y, max_x, max_y) tile coordinates |
Source code in landlensdb/handlers/cloud.py
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 | |
_extract_image_ids_from_features(features)
¶
Extracts image IDs from tile features.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
features
|
list
|
List of features from a vector tile |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
List of image IDs |
Source code in landlensdb/handlers/cloud.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | |
_fetch_coverage_tile(zoom, x, y)
¶
Fetches a single coverage tile.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zoom
|
int
|
Zoom level |
required |
x
|
int
|
Tile X coordinate |
required |
y
|
int
|
Tile Y coordinate |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
Image features from the tile |
Source code in landlensdb/handlers/cloud.py
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 | |
_fetch_image_metadata(image_ids, fields, max_workers=10)
¶
Fetches metadata for multiple images using multi-threading.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image_ids
|
list
|
List of image IDs |
required |
fields
|
list
|
Fields to include in the response |
required |
max_workers
|
int
|
Maximum number of concurrent workers. Default is 10. |
10
|
Returns:
| Name | Type | Description |
|---|---|---|
list |
List of image metadata |
Source code in landlensdb/handlers/cloud.py
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 | |
_get_timestamp(date_string, end_of_day=False)
staticmethod
¶
Converts a date string to a timestamp.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
date_string
|
str
|
The date string to convert. |
required |
end_of_day
|
bool
|
Whether to set the timestamp to the end of the day. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
The timestamp corresponding to the date string. |
Source code in landlensdb/handlers/cloud.py
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 | |
_json_to_gdf(json_data)
¶
Converts JSON data from Mapillary to a GeoDataFrame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
json_data
|
list
|
A list of JSON data from Mapillary. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
GeoDataFrame |
A GeoDataFrame containing the image data. |
Source code in landlensdb/handlers/cloud.py
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 | |
_process_timestamp(epoch_time_ms, lat, lng)
¶
Converts the given epoch time in milliseconds to an ISO-formatted timestamp adjusted to the local timezone based on the provided latitude and longitude coordinates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
epoch_time_ms
|
int
|
Epoch time in milliseconds. |
required |
lat
|
float
|
Latitude coordinate for the timezone conversion. |
required |
lng
|
float
|
Longitude coordinate for the timezone conversion. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
An ISO-formatted timestamp in the local timezone if timezone information is found, otherwise in UTC. |
Example
_process_timestamp(1630456103000, 37.7749, -122.4194) '2021-09-01T09:55:03-07:00'
Source code in landlensdb/handlers/cloud.py
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 | |
_recursive_fetch(bbox, fields, start_timestamp=None, end_timestamp=None, current_depth=0, max_recursion_depth=None)
¶
Recursively fetches images within a bounding box, considering timestamps.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bbox
|
list
|
The bounding box to fetch images from. |
required |
fields
|
list
|
The fields to include in the response. |
required |
start_timestamp
|
str
|
The starting timestamp for filtering images. |
None
|
end_timestamp
|
str
|
The ending timestamp for filtering images. |
None
|
current_depth
|
int
|
Current depth of recursion. |
0
|
max_recursion_depth
|
int
|
Maximum depth of recursion. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
list |
A list of image data. |
Raises:
| Type | Description |
|---|---|
Exception
|
If the connection to Mapillary API fails. |
Source code in landlensdb/handlers/cloud.py
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 | |
_split_bbox(inner_bbox)
staticmethod
¶
Splits a bounding box into four quarters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
inner_bbox
|
list
|
A list representing the bounding box to split. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
A list of four bounding boxes, each representing a quarter. |
Source code in landlensdb/handlers/cloud.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | |
_tile_to_bbox(tile, zoom_level)
¶
Converts tile coordinates to a bounding box.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tile
|
dict
|
Tile coordinates (x, y). |
required |
zoom_level
|
int
|
The zoom level of the tile. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
Bounding box coordinates [west, south, east, north]. |
Source code in landlensdb/handlers/cloud.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | |
_validate_fields(fields)
¶
Validates the fields for fetching data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fields
|
list
|
The fields to be validated. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the required fields are missing. |
Source code in landlensdb/handlers/cloud.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | |
fetch_by_id(image_id, fields=None)
¶
Fetches an image by its ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image_id
|
str
|
The ID of the image to fetch. |
required |
fields
|
list
|
The fields to include in the response. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoImageFrame |
A GeoImageFrame containing the fetched image. |
Raises:
| Type | Description |
|---|---|
Exception
|
If the connection to Mapillary API fails. |
Source code in landlensdb/handlers/cloud.py
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 | |
fetch_by_sequence(sequence_ids, fields=None)
¶
Fetches images by their sequence IDs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sequence_ids
|
list
|
The sequence IDs to fetch images from. |
required |
fields
|
list
|
The fields to include in the response. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoImageFrame |
A GeoImageFrame containing the fetched images. |
Raises:
| Type | Description |
|---|---|
Exception
|
If the connection to Mapillary API fails. |
Source code in landlensdb/handlers/cloud.py
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 | |
fetch_within_bbox(initial_bbox, start_date=None, end_date=None, fields=None, max_recursion_depth=25, use_coverage_tiles=True, max_images=5000, max_workers=10)
¶
Fetches images within a bounding box.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
initial_bbox
|
list
|
The bounding box to fetch images from [west, south, east, north]. |
required |
start_date
|
str
|
Start date for filtering images (YYYY-MM-DD). |
None
|
end_date
|
str
|
End date for filtering images (YYYY-MM-DD). |
None
|
fields
|
list
|
Fields to include in the response. |
None
|
max_recursion_depth
|
int
|
Maximum depth for recursive fetching. |
25
|
use_coverage_tiles
|
bool
|
Whether to use coverage tiles API for large areas. |
True
|
max_images
|
int
|
Maximum number of images to process. Default is 5000. |
5000
|
max_workers
|
int
|
Maximum number of concurrent workers. Default is 10. |
10
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoImageFrame |
A GeoImageFrame containing the image data. |
Source code in landlensdb/handlers/cloud.py
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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | |
DB Handler¶
Postgres
¶
A class for managing image-related postgres database operations.
Attributes:
| Name | Type | Description |
|---|---|---|
DATABASE_URL |
str
|
The URL of the database to connect to. |
engine |
Engine
|
SQLAlchemy engine for database connections. |
result_set |
ResultProxy
|
The result of the last query executed. |
selected_table |
Table
|
The table object for query operations. |
Source code in landlensdb/handlers/db.py
12 13 14 15 16 17 18 19 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 | |
__init__(database_url)
¶
Initializes the ImageDB class with the given database URL.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database_url
|
str
|
The URL of the database to connect to. |
required |
Source code in landlensdb/handlers/db.py
23 24 25 26 27 28 29 30 31 32 33 | |
_convert_dicts_to_json(record)
staticmethod
¶
Converts dictionary values in a record to JSON strings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
record
|
dict
|
A dictionary where values may include other dictionaries. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
The modified record with dict values converted to JSON strings. |
Source code in landlensdb/handlers/db.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | |
_convert_points_to_wkt(record)
staticmethod
¶
Converts Point objects to WKT (Well-Known Text) format.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
record
|
dict
|
A dictionary containing keys and values, where values can be Point objects. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
The record with Point objects converted to WKT strings. |
Source code in landlensdb/handlers/db.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | |
all()
¶
Executes the query and returns the result as a GeoImageFrame.
Returns:
| Name | Type | Description |
|---|---|---|
GeoImageFrame |
The result of the query as a GeoImageFrame object. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If geometries are not of type Point. |
Source code in landlensdb/handlers/db.py
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 | |
filter(**kwargs)
¶
Applies filters to the selected table based on provided conditions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
Key-value pairs representing filters to apply. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
ImageDB |
Returns self to enable method chaining. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If an unsupported operation or a nonexistent column is specified. |
Source code in landlensdb/handlers/db.py
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 | |
get_distinct_values(table_name, column_name)
¶
Gets distinct values from a specific column of a table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table_name
|
str
|
Name of the table to query. |
required |
column_name
|
str
|
Name of the column to get distinct values from. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
A list of distinct values from the specified column. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the specified column is not found in the table. |
Source code in landlensdb/handlers/db.py
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 | |
table(table_name)
¶
Selects a table for performing queries on.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table_name
|
str
|
Name of the table to select. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ImageDB |
Returns self to enable method chaining. |
Source code in landlensdb/handlers/db.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 | |
upsert_images(gif, table_name, conflict='update')
¶
Inserts or updates image data in the specified table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gif
|
GeoImageFrame
|
The data frame containing image data. |
required |
table_name
|
str
|
The name of the table to upsert into. |
required |
conflict
|
str
|
Conflict resolution strategy ("update" or "nothing"). Defaults to "update". |
'update'
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If an invalid conflict resolution type is provided. |
Source code in landlensdb/handlers/db.py
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 | |
Image Handler¶
Local
¶
A class to process EXIF data from images, mainly focusing on extracting geotagging information.
This class includes methods to extract various camera and image properties, such as focal length, camera type, coordinates, and other related data.
Source code in landlensdb/handlers/image.py
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 | |
_get_camera_model(exif_data)
staticmethod
¶
Extracts the camera model from the EXIF data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exif_data
|
dict
|
The EXIF data. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
Camera model if available, otherwise None. |
Source code in landlensdb/handlers/image.py
30 31 32 33 34 35 36 37 38 39 40 41 | |
_get_coordinates(geotags)
classmethod
¶
Retrieves the latitude and longitude coordinates from geotags.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geotags
|
dict
|
The geotags information. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
Latitude and longitude coordinates. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the coordinates are invalid. |
Source code in landlensdb/handlers/image.py
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | |
_get_focal_length(exif_data)
staticmethod
¶
Retrieves the focal length from the EXIF data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exif_data
|
dict
|
The EXIF data. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Focal length if available, otherwise None. |
Source code in landlensdb/handlers/image.py
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 | |
_get_geotagging(exif)
classmethod
¶
Extracts geotagging information from EXIF metadata.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exif
|
dict
|
The EXIF metadata. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
A dictionary containing the geotagging information. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If no EXIF metadata found or no GPSInfo tag found. |
Source code in landlensdb/handlers/image.py
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 | |
_get_image_altitude(geotags)
classmethod
¶
Retrieves the altitude information from geotags.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geotags
|
dict
|
The geotags information. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Altitude information if available, otherwise None. |
Source code in landlensdb/handlers/image.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
_get_image_direction(geotags)
classmethod
¶
Retrieves the image direction information from geotags.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geotags
|
dict
|
The geotags information. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Image direction information if available, otherwise None. |
Source code in landlensdb/handlers/image.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 | |
_infer_camera_type(focal_length, camera_model=None)
staticmethod
¶
Infers the camera type based on the focal length and camera model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
focal_length
|
float
|
The focal length of the camera. |
required |
camera_model
|
str
|
The camera model. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
One of "fisheye", "perspective", or "360-degree". |
Source code in landlensdb/handlers/image.py
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 | |
_to_decimal(coord_tuple)
staticmethod
¶
Converts coordinates from degrees, minutes, and seconds to decimal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
coord_tuple
|
tuple or str
|
The coordinate tuple to convert. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Decimal representation of the coordinates. |
Source code in landlensdb/handlers/image.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 | |
create_thumbnail(image_path, size=(256, 256))
staticmethod
¶
Creates a thumbnail for the given image while preserving aspect ratio.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image_path
|
str
|
Path to the original image |
required |
size
|
tuple
|
Desired thumbnail size as (width, height). Default is (256, 256) |
(256, 256)
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
Path to the created thumbnail |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the image file doesn't exist |
ValueError
|
If the image cannot be opened or processed |
Source code in landlensdb/handlers/image.py
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_exif_data(img)
staticmethod
¶
Retrieves the EXIF data from an image.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
img
|
Image
|
The image to extract EXIF data from. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
A dictionary containing the EXIF data. |
Source code in landlensdb/handlers/image.py
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 | |
load_images(directory, additional_columns=None, create_thumbnails=True, thumbnail_size=(256, 256))
classmethod
¶
Loads images from a given directory, extracts relevant information, and returns it in a GeoImageFrame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
directory
|
str
|
Path to the directory containing images. |
required |
additional_columns
|
list
|
List of additional column names or tuples containing column name and EXIF tag. |
None
|
create_thumbnails
|
bool
|
Whether to create thumbnails for the images. Defaults to True. |
True
|
thumbnail_size
|
tuple
|
Size for generated thumbnails as (width, height). Defaults to (256, 256). |
(256, 256)
|
Returns:
| Name | Type | Description |
|---|---|---|
GeoImageFrame |
Frame containing the data extracted from the images. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If no valid images are found in the directory. |
Examples:
1 2 | |
Source code in landlensdb/handlers/image.py
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 | |