|
POST
|
The export Subnetwork does have a Export Acknowledge https://pro.arcgis.com/en/pro-app/latest/tool-reference/utility-networks/export-subnetwork.htm#GUID-E0D230B2-8B7A-497C-82D8-9B17073A8AAA We have a tool that can compare the json of Export Subnetwork/Trace and provide inserts/deletes/Update views to help you determine deltas. You might be able to use this to compare. https://esri.github.io/Utility-Data-Management-Support-Tools/docs/3.1/TraceFilesToGeodatabase.html
... View more
12-14-2023
02:58 AM
|
0
|
0
|
2930
|
|
POST
|
You could set them as barriers in the subnetwork trace and then select Do Not Include barriers. But they will stop the trace, so if they are inline, they will stop the subnetwork from traversing through the item. Also, if they have a terminal configuration, they will be returned regardless of include barriers. I really do not think there is a way to achieve what you are looking for.
... View more
12-12-2023
03:51 AM
|
1
|
0
|
1125
|
|
POST
|
At the moment, we do not have an update planned for the Electric Utility Network Foundation. The solution is forward compatible and will support 11.3/3.3. You will be able to take advantage of the new field types when they are supported in the Utility Network. Are there other features you are looking for?
... View more
12-06-2023
01:10 AM
|
0
|
0
|
1875
|
|
POST
|
Take a look at the https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/adjust-3d-z.htm tool. This will shift the Z values for a selected set of features
... View more
12-05-2023
07:48 AM
|
1
|
0
|
4483
|
|
POST
|
All, We identified an issue with the Line - Snap to Manhole and Line - Snap to Manhole Batch attribute rule in the Sewer Line class of the Sewer Utility Network Foundation model. It no longer works with 3.2 due to a fix in the FeatureSetByName function. The includeGeometry parameter is incorrectly set to False in the attribute rule. This still returned the geometry on previous versions of ArcGIS, but that bug has been resolved. This needs to be changed to True for these rules to work as they require the geometry of the snapped points. To resolve this issue in your environment, make the following change to the attribute rules. Line 76 in the Line - Snap to Manhole, look for the get_snapped_point_info function. function get_snapped_point_info(point_geo) {
// Get point that intersects point_geo. Must match an AG and AT group specified in pipe_snap_types.
var device_fs = get_features_switch_yard($datastore, device_class, ["globalid", "assetgroup", 'assettype'], false);
var snapped_feats = Intersects(device_fs, Point(point_geo));
return First(Filter(snapped_feats, pipe_snap_types)); The last parameter, of get_features_switch_yard - change to true, like below function get_snapped_point_info(point_geo) {
// Get point that intersects point_geo. Must match an AG and AT group specified in pipe_snap_types.
var device_fs = get_features_switch_yard($datastore, device_class, ["globalid", "assetgroup", 'assettype'], true);
var snapped_feats = Intersects(device_fs, Point(point_geo));
return First(Filter(snapped_feats, pipe_snap_types)); That will resolve your issue with this rule
... View more
11-30-2023
10:19 AM
|
4
|
0
|
1108
|
|
POST
|
Yes, that is one way to exclude it from being connected. Move all abandoned assets to a different Z
... View more
11-28-2023
12:58 PM
|
3
|
0
|
4582
|
|
POST
|
No, A feature cannot be excluded from topology based on a network attribute. It can only be set as a barrier to a subnetwork.
... View more
11-28-2023
11:16 AM
|
1
|
0
|
4599
|
|
POST
|
I added the toolbox to the first post with the Append with Transformation tool. Please let us know if this supports your workflow and fills the gap until these capabilities are in ArcGIS Pro's Append tool.
... View more
11-27-2023
12:06 PM
|
2
|
0
|
5358
|
|
POST
|
Sorry, I missed noting this in the original post. I updated with Ted's response.
... View more
11-15-2023
12:24 PM
|
1
|
0
|
5540
|
|
POST
|
Starting with ArcGIS Pro 3.2, the Data Loading Tools are now included with ArcGIS Pro. You no longer must clone your python environment and install the tools via Anaconda. The tools are available in the Data Management Tools toolbox, under the Data Loading Tools toolset. As we moved the tools into ArcGIS Pro, we made some modifications that are highlighted below: Create Data Loading Workspace Only the names of the parameters have changed. No other tool changes. There have been changes to the Data Loading Workspace, which are noted below. Generate Predefined Mapping Table This tool has been renamed to Generate Mapping Table and the names of the parameters have changed. Execute Data Load This tool has been renamed to Load Data Using Workspace. The names of the parameters have changed and the Preview option has been removed and replaced with Load Data to Preview tool. Update Data Loading Workspace Schema Only the names of the parameters have changed. Data Loading Workspace – Data Reference workbook The DataPath worksheet has been removed. The full paths are now used in the SourceTargetMapping worksheet Data Loading Workspace – Mapping workbook The help image has been removed from the -Info- sheet. The yellow schema tabs have redesigned to follow the look and feel of the workbook generated with the Generate Schema Report tool. They also now have a dash(-) in their names. Data Loading Workspace – Domain workbook All the domain, as well as the TOC sheet, in this workbook have also been reformatted to make the look and feel of the results from the Generate Schema Report tool. Append with Transformation Append with Transformation was removed due to some overlap with future plans for Append GP tool. We did not want to add it into Pro only to retire it soon after. However, the underlying logic for Append with Transformation is still there. Attached is a toolbox that works with ArcGIS Pro 3.2 and greater that provides the Append with Transformation GP Tool. We are excited, and hope you are too, that these tools are now part of ArcGIS Pro out of the box and no longer require you creating a python clone. This will speed up the time to use these tool and remove the complications with managing a cloned python environment. Mike ArcGIS Solutions
... View more
11-15-2023
03:30 AM
|
4
|
14
|
7568
|
|
POST
|
I am on 3.2. Looks like Dictionary on Feature was not added till 3.2. Change the line to var copy_feature = dictionary(Text($feature)); Dictionary(inputFeature) -> Dictionary Since version 1.23
... View more
11-14-2023
06:45 PM
|
1
|
1
|
3062
|
|
POST
|
This works in the gdb you sent. I added a function that will copy the attributes from the input feature, just remove the fields you want to persist. and then set line 25 to use the filtered_atts variable // Get the global ID of the point feature being inserted
var globalId = $feature.globalid;
// Find the corresponding feature in the BCC_JuneSnapShot feature class
var snapshotFeatureClass = FeatureSetByName($datastore, "JuneBackup");
var filteredFeatures = Filter(snapshotFeatureClass, "BCCGuid = @globalId");
if (Count(filteredFeatures) != 0) {
return;
}
function pop_keys(dict, keys) {
var new_dict = {};
for (var k in dict) {
if (IndexOf(keys, Upper(k)) != -1) {
continue;
}
new_dict[k] = dict[k];
}
return new_dict;
}
var copy_feature = dictionary($feature);
var fields_to_not_copy = ['OBJECTID', 'Shape', 'CreationDate', 'Creator', 'EditDate', 'Editor', 'BCCCHOICES', 'DOB', 'HOMEADDRESS', 'EMAIL', 'EMPLOYER', 'EMPLOYERADDRESS', 'EXPLANATIONS', 'EDUCATIONBACKGROUND', 'RELEVANTEXPERIENCE', 'ADDITIONALINFOCOMMENTS', 'EMPLOYERADDRESSCITY', 'EMPLOYERADDRESSZIP', 'SUBMITDATE', 'ISCARLSBADRESIDENT', 'ISCARLSBADREGISTEREDVOTER', 'ISWILLINGDISCLOSEFINANCIAL', 'ISWILLINGETHICSTRAINING', 'FIRSTNAME', 'LASTNAME', 'HOMEADDRESSCITY', 'HOMEADDRESSZIP', 'COUNCILDISTRICT', 'WORKMOBILEPHONE', 'ACKCITYEMPLOYEE', 'ACKCITYCONTRACTOR', 'ACKCITIZENACADEMYGRAD', 'ACKRESPONSIBILITIES', 'ACKINTERVIEWWILLING', 'APPOINTEDBCC', 'STATUS', 'APPOINTEDDATE', 'TERMEXPIRATIONDATE', 'STAFFINITIALS', 'EMPLOYMENTSTATUS', 'SUBMITTERACKNOWLEDGETYPE', 'SUBMITTERACKNOWLEDGECHECK', 'INTEREST', 'APEXYEAR', 'ACKCITYEMPLOYEEPAST', 'PRIMARYPHONE', 'SECONDARYPHONE', 'WORKPHONE', 'COMMUNITYINVOLVEMENT', 'SERVICEONBCC', 'SERVICEONBCC2', 'SERVICEONBCC3', 'SERVICEONBCC4', 'SERVICEONBCC5', 'APPOINTEDPOSITION', 'APPOINTEDCATEGORY', 'NOMINATINGCOUNCILMEMBER', 'ApplicantID', 'created_user', 'created_date', 'last_edited_user', 'last_edited_date', 'GlobalID']
var filtered_atts = pop_keys(copy_feature['attributes'],fields_to_not_copy)
copy_feature['attributes'] = {}
copy_feature['attributes']['BCCGuid'] = $feature.GlobalID;
copy_feature['geometry'] = Geometry($feature)
return {
"edit": [
{
"className" : "JuneBackup",
"adds" : [copy_feature]
}
]
} cop
... View more
11-14-2023
04:30 PM
|
0
|
1
|
3066
|
|
POST
|
Can you share a fgdb with your source and target classes? Would be easier to troubleshoot. Here is a good sample to follow too - https://www.esri.com/arcgis-blog/products/arcgis-pro/data-management/advanced-gdb-attribute-rules-editing-external-features-with-attribute-rules/
... View more
11-14-2023
12:42 PM
|
0
|
3
|
3076
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 3 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
|