Select to view content in your preferred language

Dirty Area Total Errors

1510
1
02-04-2021 11:40 PM
Status: Closed
GIS_Solutions
Frequent Contributor

I think it would be very useful to write the total error numbers in the dirty area field in the error tab. Most of the time, errors do not appear, especially in point layers.

 

 

Tags (1)
1 Comment
DavidCrawford
Status changed to: Closed

This is just not something that we would do.  Feature Counts are not natively presented in such a manner in ArcGIS Pro. Writing a custom JavaScript or Web App, would allow you to control the TOC, and possibly include a feature count. 

To determine within Pro, what these counts are - for errors and subnetwork errors.  Open the Dirty Areas table, and do a query:  Select by Attributes  where Error Code Is not equal to 0 (ERRORCODE <> 0 [in SQL]) - this will give you all of the dirty areas which are associated with errors of some sort.  

Another option is to use a Map join.  

First do the above selection on the Dirty Areas table.  Right click -> Selection -> Create Layer from Selection. 

DavidCrawford_0-1617218189959.png

DavidCrawford_1-1617218208184.png

 

Now you have a layer 'Dirty Area selection' -- which is only the error features. Next create a join for the class you are interested in cleaning up (Junction, GlobalID) join to:  (Dirty Areas, Feature Guid).  Uncheck the box to keep all target features. 

DavidCrawford_2-1617218241822.png


DavidCrawford_3-1617218253048.png

And you will be left with a junction class (in my example), which contains only the features that have associated errors that need to be addressed (2 features in my example).

DavidCrawford_4-1617218284488.png

 

Hope that helps!