|
POST
|
Transformers have terminals (high and low) that should correspond to Node1 and Node2 in your example. If you use Export Subnetwork (or Trace) to export the connectivity of each subnetwork to a JSON file you can just look at the resulting file to see the layer, global id, and object id of each feature connected to each terminal of each transformer. Here is a snippet of a JSON file that shows this (additional attributes, asset group/type, etc are elsewhere in the JSON file): { "viaNetworkSourceId" : 9, "viaGlobalId" : "{CA7E882F-ACCE-4A2F-8A59-18D0EB60DB09}", "viaObjectId" : 6127, "viaPositionFrom" : 0, "viaPositionTo" : 1, "viaGeometry" : { }, "fromNetworkSourceId" : 9, "fromGlobalId" : "{CA7E882F-ACCE-4A2F-8A59-18D0EB60DB09}", "fromObjectId" : 6127, "fromTerminalId" : 7, "fromGeometry" : { }, "toNetworkSourceId" : 9, "toGlobalId" : "{CA7E882F-ACCE-4A2F-8A59-18D0EB60DB09}", "toObjectId" : 6127, "toTerminalId" : 8, "toGeometry" : { }, "viaNetworkSourceName" : "ElectricDevice", "fromNetworkSourceName" : "ElectricDevice", "fromTerminalName" : "2wXFR:Primary", "toNetworkSourceName" : "ElectricDevice", "toTerminalName" : "2wXFR:Secondary" },
... View more
07-03-2025
06:12 PM
|
0
|
0
|
1230
|
|
POST
|
A screenshot of the features/errors would help in understanding the problem. Seeing exactly where the errors are in relation to the features will help understand what the problem is, and whether it is caused by these rules or something else. If you want to enforce an EJE rules, then you should not have JE rules that overlap with them. Because you have both this means that you can place a Riser between two primary conductors as well as between two transformerstationswitchgear. If you only want the riser to be able to exist between the primary conductor and the transofmerstationswitchgear, then you need to remove the other rules.
... View more
07-03-2025
07:19 AM
|
0
|
0
|
2380
|
|
POST
|
@Andy_Morgan Subnetworks don't need to be updated to be respected by the isolation trace, as long as you can run a subnetwork controller trace and those towers are detected as controllers you are fine. Because you've highly customized your model its difficult to say what is happening without having the data in front of us. Logging a case with support and getting on a screen-sharing session with them is a good way to resolve this issue. If you're going to be at the User Conference this year, and don't have the issue figured out by then, come by the ArcGIS Utility Network booth with your data and we can also take a look.
... View more
07-02-2025
08:27 AM
|
0
|
0
|
2019
|
|
POST
|
@JakeJacobsAVA You can find the process for deleting a subnetwork in the Delete a subnetwork topic in the ArcGIS Help. The process can vary slightly depending on your subnetwork definition. If you Manage Status on your subnetworks (i.e. after you update subnetwork the network shows as clean) then you will also need to run Export Subnetwork with the Set export acknowledge option selected in order to do a final purge of the subnetwork from your system.
... View more
07-02-2025
08:22 AM
|
1
|
0
|
1281
|
|
POST
|
You can find a video of the end-to-end process for configuring batch trace in the GitHub repo for the tool: esri.github.io/Utility-Data-Management-Support-Tools/help/BatchTrace.mp4 You can see that the tool requires you to select a starting point layer created by the Build Starting Points tool.
... View more
07-01-2025
09:15 AM
|
0
|
1
|
1829
|
|
POST
|
We recently published an article explaining the process of how to configure an isolation trace, and the various permutations you may want to make to the configuration: Isolating failures using ArcGIS Utility Network You do not need to create isolation zone subnetwork in order to do isolation tracing. I agree with @MichaelParma that I typically use the pressure (or system) tier then set the filter barrier to be isolating devices. The lifecycle status/device status are already populated as condition barriers when you select the corresponding tier in your network.
... View more
07-01-2025
09:12 AM
|
0
|
2
|
2056
|
|
DOC
|
@GuillaumeRuelle If you're asking about an add-in to convert all the symbology in a project to SVG, I don't know of any examples. You should be able to write your own, or there may be examples you can find on the mapping community. As discussed above, now that there are features to publish services compatible with a broad number of clients, I don't think there is as strong a need to go through this process.
... View more
07-01-2025
09:06 AM
|
0
|
0
|
6761
|
|
DOC
|
@JenniferBorlick The chatbot is still learning, I was able to get it to tell me about the ArcGIS Ideas page but it didn't give me the right link. Fortunately, I happen to know the dedicated link to the page is here: ArcGIS Ideas - Esri Community
... View more
06-30-2025
09:38 AM
|
0
|
0
|
1492
|
|
POST
|
The SUPPORTINGSUBNETWORKNAME field applied to all applicable domain classes has properties that do not match those expected by the system (on creating a Utility Network or upgrading a dataset). When the SUPPORTINGSUBNETWORKNAME field is created, isRequired must be -1 which means True, and isEditable must be 0, which means False. In this data, isRequired is 0 and isEditable is -1, which caused the failure. The SUPPORTINGSUBNETWORKNAME field is not created until Utility Network Version 5. Removing these fields from the various classes allows the upgrade to be run successfully from Utility Network Version 4 to Version 5, or 6 (which then re-adds the fields in a supported manner). You should check the SupportingSubnetworkName field for the following classes for each Domain Network in your Utility Network (except the structure domain): Device EdgeObject Junction Junction Object Line
... View more
06-30-2025
05:38 AM
|
0
|
0
|
2116
|
|
POST
|
I thought you were just attempting to audit/reconcile existing databases, and not creating a new database. But if you want to use this process to create a new database you can do that as well. Reconciling four databases is no fun, especially if you have to do this on a regular basis, but establishing and maintaining these keys means you will only have to investigate newly created features in each system.
... View more
06-25-2025
01:25 PM
|
1
|
1
|
1843
|
|
POST
|
You don't want unique GUIDs across all the databases. Create a unique GUID in one of the databases, then put that same GUID on the 'same' feature in all the other databases (using your current comparison logic). So the same 'thing' in different databases always has the same GUID. If you find something in a database, it gets its own unique identifier. That will allow you to uniquely identify every feature, row, and relationship in your databases. For the attachments, I would recommend you use the attachment name to uniquely identify attachments. So if you see two attachments with the same name, attached to the same feature, you assume they're they same. If you get suspicious that they are actually different, that's when you do the binary comparison.
... View more
06-25-2025
11:22 AM
|
1
|
0
|
1853
|
|
POST
|
It's going to come down to whether you can determine what is/isn't backbone based on the type of feature (i.e., asset type) or whether you need to do it on a per-feature basis. If it's on a per-feature basis, or you want something more nuanced than backbone/not backbone, you'll need a network attribute.
... View more
06-25-2025
09:34 AM
|
0
|
0
|
1061
|
|
POST
|
If you want to start synchronizing information between all of these database, the best thing you can do is to create a single unique identifier that is shared between the system that uniquely identifies each feature. You could add a GUID column (not a global ID column) and use that. If you then have a unique GUID for each object in your database, detecting changes to classes and relationships becomes much easier. You can detect new features, missing features, modified features. You can also audit relationships by looking to see where the parent/child features aren't related or are related to different objects. If you have to do a binary comparison, you could look at using a utility to calculate a checksum or hash using the contents of a file, then compare the results of the hash. You can find several examples of ways to do this using python or powershell online.
... View more
06-25-2025
09:08 AM
|
1
|
1
|
1862
|
|
POST
|
How are you currently planning on reconciling the rest of the data? If your features have unique identifiers that is a good place to start. If all the data originated from a single data source you may be able to rely on a global id on the attachments (if you used a global id based relationship), your next best bet would be to use an content type/attachment name. A binary comparison of the attachments is also possible but should only be done as a last resort because of how expensive it would be.
... View more
06-24-2025
03:11 PM
|
1
|
3
|
1941
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Friday | |
| 1 | Tuesday | |
| 1 | 03-30-2026 07:24 AM | |
| 1 | Tuesday | |
| 1 | a week ago |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|