ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Aide
  • Sign Out
ArcGIS Desktop

ArcGIS Online

La plateforme cartographique de votre organisation

ArcGIS Desktop

Un SIG professionnel complet

ArcGIS Enterprise

SIG dans votre entreprise

ArcGIS Developers

Outils de création d'applications de localisation

ArcGIS Solutions

Modèles d'applications et de cartes gratuits pour votre secteur d'activité

ArcGIS Marketplace

Téléchargez des applications et des données pour votre organisation.

  • Documentation
  • Support
Esri
  • Se connecter
user
  • Mon profil
  • Déconnexion

ArcMap

  • Accueil
  • Commencer
  • Carte
  • Analyser
  • Gérer les données
  • Outils
  • Extensions

Detect Overlaps For Linear Events

  • Résumé
  • Utilisation
  • Syntaxe
  • Exemple de code
  • Environnements
  • Informations de licence

Résumé

Checks routes on the network for overlaps between linear events.

Utilisation

  • The input Event Layer must be one of the linear event tables registered with the input Network Layer.

  • The Output Feature Class represents the overlaps between linear events.

  • The Output Feature Class contains the following fields: NetworkName, RouteID, TVD (Temporal View Date), EventLayer, FromMeasure and ToMeasure.

Syntaxe

arcpy.locref.DetectOverlapsForLinearEvents(in_network, in_event, out_feature, {in_tvd}, {in_from_measure}, {in_to_measure}, {in_tolerance})
ParamètreExplicationType de données
in_network

The network containing the linear event features to be checked for overlaps.

Feature Layer
in_event

The linear event features to be checked for overlaps.

Feature Layer
out_feature

The output feature class containing lines where there are overlapping events.

Feature Class
in_tvd
(Facultatif)

The temporal view date for the network.

Date
in_from_measure
(Facultatif)

Defines the lower bound of the portion of the route on which overlaps will be detected.

Double
in_to_measure
(Facultatif)

Defines the upper bound of the portion of the route on which overlaps will be detected.

Double
in_tolerance
(Facultatif)

Tolerance, in Linear Referencing Method (LRM) units, used to compare events on routes.

Double

Exemple de code

DetectOverlapsForLinearEvents example 1 (in-line)

The following Python window script demonstrates how to use the DetectOverlapsForLinearEvents function in immediate mode.

# tool variables
in_network = "MilePoint"
in_event = "Functional_Class"
out_feature = "Overlaps_Output"
in_tvd = "2/28/2014"
in_to_measure = ""
in_from_measure = ""
in_tolerance = ""

# set current workspace
arcpy.env.workspace = "C:/data/Outputs.gdb"

# execute the tool
arcpy.DetectOverlapsForLinearEvents_locref(in_network, in_event, out_feature, in_tvd, in_to_measure, in_from_measure, in_tolerance)
DetectOverlapsForLinearEvents example 2 (stand-alone Python script)

The following Python script demonstrates how to use DetectOverlapsforLinearEvents in a stand-alone Python script.

# Name: Detect OverlapsForLinearEvents.py
# Description: Convert Roads and Highways Network Layer to Feature Layer and Detect Overlaps for Linear Events in a file geodatabase

# Import arcpy module
import arcpy

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

# Local variables
network = r"C:\Data\NY_Data.gdb\LRSN_MilePoint"
event = r"C:\Data\NY_Data.gdb\LRSE_Speed_Limit"
overlaps_Output = r"C:\Data\Outputs.gdb\Gaps_Output"

# Process: Detect Overlaps for linear events
arcpy.env.overwriteOutput = 1
arcpy.DetectOverlapsForLinearEvents_locref(network, event, overlaps_Output)

Environnements

Cet outil n'utilise pas d’environnement de géotraitement.

Informations de licence

  • Basic: Requiert Roads and Highways
  • Standard: Requiert Roads and Highways
  • Advanced: Requiert Roads and Highways

Rubriques connexes

  • An overview of the Location Referencing toolbox

ArcGIS Desktop

  • Accueil
  • Documentation
  • Support

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

A propos d'Esri

  • A propos de la société
  • Carrières
  • Blog d’Esri
  • Conférence des utilisateurs
  • Sommet des développeurs
Esri
Donnez-nous votre avis.
Copyright © 2021 Esri. | Confidentialité | Légal