Skip to content

Commit a9c850e

Browse files
author
Brian M Hamlin
committed
add $azcopy stubs for radiantEarth repos
1 parent c828a7d commit a9c850e

7 files changed

+24
-0
lines changed

torchgeo/datasets/benin_cashews.py

+3
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,9 @@ def _download(self, api_key: Optional[str] = None) -> None:
421421
print("Files already downloaded and verified")
422422
return
423423

424+
##-- feb2024
425+
## azcopy sync https://radiantearth.blob.core.windows.net/mlhub/technoserve-cashew-benin . --recursive=true
426+
424427
for collection_id in self.collection_ids:
425428
download_radiant_mlhub_collection(collection_id, self.root, api_key)
426429

torchgeo/datasets/cv4a_kenya_crop_type.py

+3
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,9 @@ def _download(self, api_key: Optional[str] = None) -> None:
398398
print("Files already downloaded and verified")
399399
return
400400

401+
##-- feb2024
402+
## azcopy sync https://radiantearth.blob.core.windows.net/mlhub/african-crops-01/kenya . --recursive=true
403+
401404
for collection_id in self.collection_ids:
402405
download_radiant_mlhub_collection(collection_id, self.root, api_key)
403406

torchgeo/datasets/cyclone.py

+3
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,9 @@ def _download(self, api_key: Optional[str] = None) -> None:
214214
print("Files already downloaded and verified")
215215
return
216216

217+
##-- feb2024
218+
## azcopy sync https://radiantearth.blob.core.windows.net/mlhub/nasa-tropical-storm-challenge . --recursive=true
219+
217220
for collection_id in self.collection_ids:
218221
download_radiant_mlhub_collection(collection_id, self.root, api_key)
219222

torchgeo/datasets/nasa_marine_debris.py

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ class NASAMarineDebris(NonGeoDataset):
6363
md5s = ["fe8698d1e68b3f24f0b86b04419a797d", "d8084f5a72778349e07ac90ec1e1d990"]
6464
class_label = "marine_debris"
6565

66+
##-- feb2024
67+
## azcopy sync https://radiantearth.blob.core.windows.net/mlhub/nasa-marine-debris . --recursive=true
68+
6669
def __init__(
6770
self,
6871
root: str = "data",

torchgeo/datasets/rwanda_field_boundary.py

+4
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,10 @@ def _verify(self) -> None:
244244

245245
def _download(self) -> None:
246246
"""Download the dataset and extract it."""
247+
248+
##-- feb2024
249+
## azcopy sync https://radiantearth.blob.core.windows.net/mlhub/nasa_rwanda_field_boundary_competition . --recursive=true
250+
247251
for collection_id in self.collection_ids:
248252
download_radiant_mlhub_collection(collection_id, self.root, self.api_key)
249253

torchgeo/datasets/spacenet.py

+4
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,10 @@ def _download(self, collections: list[str], api_key: Optional[str] = None) -> No
281281
collections: Collections to be downloaded
282282
api_key: a RadiantEarth MLHub API key to use for downloading the dataset
283283
"""
284+
##-- feb2024
285+
##--- Spacenet6 data may have been retracted
286+
##-- ref https://github.com/orgs/SpaceNetChallenge/repositories
287+
284288
for collection in collections:
285289
download_radiant_mlhub_collection(collection, self.root, api_key)
286290
archive_path = os.path.join(self.root, f"{collection}.tar.gz")

torchgeo/datasets/western_usa_live_fuel_moisture.py

+4
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,10 @@ def _download(self, api_key: Optional[str] = None) -> None:
335335
Args:
336336
api_key: a RadiantEarth MLHub API key to use for downloading the dataset
337337
"""
338+
339+
##-- feb2024
340+
## azcopy sync https://radiantearth.blob.core.windows.net/mlhub/su-sar-moisture-content . --recursive=true
341+
338342
download_radiant_mlhub_collection(self.collection_id, self.root, api_key)
339343
filename = os.path.join(self.root, self.collection_id) + ".tar.gz"
340344
extract_archive(filename, self.root)

0 commit comments

Comments
 (0)