|
BLOG
|
Calculation rules are used to automatically populate attribute configurations on a feature. The practical use cases are discussed at the blogpost Maintain Measure Attributes. The following Arcade code may be used to configure an Attribute Rule that will populate measure attributes in designated fields when new highway/street routes are created. The script will also update measure attributes when highway/street routes and/or their calibration is changed. /**
* Assigned To: Polyline Feature Class that is M-aware
* Type: Calculation
* Name: StartM_EndM_Values
* Description: Calculate start Measure and end Measure values of Polyline-M feature
* Trigger: Insert, Update
* Misc: Exclude from Application Evaluation: True
* Feature must have GLOBALID, FromMeasure, ToMeasure, Length fields
*/
var geom = Geometry($feature);
if (!geom.hasM) {
return;
}
// Get Start/End Points
var start_p = geom['paths'][0][0];
var end_p = geom['paths'][-1][-1];
var start_m = Round(start_p.m);
var end_m = Round(end_p.m);
var length = Round(end_m - start_m);
return {
"result": {
"attributes": {
"FromMeasure": start_m,
"ToMeasure": end_m,
"Length": length
}
}
} Attribute rule may be configured for the Primary LRS Network (Line Network) as well as the Derived LRS Network (Continuous) by updating the appropriate fields as in the feature class.
... View more
07-07-2023
02:36 PM
|
3
|
1
|
1008
|
|
BLOG
|
Calculation rules are used to automatically populate attribute configurations on a feature. The practical use cases are discussed at the blogpost Maintain Measure Attributes. The following Arcade code may be used to configure an Attribute Rule that will populate measure attributes in designated fields when new pipeline routes are created. The script will also update measure attributes when pipeline routes and/or their calibration is changed. /**
* Assigned To: Polyline Feature Class that is M-aware
* Type: Calculation
* Name: StartM_EndM_Values
* Description: Calculate start Measure and end Measure values of Polyline-M feature
* Trigger: Insert, Update
* Misc: Exclude from Application Evaluation: True
* Feature must have GLOBALID, EngFromM, EngToM, EngLength fields
*/
var geom = Geometry($feature);
if (!geom.hasM) {
return;
}
// Get Start/End Points
var start_p = geom['paths'][0][0];
var end_p = geom['paths'][-1][-1];
var start_m = Round(start_p.m);
var end_m = Round(end_p.m);
var length = Round(end_m - start_m);
return {
"result": {
"attributes": {
"EngFromM": start_m,
"EngToM": end_m,
"EngLength": length
}
}
} Attribute rule may be configured for the Primary LRS Network (Engineering) as well as the Derived LRS Network (Continuous) by updating the appropriate fields as in the feature class.
... View more
07-07-2023
02:28 PM
|
2
|
0
|
869
|
|
POST
|
@SrinivasaSodisetti The PODS model is maintained by the PODS Association; Esri is a contributing member. If you are a PODS member, you can sign in to their member portal and download the latest PODS models (relational and/or file geodatabase). The PODS Lite is available to anyone and can be requested at [email protected] Reference: https://pods.org/pods-data-models/
... View more
07-06-2023
10:43 AM
|
1
|
0
|
1976
|
|
POST
|
@Cristian_Galindo curious if the issue is resolved? If so, please post what worked, for the benefit of the community.
... View more
07-03-2023
09:37 AM
|
0
|
0
|
1580
|
|
POST
|
Looks like you are doing everything right. I have deployed the solution using the same process. Please try the following: Clear cache, cookies or try browser incognito mode Try a different browser Log a Tech Support ticket
... View more
06-29-2023
05:11 AM
|
0
|
1
|
4415
|
|
POST
|
@AbiDhakal try: Round (Mean($feature.Field1,$feature.Field2))
... View more
06-28-2023
06:02 AM
|
0
|
0
|
2764
|
|
POST
|
@Cristian_Galindo Please sign in to your ArcGIS Online account in the browser. With this active session, proceed to deploy the solution; the package will get deployed to your ArcGIS Online contents. Reference: https://doc.arcgis.com/en/arcgis-solutions/latest/get-started/get-started-with-arcgis-online.htm https://doc.arcgis.com/en/arcgis-solutions/latest/get-started/get-started-with-arcgis-enterprise-11.htm
... View more
06-28-2023
05:56 AM
|
0
|
3
|
4430
|
|
POST
|
@Cristian_Galindo Both Gas and Pipeline Referencing Utility Network Foundation and Pipeline Referencing Foundation use the same underlying Utilities and Pipeline Data Model (UPDM) schema. At a high-level, the difference lies in the implementation pattern for ArcGIS Utility Network and/or ArcGIS Pipeline Referencing. Use Pipeline Referencing Foundation when managing pipelines with APR (linear referencing). Use Gas and Pipeline Referencing Utility Network Foundation when managing pipelines with Utility Network (connectivity) only OR both Utility Network and APR (using both connectivity and linear referencing). There are other differences in the attribute rules, network connectivity constraints that dictate the network behavior for each of the supported patterns.
... View more
06-28-2023
05:51 AM
|
2
|
0
|
1910
|
|
POST
|
@RichardDaniels There is no separate installer for Data Reviewer extension in ArcGIS Pro. A Data Reviewer license is required to activate Data Validation toolset and functionality.
... View more
06-21-2023
03:57 AM
|
0
|
1
|
3500
|
|
POST
|
@NathanWestby Assuming there was an attribute rule and parameter was changed, restarting the service should be sufficient. But, changes as cited by Jay will need overwrite of the service.
... View more
05-26-2023
02:52 PM
|
0
|
0
|
2651
|
|
POST
|
@Erdem_Yurdakul Please refer to ArcGIS Web Adaptor 11.1 system requirements IIS required components are stated. In a distributed setup, IIS is not a must on all machine but is dependent on the architecture requirements. Review ArcGIS Enterprise system requirements as well
... View more
05-25-2023
04:00 AM
|
1
|
0
|
1386
|
|
POST
|
@adminUtility sharing individual credentials is a strict No. It violates all security/business norms. You can always create a new user credential for the contractor/consultant and grant them required role/privileges.
... View more
05-19-2023
09:34 AM
|
2
|
1
|
3315
|
|
POST
|
@r_hanson I am not aware of LRS/Location Referencing specific arcade functions like 'Translate' that can be applied for attribute rule. I will let other arcade/AR experts chime in but the primary option is using geometry functions. Likely need to build quite a bit of logic to get the desired results. There is also a REST call to translate measures. Nevertheless, I wanted to make you aware of the LRS GP tools/REST API. If you have this requirement to constantly maintain the additional network attributes for multiple events, consider using a Line Network and have a Derived Network. Derived network attributes can then be updated using LRS gp Derive Event Measures
... View more
05-10-2023
12:35 PM
|
0
|
0
|
1565
|
|
POST
|
@r_hanson Assuming Roads & Highways is in-use, try Translate Event Measures If Location Referencing is not in-use, use Transform Route Events that works against Event Table.
... View more
05-09-2023
01:49 PM
|
0
|
2
|
1579
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 05-29-2026 07:53 AM | |
| 1 | 05-01-2026 07:48 AM | |
| 1 | 05-27-2026 06:13 AM | |
| 1 | 05-19-2026 07:59 AM |