<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Tool to add triangular polygon in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101793#M7885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would say yes this is very doable (but can't help right now).&amp;nbsp; I would do a search on either "arcpy split along line"&amp;nbsp; or split line at point, or some of the other terms similar.&amp;nbsp; Questions that would help others...&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Do you already know the apex (i.e. maybe separate point layer)&lt;/LI&gt;&lt;LI&gt;are the distances the same for 1) each apex, 2) each line/direction&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;You should look at &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-classes/geometry.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-classes/geometry.htm"&gt;Geometry—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can do just about anything in a python script with this, that is breaking any feature down to it's smallest part, basically an x/y coordinate. But someone may have already written something to I would look around on the web.&lt;/P&gt;&lt;P&gt;The "official" code sharing page from esri now is here: &lt;A class="link-titled" href="http://codesharing.arcgis.com/" title="http://codesharing.arcgis.com/"&gt;ArcGIS Code Sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Dec 2016 16:29:27 GMT</pubDate>
    <dc:creator>RebeccaStrauch__GISP</dc:creator>
    <dc:date>2016-12-06T16:29:27Z</dc:date>
    <item>
      <title>Tool to add triangular polygon</title>
      <link>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101790#M7882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a road layout and at the road intersections I need to create what are termed "splays" in the Survey world. This is usually done by choosing the apex point and then creating a vertex a defined distance down each polygon edge running away from the apex point. The triangle is then created by joining the two new vertices with the apex vertex. I then need to merge this new triangular polygon with the adjoining polygon. See below:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/277191_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/277196_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/277197_pastedImage_5.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/277198_pastedImage_6.png" /&gt;&lt;/P&gt;&lt;P&gt;And the end result being:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/277202_pastedImage_7.png" /&gt;&lt;/P&gt;&lt;P&gt;Is there a way to create a tool in ArcMap to achieve the above easily? Currently the method I am using is very cumbersome. Or has anyone already created such a tool?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2016 12:26:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101790#M7882</guid>
      <dc:creator>AlanTonkin</dc:creator>
      <dc:date>2016-12-06T12:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tool to add triangular polygon</title>
      <link>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101791#M7883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reshape polygon seems appropriate. &amp;nbsp;See&amp;nbsp;&lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/editing-existing-features/reshaping-polygons.htm"&gt;http://desktop.arcgis.com/en/arcmap/10.3/manage-data/editing-existing-features/reshaping-polygons.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2016 14:59:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101791#M7883</guid>
      <dc:creator>BruceLang</dc:creator>
      <dc:date>2016-12-06T14:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Tool to add triangular polygon</title>
      <link>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101792#M7884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know I can use the Reshape Polygon tool but I'm looking for something that will speed the process up significantly as I have a lot of these "chamfer" type triangles to add at these road intersections. In the interim I have decided to use a point layer as a construction layer and have used the "Point at end of line" construction tool to create the points at my specified distances down each polygon edge away from the apex point. I then just edit the vertices of the polygon to include my constructed points. I was ideally looking for a way that I could create a simple tool to automate my series of clicks and typing distances in.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2016 15:38:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101792#M7884</guid>
      <dc:creator>AlanTonkin</dc:creator>
      <dc:date>2016-12-06T15:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tool to add triangular polygon</title>
      <link>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101793#M7885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would say yes this is very doable (but can't help right now).&amp;nbsp; I would do a search on either "arcpy split along line"&amp;nbsp; or split line at point, or some of the other terms similar.&amp;nbsp; Questions that would help others...&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Do you already know the apex (i.e. maybe separate point layer)&lt;/LI&gt;&lt;LI&gt;are the distances the same for 1) each apex, 2) each line/direction&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;You should look at &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-classes/geometry.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-classes/geometry.htm"&gt;Geometry—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can do just about anything in a python script with this, that is breaking any feature down to it's smallest part, basically an x/y coordinate. But someone may have already written something to I would look around on the web.&lt;/P&gt;&lt;P&gt;The "official" code sharing page from esri now is here: &lt;A class="link-titled" href="http://codesharing.arcgis.com/" title="http://codesharing.arcgis.com/"&gt;ArcGIS Code Sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Dec 2016 16:29:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/tool-to-add-triangular-polygon/m-p/101793#M7885</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2016-12-06T16:29:27Z</dc:date>
    </item>
  </channel>
</rss>

