Check if a track visited zones in a specific order
Type II checks evaluate whether a track traversed zones in a configured sequence. This is used for detecting directional violations, validating expected paths, or identifying tracks that skipped required checkpoints.
Bypass zones provide a way to invalidate a sequence match. If a track visited a bypass zone between any two zones in the sequence, the match is invalidated.Example — wrong-way detection with exception:
Sequence: [Zone A, Zone B] (expected forward direction)
Bypass zones: [Security Checkpoint]
Track path: Zone A → Security Checkpoint → Zone B
Result: No match — the security checkpoint between A and B invalidates the sequence
This is useful for cases where a specific intermediate zone means the traversal was authorized.
Detect vehicles traveling in the wrong direction through one-way aisles. Each sequence defines an approach zone and a target zone representing the wrong direction.
Parameter
Value
Sequence
[Approach Zone, Target Zone]
Bypass Zones
None
Match Mode
Ordered
Mode: Batch — only need the track summary after the vehicle passes through.If a vehicle visits the approach zone before the target zone (in the wrong direction), the sequence matches and the check passes. Multiple sequences can be configured for different one-way aisles across the site.
Define the sequence in the wrong direction. The check passing means the violation occurred.
Failure to stop — directional stop sign enforcement
In the failure-to-stop compliance workflow, Type II is composed with Type I to enforce directional stop signs — stop signs that only apply when approaching from a specific direction.
Parameter
Value
Sequences
13 zone pairs — [approach zone, stop zone] for each directional stop sign
Bypass Zones
None
Match Mode
Ordered
Mode: Batch — composed with a Type I velocity check upstream.The Type II check answers: “did this vehicle come from the approach direction before reaching the stop zone?” This is combined with the Type I velocity check via a Check Aggregator that defines two groups:
Group
Required Checks
Directional stop signs (12 zones)
Type I + Type II
Non-directional stop signs (4 zones)
Type I only
This demonstrates how Type II is often a secondary check that adds directional context to a primary check, rather than standing alone.
Adapting for other use cases
Zone sequences can model any path-based validation:
Use Case
Sequence Definition
Notes
Wrong-way detection
[Approach, Target] in wrong direction
Passing = violation
Directional compliance
[Approach, Checkpoint] in correct direction
Passing = compliant
Checkpoint validation
[Entry, Checkpoint A, Checkpoint B, Destination]
Multi-step sequence
Restricted access
[Public Area, Restricted Zone]
With bypass zone for authorized paths
Use bypass zones when certain intermediate zones should invalidate the match — for example, passing through a security checkpoint between zones means the traversal was authorized.