extend_param.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package entity
  2. type PjisuvParam struct {
  3. // /cicv_location
  4. AbsSpeed float64
  5. VelocityXOfCicvLocation float64
  6. VelocityYOfCicvLocation float64
  7. VelocityZOfCicvLocation float64
  8. YawOfCicvLocation float64
  9. AngularVelocityZOfCicvLocation float64
  10. PositionXOfCicvLocation float64
  11. PositionYOfCicvLocation float64
  12. LatitudeOfCicvLocation float64
  13. LongitudeOfCicvLocation float64
  14. EnterJunctionFlag bool
  15. // /tpperception
  16. ObjDicOfTpperception map[uint32][]float32
  17. // /pji_control_pub
  18. NumCountPjiControlCommandOfPjControlPub int
  19. EgoSteeringCmdOfPjControlPub []float64
  20. EgoThrottleCmdOfPjControlPub []float64
  21. // /data_read
  22. NumCountDataReadOfDataRead int
  23. EgoSteeringRealOfDataRead []float64
  24. EgoThrottleRealOfDataRead []float64
  25. StrgAngleRealValueOfDataRead float64
  26. // /pj_vehicle_fdb_pub
  27. AutomodeOfPjVehicleFdbPub int16
  28. ///cicv_amr_trajectory
  29. DecisionType int8
  30. }
  31. type KinglongParam struct {
  32. // /cicv_location
  33. VelocityXOfCicvLocation float64
  34. VelocityYOfCicvLocation float64
  35. YawOfCicvLocation float64
  36. AngularVelocityZOfCicvLocation float64
  37. // /tpperception
  38. ObjDicOfTpperception map[uint32][]float32
  39. // /pji_control_pub
  40. NumCountJinlongControlCommandOfPjControlPub int
  41. EgoSteeringCmdOfJinlongControlPub []float64
  42. EgoThrottleCmdOfJinlongControlPub []float64
  43. EgoBrakeCmdOfJinlongControlPub []float64
  44. // /data_read
  45. NumCountDataReadOfDataRead int
  46. EgoSteeringRealOfDataRead []float64
  47. EgoThrottleRealOfDataRead []float64
  48. EgoBrakeRealOfDataRead []float64
  49. }