<?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 Is it possible to merge or append a point layer to an annotation layer? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054832#M61039</link>
    <description>&lt;P&gt;I'm trying to write a python script to 'Merge' or 'Append Annotation Feature Classes' a point layer (points in middle of each parcel) and an existing annotation layer; however, both of these tools require each layer to be an annotation layer. I cannot find a way to convert an&lt;STRONG&gt; existing&lt;/STRONG&gt; point feature class to an annotation feature class so I can carry out this merge. Is this possible?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 May 2021 18:52:53 GMT</pubDate>
    <dc:creator>GeoDev</dc:creator>
    <dc:date>2021-05-05T18:52:53Z</dc:date>
    <item>
      <title>Is it possible to merge or append a point layer to an annotation layer?</title>
      <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054832#M61039</link>
      <description>&lt;P&gt;I'm trying to write a python script to 'Merge' or 'Append Annotation Feature Classes' a point layer (points in middle of each parcel) and an existing annotation layer; however, both of these tools require each layer to be an annotation layer. I cannot find a way to convert an&lt;STRONG&gt; existing&lt;/STRONG&gt; point feature class to an annotation feature class so I can carry out this merge. Is this possible?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 18:52:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054832#M61039</guid>
      <dc:creator>GeoDev</dc:creator>
      <dc:date>2021-05-05T18:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to merge or append a point layer to an annotation layer?</title>
      <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054854#M61040</link>
      <description>&lt;P&gt;Merge and Append work on the same geometry type only. Points with Points, and Annotation with Annotations, etc.&lt;/P&gt;&lt;P&gt;So, you will need to create an Annotation Feature Class out of the Point Layer (Label to Annotation),&amp;nbsp; followed by merging/appending the annotation features.&lt;/P&gt;&lt;P&gt;If required, you may convert Annotation to Points using&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-to-point.htm" target="_self"&gt;Feature to Point&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 19:42:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054854#M61040</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-05-05T19:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to merge or append a point layer to an annotation layer?</title>
      <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054857#M61041</link>
      <description>Unfortunately, the point feature layer does not have any labels only&lt;BR /&gt;points, so the Label to Annotation tool does not work.&lt;BR /&gt;</description>
      <pubDate>Wed, 05 May 2021 19:45:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054857#M61041</guid>
      <dc:creator>GeoDev</dc:creator>
      <dc:date>2021-05-05T19:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to merge or append a point layer to an annotation layer?</title>
      <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054863#M61042</link>
      <description>&lt;P&gt;In that case, could you tell me what you are trying to achieve by the merge/append?&lt;/P&gt;&lt;P&gt;If you want the Point features to be generated, where your existing Annotations are placed, you may use&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-to-point.htm" target="_self" rel="nofollow noopener noreferrer"&gt;Feature to Point&lt;/A&gt;&amp;nbsp;tool, as I mentioned.&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 19:50:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054863#M61042</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-05-05T19:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to merge or append a point layer to an annotation layer?</title>
      <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054884#M61043</link>
      <description>The confusing part is.. the first part of the script is a CAD .DWG to&lt;BR /&gt;Geodatabase, which separates the .DWG file into separate layers with one&lt;BR /&gt;being labeled an 'Annotation' layer. Except that 'Annotation' is actually a&lt;BR /&gt;point layer when I right click it in the properties. My boss wanted me to&lt;BR /&gt;extract a subset of points from this 'Annotation' layer and merge it with&lt;BR /&gt;the existing production Parcel Annotation layer (which is actually a real&lt;BR /&gt;annotation type layer).&lt;BR /&gt;</description>
      <pubDate>Wed, 05 May 2021 20:10:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054884#M61043</guid>
      <dc:creator>GeoDev</dc:creator>
      <dc:date>2021-05-05T20:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to merge or append a point layer to an annotation layer?</title>
      <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054889#M61044</link>
      <description>&lt;P&gt;Thank you for the clarification.&lt;/P&gt;&lt;P&gt;If you have ArcMap, you can use&amp;nbsp;&lt;A href="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/import-cad-annotation.htm" target="_self"&gt;Import CAD Annotation Tool&lt;/A&gt;&amp;nbsp;to convert CAD Annotation to Geodatabase Annotation, and then append the latter to the parcel annotation layer. Check the &lt;A href="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/import-cad-annotation.htm#C_GUID-FE638EAC-C493-4ADB-8D45-70B230D93680" target="_self"&gt;code sample&lt;/A&gt; for the python script.&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 20:18:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1054889#M61044</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-05-05T20:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to merge or append a point layer to an annotation layer?</title>
      <link>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1055166#M61050</link>
      <description>&lt;P&gt;Thank you for this answer. It was exactly what I was looking for!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 12:47:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/is-it-possible-to-merge-or-append-a-point-layer-to/m-p/1055166#M61050</guid>
      <dc:creator>GeoDev</dc:creator>
      <dc:date>2021-05-06T12:47:44Z</dc:date>
    </item>
  </channel>
</rss>

