Download the admin files for the regions.
Files will be stored under [admin_dir]/adm1.shp and [admin_dir]/adm2.shp.
Parameters:
-
admin_dir
(pathlib.Path
)
–
The path to the admin files.
Source code in darts-acquisition/src/darts_acquisition/admin.py
| @stopuhr.funkuhr("Downloading admin files", printer=logger.debug, print_kwargs=True)
def download_admin_files(admin_dir: Path):
"""Download the admin files for the regions.
Files will be stored under [admin_dir]/adm1.shp and [admin_dir]/adm2.shp.
Args:
admin_dir (Path): The path to the admin files.
"""
# Download the admin files
admin_1_url = "https://github.com/wmgeolab/geoBoundaries/raw/main/releaseData/CGAZ/geoBoundariesCGAZ_ADM1.zip"
admin_2_url = "https://github.com/wmgeolab/geoBoundaries/raw/main/releaseData/CGAZ/geoBoundariesCGAZ_ADM2.zip"
admin_dir.mkdir(exist_ok=True, parents=True)
logger.debug(f"Downloading {admin_1_url} to {admin_dir.resolve()}")
_download_zip(admin_1_url, admin_dir)
logger.debug(f"Downloading {admin_2_url} to {admin_dir.resolve()}")
_download_zip(admin_2_url, admin_dir)
|