pjisuv_param.go 970 B

1234567891011121314151617181920212223242526272829303132
  1. package pjisuv_param
  2. type PjisuvParam struct {
  3. // /cicv_location
  4. VelocityXOfCicvLocation float64
  5. VelocityYOfCicvLocation float64
  6. VelocityZOfCicvLocation float64
  7. YawOfCicvLocation float64
  8. AngularVelocityZOfCicvLocation float64
  9. PositionXOfCicvLocation float64
  10. PositionYOfCicvLocation float64
  11. // /tpperception
  12. ObjDicOfTpperception map[uint32][]float32
  13. ObjTypeDicOfTpperception map[uint32]uint8
  14. ObjSpeedDicOfTpperception map[uint32]float64
  15. // /pji_control_pub
  16. NumCountPjiControlCommandOfPjControlPub int
  17. EgoSteeringCmdOfPjControlPub []float64
  18. EgoThrottleCmdOfPjControlPub []float64
  19. // /data_read
  20. NumCountDataReadOfDataRead int
  21. EgoSteeringRealOfDataRead []float64
  22. EgoThrottleRealOfDataRead []float64
  23. StrgAngleRealValueOfDataRead float64
  24. // /pj_vehicle_fdb_pub
  25. AutomodeOfPjVehicleFdbPub int16
  26. // /cicv_amr_trajectory
  27. LastCurvaturesOfCicvAmrTrajectory []float64
  28. }