download module¶
This module provides functions to download data, including NAIP imagery and building data from Overture Maps.
convert_vector_format(input_file, output_format='geojson', filter_expression=None)
¶
Convert the downloaded data to a different format or filter it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_file
|
str
|
Path to the input file. |
required |
output_format
|
str
|
Format to convert to, one of "geojson", "parquet", "shapefile", "csv". |
'geojson'
|
filter_expression
|
Optional[str]
|
Optional GeoDataFrame query expression to filter the data. |
None
|
Returns:
Type | Description |
---|---|
str
|
Path to the converted file. |
Source code in leafmap/download.py
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 |
|
download_naip(bbox, output_dir, year=None, max_items=10, overwrite=False, preview=False, **kwargs)
¶
Download NAIP imagery from Planetary Computer based on a bounding box.
This function searches for NAIP (National Agriculture Imagery Program) imagery from Microsoft's Planetary Computer that intersects with the specified bounding box. It downloads the imagery and saves it as GeoTIFF files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bbox
|
Tuple[float, float, float, float]
|
Bounding box in the format (min_lon, min_lat, max_lon, max_lat) in WGS84 coordinates. |
required |
output_dir
|
str
|
Directory to save the downloaded imagery. |
required |
year
|
Optional[int]
|
Specific year of NAIP imagery to download (e.g., 2020). If None, returns imagery from all available years. |
None
|
max_items
|
int
|
Maximum number of items to download. |
10
|
overwrite
|
bool
|
If True, overwrite existing files with the same name. |
False
|
preview
|
bool
|
If True, display a preview of the downloaded imagery. |
False
|
Returns:
Type | Description |
---|---|
List[str]
|
List of downloaded file paths. |
Raises:
Type | Description |
---|---|
Exception
|
If there is an error downloading or saving the imagery. |
Source code in leafmap/download.py
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 |
|
download_overture_buildings(bbox, output=None, overture_type='building', **kwargs)
¶
Download building data from Overture Maps for a given bounding box using the overturemaps CLI tool.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bbox
|
Tuple[float, float, float, float]
|
Bounding box in the format (min_lon, min_lat, max_lon, max_lat) in WGS84 coordinates. |
required |
output
|
str
|
Path to save the output file. |
None
|
overture_type
|
str
|
The Overture Maps data type to download (building, place, etc.). |
'building'
|
Returns:
Type | Description |
---|---|
str
|
Path to the output file. |
Source code in leafmap/download.py
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
|
download_pc_stac_item(item_url, bands=None, output_dir=None, show_progress=True, merge_bands=False, merged_filename=None, overwrite=False, cell_size=None)
¶
Downloads a STAC item from Microsoft Planetary Computer with specified bands.
This function fetches a STAC item by URL, signs the assets using Planetary Computer credentials, and downloads the specified bands with a progress bar. Can optionally merge bands into a single multi-band GeoTIFF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item_url
|
str
|
The URL of the STAC item to download. |
required |
bands
|
list
|
List of specific bands to download (e.g., ['B01', 'B02']). If None, all available bands will be downloaded. |
None
|
output_dir
|
str
|
Directory to save downloaded bands. If None, bands are returned as xarray DataArrays. |
None
|
show_progress
|
bool
|
Whether to display a progress bar. Default is True. |
True
|
merge_bands
|
bool
|
Whether to merge downloaded bands into a single multi-band GeoTIFF file. Default is False. |
False
|
merged_filename
|
str
|
Filename for the merged bands. If None and merge_bands is True, uses "{item_id}_merged.tif". |
None
|
overwrite
|
bool
|
Whether to overwrite existing files. Default is False. |
False
|
cell_size
|
float
|
Resolution in meters for the merged output. If None, uses the resolution of the first band. |
None
|
Returns:
Name | Type | Description |
---|---|---|
dict |
Dictionary mapping band names to their corresponding xarray DataArrays or file paths if output_dir is provided. If merge_bands is True, also includes a 'merged' key with the path to the merged file. |
Raises:
Type | Description |
---|---|
ValueError
|
If the item cannot be retrieved or a requested band is not available. |
Source code in leafmap/download.py
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 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 |
|
download_with_progress(url, output_path)
¶
Download a file with a progress bar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
URL of the file to download. |
required |
output_path
|
str
|
Path where the file will be saved. |
required |
Source code in leafmap/download.py
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
extract_building_stats(data)
¶
Extract statistics from the building data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
str
|
Path to the GeoJSON file or GeoDataFrame containing building data. |
required |
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Dictionary with statistics. |
Source code in leafmap/download.py
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 |
|
get_all_overture_types()
¶
Get a list of all available Overture Maps data types.
Returns:
Name | Type | Description |
---|---|---|
list |
List of available Overture Maps data types. |
Source code in leafmap/download.py
254 255 256 257 258 259 260 261 262 |
|
get_overture_data(overture_type, bbox=None, columns=None, output=None, **kwargs)
¶
Fetches overture data and returns it as a GeoDataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
overture_type
|
str
|
The type of overture data to fetch.It can be one of the following: address|building|building_part|division|division_area|division_boundary|place| segment|connector|infrastructure|land|land_cover|land_use|water |
required |
bbox
|
Tuple[float, float, float, float]
|
The bounding box to filter the data. Defaults to None. |
None
|
columns
|
List[str]
|
The columns to include in the output. Defaults to None. |
None
|
output
|
str
|
The file path to save the output GeoDataFrame. Defaults to None. |
None
|
Returns:
Type | Description |
---|---|
GeoDataFrame
|
gpd.GeoDataFrame: The fetched overture data as a GeoDataFrame. |
Raises:
Type | Description |
---|---|
ImportError
|
If the overture package is not installed. |
Source code in leafmap/download.py
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 |
|
get_overture_latest_release(patch=True)
¶
Retrieves the value of the 'latest' key from the Overture Maps release JSON file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
patch
|
bool
|
If True, returns the full version string (e.g., "2025-02-19.0"). |
True
|
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The value of the 'latest' key from the releases.json file. |
Raises:
Type | Description |
---|---|
RequestException
|
If there's an issue with the HTTP request. |
KeyError
|
If the 'latest' key is not found in the JSON data. |
JSONDecodeError
|
If the response cannot be parsed as JSON. |
Source code in leafmap/download.py
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 |
|
json_serializable(obj)
¶
Convert NumPy types to native Python types for JSON serialization.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj
|
Any
|
Any object to convert. |
required |
Returns:
Type | Description |
---|---|
Any
|
JSON serializable version of the object. |
Source code in leafmap/download.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
pc_collection_list(endpoint='https://planetarycomputer.microsoft.com/api/stac/v1', detailed=False, filter_by=None, sort_by='id')
¶
Retrieves and displays the list of available collections from Planetary Computer.
This function connects to the Planetary Computer STAC API and retrieves the list of all available collections, with options to filter and sort the results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
endpoint
|
str
|
STAC API endpoint URL. Defaults to "https://planetarycomputer.microsoft.com/api/stac/v1". |
'https://planetarycomputer.microsoft.com/api/stac/v1'
|
detailed
|
bool
|
Whether to return detailed information for each collection. If False, returns only basic info. Defaults to False. |
False
|
filter_by
|
dict
|
Dictionary of field:value pairs to filter collections. For example, {"license": "CC-BY-4.0"}. Defaults to None. |
None
|
sort_by
|
str
|
Field to sort the collections by. Defaults to "id". |
'id'
|
Returns:
Type | Description |
---|---|
pandas.DataFrame: DataFrame containing collection information. |
Raises:
Type | Description |
---|---|
ConnectionError
|
If there's an issue connecting to the API. |
Source code in leafmap/download.py
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 |
|
pc_item_asset_list(item)
¶
Retrieve the list of asset keys from a STAC item in the Planetary Computer catalog.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item
|
str
|
The URL of the STAC item. |
required |
Returns:
Name | Type | Description |
---|---|---|
list |
A list of asset keys available in the signed STAC item. |
Source code in leafmap/download.py
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 |
|
pc_stac_download(items, output_dir='.', assets=None, max_workers=4, skip_existing=True)
¶
Download assets from STAC items retrieved from the Planetary Computer.
This function downloads specified assets from a list of STAC items to the specified output directory. It supports parallel downloads and can skip already downloaded files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
items
|
list or Item
|
STAC Item object or list of STAC Item objects. |
required |
output_dir
|
str
|
Directory where assets will be saved. Defaults to current directory. |
'.'
|
assets
|
list
|
List of asset keys to download. If None, downloads all available assets. Defaults to None. |
None
|
max_workers
|
int
|
Maximum number of concurrent download threads. Defaults to 4. |
4
|
skip_existing
|
bool
|
Skip download if the file already exists. Defaults to True. |
True
|
sign_urls
|
bool
|
Whether to sign URLs for authenticated access. Defaults to True. |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
Dictionary mapping STAC item IDs to dictionaries of their downloaded assets {asset_key: file_path}. |
Raises:
Type | Description |
---|---|
TypeError
|
If items is not a STAC Item or list of STAC Items. |
IOError
|
If there's an error writing the downloaded assets to disk. |
Source code in leafmap/download.py
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 |
|
pc_stac_search(collection, bbox=None, time_range=None, query=None, limit=10, max_items=None, endpoint='https://planetarycomputer.microsoft.com/api/stac/v1')
¶
Search for STAC items in the Planetary Computer catalog.
This function queries the Planetary Computer STAC API to find items matching the specified criteria, including collection, bounding box, time range, and additional query parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection
|
str
|
The STAC collection ID to search within. |
required |
bbox
|
list
|
Bounding box coordinates [west, south, east, north]. Defaults to None. |
None
|
time_range
|
str or tuple
|
Time range as a string "start/end" or a tuple of (start, end) datetime objects. Defaults to None. |
None
|
query
|
dict
|
Additional query parameters for filtering. Defaults to None. |
None
|
limit
|
int
|
Number of items to return per page. Defaults to 10. |
10
|
max_items
|
int
|
Maximum total number of items to return. Defaults to None (returns all matching items). |
None
|
endpoint
|
str
|
STAC API endpoint URL. Defaults to "https://planetarycomputer.microsoft.com/api/stac/v1". |
'https://planetarycomputer.microsoft.com/api/stac/v1'
|
Returns:
Name | Type | Description |
---|---|---|
list |
List of STAC Item objects matching the search criteria. |
Raises:
Type | Description |
---|---|
ValueError
|
If invalid parameters are provided. |
ConnectionError
|
If there's an issue connecting to the API. |
Source code in leafmap/download.py
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 |
|
preview_raster(data, title=None)
¶
Display a preview of the downloaded imagery.
This function creates a visualization of the downloaded NAIP imagery by converting it to an RGB array and displaying it with matplotlib.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Any
|
The raster data as a rioxarray object. |
required |
title
|
str
|
The title for the preview plot. |
None
|
Source code in leafmap/download.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
read_pc_item_asset(item, asset, output=None, as_cog=True, **kwargs)
¶
Read a specific asset from a STAC item in the Planetary Computer catalog.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item
|
str
|
The URL of the STAC item. |
required |
asset
|
str
|
The key of the asset to read. |
required |
output
|
str
|
If specified, the path to save the asset as a raster file. |
None
|
as_cog
|
bool
|
If True, save the asset as a Cloud Optimized GeoTIFF (COG). |
True
|
Returns:
Type | Description |
---|---|
xarray.DataArray: The data array for the specified asset. |
Source code in leafmap/download.py
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 |
|
sign_pc_item(item, asset=None, return_href=True)
¶
Sign a STAC item using Planetary Computer credentials.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item
|
Item or str
|
The STAC item to sign, or its URL. |
required |
Returns:
Type | Description |
---|---|
pystac.Item: The signed STAC item with authenticated asset URLs. |
Source code in leafmap/download.py
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 |
|