|
POST
|
You can adjust the display by changing the display field: MikeMillerGIS_0-1707906319771.png On 3.2, there is a flash on the right click and select does work. Maybe it was fixed in 2.9.9 MikeMillerGIS_1-1707906347123.png
... View more
02-14-2024
02:27 AM
|
0
|
3
|
2769
|
|
POST
|
ok, I ran it on the Utility Network, let me try on the asset package
... View more
02-13-2024
03:58 AM
|
0
|
0
|
3591
|
|
POST
|
I could not repo your issue with the Assign Terminals Tool. What other processes are you running in your conversion?
... View more
02-13-2024
03:36 AM
|
0
|
2
|
3594
|
|
POST
|
That connector should connect to the line /bus side of the Circuit Breaker, you need to add a rule to allow that. How the from and to values are getting populated, I am not sure. I cannot imagine the assign terminal tool is doing it, as it uses the rules, but there could be a bug. I will try to repo
... View more
02-13-2024
02:50 AM
|
0
|
3
|
3597
|
|
POST
|
The code is using parentglobalid, but in your screen shots that is blank. You need to adjust the code and the sql statement in the Filter(FeatureSet...) to match how your data is set up.
... View more
02-12-2024
06:56 AM
|
0
|
1
|
3113
|
|
POST
|
Can you share a screen shot of the line attributes, what are the fromterminal/toterminal values? ElectricJunctions are only single terminal, so maybe something got set on the line that should not be set.
... View more
02-12-2024
06:50 AM
|
0
|
5
|
3627
|
|
POST
|
That error is expected. A controller cannot control subnetworks on different tiers. You can work around it by adding contained and connected units and use them as your controller.
... View more
02-08-2024
09:22 AM
|
0
|
1
|
2669
|
|
POST
|
The quicker fix is to just delete these fields in the Asset Package. When the tools apply the Asset Package, the call to Set Subnetwork Def with create the field with the correct settings.
... View more
02-08-2024
06:02 AM
|
0
|
0
|
2053
|
|
POST
|
You can define the controller on Junction Objects(windings) that are contained in the transformer and it will allow this device to control subnetworks in different tiers. The windings are contained in the device and one is connected to the devices high and secondary and the other is connected to the high and tertiary.
... View more
02-08-2024
04:57 AM
|
0
|
1
|
2829
|
|
POST
|
Line 1: You FeatureSetByName should have a list of fields passed as the third param Line 4: relatedInspections.map, I do not know what that dies. That is a FeatureSet. You should call first or loop over the featureset and get a list of all the GPM Values. Then you can call Max on it Your return statement, just return the value. If you set the rule on a field, it will map it to the field
... View more
02-05-2024
12:22 PM
|
0
|
3
|
3161
|
|
POST
|
Take a look at this example - https://github.com/Esri/arcade-expressions/blob/master/attribute_rule_calculation/UpdateParentFeature.md
... View more
02-05-2024
10:09 AM
|
0
|
1
|
3195
|
|
POST
|
Arcade has iif and decode, but I think using an array and checking to see if the value is included is easier For example, your one expression IIF([EXCPT_TYPE]= "Private" OR [EXCPT_TYPE]="New Development" OR [EXCPT_TYPE]="Landuse" OR [EXCPT_TYPE]="Multi-Residential",[ZONE] & " " & [PU_DAY] & " - " & [EXCPT_TYPE],[#]) would be converted to this var valid_values = ["Private", "New Development", "Landuse", "Multi-Residential"];
if (Includes(valid_values,$feature.EXCPT_TYPE)){
return $feature.ZONE + " " + $feature.PU_DAY + " - " + $feature.EXCPT_TYPE
}
else{
return $feature.EXCPT_TYPE
}
... View more
01-29-2024
12:25 PM
|
0
|
1
|
1241
|
|
POST
|
this line is trying to intersect two database classes. var intersecting_valves = Intersects(valves, fireLines); You need to change that to the first line var intersecting_valves = Intersects(valves, intersecting_lines ); why did you comment out this? // valves_to_update = []; needs to be var valves_to_update = [];
... View more
01-23-2024
09:16 AM
|
0
|
0
|
1584
|
|
POST
|
A value/entry not listed in the D_ tables is always applied to the target.
... View more
01-19-2024
02:15 AM
|
1
|
0
|
1066
|
|
POST
|
You can adjust the code to call First then and skip the first loop.
... View more
01-18-2024
01:03 PM
|
0
|
2
|
3863
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 07-07-2026 06:45 AM | |
| 1 | 06-26-2026 09:15 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|