12345678910111213141516171819202122 |
- package main
- import (
- "cicv-data-closedloop/pjisuv_msgs"
- "math"
- )
- func Topic() string {
- return "/cicv_location"
- }
- func Label() string {
- return "OverSpeed"
- }
- func Rule(data *pjisuv_msgs.PerceptionLocalization) string {
- if math.Pow(math.Pow(data.VelocityX, 2)+math.Pow(data.VelocityY, 2), 0.5)*3.6 >= 65 {
- return "OverSpeed"
- } else {
- return ""
- }
- }
|