transfer.h 717 B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. #ifndef _IV_DECITION_TRANSFER_
  3. #define _IV_DECITION_TRANSFER_
  4. #include <gps_type.h>
  5. #include <decition_type.h>
  6. #include<vector>
  7. namespace iv {
  8. namespace decition {
  9. //根据传感器传输来的信息作出决策
  10. double GetL0InDegree(double dLIn);
  11. void BLH2XYZ(GPS_INS gps_ins);
  12. ///大地转车体
  13. Point2D Coordinate_Transfer(double x_path, double y_path, GPS_INS pos);
  14. ///车体转大地
  15. GPS_INS Coordinate_UnTransfer(double x_path, double y_path, GPS_INS pos);
  16. double GetDistance(Point2D x1, Point2D x2);
  17. double GetDistance(GPS_INS p1, GPS_INS p2);
  18. }
  19. }
  20. #endif // ! _IV_DECITION_TRANSFER_