<?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: Creating polygons from points? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269878#M20800</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should indicate the format of your point data to facilitate further guidance.&amp;nbsp; There may be some pre-existing tools that will help with the reading of the data, for example, the &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//001700000032000000"&gt;Add XY data tool&lt;/A&gt; and the &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000002p000000"&gt;Create Feature Class tool&lt;/A&gt;.&amp;nbsp; These can either be used manually within ArcMap or their associated code can be incorporated in a script to facilitate automation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2014 07:49:59 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2014-08-13T07:49:59Z</dc:date>
    <item>
      <title>Creating polygons from points?</title>
      <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269874#M20796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey all!&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I have a point shapefile and I would like to build a polygon for each consecutive 3 points in this shapefile.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I am having a hard time figuring out how to build a polygon from points in first place.&lt;/P&gt;&lt;P&gt;- Is there a way to write a Python script to do that? and If yes, is it possible to add an iteration function in the script so that it build a polygon for each consecutive 3 points in my shapefile?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a bunch!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 06:56:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269874#M20796</guid>
      <dc:creator>ChloeAsmar</dc:creator>
      <dc:date>2014-08-13T06:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating polygons from points?</title>
      <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269875#M20797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible through&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//018z00000061000000"&gt; arcpy and the polygon class.&lt;/A&gt;&amp;nbsp; The example at the bottom of the link provides such an example.&amp;nbsp; Your task will be to read the features in as triplets and then save the results, however, you don't indicate your level of familiarity with programming in python or arcpy in general.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 07:03:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269875#M20797</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-08-13T07:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating polygons from points?</title>
      <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269876#M20798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chole,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you trying to create a TIN surface &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//006000000001000000" title="http://resources.arcgis.com/en/help/main/10.1/index.html#//006000000001000000"&gt;ArcGIS Help 10.1&lt;/A&gt;? If so you'll need 3D Analyst extension for that &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00q90000001v000000" title="http://resources.arcgis.com/en/help/main/10.1/index.html#//00q90000001v000000"&gt;ArcGIS Help 10.1&lt;/A&gt;‌.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 07:06:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269876#M20798</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-08-13T07:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Creating polygons from points?</title>
      <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269877#M20799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Dan, thanks for the reply,&lt;/P&gt;&lt;P&gt;I am still an amateur when it comes to programming, but learning!&lt;/P&gt;&lt;P&gt;I usually try to look for available scripts and sort of combine them and try to modify them to fit what I need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 07:38:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269877#M20799</guid>
      <dc:creator>ChloeAsmar</dc:creator>
      <dc:date>2014-08-13T07:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Creating polygons from points?</title>
      <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269878#M20800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should indicate the format of your point data to facilitate further guidance.&amp;nbsp; There may be some pre-existing tools that will help with the reading of the data, for example, the &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//001700000032000000"&gt;Add XY data tool&lt;/A&gt; and the &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000002p000000"&gt;Create Feature Class tool&lt;/A&gt;.&amp;nbsp; These can either be used manually within ArcMap or their associated code can be incorporated in a script to facilitate automation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 07:49:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269878#M20800</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-08-13T07:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating polygons from points?</title>
      <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269879#M20801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Riyas, no I am just trying to build separate polygons &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 08:15:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269879#M20801</guid>
      <dc:creator>ChloeAsmar</dc:creator>
      <dc:date>2014-08-13T08:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating polygons from points?</title>
      <link>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269880#M20802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use this model as a base for for your work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Points to polygon.png" class="jive-image image-1" src="/legacyfs/online/3407_Points to polygon.png" style="width: 620px; height: 354px;" /&gt;&lt;/P&gt;&lt;P&gt;Best regards JanW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 09:25:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-polygons-from-points/m-p/269880#M20802</guid>
      <dc:creator>JanWijkstrom</dc:creator>
      <dc:date>2014-08-13T09:25:37Z</dc:date>
    </item>
  </channel>
</rss>

