How to form a flat buffer using python?

1923
2
12-10-2016 07:02 PM
TieshengWu
Occasional Contributor

Hi all, how to make the command 'Arcpy.Polygon.buffer(distance)'  forming a flat buffer instead  a round one?

0 Kudos
2 Replies
DanPatterson_Retired
MVP Emeritus

you can't.  you can only access the square end buffer through Buffer—Help | ArcGIS Desktop 

You only other options would be to construct perpendicular lines at the line ends (for instance) and split the polygon there, or construct offset parallels and join those to form polygons.

TieshengWu
Occasional Contributor

Thank you Dan. I really didn't expect that it's impossible to do that directly as I thought maybe some arcmap option can do. So have to use the indirect way as your suggestion.

0 Kudos