<?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 Extracting non-endpoint vertices from lines in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540397#M88435</link>
    <description>&lt;P&gt;I'm looking for a way to extract non-endpoint vertices from a line.&amp;nbsp; I know there is a tool called &lt;EM&gt;Feature Vertices to Points&lt;/EM&gt; but this tool only extracts vertices using either the &lt;EM&gt;All Vertices&lt;/EM&gt;, &lt;EM&gt;Start Vertex&lt;/EM&gt;, or &lt;EM&gt;End Vertex &lt;/EM&gt;point types.&amp;nbsp; I'm looking for a way to extract the all vertices between the starting and ending vertices.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;Note: The &lt;EM&gt;Feature Vertices to Points&lt;/EM&gt; tool has an option to select &lt;EM&gt;Midpoint&lt;/EM&gt; as the point type.&amp;nbsp; Using this option creates a point at the midpoint of the line, even if no actual vertex exists at that point of the line.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Sep 2024 14:50:20 GMT</pubDate>
    <dc:creator>Markbe_utco</dc:creator>
    <dc:date>2024-09-19T14:50:20Z</dc:date>
    <item>
      <title>Extracting non-endpoint vertices from lines</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540397#M88435</link>
      <description>&lt;P&gt;I'm looking for a way to extract non-endpoint vertices from a line.&amp;nbsp; I know there is a tool called &lt;EM&gt;Feature Vertices to Points&lt;/EM&gt; but this tool only extracts vertices using either the &lt;EM&gt;All Vertices&lt;/EM&gt;, &lt;EM&gt;Start Vertex&lt;/EM&gt;, or &lt;EM&gt;End Vertex &lt;/EM&gt;point types.&amp;nbsp; I'm looking for a way to extract the all vertices between the starting and ending vertices.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;Note: The &lt;EM&gt;Feature Vertices to Points&lt;/EM&gt; tool has an option to select &lt;EM&gt;Midpoint&lt;/EM&gt; as the point type.&amp;nbsp; Using this option creates a point at the midpoint of the line, even if no actual vertex exists at that point of the line.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 14:50:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540397#M88435</guid>
      <dc:creator>Markbe_utco</dc:creator>
      <dc:date>2024-09-19T14:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting non-endpoint vertices from lines</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540467#M88448</link>
      <description>&lt;P&gt;You can use Python to read the geometry field using&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/get-started/data-access-using-cursors.htm" target="_self"&gt;Cursors&lt;/A&gt;, then extract the in-between vertices using methods on the &lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/classes/polyline.htm" target="_self"&gt;Polyline&lt;/A&gt; objects the cursor returns, then use another cursor to write the results where you need it.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 16:27:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540467#M88448</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2024-09-19T16:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting non-endpoint vertices from lines</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540545#M88452</link>
      <description>&lt;P&gt;How is this done within Model Builder?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 18:08:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540545#M88452</guid>
      <dc:creator>Markbe_utco</dc:creator>
      <dc:date>2024-09-19T18:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting non-endpoint vertices from lines</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540550#M88455</link>
      <description>&lt;P&gt;You might be able to use the &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/modelbuilder-toolbox/calculate-value.htm" target="_self"&gt;Calculate Value&lt;/A&gt; utility to run all the Python code you need, but I think that just overcomplicates things. You're better off writing this as a script tool. If you're not comfortable with that then hopefully someone with more Modelbuilder experience can help.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 18:16:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1540550#M88455</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2024-09-19T18:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting non-endpoint vertices from lines</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1541981#M88569</link>
      <description>&lt;P&gt;If you want to do this in model builder do this:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Extract all vertices&lt;/LI&gt;&lt;LI&gt;Extract start vertices&lt;/LI&gt;&lt;LI&gt;Extract end vertices&lt;/LI&gt;&lt;LI&gt;Use start vertices to select intersecting all vertices&lt;/LI&gt;&lt;LI&gt;Use end vertices to add to selection intersecting all vertices&lt;/LI&gt;&lt;LI&gt;Delete selection from all vertices.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;This can very easily be done in modelbuilder.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 15:28:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1541981#M88569</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2024-09-24T15:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting non-endpoint vertices from lines</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1543127#M88629</link>
      <description>&lt;P&gt;You can even do start &amp;amp; end in one pass, something like:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DavidSolari_0-1727369719418.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/116034iC01021B37FC49FCB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DavidSolari_0-1727369719418.png" alt="DavidSolari_0-1727369719418.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 16:55:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1543127#M88629</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2024-09-26T16:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting non-endpoint vertices from lines</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1543377#M88655</link>
      <description>&lt;P&gt;Fine tuned to perfection, nice! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 12:05:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extracting-non-endpoint-vertices-from-lines/m-p/1543377#M88655</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2024-09-27T12:05:54Z</dc:date>
    </item>
  </channel>
</rss>

