-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/USEPA/LakeCat into master # Conflicts: # .gitignore
- Loading branch information
Showing
4 changed files
with
73 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
<<<<<<< HEAD | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata | ||
======= | ||
lake_cat_config.py | ||
>>>>>>> 6855ebd44f8253ab82168173af248a140c6b3ba6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
|
||
# location of the landscape layers to perform statistics on | ||
LYR_DIR = 'C:/path/to/landscape/layers' | ||
|
||
# path to the framework created for LakeCat | ||
FRAMEWORK = ("L:/Priv/CORFiles/Geospatial_Library_Projects/LakeCat/" | ||
"LakeCat_Framework") | ||
|
||
# path to Allocated StreamCat files | ||
STREAMCAT_DIR = ("L:/Priv/CORFiles/Geospatial_Library_Projects/StreamCat/" | ||
"Allocation_and_Accumulation") | ||
|
||
# location of the NHDPlus, indicate the top-level directory | ||
NHD_DIR = 'D:/NHDPlusV21' | ||
|
||
# TIGER shapefile is needed for calculaitng the PctFUll values of Point type | ||
# metrics as well as organizing the final tables into separate files for states. | ||
STATES_FILE = "path/to/file/tl_2008_us_state.shp" | ||
|
||
# location to write out accumulated StreamCat data <- this is intermediate | ||
# these files will hold statistics for... | ||
# $Cat -> statistics for each catchment | ||
# $UpCat -> the accumulated upstream catchment statistics | ||
# $Ws -> statistics for the entire watershed | ||
OUT_DIR = ('C:/path/to/write/out/files/to') | ||
|
||
# location for the final tables | ||
FINAL_DIR = "L:/Priv/CORFiles/Geospatial_Library_Projects/StreamCat/FTP_Staging/Hydroregions" | ||
|
||
# files that hold the pct_full data, created from ??? | ||
pct_full_file = "L:/Priv/CORFiles/Geospatial_Library_Projects/StreamCat/ControlTables/ALL_BORDER_CATS.csv" | ||
pct_full_file_RP100 = "L:/Priv/CORFiles/Geospatial_Library_Projects/StreamCat/ControlTables/ALL_BORDER_CATS_Rp100.csv" | ||
|
||
#final_tables_dir L:/Priv/CORFiles/Geospatial_Library/Data/Project/StreamCat/FTP_Staging/StreamCat/HydroRegions |