<?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: Finding the Polyline part in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/finding-the-polyline-part/m-p/1213822#M8767</link>
    <description>&lt;P&gt;You say:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;I would like to edit the parts in red rectangles in that &lt;STRONG&gt;base layer.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;But then you also say:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;find the parts in one &lt;STRONG&gt;polyline layer&lt;/STRONG&gt; and edit the &lt;STRONG&gt;verticals&lt;/STRONG&gt; in them&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I assume you want to do the second, meaning you want to edit (what i assume is a road and a stream layer) either the street or road layer?&amp;nbsp; &amp;nbsp;And you mentioned 'Verticals' does that mean you want to change the elevation (Y) of a 3D line feature class at the point of intersection?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Sep 2022 14:41:33 GMT</pubDate>
    <dc:creator>Wolf</dc:creator>
    <dc:date>2022-09-19T14:41:33Z</dc:date>
    <item>
      <title>Finding the Polyline part</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/finding-the-polyline-part/m-p/1213727#M8766</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I have a question, I have two layers (polyline) from which I created a buffer of polygon layers and by intersecting them I created another layer with an intersection and now I would like to use the new layer to find the parts in one polyline layer and edit the verticals in them.&lt;BR /&gt;I hope I explained it clearly &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="intersect.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/51523i822C4FD3B06CEC72/image-size/medium?v=v2&amp;amp;px=400" role="button" title="intersect.PNG" alt="intersect.PNG" /&gt;&lt;/span&gt;&amp;nbsp;I would like to edit the parts in red rectangles in that base layer. *Badly chosen place&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;  if (!(MapView.Active.Map.FindLayers("Z_Voda_L ").First() is FeatureLayer vodaLayer))
                return;
            if (!(MapView.Active.Map.FindLayers("Z_KomSilnice_L ").First() is FeatureLayer komLayer))
                return;
            await QueuedTask.Run(async () =&amp;gt;
            {
                string fileBufferVoda = @"D:\BufferVoda.shp"; 
                object[] bufferParaVoda =
                    {vodaLayer, fileBufferVoda, "1 Meters", "FULL", "ROUND", "LIST", "", "PLANAR"};
                await StartATask("analysis.Buffer", bufferParaVoda);
                string fileBufferSilnice = @"D:\BufferSilnice.shp"; ;
                object[] bufferParaSilnice =
                    {komLayer, fileBufferSilnice, "2 Meters", "FULL", "ROUND", "LIST", "", "PLANAR"};
                await StartATask("analysis.Buffer", bufferParaSilnice);
                string output = @"D:\PairwiseIntersect.shp";
                string silnice = "BufferSilnice";
                string voda = "BufferVoda";
                FeatureLayer bufferSilnice = MapView.Active.Map.FindLayers(silnice).First() as FeatureLayer;
                FeatureLayer bufferVoda = MapView.Active.Map.FindLayers(voda).First() as FeatureLayer;
                object[] inputFields = { bufferVoda + ";" +bufferSilnice };
                object[] parametrPair = 
                    {inputFields, output , "ALL", "", "INPUT"};
                await StartATask("analysis.PairwiseIntersect", parametrPair);
               
            });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="example.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/51611iF164B181DEADEED7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="example.PNG" alt="example.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your advice and tips.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 05:09:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/finding-the-polyline-part/m-p/1213727#M8766</guid>
      <dc:creator>DavidMrázek</dc:creator>
      <dc:date>2022-09-20T05:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the Polyline part</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/finding-the-polyline-part/m-p/1213822#M8767</link>
      <description>&lt;P&gt;You say:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;I would like to edit the parts in red rectangles in that &lt;STRONG&gt;base layer.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;But then you also say:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;find the parts in one &lt;STRONG&gt;polyline layer&lt;/STRONG&gt; and edit the &lt;STRONG&gt;verticals&lt;/STRONG&gt; in them&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I assume you want to do the second, meaning you want to edit (what i assume is a road and a stream layer) either the street or road layer?&amp;nbsp; &amp;nbsp;And you mentioned 'Verticals' does that mean you want to change the elevation (Y) of a 3D line feature class at the point of intersection?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 14:41:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/finding-the-polyline-part/m-p/1213822#M8767</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2022-09-19T14:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the Polyline part</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/finding-the-polyline-part/m-p/1214078#M8770</link>
      <description>&lt;P&gt;The basic idea of ​​my problem is that I have the two initial layers (road and stream) but in some places these layers overlap, which makes no sense for the road to be on the stream (I don't mean the bridge). That's why I want to find places where they overlap more than just crossing and in those places move the stream a little to the side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;As I looked again at the workers, I didn't choose the right one...&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 04:58:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/finding-the-polyline-part/m-p/1214078#M8770</guid>
      <dc:creator>DavidMrázek</dc:creator>
      <dc:date>2022-09-20T04:58:03Z</dc:date>
    </item>
  </channel>
</rss>

