Skip to content

Commit

Permalink
Changed snapping to only snap to segment ends.
Browse files Browse the repository at this point in the history
  • Loading branch information
jesse-langdon committed Mar 29, 2018
1 parent ac3101b commit 4cf8ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TransferAttributesToLine.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def main(fcFromLine,
lyrFromLineTemp = gis_tools.newGISDataset("Layer", "lyrFromLineTemp")
arcpy.MakeFeatureLayer_management(fcFromLineTemp, lyrFromLineTemp)
arcpy.Snap_edit(lyrFromLineTemp,
[[fcToLine, "EDGE", "{0} Meters".format(searchDistance/2)],[fcToLine, "END", "{0} Meters".format(searchDistance)]])
[[fcToLine, "END", "{0} Meters".format(searchDistance)]])

# Make bounding polygon for "From" line feature class
arcpy.AddMessage("GNAT TLA: Create buffer polygon around 'From' network")
Expand Down

0 comments on commit 4cf8ece

Please sign in to comment.