POST
|
Hello Katrina - At some point in 2017 or 2018 we deprecated the field separator capability from the ArcGIS Desktop (ArcMap) Roads and Highways network padding configuration. The images you are showing are from old archived resource documents. The ArcGIS Pro network padding configuration does not have a field separator option. You may be able to model a separator using additional route padding fields where the default value is set to an underscore. Alternatively, you might also consider an autogenerated route Id configuration. For this configuration the route ID field will be an autogenerated GUID, and the RouteName field (required) can be configured as an LRS field. You can use Arcade-based attribute rule calculations to form the required "RouteName" field using the fields you are interested in concatenating per your stakeholder needs. Here's a basic example you can build on: // Specify the fields to concatenate
var values = [$feature.RoadName, $feature.ConditionMgmt, $feature.Owner, $feature.Suburb];
var combined_value = [];
// Loop through the field values and test if they are null or empty strings
// If they are not null or empty add them to an array
for (var i in values) {
var value = values[i];
if (IsEmpty(value)) continue;
combined_value[Count(combined_value)] = value
}
// Return the field values concatenated with an underscore between
return Concatenate(combined_value, "_"); (Apologies that this is Python formatted snippet...) Hope that gives you a couple ideas, -amit@esri Esri Transportation LRS Team
... View more
08-30-2024
09:54 AM
|
2
|
1
|
664
|
POST
|
Hello @MirekGroen I'm going to offer you an alternative method for triaging this issue. May I suggest you use the ArcGIS Pro Diagnostic Monitor functionality to review the network traffic to see whether you are able to append routes through the Pro GP to your LRS-enabled service. In Pro, try Cntrl+Alt+M. Then you can watch the network traffic log to determine what interactions are taking place. For instance, here I have an FGDB locally with one route in it (Feature class: RouteLoader) that I intend to Append to my branch versioned LRS service: Append Routes: ArcGIS Pro Diagnostic Monitor: Note that the uploadItem created has the network and the centerline copied into it and has the new recordset in both: Hopefully, this gives you a starting point to resolve your Append Routes issue. If all else fails, please reach out to our technical support staff. -Amit -Esri Transportation LRS Team
... View more
05-01-2024
03:44 PM
|
0
|
1
|
1025
|
POST
|
Hello Kevin - This post piqued my interest because I've been working with customer data in Pro for years and have never seen this issue arise. I reached out to Tech Support and the Product Manager to see if they would share the data you submitted to us with me. After reviewing your FGDB and the case notes there are a few observations I would like to share with you along with a workaround: 1) It seems rather than modifying/upgrading your existing Roads and Highways Armap-based LRS GDB you instead created a new LRS and new LRS network possibly using a mix of ArcMap-based feature classes with our Create New [LRS] and [LRS Network] GP tools (mixing and matching objects). This step is not necessary for migrating to ArcGIS Pro (and in your case could even cause errors). In any event since it seems you are simply testing the tools there are some things you need to be aware of. When you run Create LRS the minimum schema Route Id fields (CLS and Calibration_Point) will be set to text(255) - this will come into play later. I also noted that your M tolerance in the network feature class you have is 0.0000001 Mile (US Survey) based on an XY tolerance 0.001 meters.. Can you elaborate on your process for creating the network feature class and registering it with the LRS as this tolerance wouldn't work with our Create LRS Network from Existing Dataset GP. 2) The LRSN_Milepoint network you configured is set to Autogenerated Route Id but the field length is set to text(9). This is not in alignment with CLS/CP Route Ids. Armed with that information I made the following changes to the FGDB you submitted and did not run into any errors when registering the Ev_RIS_AccControl event: 1) Change the LRSN_Milepoint Route_Id field to text(255) 2) Run Modify LRS Network - Change the network configuration to Single-field Route Id 3) Run Create LRS Event from Existing Dataset - Success I can appreciate that our tools should not be crashing ArcGIS Pro but instead providing a warning/stop that you have a misconfigured LRS. The Product Team should look into that. I am curious as to whether you have tried to run Modify LRS to upgrade your ArcMap LRS. You could take a cut (default version) of your current ArcMap GDB and copy it to an FGDB and run the Modify LRS to evaluate the upgrade to Pro. Amit Esri Transportation LRS Team
... View more
04-19-2024
03:09 PM
|
3
|
1
|
1100
|
POST
|
@AlexanderShields_AZ I will echo my colleague's post with regard to functionality expected in ArcGIS Pro Location Referencing Realign edits. Here is an example where I am filling in a gapped route with a new centerline: Please check that you have the correct centerlines selected and chosen. You may also test a simple touching extend or touching realign to see if the issue is related to the not-touching scenario you depicted in your original post. -amit@esri Esri Transportation LRS Team
... View more
02-06-2024
11:21 AM
|
0
|
1
|
1987
|
POST
|
Unfortunately, the underlying API calls to applyEdits does not occur until after you click Run. Therefore, you'll need to consider alternative methods to validate/construct your Route Name field. amit@esri | Transportation LRS Team
... View more
09-29-2023
08:45 AM
|
2
|
1
|
1198
|
POST
|
Hello - Can you confirm you are trying to leverage an ArcMap 10.7.1 published service with an ArcGIS Enterprise GIS Server 10.9.1 licensed with Location Referencing Solutions for Server? If you are, this is an unsupported configuration. Once you migrate ArcGIS Enterprise to 10.9.1 you will need to upgrade your LRS GDB to our ArcGIS Pro-based model and republish services using ArcGIS Pro. Please reference our migration resource document: https://community.esri.com/t5/arcgis-roads-and-highways-questions/migrating-from-arcmap-to-pro-3-1/m-p/1262252#M334https://community.esri.com/t5/arcgis-roads-and-highways-documents/migrating-road-and-highways-data-from-arcmap-to/ta-p/920363 -amit@esri | Esri Transportation LRS Team
... View more
09-19-2023
11:56 AM
|
1
|
2
|
1499
|
POST
|
The Overlay Route Events GP tool requires inputs to be part of an LRS dataset so you will need the LRS_ tables in your local staging geodatabase. Thanks -amit@esri
... View more
12-28-2022
07:24 AM
|
1
|
0
|
1305
|
POST
|
Hello - Can you verify whether the GDB connected user you have specified for the connection to the LRS network and events has read access to the Lrs_* business tables (Lrs_metadata, Lrs_EventBehavior, Lrs_Locks etc)... -amit@esri
... View more
12-27-2022
03:41 PM
|
0
|
2
|
1370
|
POST
|
Correct - versioned workflows require UTC for publishing but you can change the local time through the server. ArcGIS Pro-based editing works fine but there does seem to be an issue with an Event Editor that the product team is investigating, -amit@esri
... View more
12-14-2022
08:32 AM
|
0
|
0
|
1890
|
POST
|
Hi Masao - There were some Enterprise LRS issues related to Event Editor and UTC dates that were not apparent in ArcGIS Pro based editing workflows (which is what I tested in the previous response). The product team is looking into those issues now and I'll have a follow up for you soon. -amit@esri
... View more
12-13-2022
10:57 AM
|
1
|
2
|
1906
|
POST
|
Hello Masao There are two ways to set your service to local time rather than UTC. You can either update the specific map services Date Field Settings in the service parameters or you can set the ArcGIS Server date defaults in the ArcGIS Server Administrator if you have the privilege. Although the document is a little dated these patterns are outlined in the following technical resource document here. I tested configuring pacific Time (US & Canada) with values adjusted for DST using ArcGIS Enterprise 11 and can confirm these parameter settings are still applicable. -amit@esri Esri Transportation LRS Team
... View more
12-12-2022
08:25 PM
|
0
|
0
|
1921
|
POST
|
Please review our resource documentation on Preparing the LRS for editing. Specifically, you must enable temporality for all LRS elements in the map you intend to publish as an LRS-enabled feature service. -amit@esri
... View more
10-05-2022
08:19 PM
|
1
|
0
|
855
|
POST
|
The Roadway Reporter web app product is only supported with Location Referencing Solutions services published from ArcMap 10.8.x releases and earlier. This product is not supported using ArcGIS Pro LR services. As a workaround, leverage Overlay Events to generate dynamic segmentation overlay outputs. These outputs may be used in other reporting and dashboard applications. -amit@esri
... View more
08-21-2022
06:14 PM
|
0
|
0
|
821
|
POST
|
Hello Graeme I would encourage you to review our resource documentation describing the processes for preparing the LRS for editing and sharing as web layers. https://pro.arcgis.com/en/pro-app/latest/help/production/roads-highways/share-as-web-layers.htm On this page you will find the specific Location Referencing service Analyzer checks we do. Those checks include: ArcGIS Server 10.6 or later instances are supported. If Version Management is enabled under Capabilities, all layers must be of the same registration type. All data must belong to a branch workspace. All data must be published from the default version. The connected geodatabase user must be the owner of the data. Definition queries must not be present. All fields must be visible. Once you've published your LR service and are using ArcGIS Pro to work through your data management activities you can set attribute-based definition queries on the feature layers in the map and you'll use the Time tools to visualize the vintage of the LRS you are working with in the map. I see you've been active on the Transportation GeoNet and have been working your way through our Esri online training for Location Referencing. If you find that you would like a deeper dive technical enablement training curated specifically by Esri LRS subject matter experts please reach out to anyone on the Esri Transportation Practice and/or your Esri account management team. Thank you, -amit@esri Esri Transportation LRS Team
... View more
08-17-2022
05:07 PM
|
1
|
0
|
921
|
POST
|
Hello Colin - Both of our external system integration tools are now installed with the API so you do not need to manage publishing GP services to access these operations. Please reference: Export Network: https://developers.arcgis.com/rest/services-reference/enterprise/lr-export-network.htm Relocate Event: https://developers.arcgis.com/rest/services-reference/enterprise/lr-relocate-event.htm -amit@esri
... View more
08-17-2022
11:04 AM
|
3
|
0
|
928
|
Title | Kudos | Posted |
---|---|---|
2 | 08-30-2024 09:54 AM | |
3 | 04-19-2024 03:09 PM | |
2 | 09-29-2023 08:45 AM | |
1 | 09-19-2023 11:56 AM | |
1 | 12-28-2022 07:24 AM |
Online Status |
Offline
|
Date Last Visited |
3 weeks ago
|