Guest User

Untitled

a guest
Jul 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import arcpy
  2. arcpy.env.workspace = "C:UsersUserDesktopkj"
  3. for fc in arcpy.ListFeatureClasses():
  4. arcpy.CopyFeatures_management(fc, fc[:-4] + "n") +"snapped.shp"
  5. arcpy.Snap_edit(fc, [[fc, "EDGE", 0.5]])
Add Comment
Please, Sign In to add comment