Friday 25 March 2016

cursor - How to create an offset polyline in arcpy?


I am trying to create an offset polyline using arcpy, identical to the function in ArcObjects (constructoffset). After trying to access ArcObjects in arcpy, which I found difficult for those not well-versed in COM languages, and after much searching for functionality in the regular geoprocessing toolboxes, I discovered that this functionality seems to only exist in ArcObjects. There may be ways to program this functionality in arcpy using trig, but that seems really hard. Essentially, the product I'd like is an offset polyline that preserves all original geometry and curvature. Simply using a SearchCursor on the input and building a new feature class based on its geometry requires some algorithm I don't know. This is because without an algorithm based on slope, etc., a one-size-fits-all addition or subtraction will not preserve an offset shape for all slopes. Any help?



Answer



We came up with this technique at work that uses geoprocessing tools to do the job:



First off, make sure your line segs have unique IDs.



  1. Buffer "FLAT" in each direction of the line, add a new field of the same name to each and give them a direction ("L","R").

  2. Merge the buffers together.

  3. Buffer the original line again, this time "FULL".

  4. Convert the FULL buffer to lines (PolygonToLine: "IGNORE_NEIGHBORS"), then convert its vertices to points (FeatureVerticesToPoints: "BOTH_ENDS").

  5. Buffer each point by a very small width (e.g. 0.1 m).

  6. Split the lines by vertex (SplitLine).

  7. Select by location to select all lines that intersect with the point buffers.

  8. Delete these lines.


  9. Dissolve ("SINGLE_PART") on the segment unique ID.

  10. Spatial Join ("SHARE_A_LINE_SEGMENT_WITH") the new lines to the merged "LEFT" and "RIGHT" buffers to attribute them with direction.


Voila! Offset lines without ArcObjects.


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...