dgns_gtbaseparam.cpp 955 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // Created by lloyd on 2020/10/14.
  3. //
  4. #include "iostream"
  5. #include "dgns_gtbaseparam.h"
  6. #include "../gtcommonkits.h"
  7. #include "math.h"
  8. dgns_gtbaseparam::dgns_gtbaseparam() {
  9. id = "";
  10. createtime = "";
  11. recivetime = "";
  12. wellname = "";
  13. //sgt = "";
  14. s_max = 0;
  15. s_min = 0;
  16. l_max = 0;
  17. l_min = 0;
  18. l_mid=0;
  19. l_fistdownturnpoint=0;
  20. s = 0;
  21. n = 0;
  22. l = 0;
  23. s_effect = 0;
  24. area = 0;
  25. upload = 0;
  26. download = 0;
  27. islegal = 0;
  28. remark = "";
  29. sgtpointnum = 0;
  30. s_pre = 0;
  31. s_min_point_location = -1;
  32. s_max_point_location = -1;
  33. l_min_point_location = -1;
  34. l_max_point_location = -1;
  35. }
  36. std::vector<std::vector<double>> dgns_gtbaseparam::gt_trans_strtoarray(std::string sgt) {
  37. return gtcommonkits::gt_trans_strtoarray(sgt);
  38. }
  39. std::string dgns_gtbaseparam::gt_trans_arraytostr(std::vector<std::vector<double>> sgt) {
  40. return gtcommonkits::gt_trans_arraytostr(sgt);
  41. }