|
POST
|
You need to export to Asset Package and then apply that Asset Package to an Enterprise Geodatabase.
... View more
10-23-2020
02:55 AM
|
0
|
1
|
1580
|
|
POST
|
Is the zip code layer in the feature service? If not, will not work in a pop up as the data store is the feature service for the client and pop ups execute client side
... View more
10-22-2020
04:14 AM
|
0
|
1
|
4659
|
|
POST
|
If you check both Structure and Pipeline in Apply Asset Package, do you get the error?
... View more
10-22-2020
02:19 AM
|
0
|
2
|
4104
|
|
POST
|
I looked over the code, you would have to modify it to load barriers from a static class. It would help to enable debug logging and get more information about where the slow down is occurring. You will need to modify the pyt. In line 32, change logger.setLevel('INFO') to logger.setLevel('DEBUG'). Run the pyt in ArcMap. There should be much more verbose messaging. Can you post the results or email them to me at [email protected]
... View more
10-22-2020
01:36 AM
|
0
|
0
|
3310
|
|
POST
|
I would suggest moving this to a pop up and add return statements along the way to see where it is breaking. I would start by looking at the geometry (centerfeature).x line. Are zip codes polygons? If so, not sure what .x or .y would even return.
... View more
10-21-2020
04:20 PM
|
1
|
4
|
4659
|
|
POST
|
Can you post your script? The adds call does not look correct.
... View more
10-21-2020
03:33 PM
|
0
|
6
|
4659
|
|
POST
|
That is a lot of barriers to load from the database. Are those valves always closed? I would have to look at the code, but there maybe a way to cache them too, to improve performance.
... View more
10-21-2020
10:23 AM
|
0
|
2
|
3310
|
|
POST
|
Can you post the parameters and full messages from the run? I think we know the issue, but need some more information to be sure.
... View more
10-21-2020
08:27 AM
|
0
|
4
|
4104
|
|
POST
|
If you used 2.6 to create a Utility Network, you have a version 4 UN, which is not supported on 10.8. More info here: https://pro.arcgis.com/en/pro-app/help/data/utility-network/utility-network-dataset-administration.htm
... View more
10-20-2020
10:40 AM
|
0
|
0
|
5707
|
|
POST
|
I would suggest using a connection point Asset Group/Asset Type in the ElectricJunctions layer. This would be midspan on the wire and have a containment association in the manhole.
... View more
10-20-2020
10:38 AM
|
0
|
0
|
2543
|
|
POST
|
If you try it in playground, you get an geometry engine issue. https://developers.arcgis.com/arcade/playground/ Have you tried checking the box Exclude from Client so it is not trying to fire it in the browser? If you are trying to use a return edits statement, you will have to check this box anyways
... View more
10-19-2020
09:42 AM
|
1
|
1
|
4019
|
|
POST
|
We need to look at the X,Y and Z info at the vertices. I have seen where the editor treats items as snapped, but they are not snapped in the utility network. Editor tolerances are not the same as connectivity tolerances in the network. When reviewing the values, you need to click in like you are editing the values of the vertices, as the UI rounds off for viewing. If you select the main and the fitting and run this script, you can see the vertices info. Can you post the results? Note: It may take a while due to an issue with subtype layers and DA cursors. Make sure to have something selected or you will get the vertices for your entire layer. fields = ['SHAPE@X', 'SHAPE@Y', 'SHAPE@Z']
print("***********Main***********")
fc = "Water Line\\Water Main"
with arcpy.da.SearchCursor(fc, fields, explode_to_points=True) as cursor:
for row in cursor:
print(row)
print("***********Fitting***********")
fc = "Water Junction\\Fitting"
with arcpy.da.SearchCursor(fc, fields, explode_to_points=True) as cursor:
for row in cursor:
print(row)
Here is an example output, I bolded the vertex that fitting and main share. ***********Main*********** (1030655.1770261787, 1861107.9398856163, 0.00010000000474974513) (1030652.9670568444, 1861106.5150197, 0.00010000000474974513) (1030649.2898988463, 1861104.1439614445, 0.00010000000474974513) (1030588.8188911788, 1861065.1581470296, 0.00010000000474974513) (1030579.5249465108, 1861059.1660330296, 0.00010000000474974513) (1030525.9440169297, 1861024.6211546138, 0.00010000000474974513) (1030513.5339367613, 1861016.6208425313, 0.00010000000474974513) (1030496.82990193, 1861005.852163285, 0.00010000000474974513) (1030404.9609911777, 1860950.2259621993, 0.00010000000474974513) ***********Fitting*********** (1030513.5339367613, 1861016.6208425313, 0.00010000000474974513)
... View more
10-15-2020
05:59 AM
|
0
|
1
|
6728
|
|
POST
|
We cannot repo the exact error, but have logged a bug we discovered while testing. If you run upgrade asset package and then try your apply, do you have any errors?
... View more
10-13-2020
12:56 PM
|
0
|
1
|
3047
|
| 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 |
a week ago
|