<?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 Python Script for Moving Annotated layers in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/python-script-for-moving-annotated-layers/m-p/1670902#M100643</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am looking for some help writing a Python script to move my annotated layers outside of the buffer zone and to make them not overlap.&lt;/P&gt;&lt;P&gt;Any help is appreciated on this.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 05 Dec 2025 16:51:50 GMT</pubDate>
    <dc:creator>HaileyTimmons</dc:creator>
    <dc:date>2025-12-05T16:51:50Z</dc:date>
    <item>
      <title>Python Script for Moving Annotated layers</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-script-for-moving-annotated-layers/m-p/1670902#M100643</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am looking for some help writing a Python script to move my annotated layers outside of the buffer zone and to make them not overlap.&lt;/P&gt;&lt;P&gt;Any help is appreciated on this.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Dec 2025 16:51:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-script-for-moving-annotated-layers/m-p/1670902#M100643</guid>
      <dc:creator>HaileyTimmons</dc:creator>
      <dc:date>2025-12-05T16:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script for Moving Annotated layers</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-script-for-moving-annotated-layers/m-p/1671337#M100693</link>
      <description>&lt;P&gt;I think you're going to need to give us a little more information to properly help you.&lt;/P&gt;&lt;P&gt;Do you have anything so far?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That being said, this was awful and I did not have a good time. This will probably help a little bit but you'll have to tweak for your usecase. I'd take a look at the&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/classes/geometry.htm" target="_self"&gt;Geometry methods&lt;/A&gt;&amp;nbsp;for more ideas. It looks like the annotations come in natively as lines, so pay close attention to the polyline page.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
fc = r"path to anno"
dX = -2000
dY = 2000
with arcpy.da.UpdateCursor(fc, ["ANNO@"]) as cursor:
    for row in cursor:
        graph = row[0].getGraphic('V3')
        newshp = newshp.move(dX,dY)
        graph.shape = newshp
        row[0].setGraphic(graph)
        cursor.updateRow(row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 18:14:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-script-for-moving-annotated-layers/m-p/1671337#M100693</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-12-08T18:14:14Z</dc:date>
    </item>
  </channel>
</rss>

