Certain procedures in this repo require a county-level CONUS shapefile to perform geospatial lat/long-to-county matching (example below maps pumped-hydro sites to their corresponding counties). Currently the procedure pulls this shapefile from a separate ReEDS repository.
|
reeds_path = os.path.expanduser('~/github/ReEDS') |
|
outdir_path = os.path.join(reeds_path, 'inputs', 'storage') |
|
dfcounty = gpd.read_file( |
|
os.path.join( |
|
reeds_path, |
|
'inputs', |
|
'shapefiles', |
|
'US_COUNTY_2022' |
|
) |
|
) |
Could we add this required county-level shapefile to the shapefiles/ folder in this repository so this and other future procedures no longer pull data from external sources?
Certain procedures in this repo require a county-level CONUS shapefile to perform geospatial lat/long-to-county matching (example below maps pumped-hydro sites to their corresponding counties). Currently the procedure pulls this shapefile from a separate ReEDS repository.
ReEDS_Input_Processing/psh/calculate_existing_psh_capacities.py
Lines 51 to 60 in b57ce18
Could we add this required county-level shapefile to the
shapefiles/folder in this repository so this and other future procedures no longer pull data from external sources?