Select to view content in your preferred language

UN Trace Tool - How to write calculated results to a feature class?

729
4
Jump to solution
08-29-2024 09:19 PM
gis_KIWI4
Frequent Contributor

Hi Team, 

I have set up a trace function to add up the shape length. The GP tool runs fine but I am not wondering if I had to write this to a feature class or store as attribute, how would one do it? 

gis_KIWI4_0-1724991538616.png

 

 

 

0 Kudos
1 Solution

Accepted Solutions
MikeMillerGIS
Esri Frequent Contributor

The Batch trace stores the summary info on the aggregated geometry and has an option to store it on the starting point.  

https://esri.github.io/Utility-Data-Management-Support-Tools/docs/3.3/BatchTrace.html

View solution in original post

0 Kudos
4 Replies
MikeMillerGIS
Esri Frequent Contributor

The Batch trace stores the summary info on the aggregated geometry and has an option to store it on the starting point.  

https://esri.github.io/Utility-Data-Management-Support-Tools/docs/3.3/BatchTrace.html

0 Kudos
gis_KIWI4
Frequent Contributor

@MikeMillerGIS  - I will give this a go. Any idea how I can define the trace name in the aggregated geometry field? By default is uses the OID. 

gis_KIWI4_0-1725254289420.png

 

 



0 Kudos
MikeMillerGIS
Esri Frequent Contributor

Select a group by field in the Batch Trace, that is the value used.

RobertKrisher
Esri Regular Contributor

In addition to using the batch trace tool, if you use the aggregated geometry result type you will get a feature back that you can use that has the shape length of all the lines returned by the trace.

Edit: We currently don't allow you to access the function results as an output of the tool, but if that's something you'd like to see please create an idea for it. If you call the trace using the ArcGIS API for Python or the ArcGIS Pro SDK (or any other API) you will get access to the individual function results to do with as you see fit.