I am using the arcpy describe option to view events and their rules, following this example:
https://pro.arcgis.com/en/pro-app/latest/arcpy/functions/locationreferencingdataset-properties.htm
What is returned is a JSON format with "ActivityType" and "BehaviorType" as codes. Does anyone know where to find the what the codes mean? Here is an example of the output:
[
{
"LrsId": "{BC081F2A-6B2F-4A9E-9BA1-1569499FBFB9}",
"NetworkId": 1,
"EventTableId": "{575E204F-8875-401C-8280-F16950E00A07}",
"EventBehaviors": [
{
"ActivityType": 1,
"BehaviorType": 1
},
{
"ActivityType": 2,
"BehaviorType": 1
},
{
"ActivityType": 3,
"BehaviorType": 1
},
{
"ActivityType": 4,
"BehaviorType": 4
},
{
"ActivityType": 5,
"BehaviorType": 1
},
{
"ActivityType": 6,
"BehaviorType": 4
},
{
"ActivityType": 7,
"BehaviorType": 4
},
{
"ActivityType": 12,
"BehaviorType": 6
},
{
"ActivityType": 13,
"BehaviorType": 1
}
]
}
]
There is a domain in the Roads and Highways database that seems to correspond to ActivityTypes 1-7, but not 12 and 13. I have not found anything for BehaviorType.
Regards,
Nick