<?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: how to create a polygon using Coordinates? in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/how-to-create-a-polygon-using-coordinates/m-p/76420#M456</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi karthik;&lt;/P&gt;&lt;P&gt;Go through following links;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/56515"&gt;Building a Polygon Using Points in Arcobjects and C#&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000002wm000000" title="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000002wm000000"&gt;ArcObjects 10 .NET SDK Help&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Feb 2016 05:28:35 GMT</pubDate>
    <dc:creator>AjitkumarBabar</dc:creator>
    <dc:date>2016-02-19T05:28:35Z</dc:date>
    <item>
      <title>how to create a polygon using Coordinates?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-create-a-polygon-using-coordinates/m-p/76418#M454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am using ArcMap 9.3 and VB.net. I need to create the polygon using the coordinates. Anyone give me the sample program for create a polygon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advance Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with Regards,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2016 04:48:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-create-a-polygon-using-coordinates/m-p/76418#M454</guid>
      <dc:creator>karthikm</dc:creator>
      <dc:date>2016-02-19T04:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to create a polygon using Coordinates?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-create-a-polygon-using-coordinates/m-p/76419#M455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Follow this steps;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;convert your text file to points &lt;/LI&gt;&lt;LI&gt;convert points to lines with &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00170000003s000000"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline;"&gt;Points to Line&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;convert lines to polygons with &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Feature_To_Polygon/00170000003n000000/"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline;"&gt;Feature to Polygon&lt;/SPAN&gt;&lt;/A&gt; (Advanced licnese required)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or You can Use arcpy - no specific license required.&lt;/P&gt;&lt;P&gt;See an example at the bottom of the page &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//002z0000001v000000"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline;"&gt;Writing geometries&lt;/SPAN&gt;&lt;/A&gt;. The code converts a list of coordinates (a text file can be regarded as such a list) into polylines, you can easily modify it to create polygons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found this on this link;&lt;/P&gt;&lt;P&gt;&lt;A href="http://gis.stackexchange.com/questions/111742/arcgis-create-polygon-using-file-containing-point-coordinates" title="http://gis.stackexchange.com/questions/111742/arcgis-create-polygon-using-file-containing-point-coordinates"&gt;ArcGIS: Create polygon using file containing point coordinates - Geographic Information Systems Stack Exchange&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2016 05:18:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-create-a-polygon-using-coordinates/m-p/76419#M455</guid>
      <dc:creator>AjitkumarBabar</dc:creator>
      <dc:date>2016-02-19T05:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to create a polygon using Coordinates?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-create-a-polygon-using-coordinates/m-p/76420#M456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi karthik;&lt;/P&gt;&lt;P&gt;Go through following links;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/56515"&gt;Building a Polygon Using Points in Arcobjects and C#&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000002wm000000" title="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000002wm000000"&gt;ArcObjects 10 .NET SDK Help&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2016 05:28:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-create-a-polygon-using-coordinates/m-p/76420#M456</guid>
      <dc:creator>AjitkumarBabar</dc:creator>
      <dc:date>2016-02-19T05:28:35Z</dc:date>
    </item>
  </channel>
</rss>

