Skip to content

Commit

Permalink
Add station access request to doc
Browse files Browse the repository at this point in the history
  • Loading branch information
RBinsonB authored Feb 26, 2021
1 parent 400be85 commit 61bc881
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ltl_automaton_std_transition_systems/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The following transistion systems are currently available in the package:
## Nodes
### region_2d_pose_monitor.py
Monitor the position of an agent in a grid-discretized 2D plane. Takes as input a pose (all message format) and output the name of region as a string. Cells are square and an agent is considered in a cell only based on x, y values (and an added hysteresis).
When better accuracy is required, disk regions can be stacked on top of cells. An agent is considered on those so called "stations" when inside the disk and aligned within an angular tolerance. The stations are only connected in the transition system graph to the cell region they are on.
When better accuracy is required, disk regions can be stacked on top of cells. An agent is considered on those so called "stations" when inside the disk and aligned within an angular tolerance, and requesting access to the station through a topic. The stations are only connected in the transition system graph to the cell region they are on. To leave a station, the agent simply needs to empty the access request and it will be considered on the underlying cell.

<a href="url"><img src="/documentation/pictures/region_2d_pose_station_example.png" align="center" height="190" width="500"/></a>

Expand All @@ -25,6 +25,10 @@ When better accuracy is required, disk regions can be stacked on top of cells. A

Agent pose topic. Works with different pose message types.

- `station_access_request` ([std_msgs/String](http://docs.ros.org/en/noetic/api/std_msgs/html/msg/String.html))

Station the agent requires access to. Left empty when the agent does not want to enter a station or wants to exit one.

#### Published Topics

- `current_region` ([std_msgs/String](http://docs.ros.org/en/noetic/api/std_msgs/html/msg/String.html))
Expand Down

0 comments on commit 61bc881

Please sign in to comment.