Skip to main content
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.

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

  1. The node builds the track’s zone sequence — the chronological order of zones visited
  2. For each configured sequence, it checks if the zones appear in that order within the track sequence
  3. Bypass zones can invalidate a match if they appear between sequence zones
  4. 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
This is useful for cases where a specific intermediate zone means the traversal was authorized.

Output

Key output fields

Business use case examples

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.
Define the sequence in the wrong direction. The check passing means the violation occurred.
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.
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.

Credentials

Requires GraphQL Subscription API credentials (for loading site/zone options).