PlaneInspectionApplicationTests.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. package com.keystar.plane.inspection;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.drew.imaging.jpeg.JpegProcessingException;
  4. import com.fasterxml.jackson.core.JsonProcessingException;
  5. import com.jcraft.jsch.JSchException;
  6. import com.jcraft.jsch.SftpException;
  7. import com.keystar.plane.inspection.bo.*;
  8. //import com.keystar.plane.inspection.config.MinIoConfig;
  9. import com.keystar.plane.inspection.constant.LocationConstant;
  10. import com.keystar.plane.inspection.constant.MissionConstant;
  11. import com.keystar.plane.inspection.dao.DegreesVo;
  12. import com.keystar.plane.inspection.dao.PhotoMessageVo;
  13. import com.keystar.plane.inspection.dao.PhotoResultVo;
  14. import com.keystar.plane.inspection.dao.PlanePhotoVo;
  15. import com.keystar.plane.inspection.entity.PhotoResultEntity;
  16. import com.keystar.plane.inspection.entity.PlanePhotoEntity;
  17. import com.keystar.plane.inspection.mapper.PhotoResultMapper;
  18. import com.keystar.plane.inspection.mapper.PlanePhotoMapper;
  19. import com.keystar.plane.inspection.mqtt.PlaneMqttHandler;
  20. import com.keystar.plane.inspection.service.*;
  21. import com.keystar.plane.inspection.service.impl.MinioService;
  22. import com.keystar.plane.inspection.service.impl.ReportServiceImpl;
  23. import com.keystar.plane.inspection.utils.*;
  24. import io.minio.messages.Item;
  25. import org.junit.jupiter.api.Test;
  26. import org.springframework.beans.factory.annotation.Autowired;
  27. import org.springframework.boot.test.context.SpringBootTest;
  28. import org.springframework.util.ResourceUtils;
  29. import java.io.File;
  30. import java.io.FileNotFoundException;
  31. import java.io.IOException;
  32. import java.math.BigDecimal;
  33. import java.nio.charset.Charset;
  34. import java.text.ParseException;
  35. import java.text.SimpleDateFormat;
  36. import java.util.*;
  37. import java.util.stream.Collectors;
  38. @SpringBootTest
  39. class PlaneInspectionApplicationTests {
  40. @Autowired
  41. PhotoService photoService;
  42. @Autowired
  43. MqttService mqttService;
  44. @Autowired
  45. MinioService minioService;
  46. @Autowired
  47. PlanePhotoMapper planePhotoMapper;
  48. @Autowired
  49. PhotoResultMapper photoResultMapper;
  50. @Autowired
  51. TangyangDataService tangyangDataService;
  52. @Autowired
  53. PhotoResultService photoResultService;
  54. @Autowired
  55. private IReportService reportService;
  56. // @Autowired
  57. // MinIoConfig minIoConfig;
  58. @Autowired
  59. NestService nestService;
  60. @Autowired
  61. PlanePhotoService planePhotoService;
  62. //
  63. // @Test
  64. // void contextLoads() {
  65. // }
  66. // @Test
  67. // public void test() throws IOException, JpegProcessingException {
  68. // PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage();
  69. // System.out.println(photoMessage.toString());
  70. // }
  71. //
  72. // @Test
  73. // public void test1() throws IOException, JpegProcessingException {
  74. // PhotoUtils.getPhotoGps();
  75. // }
  76. //
  77. // @Test
  78. // public void test3() throws Exception {
  79. //
  80. // String encrypt = Utils.encrypt("Keystar@2022", "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCDrKWklonbo4ZFgwLgE63wt+sHiB4Uq0Tl6V6g2Aoj5IPRd4TL8mJlMkaJu/c3G212jhjbUjYkWn5HOnrUwrVN1q+mJGGUCED6ruTNMiAc1Oe5gbLwGIeyk4IMuZFUVwq7XdTgVfFo9cVRAM8jIWftJrCm63ZrqqU/AdBoU4FSTQIDAQAB");
  81. // System.out.println(encrypt);
  82. // }
  83. //
  84. @Test
  85. public void testLogin() throws Exception {
  86. String s = PlaneMqttHandler.planeLogin();
  87. System.out.println(s);
  88. }
  89. //
  90. // @Test
  91. // public void testGetPhoto() throws Exception {
  92. // PlanePhotoVo planePhoto = PlaneMqttHandler.getPlanePhoto();
  93. // System.out.println(planePhoto);
  94. // }
  95. //
  96. // @Test
  97. // public void test4(){
  98. // String test = "640 pixels";
  99. // String[] s = test.split(" ");
  100. // System.out.println(s[0]);
  101. // }
  102. //
  103. // @Test
  104. // public void test5() throws IOException, JpegProcessingException {
  105. // // 获取图片的信息
  106. // PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage();
  107. // List<Location> locations = PhotoUtils.getDegrees(photoMessage);
  108. // System.out.println(locations.toString());
  109. // }
  110. //
  111. // @Test
  112. // public void test6() throws IOException {
  113. // String pvJson = FileUtils.getPVJson();
  114. // System.out.println(pvJson);
  115. // }
  116. //
  117. // @Test
  118. // public void test7() throws IOException {
  119. // String pvJson = FileUtils.getPVJson();
  120. //
  121. // Map<String, List> stringListMap = FileUtils.jsonTransData(pvJson);
  122. // System.out.println(stringListMap.toString());
  123. // }
  124. //
  125. // @Test
  126. // public void test8(){
  127. // FileUtil.ReadFileByIO("F:\\tangyangWrj\\plane-inspection\\target\\classes\\pv.json");
  128. //
  129. // }
  130. //
  131. // @Test
  132. // public void test9(){
  133. // String nestStatus = nestService.getNestStatus();
  134. // System.out.println(nestStatus);
  135. // }
  136. @Test
  137. public void test10() throws FileNotFoundException {
  138. File file = ResourceUtils.getFile("classpath:border.json");
  139. FileUtil.readFZLatLng(file.getPath());
  140. System.out.println("");
  141. }
  142. @Test
  143. public void test11(){
  144. List<Location> locations = LocationConstant.PZLocation.get("01");
  145. Location location = locations.get(1);
  146. System.out.println(location.toString());
  147. }
  148. // @Test
  149. // public void test12() throws IOException, JpegProcessingException {
  150. // photoService.queryPhoto();
  151. // }
  152. //
  153. // @Test
  154. // public void testMqtt() throws JsonProcessingException {
  155. // mqttService.sendMqtt();
  156. // }
  157. @Test
  158. public void getNewFile(){
  159. List<Item> nest = minioService.listObject("nest");
  160. System.out.println(nest.toString());
  161. }
  162. // @Test
  163. // public void getNewFile2(){
  164. // List<String> infraredPhoto = minioService.getInfraredPhoto();
  165. //
  166. // System.out.println(infraredPhoto.toString());
  167. // }
  168. @Test
  169. public void getFtpFile(){
  170. FtpUtils.getFtpFile();
  171. }
  172. @Test
  173. public void ssh() throws JSchException, SftpException {
  174. SSHUtils.connect("root", "keystar", "10.138.6.221", 22);
  175. SSHUtils.execCmd("cd /data/minio/data/nest/autoUpload/photo/");
  176. SSHUtils.execCmd("ls -ltr");
  177. String lsDirectory = "/data/minio/data/nest/autoUpload/photo/";
  178. SSHUtils.listFiles(lsDirectory);
  179. SSHUtils.close();
  180. }
  181. @Test
  182. public void testSSH(){
  183. // 连接到指定的服务器
  184. try {
  185. // 1、首先远程连接ssh
  186. SSHRemoteCall.getInstance().sshRemoteCallLogin("10.138.6.221", "root", "keystar");
  187. String command = "ls -lt /data/minio/data/nest/autoUpload/photo/";
  188. SSHRemoteCall.getInstance().execCommand(command);
  189. // 7、关闭连接
  190. SSHRemoteCall.getInstance().closeSession();
  191. } catch (Exception e) {
  192. // 打印错误信息
  193. System.err.println("远程连接失败......");
  194. e.printStackTrace();
  195. }
  196. }
  197. // @Test
  198. // public void getNew(){
  199. // List<String> newPhoto = FileUtil.getNewPhoto();
  200. // System.out.println(newPhoto.toString());
  201. //
  202. // }
  203. @Test
  204. public void sendMqtt() throws JsonProcessingException {
  205. mqttService.sendPhotoFile("/nest/autoUpload/photo/2422/1111/", "0");
  206. }
  207. @Test
  208. public void insert(){
  209. PlanePhotoEntity planePhotoEntity = new PlanePhotoEntity();
  210. planePhotoEntity.setId(1L);
  211. planePhotoEntity.setMissionId(1);
  212. planePhotoEntity.setRecordId(1);
  213. planePhotoEntity.setInfraredImagePath("123/123");
  214. planePhotoEntity.setPvName("pvName");
  215. planePhotoEntity.setPzName("pzName");
  216. planePhotoEntity.setTime(new Date());
  217. boolean save = planePhotoService.save(planePhotoEntity);
  218. System.out.println(save);
  219. }
  220. @Test
  221. public void test() throws IOException, JpegProcessingException {
  222. photoService.queryPhoto("F:\\1871\\1871\\方阵13-16巡检任务0224-2023-02-26-15-18-25-DJI_20230226144258_0005_THRM.jpg");
  223. }
  224. /**
  225. * 测试重合面积
  226. **/
  227. @Test
  228. public void CongHe() throws IOException, JpegProcessingException {
  229. List<Location> location1 = LocationConstant.PZLocation.get("FZ01");
  230. // 获取图片中的信息
  231. PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage("F:\\1871\\1871\\方阵13-16巡检任务0224-2023-02-26-15-18-25-DJI_20230226144258_0005_THRM.jpg");
  232. // 根据图片信息,获取图片四个角的经纬度,判断图片在哪个光伏区
  233. List<Location> degrees = PhotoUtils.getDegrees(photoMessage);
  234. List<Location> locations = LocationConstant.PVLocation.get("01").get("01HL09-3 01HL09-4");
  235. double v = GisCheckUtils.CoincidentArea(location1, degrees);
  236. double v1 = GisCheckUtils.CoincidentArea(locations, degrees);
  237. System.out.println(v);
  238. System.out.println(v1);
  239. }
  240. /**
  241. * 测试计算多边形面积
  242. **/
  243. @Test
  244. public void MianJi(){
  245. // 球面积计算公式
  246. // List<Location> pointList = LocationConstant.PZLocation.get("FZ01");
  247. // double v = GisCheckUtils.calculatePolygonArea(pointList);
  248. // // 970.2378908613696
  249. // // 722337.9547839954
  250. // System.out.println(v);
  251. }
  252. @Test
  253. public void MJ2(){
  254. List<Location> locations = LocationConstant.PVLocation.get("01").get("01HL09-3 01HL09-4");
  255. List<Location> sortLocation = GisCheckUtils.sortLocation(locations);
  256. System.out.println(sortLocation);
  257. // h
  258. double lat0 = sortLocation.get(0).getLat();
  259. double lat1 = sortLocation.get(1).getLat();
  260. double latH = lat0-lat1;
  261. BigDecimal meterH = new BigDecimal(latH).divide(new BigDecimal(0.00000899), 10, BigDecimal.ROUND_HALF_UP);
  262. // 4.6251901441m
  263. // w
  264. double lon1 = sortLocation.get(1).getLon();
  265. double lon2 = sortLocation.get(2).getLon();
  266. double lonW = lon1-lon2;
  267. BigDecimal meterW = new BigDecimal(lonW).divide(new BigDecimal(0.00001141), 10, BigDecimal.ROUND_HALF_UP);
  268. // 29.3227901828
  269. //s
  270. BigDecimal multiply = meterH.multiply(meterW);
  271. System.out.println(multiply);
  272. // 135.62348015099879734148
  273. }
  274. /**
  275. * 地球半径(米)
  276. * 6371000.0 ~ 6371009.0
  277. */
  278. private static double earthRadiusMeters = 6371006.0;
  279. /**
  280. * 米每度
  281. */
  282. private static double metersPerDegree = 2.0 * Math.PI * earthRadiusMeters / 360.0;
  283. /**
  284. * 弧度每度
  285. */
  286. private static double radiansPerDegree = Math.PI / 180.0;
  287. @Test
  288. public void MJ3() throws IOException, JpegProcessingException {
  289. // List<Location> pointList = LocationConstant.PVLocation.get("01").get("01HL09-3 01HL09-4");
  290. File file = ResourceUtils.getFile("classpath:1114_THRM.JPG");
  291. // 获取图片中的信息
  292. PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage(file.getPath());
  293. // 根据图片信息,获取图片四个角的经纬度,判断图片在哪个光伏区
  294. // List<Location> pointLs = PhotoUtils.getDegrees(photoMessage);
  295. List<Location> pointLs = LocationConstant.PZLocation.get("FZ01");
  296. List<Location> pointList = GisCheckUtils.sortLocation(pointLs);
  297. // 145.57421875
  298. // 34100.140625
  299. // 1295.87890625
  300. double v = GisCheckUtils.planarPolygonAreaMeters(pointList);
  301. System.out.println(v);
  302. }
  303. @Test
  304. public void MJ4(){
  305. System.out.println(System.getProperty("file.encoding"));
  306. System.out.println(Charset.defaultCharset());
  307. }
  308. /**
  309. * 根据图片中的某个坐标求解出对应的经纬度坐标
  310. **/
  311. @Test
  312. public void testPhoto() throws IOException, JpegProcessingException {
  313. // 获取图片中的信息
  314. PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage("F:\\1871\\1871\\方阵13-16巡检任务0224-2023-02-26-15-21-02-DJI_20230226144408_0040_THRM.jpg");
  315. Location pointLocation = PhotoUtils.getPointLocation(569.0,409.0 , photoMessage);
  316. System.out.println(""+ pointLocation.toString());
  317. }
  318. @Test
  319. public void testMapper(){
  320. PvNameBo pvNameBo = new PvNameBo();
  321. pvNameBo.setPvName("04HL15-07");
  322. // pvNameBo.setStartIndex(2);
  323. // pvNameBo.setPageSize(15);
  324. List<PlanePhotoEntity> photoBo = planePhotoMapper.getPhotoBo(pvNameBo);
  325. System.out.println(photoBo.toString());
  326. }
  327. @Test
  328. public void testService(){
  329. PvNameBo pvNameBo = new PvNameBo();
  330. pvNameBo.setPvName("04HL15-07 ");
  331. pvNameBo.setStartIndex(1);
  332. pvNameBo.setPageSize(15);
  333. PhotoResultVo photoMsg = photoService.getPhotoMsg(pvNameBo);
  334. System.out.println(photoMsg.toString());
  335. }
  336. @Test
  337. public void testResultMapper(){
  338. List<PhotoResultEntity> photoResultEntities = photoResultMapper.queryResultByPhotoId(1630493587477725184L);
  339. System.out.println(photoResultEntities);
  340. }
  341. @Test
  342. public void testBo(){
  343. Map<String, List<Location>> fz01 = LocationConstant.PVLocation.get("FZ01");
  344. System.out.println(fz01.toString());
  345. }
  346. @Test
  347. public void testMonth(){
  348. DateBo dateBo = new DateBo();
  349. try {
  350. dateBo = Utils.getMonthDay();
  351. } catch (ParseException e) {
  352. e.printStackTrace();
  353. }
  354. System.out.println(dateBo.toString());
  355. }
  356. @Test
  357. public void testRecordIdNum() throws ParseException {
  358. Integer recordIdNum = planePhotoService.getTotalSortie();
  359. System.out.println(recordIdNum);
  360. }
  361. @Test
  362. public void testEff() throws ParseException {
  363. Integer effectiveSortie = planePhotoService.getEffectiveSortie();
  364. System.out.println(effectiveSortie);
  365. }
  366. @Test
  367. public void testDate() throws ParseException {
  368. Integer effectiveInspectionDate = planePhotoService.getEffectiveInspectionDate();
  369. System.out.println(effectiveInspectionDate);
  370. }
  371. @Test
  372. public void testMapper2(){
  373. List<PhotoResultEntity> photoResultEntities = photoResultMapper.queryFltPVString(1889, "covered");
  374. int size = photoResultEntities.size();
  375. System.out.println(size);
  376. }
  377. @Test
  378. public void testMapper3(){
  379. List<PlanePhotoEntity> photoEntityList = planePhotoMapper.queryNewRecordByMission(2420);
  380. System.out.println(photoEntityList);
  381. // 499
  382. }
  383. @Test
  384. public void testgetHour(){
  385. List<PlaneInspectionResultBo> planeInspectionResultBos = photoResultService.listInspectionResult();
  386. System.out.println(planeInspectionResultBos);
  387. }
  388. /*@Test
  389. public void testFile(){
  390. String url = "F:/photo" + "/nest/photo/2420/1887/方阵13-16巡检任务0224-2023-03-04-11-04-02-DJI_20230304103720_0025_Z.JPG";
  391. String s = reportService.pic2Base64FromPath(url);
  392. System.out.println(s);
  393. }*/
  394. }