|
POST
|
@MirekGroen Great - thanks for validating the Geometry to Measure operation on the LRS service. Since, that's working there must be something in the LRS widget configuration.
You can use the widget and monitor the results, using the browser developer tools to troubleshoot. You may also test configuring another widget to validate all the settings are correct.
... View more
10-08-2024
07:01 AM
|
0
|
2
|
2372
|
|
POST
|
@MirekGroen please try the Explore tool: View route measures
This capability may be used on any M-aware feature and will provide measure information on routes and events. By the way, ArcGIS Field Maps also has a similar capability. https://doc.arcgis.com/en/field-maps/android/use-maps/quick-reference.htm
... View more
10-08-2024
06:56 AM
|
0
|
0
|
1810
|
|
POST
|
@MirekGroen The order of operations and screenshots seems correct. I am unsure on the expectation of showing related events. Are you expecting a drill down experience from the Explore/Identify Route tool pop-up to navigate the related records. Does the data model used have relationship class built for the event layer?
The LRS model does not rely or create related records. The Event records are 'referenced' to the routes based on LRS attributes like route IDs and measures.
... View more
10-08-2024
04:25 AM
|
0
|
0
|
1817
|
|
POST
|
@MirekGroen Does this occur on just a few routes? Suggest that you use the REST API and use the browser developer tools to troubleshoot.
Sample: https://roadsandhighwayssample.esri.com/roads/samples/GeometryToMeasure/GeometryToMeasure.html
REST API: https://developers.arcgis.com/rest/services-reference/enterprise/geometry-to-measure/
This will allow you to check if the Geometry to Measure is returning results. If not, troubleshoot the service, like republish if necessary.
... View more
10-08-2024
04:18 AM
|
0
|
4
|
2380
|
|
POST
|
@geovolve Absolutely, LRS can be modelled on Utility Network features. This pattern is well-established for Gas and Pipeline organizations. The pattern is discussed at following resources:
Benefits of Modern Network Management for Gas
Manage Pipeline Referencing and a utility network together
The modelling principles can be borrowed and applied to other domains like Fiber, Electric, if needed with careful design and development.
... View more
09-30-2024
08:41 AM
|
0
|
1
|
1596
|
|
IDEA
|
Most GIS data models have numerous feature classes, tables. It is handy to know which ones have data and the record count is an easy way to do so. The user must select each object in the ArcGIS Pro Catalog View, and preview to find this info. Alternately, the user can write a script to report all objects with record count. Enhancement Idea: In the Catalog View, add a Record Count Column in the Catalog. This will allow users to identify layers with data and inspect record count, without any additional steps.
... View more
08-27-2024
07:44 AM
|
0
|
0
|
783
|
|
POST
|
@KatrinaOppermann Basically, you may use the lane types and create a single subtyped event layer. You may have concurrent lanes in the same event layer, referencing the same highway route. The subtypes documentation has good advantages listed: Set default values on fields in each of the subtypes that will automatically apply when creating new features. Apply coded or ranged domains to the fields of a subtype, enabling you to constrain input information to a valid set of values. Each subtype may have different connectivity, relationship, or topology rules associated with it. Increase the performance of the geodatabase by representing a variety of real-world objects as a subset of features in a given feature class instead of creating new feature classes for each object. Create customized rules between features using written code.
... View more
08-15-2024
12:35 PM
|
1
|
0
|
2390
|
|
POST
|
@KatrinaOppermann Interesting use cases and thanks for the details. ArcGIS Roads and Highways provides advanced linear referencing configurations and various modelling techniques. Some of the relevant options are cited by @RyanKoschatzky Q: Does Route_Id has to be fixed length? A: Refer to LRS Data Model > Network feature class Organizations use the fields ‘Route ID’ and ‘Route Name’ in ways that best fit their business requirements. From a design perspective, ‘Route ID’ is like an unique database key, often modelled as a GUID (38 character, alpha-numeric) while ‘Route Name’ is a more human readable, nameplate information. ‘Route ID’ does not have to be fixed length however, the field data type and the data should be consistent throughout the LRS model objects (networks, events, calibration point feature classes). ‘Route ID’ maybe modelled by concatenation of other fields in the network feature class using Modify Route ID Padding. Q: How to model Lane information? A: The options are well laid out by Ryan. I would lean towards modelling the highway as the network routes and the lanes as events. This option reduces the maintenance overhead, editing experience is more efficient, and will likely be more performant. You can leverage subtypes to model the Lane table into an LRS event feature class. Refer to LRS Data Model > Events data model Q: How to model Lane Condition data? A: Certainly look at consolidating different conditions as suggested by Ryan. Lane Condition will be another LRS event layer and you can use similar modelling techniques as noted above. Alternate could be storing conditions as related table to the Lane. Q: How to associate Lane Condition to Lanes? A: There may be multiple options: Use dynamic segmentation to combine Lane Condition and Lane data from the two LRS event feature classes. There are multiple tools in ArcGIS Roads & Highways that allow you to dynamically segment the LRS events. Use related tables, relationship class
... View more
08-13-2024
09:03 AM
|
2
|
0
|
2501
|
|
IDEA
|
@JamesRains Display flow direction—ArcGIS Pro | Documentation
... View more
08-13-2024
06:18 AM
|
0
|
0
|
2071
|
|
POST
|
@JamalNUMAN Looks like it's drawing per some default layout rules. You can also manually adjust the tools per your needs. In this case, dragging up the Calculate Field element will do the trick.
... View more
08-05-2024
04:46 AM
|
1
|
0
|
935
|
|
POST
|
@Malebu There are several recommendations at: Troubleshooting Performance Issues in ArcGIS Pro
... View more
08-05-2024
04:42 AM
|
1
|
0
|
2703
|
|
POST
|
@DamienPyne Based on the description - this appears to be a custom tool/function. > If this is custom, the developer can modify the tool to allow for asynchronous processing to allow focus for other apps. > If this is out of the box Pro functionality, it will help to know which specific tool (geoprocessing, extension, model builder, or UI elements) are being used. Depending on the specifics it may be possible to configure or customize (through Pro SDK) the desired behavior.
... View more
07-24-2024
09:09 AM
|
1
|
1
|
1700
|
|
POST
|
@gh8reth Certainly, if the features are in a feature dataset - all the spatial reference properties should be set at the feature dataset level.
... View more
07-23-2024
07:39 AM
|
0
|
0
|
1739
|
|
POST
|
@gh8reth Yes you can define the vertical coordinate system of a feature class in a geodatabase. This is best done during data design and creating the feature class. Create a feature class > Step 5a > you can define the spatial reference > Geographic or Projected coordinates (XY) and Vertical coordinates (Z). Once defined you can view the spatial reference at layer properties > source > spatial reference
... View more
07-22-2024
05:13 AM
|
0
|
2
|
1781
|
|
POST
|
@DamienPyne It would help to list the functions that are in use to perform different activities in your team. The details will help to identify possible configuration settings, to run the functions in the background. The primary workflow mentioned is editing the Utility Network via ArcGIS Pro - this is typically user-interactive and the Pro tools are expected to be the primary focus.
... View more
07-18-2024
11:14 AM
|
0
|
4
|
1770
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 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 |