ArcGIS Desktop

  • Documentation
  • Support

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS for Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

Help

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • More...

Calculate Route Concurrencies

  • Summary
  • Usage
  • Syntax
  • Code sample
  • Environments
  • Licensing information

Summary

Calculates and reports the concurrent route segments within an LRS Network. These concurrencies are reported with the measures for each concurrent route segment and a time range in which the concurrency exists. The route dominance rules for the LRS Network can be used to determine the dominant route in each concurrent section.

Note:

This tool is available in Roads and Highways as of 10.3.1 Patch 4.

Usage

  • The output feature class contains the following fields: NetworkID, RouteID, SectionID, FromMeasure, ToMeasure, FromDate, ToDate, DominantFlag, and DominantError.

Syntax

CalculateRouteConcurrencies_roads (in_network, out_table, {in_tvd}, {find_dominance})
ParameterExplanationData Type
in_network

The network containing the routes on which concurrencies will be calculated.

Feature Layer
out_table

The table to be created, containing all the concurrent sections in the Source LRS Network.

Table
in_tvd
(Optional)

The temporal view date for the network.

Date
find_dominance
(Optional)

Indicates whether to use route dominance rules configured for in_network.

  • FIND_DOMINANCE —Uses route dominance rules configured to determine the dominant route in each concurrent section. This is the default.
  • NO_FIND_DOMINANCE —Does not use route dominance rules configured to determine the dominant route in each concurrent section.
Boolean

Code sample

AppendEvents example 1 (Python window)

Demonstrates how to use the CalculateRouteConcurrencies tool in the Python window in ArcMap.

# tool variables
in_network = r"C:\Data\NY_Data.gdb\LRSN_MilePoint"
out_table = r"C:\Data\NY_Data.gdb\ConcurrenciesOutput"
in_tvd = ""
find_dominance = "FIND_DOMINANCE"

# set current workspace
arcpy.env.workspace = "C:/Data/NY_Data.gdb"

# execute the tool
arcpy.CalculateRouteConcurrencies_roads(in_network, out_table, in_tvd, find_dominance)
AppendEvents example 2 (stand-alone Python script)

Demonstrates how to use the CalculateRouteConcurrencies tool as a stand-alone Python script.

# Name: FindRouteConcurrencies.py
# Description: Identifies all the route concurrencies in a given network.
# Requires: Esri Roads and Highways Solution

# Import arcpy module
import arcpy

# Check out any necessary licenses
arcpy.CheckOutExtension("Highways")

# Local variables
network = r"C:\Data\NY_Data.gdb\LRSN_MilePoint"
output_table = r"C:\Data\NY_Data.gdb\Concurrencies_Output"

# Execute the tool
arcpy.CalculateRouteConcurrencies_roads(network, output_table, "", "FIND_DOMINANCE")

Environments

This tool does not use any geoprocessing environments

Licensing information

  • ArcGIS Desktop Basic: Requires Roads and Highways
  • ArcGIS Desktop Standard: Requires Roads and Highways
  • ArcGIS Desktop Advanced: Requires Roads and Highways

Related topics

  • An overview of the Roads and Highways toolbox

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS Platform

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Insiders Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2017 Esri. | Privacy | Legal