|
POST
|
It looks like the task was incorrectly set to the wrong model, you can use the task designer to set it to the model in the Water Traces toolbox.
... View more
03-26-2021
03:31 AM
|
0
|
3
|
2598
|
|
POST
|
Instead of a template, have you explored sharing the pro project through the portal? Users will open that project and if a new version is uploaded, with new templates, they will get a notification that a new pro project is available. The "Update a project opened from the active portal" section discusses it some: https://pro.arcgis.com/en/pro-app/latest/help/projects/open-a-project.htm The project update will be displayed as a notification: https://pro.arcgis.com/en/pro-app/latest/help/projects/arcgis-pro-notifications.htm
... View more
03-26-2021
03:29 AM
|
3
|
4
|
3361
|
|
POST
|
Not all subtypes have a domain assign, as the error stated, the unknown subtype is missing the domain on asset type.
... View more
03-22-2021
04:09 AM
|
1
|
0
|
2703
|
|
IDEA
|
We are moving all the Utility Network solutions from two downloads, the Editor and Foundation to a single solution item, Data Management for Enterprise. This update includes a file geodatabase with the UN created and the editor map is pointed to it by default. Tools are provided to easily move the editor map to another GDB, including an Enterprise GDB. Electric will be updated to this format with 10.9 and be available around May/June 2021.
... View more
03-19-2021
01:42 PM
|
0
|
0
|
2093
|
|
POST
|
Best option is an attribute rule to restrict the edit. This rule would be disabled when the data is loaded and then enabled once editing has started. I do not have a rules that meets your needs prebuild, but an example of a constraint here can be found here: https://github.com/Esri/arcade-expressions/blob/master/attribute_rule_constraint/only_at_start_end.md
... View more
03-02-2021
10:56 AM
|
0
|
0
|
1045
|
|
POST
|
The default value for a line is End Vertex. On export, these are filtered out as the asset package does not need to maintain the value of the line if it is the default value.
... View more
03-02-2021
02:23 AM
|
2
|
0
|
1279
|
|
POST
|
Does not make sense. Could you package a up a small repo case and we can look at it?
... View more
02-25-2021
06:25 AM
|
0
|
3
|
2423
|
|
DOC
|
For irrigation lines are the upelev, dwnelev, and slope fields required? - No these are not required. Just thought it might be good to monitor slope In general what are the required fields moving forward? - Only Asset Group and Asset Type are really required. There are fields assigned to Network Attributes, these are required if you want to model opening/closing a gate in a trace
... View more
02-19-2021
08:13 AM
|
0
|
0
|
5970
|
|
POST
|
Melissa, I did not test this, but this should get you started. I will add it to this repo: https://github.com/Esri/arcade-expressions/blob/master/Attribute%20Assistant.md // Check to to if the ID changed
var orig_assetid = $originalFeature.assetid;
var assetid = $feature.assetid;
if (assetid == orig_assetid) {
return null;
}
// Get the connected mains to the edited feature
var sewer_mains = FeatureSetByName($datastore, "SewerMain", ["globalid"], true)
var connected_mains = Intersects(sewer_mains, $feature)
// Functions to check if points/vertexes are snapped
function points_snapped(point_a, point_b) {
// Cant explain it, but need these checks to get past validation
if (IsEmpty(point_a) || IsEmpty(point_b)) {
return false
}
if (HasKey(Dictionary(Text(point_b)), 'x') == false || HasKey(Dictionary(Text(point_a)), 'x') == false) {
return false
}
return (nearly_equal(point_a.x, point_b.x, 4) &&
nearly_equal(point_a.y, point_b.y, 4) &&
nearly_equal(point_a.z, point_b.z, 4))
}
function nearly_equal(a, b, sig_fig) {
// check if nearly equal to certain significant figure https://stackoverflow.com/a/558289/12665063
return (a == b || Round(a * Pow(10, sig_fig), 0) == Round(b * Pow(10, sig_fig), 0))
}
var updates = []
var i = 0
// Get the geometry of the edited feature
var port_geo = Geometry($feature);
// Loop through all mains
for (var sewer_main in connected_mains) {
// Get the First and Last vertex
var paths = Geometry($feature)['paths'];
var from_point = paths[0][0]
var to_point = paths[-1][-1]
// Depending on where the edited feature is snapped to main, update different fields
if (points_snapped(port_geo, from_point)) {
updates[i++] = {
'globalid': sewer_main.globalid,
'attributes': {'fromid': assetid}
}
} else {
updates[i++] = {
'globalid': sewer_main.globalid,
'attributes': {'toid': assetid}
}
}
}
// Return the edits
return {
'edit': [{
'className': 'SewerMain',
'updates': updates
}]
}
... View more
02-18-2021
02:13 AM
|
2
|
1
|
2202
|
|
POST
|
Run QueryDataElements https://sampleserver7.arcgisonline.com/arcgis/rest/services/UtilityNetwork/NapervilleElectric/FeatureServer/queryDataElements Review this section: MikeMillerGIS_0-1613563618467.png
... View more
02-17-2021
04:07 AM
|
1
|
0
|
5624
|
|
POST
|
You can access the association information via rest. The tables are part of the service, just hidden from the rest pages. If you look as the json of the UN layer - https://sampleserver7.arcgisonline.com/arcgis/rest/services/UtilityNetwork/NapervilleElectric/FeatureServer/921?f=pjson You will see a system layers section: "systemLayers": {
"dirtyAreasLayerId": 3,
"lineErrorsLayerId": 1,
"pointErrorsLayerId": 0,
"polygonErrorsLayerId": 2,
"associationsTableId": 500001,
"subnetworksTableId": 500002,
"rulesTableId": 500003,
"diagramEdgeLayerId": 500005,
"diagramJunctionLayerId": 500006,
"diagramContainerLayerId": 500007,
"temporaryDiagramEdgeLayerId": 500008,
"temporaryDiagramJunctionLayerId": 500009,
"temporaryDiagramContainerLayerId": 500010
}, Use the ID to get access to the association table, such as https://sampleserver7.arcgisonline.com/arcgis/rest/services/UtilityNetwork/NapervilleElectric/FeatureServer/500001 Which you can run a query against to get back info such as: objectid: 1 fromnetworksourceid: 8 fromglobalid: {4D0259B3-9323-4A31-979D-F81499B5A278} fromterminalid: null tonetworksourceid: 6 toglobalid: {B6874CA0-3584-4ED6-8A17-0FAFBA3C3891} toterminalid: null associationtype: 2 iscontentvisible: 0 creationdate: 1565741744000 creator: UNADMIN lastupdate: 1565741744000 updatedby: UNADMIN globalid: {1B5E5C18-8493-4D42-B67A-2F3D711EA356} objectid: 2 fromnetworksourceid: 8 fromglobalid: {4D0259B3-9323-4A31-979D-F81499B5A278} fromterminalid: null tonetworksourceid: 6 toglobalid: {08421426-33C5-4DE2-8FBC-134295D81AD6} toterminalid: null associationtype: 2 iscontentvisible: 0 creationdate: 1565741745000 creator: UNADMIN lastupdate: 1565741745000 updatedby: UNADMIN globalid: {8B7D620A-B978-48DC-9B44-148925AF4E68}
... View more
02-17-2021
02:56 AM
|
0
|
3
|
5627
|
|
POST
|
I am not aware of a limitation and I do not believe there is any.
... View more
02-01-2021
03:33 AM
|
0
|
0
|
1634
|
|
POST
|
Luis, I believe it is working as expected. When you cut a polygon, one piece is reshaped and a new polygon with the information from the old one is inserted. So the N° Order is a duplicate of the original polygon and the constraint rule is rejected the new polygon that is trying to be inserted. If you use fiddler or the browsers developer tools, you might be able to see the return message from the apply edits that is trying to insert the new polygon and see what the return message says.
... View more
12-03-2020
11:47 AM
|
0
|
0
|
852
|
|
POST
|
Have you run the upgrade geodatabase geoprocessing tool? https://pro.arcgis.com/en/pro-app/tool-reference/data-management/upgrade-geodatabase.htm
... View more
11-10-2020
05:53 AM
|
0
|
2
|
2087
|
|
POST
|
Jamal, I took a look at the data. I was able to repo the issue. Once I disabled Topo and Enabled it again, the trace worked. So the data was not in the network index. I am not sure how this happened. What was the ordered of events? Did you sketch in the data or did you append it? Was the data sketched first and then the rules added?
... View more
11-09-2020
02:23 AM
|
2
|
0
|
2573
|
| 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
|