Skip to content

Commit cbc664d

Browse files
deprecate old watershed delineation files (non-NHDPlus)
1 parent a03bdec commit cbc664d

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

lagosGIS/deprecated/watersheds_toolchain.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
import arcpy
1616

1717
import NHDNetwork
18-
from watershed_delineation import aggregate_watersheds, make_gridcode, nhd_plus_watersheds_tools as nt
18+
from watershed_delineation import aggregate_watersheds, nhd_plus_watersheds_tools as nt
19+
from deprecated import make_gridcode, mosaic_dems as mosaic
1920
import lagosGIS
2021

2122
TOOL_ORDER = ('update_grid_codes', 'add_lake_seeds', 'fix_hydrodem', 'fel', 'fdr',
@@ -369,9 +370,8 @@ def patch_on_network_flag():
369370

370371
def run_alternate(huc4, last_tool='network', wait=False, out_dir = '', burn_override=True):
371372
arcpy.env.overwriteOutput = True
372-
from watershed_delineation import mosaic_dems as mosaic
373-
from watershed_delineation.burn_dems import burn_streams
374-
from watershed_delineation.make_catseed import make_catseed as make_catseed
373+
from deprecated.burn_dems import burn_streams
374+
from deprecated.make_catseed import make_catseed as make_catseed
375375

376376
NED_DIR = r'D:\Continental_Limnology\Data_Downloaded\3DEP_National_Elevation_Dataset\Zipped'
377377
NED_FOOTPRINT = r'D:\Continental_Limnology\Data_Downloaded\3DEP_National_Elevation_Dataset\Unzipped Original\ned_13arcsec_g.shp'

0 commit comments

Comments
 (0)