When to use
Use Type II for any use case where the core question is “did this object travel through zones in this order?”:- Wrong-way detection — track visited zones in the reverse of the expected direction
- Checkpoint validation — track passed through required zones before entering a restricted area
- Path compliance — track followed the expected route through a facility
- Entry/exit patterns — track entered through a specific zone and exited through another
How it works
- The node builds the track’s zone sequence — the chronological order of zones visited
- For each configured sequence, it checks if the zones appear in that order within the track sequence
- Bypass zones can invalidate a match if they appear between sequence zones
- The check passes if at least one configured sequence matches
Configuration
Site
Select the Worlds site to load available zones.Zone sequences
Define one or more sequences to check for. Each sequence contains:Each sequence requires at least 2 zones. The last zone in the sequence is the target zone — it gets added to
matching_zones when the sequence matches.Match mode
Advanced settings
Bypass zones
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
Output
Key output fields
Business use case examples
Wrong-way detection — single zone sequence
Wrong-way detection — single zone sequence
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.
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.
Failure to stop — directional stop sign enforcement
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.
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:
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
Adapting for other use cases
Zone sequences can model any path-based validation:
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.

