ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Справка
  • Sign Out
ArcGIS Desktop

ArcGIS Online

Картографическая платформа вашей организации

ArcGIS Desktop

Полноценная профессиональная ГИС

ArcGIS Enterprise

ГИС предприятия

ArcGIS Developers

Инструменты для встраивания приложений с местоположениями

ArcGIS Solutions

Бесплатные шаблоны карт и приложений для отрасли

ArcGIS Marketplace

Получение приложения и данных для вашей организации.

  • Документация
  • Поддержка
Esri
  • Войти
user
  • Мой профиль
  • Выход

ArcMap

  • На главную
  • Начало работы
  • Карта
  • Анализ
  • Управление данными
  • Инструменты
  • Дополнительные модули

Detect Gaps For Linear Events

  • Сводка
  • Использование
  • Синтаксис
  • Пример кода
  • Параметры среды
  • Информация о лицензиях

Сводка

Checks routes on the network for gaps between linear events.

Использование

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

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

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

Синтаксис

arcpy.locref.DetectGapsForLinearEvents(in_network, in_event, out_feature, {in_tvd}, {in_from_measure}, {in_to_measure}, {in_tolerance})
ПараметрОбъяснениеТип данных
in_network

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

Feature Layer
in_event

The linear event features to be checked for gaps.

Feature Layer
out_feature

The output feature class containing lines where there are gaps between events.

Feature Class
in_tvd
(Дополнительный)

The temporal view date for the network.

Date
in_from_measure
(Дополнительный)

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

Double
in_to_measure
(Дополнительный)

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

Double
in_tolerance
(Дополнительный)

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

Double

Пример кода

DetectGapsForLinearEvents example 1 (in-line)

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

# tool variables
in_network = "MilePoint"
in_event = "Speed_Limit"
out_feature = "C:/data/Outputs.gdb"

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

# execute the tool
arcpy.DetectGapsForLinearEvents_locref(in_network, in_event, out_feature)
DetectGapsForLinearEvents example 2 (stand-alone Python script)

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

# Name: DetectGapsForLinearEvents.py
# Description: Convert Roads and Highways Network Layer to Layer and Detect Measures Out Of Range for 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"
gaps_Output = r"C:\Data\Outputs.gdb\Gaps_Output"

# Process: Detect Gap for linear events
arcpy.env.overwriteOutput = 1
arcpy.DetectGapsForLinearEvents_locref(network, event, gaps_Output)

Параметры среды

Этот инструмент не использует параметры среды геообработки

Информация о лицензиях

  • Basic: Требуется Roads and Highways
  • Standard: Требуется Roads and Highways
  • Advanced: Требуется Roads and Highways

Связанные разделы

  • An overview of the Location Referencing toolbox

ArcGIS Desktop

  • На главную
  • Документация
  • Поддержка

ArcGIS

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

Об Esri

  • О нас
  • Карьера
  • Блог Esri
  • Конференция пользователей
  • Саммит разработчиков
Esri
Расскажите нам, что вы думаете.
Copyright © 2021 Esri. | Конфиденциальность | Правовая информация