-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwsDelineation2.py
More file actions
95 lines (64 loc) · 3.22 KB
/
Copy pathwsDelineation2.py
File metadata and controls
95 lines (64 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
##------------------------------------------------------------------------------------------------------------------
## Script Name: Watershed Delineation from Pour Points (wsDelineation2.py)
##
## This script exports creates delineated watersheds given multiple pour points
##
## Author: Michael Harris
## Date: 01/13/2017
##
##------------------------------------------------------------------------------------------------------------------
#Import Modules
import arcpy, os, time
#Set environments
arcpy.env.overwriteOutput = True
arcpy.env.XYResolution = "0.00001 Meters"
arcpy.env.XYTolerance = "0.0001 Meters"
#Variables used for script run
wrkSpace = r"D:\Users\miharris\Desktop\tempGIS\workspace"
pourPoints = wrkSpace + "\\pourPointsExtract.shp"
watersheds = wrkSpace + "\\watersheds"
pourPointsCopy = arcpy.CopyFeatures_management(pourPoints, wrkSpace + "\\pourPointExtractCopy.shp")
#There is not an easy way to accept grid files as inputs, so we set up a walk to find the original DEM file
#For now, this original file must be named dem01clp
walk = arcpy.da.Walk(wrkSpace, type="GRID")
for dirpath, dirnames, filenames in walk:
for filename in filenames:
print filename
if filename == "flowdir01":
flowDir = wrkSpace + "\\" + filename
print "flowDir is " + flowDir
#Checkout Spatial Analyst extension
arcpy.AddMessage("Checking license... ")
if arcpy.CheckExtension("Spatial") == "Available":
arcpy.CheckOutExtension("Spatial")
arcpy.AddMessage("Spatial Analyst license checked out... ")
else:
arcpy.AddMessage("Spatial Analyst license needed... ")
raise LicenseError
#Set workspace
arcpy.env.workspace = wrkSpace
#Extract each pour point into a shapefile to bue using in the watershed method
updateRows = arcpy.da.UpdateCursor(pourPointsCopy, ["FID", "Field1"])
for row in updateRows:
print "Delineating watershed for point " + str(row[1])
#SQL condition where it loops for every FID in the dataset
expr = "FID = {0}".format(row[0])
#Use select by condition to create individual shapefile for each pour point
ws = arcpy.Select_analysis(pourPointsCopy, watersheds + "\\ws" + str(row[1]) + ".shp", expr)
#Use watershed method in spatial analyst to create watershed delineation for each pour point, then save as raster
watershed = arcpy.sa.Watershed(flowDir, ws, "Field1")
watershed.save(watersheds + "\\ws" + str(row[1]))
#Delete point shapefile as it's no longer needed
arcpy.Delete_management(watersheds + "\\ws" + str(row[1]) + ".shp")
#Convert the raster of the watershed into a polygon of the watershed
wsPoly = arcpy.RasterToPolygon_conversion(watershed, watersheds + "\\ws" + str(row[1]) + ".shp", "NO_SIMPLIFY", "VALUE")
#Delete the raster watershed file as it's no longer needed
arcpy.Delete_management(watersheds + "\\ws" + str(row[1]))
#Add a drainage area field to calculate drainage area
arcpy.AddField_management (wsPoly, "DA_sqmi", "DOUBLE")
#Calculate drainage area
arcpy.CalculateField_management(wsPoly, "DA_sqmi", "!SHAPE.AREA@SQUAREMILES!", "PYTHON", "")
updateRows.updateRow(row)
del updateRows
del row
print "Done"