extend_param.go 621 B

12345678910111213141516171819202122
  1. package entity
  2. type ExtendParam struct {
  3. // /cicv_location
  4. VelocityXOfCicvLocation float64
  5. VelocityYOfCicvLocation float64
  6. YawOfCicvLocation float64
  7. AngularVelocityZOfCicvLocation float64
  8. // /tpperception
  9. ObjDicOfTpperception map[uint32][]float32
  10. // /pji_control_pub
  11. NumCountPjiControlCommandOfPjControlPub int
  12. EgoSteeringCmdOfPjControlPub []float64
  13. EgoThrottleCmdOfPjControlPub []float64
  14. // /data_read
  15. NumCountDataReadOfDataRead int
  16. EgoSteeringRealOfDataRead []float64
  17. EgoThrottleRealOfDataRead []float64
  18. StrgAngleRealValueOfDataRead float64
  19. }