I have been struggling to accurately monitor our CONUS run because I am basing completion off of the WBD HUC10s. These differ from the actual data that we are using for Riverscapes Context.
Please write a Python script to download each HUC4 VPU File Geodatabase (using boto) then use OGR2OGR to "append" the HUC10 layer into a new GeoPackage polygon feature class.
You can use the following boto command to obtain the NHD data from S3:
GeoPackage with a single feature class that is the national HUC10 layer according to NHD. I really only need CONUS. But include Alaska if easy. Definitely ignore Hawaii and any territories.
I definitely need the following attributes:
HUC10
name
states
If possible I need the huc type column for the HUC10s that tells me whether the HUC is "water" or "urban" etc. If this isn't available in the NHD data then I can transpose it from the WBD, being careful about HUC matchups.
I have been struggling to accurately monitor our CONUS run because I am basing completion off of the WBD HUC10s. These differ from the actual data that we are using for Riverscapes Context.
Please write a Python script to download each HUC4 VPU File Geodatabase (using boto) then use OGR2OGR to "append" the HUC10 layer into a new GeoPackage polygon feature class.
You can use the following boto command to obtain the NHD data from S3:
or to list them...
Then you can adapt the following OGR2OGR command in a single GeoPackage Feature class:
Deliverable