Skip to content

Commit

Permalink
Create Fragmenter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler1218hatch committed Mar 25, 2021
1 parent b04c59d commit 246af95
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Fragmenter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#-------------------------------------------------------------------------------
# Name: Fragmenter.py
# Purpose: Fragments the Valley Bottom by any inputs
# Author: Jordan Gilbert
#
# Created: 3/21/21
#-------------------------------------------------------------------------------

#import modules
import arcpy
import sys
import os


def main(valley_bottom, fragmenters, out_folder):

arcpy.env.overwriteOutput = True




if __name__ == '__main__':
main(sys.argv[1],
sys.argv[2],
sys.argv[3],)

0 comments on commit 246af95

Please sign in to comment.