<?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: Get WKT Values for a Polygon in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692919#M102551</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/727255"&gt;@McKenzieBredemeyer&lt;/a&gt;&amp;nbsp;If you can add script tool to a toolbox, this is about as simple as you can make it.&amp;nbsp; Add one parameter for your input feature. Add this script to the tool and save, To run select a polygon, add the feature layer as the input.&amp;nbsp; It outputs the WKT in the Messages window.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
infc = arcpy.GetParameterAsText(0)
for row in arcpy.da.SearchCursor(infc, ["SHAPE@WKT"]):
    arcpy.AddMessage(row[0])&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-26 132051.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150342i90E079439AE57F6D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-26 132051.png" alt="Screenshot 2026-03-26 132051.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-26 132042.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150343i465FCE766773B68F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-26 132042.png" alt="Screenshot 2026-03-26 132042.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-26 132111.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150344i3C4BFB36835AC125/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-26 132111.png" alt="Screenshot 2026-03-26 132111.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 28 Mar 2026 14:50:55 GMT</pubDate>
    <dc:creator>Neal_t_k</dc:creator>
    <dc:date>2026-03-28T14:50:55Z</dc:date>
    <item>
      <title>Get WKT Values for a Polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692882#M102546</link>
      <description>&lt;P&gt;I was wondering if there was an easy way to get the WKT values of a selected polygon to be able to copy and paste? I know there's a way to input WKT and get a polygon, but I need the reverse direction. My company sends polygons into a mapping program of a regulatory agency and the easiest way to get polygons into their mapping program is to copy and paste WKT values, otherwise it's a multi-step process of getting shapefiles converted into their program. The agency used to have an add-in to put into ArcMap so that when we selected a polygon, it would pop up with WKT values to copy and paste, but it looks like they don't plan to create that add-in for ArcGIS Pro (and the ArcMap one does not work in Pro).&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 17:16:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692882#M102546</guid>
      <dc:creator>McKenzieBredemeyer</dc:creator>
      <dc:date>2026-03-26T17:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get WKT Values for a Polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692885#M102548</link>
      <description>&lt;P data-unlink="true"&gt;If you don't mind a bit of python, a &lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/data-access/searchcursor-class.htm" target="_self"&gt;Search Cursor&lt;/A&gt; with the special &lt;FONT face="courier new,courier"&gt;SHAPE@WKT&lt;/FONT&gt;&amp;nbsp;field token will return that for every feature you need.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 17:23:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692885#M102548</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2026-03-26T17:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Get WKT Values for a Polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692893#M102549</link>
      <description>&lt;P&gt;I would prefer to have something that doesn't work with Python, at least not on the front-facing side of it. My coworkers that will primarily be the ones needing the WKT information do not know python at all, and I only have a basic knowledge of Python to set a tool up for them.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 17:38:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692893#M102549</guid>
      <dc:creator>McKenzieBredemeyer</dc:creator>
      <dc:date>2026-03-26T17:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get WKT Values for a Polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692919#M102551</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/727255"&gt;@McKenzieBredemeyer&lt;/a&gt;&amp;nbsp;If you can add script tool to a toolbox, this is about as simple as you can make it.&amp;nbsp; Add one parameter for your input feature. Add this script to the tool and save, To run select a polygon, add the feature layer as the input.&amp;nbsp; It outputs the WKT in the Messages window.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
infc = arcpy.GetParameterAsText(0)
for row in arcpy.da.SearchCursor(infc, ["SHAPE@WKT"]):
    arcpy.AddMessage(row[0])&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-26 132051.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150342i90E079439AE57F6D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-26 132051.png" alt="Screenshot 2026-03-26 132051.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-26 132042.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150343i465FCE766773B68F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-26 132042.png" alt="Screenshot 2026-03-26 132042.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-26 132111.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/150344i3C4BFB36835AC125/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-03-26 132111.png" alt="Screenshot 2026-03-26 132111.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2026 14:50:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1692919#M102551</guid>
      <dc:creator>Neal_t_k</dc:creator>
      <dc:date>2026-03-28T14:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get WKT Values for a Polygon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1693022#M102558</link>
      <description>&lt;P&gt;Thank you so much, this is so helpful.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 22:07:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/get-wkt-values-for-a-polygon/m-p/1693022#M102558</guid>
      <dc:creator>McKenzieBredemeyer</dc:creator>
      <dc:date>2026-03-26T22:07:15Z</dc:date>
    </item>
  </channel>
</rss>

