<?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 a utility network element from a selected feature in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825596#M3010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;None. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our intent is that network topology operations should take place server-side using our tracing framework. &amp;nbsp;If you have scenarios or use cases that tracing doesn't currently fulfill, we would love to hear details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exporting topology information for a subnetwork (circuit) for the purposes of exporting to a third-party OMS, DMS, or analysis package will be supported at ArcGIS Enterprise 10.7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jan 2019 16:37:12 GMT</pubDate>
    <dc:creator>RichRuh</dc:creator>
    <dc:date>2019-01-02T16:37:12Z</dc:date>
    <item>
      <title>Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825590#M3004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am assuming (but don't really know) that there is an equivalent in ArcGIS Pro/Utility Network to the Geometric Network for getting network elements from a selected feature.&amp;nbsp; There don't seem to be classes like ISimpleEdgeFeature or ISimpleJunctionFeature that subclass Feature.&amp;nbsp; &amp;nbsp;And there doesn't seem to be anything like a GetNetworkElement() member on the Feature class.&amp;nbsp; But I suspect there is *some* way to do this.&amp;nbsp; If someone could point me in a direction here, that would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2018 01:58:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825590#M3004</guid>
      <dc:creator>EdwardBlair</dc:creator>
      <dc:date>2018-12-28T01:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825591#M3005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please note, I'm aware of the &lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Utility-Network"&gt;documentation&lt;/A&gt; that describes fetching features from an element -- and that describes many other cool utility network functions as well.&amp;nbsp; What I can't seem to find is the process to go in the other direction -- that is, get network element(s) from a given feature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2018 14:44:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825591#M3005</guid>
      <dc:creator>EdwardBlair</dc:creator>
      <dc:date>2018-12-28T14:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825592#M3006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ed, I think this is what you are after:&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/sdk/api-reference/#topic17644.html" rel="nofollow noopener noreferrer" target="_blank"&gt;UtilityNetwork.CreateElement&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, it might look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; layer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;GetLayersAsFlattenedList&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;OfType&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;UtilityNetworkLayer&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;FirstOrDefault&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;layer &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;null&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; utilityNetwork &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; layer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;GetUtilityNetwork&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//the feature class being a network source...&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; rowCursor &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; featureClass&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Search&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;queryFilter&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;rowCursor&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;MoveNext&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; currentRow &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; rowCursor&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Current&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; currentElement &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; utilityNetwork&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;CreateElement&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;currentRow&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:54:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825592#M3006</guid>
      <dc:creator>CharlesMacleod</dc:creator>
      <dc:date>2021-12-12T09:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825593#M3007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks good.  Thanks Charlie!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2018 18:09:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825593#M3007</guid>
      <dc:creator>EdwardBlair</dc:creator>
      <dc:date>2018-12-28T18:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825594#M3008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Charlie's code will get you the ArcGIS.Core.Data.UtilityNetwork.Element object that corresponds to a feature. &amp;nbsp;This is used for editing associations, setting starting points and barriers, and getting results back from a trace. &amp;nbsp;It does *not* give you access to the fine-grained topology for that feature. &amp;nbsp;For example, if a linear feature representing a conductor consists of five edges with taps&amp;nbsp;between them, you cannot get back the five individual edges. &amp;nbsp;This capability is not yet exposed through the utility network.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2018 23:48:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825594#M3008</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2018-12-28T23:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825595#M3009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich, Any ETA on this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2019 16:09:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825595#M3009</guid>
      <dc:creator>RichardDumont</dc:creator>
      <dc:date>2019-01-02T16:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825596#M3010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;None. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our intent is that network topology operations should take place server-side using our tracing framework. &amp;nbsp;If you have scenarios or use cases that tracing doesn't currently fulfill, we would love to hear details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exporting topology information for a subnetwork (circuit) for the purposes of exporting to a third-party OMS, DMS, or analysis package will be supported at ArcGIS Enterprise 10.7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2019 16:37:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825596#M3010</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2019-01-02T16:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825597#M3011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The export of the topology was something I was thinking about, OMS/DMS (CIM) specifically, I heard about the export and I am hoping this will do what I am thinking.&amp;nbsp; I will check out 10.7 when it is available and I have the time.&amp;nbsp; (Billable time does come first.)&amp;nbsp; Thanks again!&lt;BR /&gt;&lt;BR /&gt;Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2019 21:27:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825597#M3011</guid>
      <dc:creator>RichardDumont</dc:creator>
      <dc:date>2019-01-02T21:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825598#M3012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this "export topology" now in 10.7?&amp;nbsp; What function should I look for in the API?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Star&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2020 14:29:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825598#M3012</guid>
      <dc:creator>StarletMyers</dc:creator>
      <dc:date>2020-01-15T14:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825599#M3013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Star,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, this is included with the Export Subnetwork&amp;nbsp;geoprocessing tool. &amp;nbsp;You can call it from a&amp;nbsp;geoprocessing model, Python, or by using the&lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Geoprocessing"&gt;&amp;nbsp;geoprocessing API in the Pro SDK&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jan 2020 17:18:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825599#M3013</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2020-01-16T17:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Get a utility network element from a selected feature</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825600#M3014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition to what Rich listed, Export Subnetwork is also exposed through&amp;nbsp;&lt;A href="https://developers.arcgis.com/rest/services-reference/exportsubnetwork-utility-network-server-.htm"&gt;Rest&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Feb 2020 14:18:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/get-a-utility-network-element-from-a-selected/m-p/825600#M3014</guid>
      <dc:creator>RenatoSalvaleon3</dc:creator>
      <dc:date>2020-02-27T14:18:51Z</dc:date>
    </item>
  </channel>
</rss>

