|
POST
|
As long as you are adding the layer from your utility network feature service as a regular layer and not as a subtype group layer you can run the 'add join' tool on the layer, no problem. Join field would be problematic because it would change the schema (and you could only do it once). All the discussions about performance implications still stand, I just wasn't clear enough about using the individual layer from the feature service instead of a subtype layer from the subtype group layer.
... View more
10-23-2023
04:02 PM
|
0
|
2
|
4102
|
|
POST
|
@shildebrand You should still be able to use a regular feature layer to do the join, but you will want to use a definition query to filter out any rows that aren't relevant or don't need to be updated (e.g. excluding everything but the relevant asset group or features whose z-value hasn't changed). You can also do the same thing using Python scripts or Python Notebooks (using either ArcPy or the ArcGIS API for Python), this would give you even more control over your analysis and which features to update.
... View more
10-23-2023
02:21 PM
|
0
|
4
|
4108
|
|
POST
|
@GISUN An entire gas utility network can have multiple systems if it is large enough to have separate, disjoint areas of service (e.g. a western system that is not connected to an eastern system). The advantage of an asset belonging to multiple tiers is that it accurately reflects the real-world configuration of a network. Companies organize their data into these different subnetworks, and in the case of hierarchical networks these boundaries are either nested in each other (system, pressure, isolation zone) or overlap with each other (cathodic protection). If we required everything to be partitioned, then we would only be able to model one of these tiers as a subnetwork and everything else would have to be managed manually (or through customization).
... View more
10-23-2023
11:06 AM
|
0
|
0
|
3645
|
|
POST
|
@GISUN In practical terms, a feature in a hierarchical network can belong to many subnetworks while a feature in a partitioned network can only belong to a single subnetwork, I provide industry-specific articles as well as some hands-on tutorials in this learning series. So, a gas pressure valve can belong to a gas system, a pressure zone, an isolation zone, and even a cathodic protection zone. An electrical customer only belongs to a single circuit.
... View more
10-23-2023
10:39 AM
|
1
|
2
|
3667
|
|
POST
|
@GISUN If you need to refer to an attribute in order to control tracing or calculate summary statistics, you need to make it a network attribute. Normal attributes are not available in the Trace or Set Subnetwork Definition tools. With that being said, I recommend you download one of the Utility Network Foundations to learn how each industry uses different network attributes to control tracing and produce statistics for their subnetworks. If you want to include an attribute value in tracing/analysis it needs to be defined and validated as part of the network, this ensure that as we are loading the topology for analysis, we are also loading all the attributes required for analysis. You can imagine that if we didn't store this information with the topology and we needed to query individual features (or cache entire areas of the map) as we were evaluating the topology that this would be quite slow!
... View more
10-23-2023
07:46 AM
|
1
|
4
|
3691
|
|
POST
|
@shildebrand Doing a calculate field against a feature service can be a slow operation if you're doing this on a lot of rows and can also bloat the size of your history tables if you don't narrow the scope of your calculation. If you're familiar with Python I can recommend a few techniques that will be more sustainable, otherwise if you're just doing this once and don't mind the pain you can try using a regular layer and just apply a definition query to it.
... View more
10-23-2023
07:37 AM
|
0
|
1
|
4120
|
|
POST
|
This is not the expected behavior; I'd recommend you work with support to log an issue for this.
... View more
10-19-2023
07:47 AM
|
1
|
1
|
3704
|
|
POST
|
One way to accomplish this would be to write an attribute rule that would run every time a feature is created to give it a unique ID using a sequence. Then what you can do is take that arcade expression and use it in the calculate field tool on this layer (just make sure you set the language to Arcade).
... View more
10-19-2023
07:44 AM
|
2
|
0
|
4063
|
|
POST
|
While @AyanPalit is correct about being able to change the XY tolerance and resolution I would caution you against changing these values because they are permanent, and they can have unexpected consequences. If you're having issues with features not being connected in your network because of the resolution/tolerance of your source database, then the recommended approach is to include a process to snap and correct these features during your migration to the utility network (using FME or geoprocessing tools). This gives you an opportunity to experiment with different snapping tolerances so you can find the right tolerance that minimizes topology errors and manual cleanup, while also maximizes the number of features that are connected (appropriately).
... View more
10-19-2023
06:42 AM
|
1
|
0
|
2289
|
|
POST
|
The associations widget isn't available in the standard map viewer, but there is a utility network associations widget available out of the box that you can add to your own custom applications. You can learn more about this widget and see the code samples associated with it on this page on developers.arcgis.com.
... View more
10-18-2023
08:54 AM
|
0
|
0
|
1626
|
|
POST
|
1) Relationships can be configured to be 1:1, 1:M, or M:N. The cardinality of associations is determined by the feature restrictions of the utility network. 2) By default, associations are M:N. However, point features are only allowed to have a single container. You can learn more about how associations behave by reading the feature restrictions page I linked to above, or by referring to the specific pages for connectivity, containment, and attachment.
... View more
10-18-2023
05:34 AM
|
2
|
1
|
1940
|
|
POST
|
This looks like it could actually be a lock escalation issue on the EID mapping table. I'd recommend you reach out to support and reference this knowledge base topic: Bug: Branch Versioned Editing May Encounter Locking, Blocking, and Deadlocking When the Da (esri.com). If it is a lock escalation issue then they can provide a workaround, although if you're applied all the latest utility network patches to your ArcGIS Pro client and ArcGIS Enterprise install then you shouldn't be running into this issue.
... View more
10-16-2023
10:38 AM
|
1
|
0
|
1854
|
|
POST
|
There are typically two approaches taken: If you wish to draw each meter on the map, you would draw each meter as a device, connect each meter to a common electric junction (that is in turn connected to the LV line), and create a meter assembly to contain each meter device. If your organization is ok with representing all of this as a single location in your GIS than you would create an electric device (meter) in your network, then connect it to the LV line. If you wish to track individual meters in the GIS then you would create them as non-spatial electrical junction objects that are contained within the device. Ryan's approach is an alternative approach of this where they use a junction instead of a device and do not model the meters in the GIS (instead relying on a link to the CIS).
... View more
10-13-2023
01:32 PM
|
1
|
0
|
2190
|
|
POST
|
If you want to get all the poles attached to fuses in your entire network, the fastest and easiest way to achieve this would be to select all your fuses then use the "select associated data" tool to select all the containers and structures for those fuses. This is a new tool added in ArcGIS Pro 3.1, but if you are using ArcGIS Pro 2.9 you can download the add-in on this page of the community site to achieve the same behavior.
... View more
10-11-2023
06:44 AM
|
1
|
1
|
2567
|
|
POST
|
@MatheusSparapani specifically, if you're trying to run a downstream trace from the high side terminal of your transformer, and you've set up your subnetwork on the low side terminal of the transformer, it will return no results since there are no transmission controllers upstream of that point.
... View more
10-09-2023
07:15 AM
|
0
|
0
|
2059
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | a week ago | |
| 1 | a week ago | |
| 1 | a week ago | |
| 1 | a week ago |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|