Skip to content

Commit

Permalink
download script for cashe
Browse files Browse the repository at this point in the history
  • Loading branch information
jtgilbert authored and philipbaileynar committed Jul 11, 2024
1 parent 3321a98 commit fbf7f2c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/commons/scripts/download_files.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from cybercastor.lib.file_download import download_files

dl_dir = '/path/to/some/dir' # where you download to locally
hucs = [] # fill in hucs - this can be HUC8s
files = [] # fill in specific files to download within the project

for huc in hucs:
download_files('production', 'vbet', huc, ['vbet_intermediates.gpkg'], dl_dir)

0 comments on commit fbf7f2c

Please sign in to comment.