位置参考数据集属性

摘要

Describe 函数返回位置参考数据集的以下属性。

对于位置参考数据集,Describe dataType 属性返回 "DELocationReferencingDataset" 值。

属性

属性说明数据类型
lrsMetadata
(只读)

指定 LRS 的元数据 XML。

String
eventBehaviorRules
(只读)

为元数据中所有事件(即,对于 LRS 中的每个 LRS 网络中的每个事件)定义的事件行为规则。

String

代码示例

位置参考数据集属性示例

以下独立脚本显示了 LRS 的数据集属性:

Name: DescribeLRSDatasetProperties.py
Description: This script reports the properties of a linear referencing system (LRS)

# Import required modules
import arcpy

# Describe function on an LRS 
desc = arcpy.Describe("C:\\Data\\LRData\\LrsSchema.sde\\GPRefresh.DBO.LRS\\GPRefresh.DBO.LRS")

# LRS Describe properties
lrsXML = desc.lrsMetadata
eventBehaviors = desc.eventBehaviorRules

在本主题中