123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- package com.keystar.plane.inspection;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.drew.imaging.jpeg.JpegProcessingException;
- import com.fasterxml.jackson.core.JsonProcessingException;
- import com.jcraft.jsch.JSchException;
- import com.jcraft.jsch.SftpException;
- import com.keystar.plane.inspection.bo.*;
- //import com.keystar.plane.inspection.config.MinIoConfig;
- import com.keystar.plane.inspection.constant.LocationConstant;
- import com.keystar.plane.inspection.constant.MissionConstant;
- import com.keystar.plane.inspection.dao.DegreesVo;
- import com.keystar.plane.inspection.dao.PhotoMessageVo;
- import com.keystar.plane.inspection.dao.PhotoResultVo;
- import com.keystar.plane.inspection.dao.PlanePhotoVo;
- import com.keystar.plane.inspection.entity.PhotoResultEntity;
- import com.keystar.plane.inspection.entity.PlanePhotoEntity;
- import com.keystar.plane.inspection.mapper.PhotoResultMapper;
- import com.keystar.plane.inspection.mapper.PlanePhotoMapper;
- import com.keystar.plane.inspection.mqtt.PlaneMqttHandler;
- import com.keystar.plane.inspection.service.*;
- import com.keystar.plane.inspection.service.impl.MinioService;
- import com.keystar.plane.inspection.service.impl.ReportServiceImpl;
- import com.keystar.plane.inspection.utils.*;
- import io.minio.messages.Item;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- import org.springframework.util.ResourceUtils;
- import java.io.File;
- import java.io.FileNotFoundException;
- import java.io.IOException;
- import java.math.BigDecimal;
- import java.nio.charset.Charset;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.*;
- import java.util.stream.Collectors;
- @SpringBootTest
- class PlaneInspectionApplicationTests {
- @Autowired
- PhotoService photoService;
- @Autowired
- MqttService mqttService;
- @Autowired
- MinioService minioService;
- @Autowired
- PlanePhotoMapper planePhotoMapper;
- @Autowired
- PhotoResultMapper photoResultMapper;
- @Autowired
- TangyangDataService tangyangDataService;
- @Autowired
- PhotoResultService photoResultService;
- @Autowired
- private IReportService reportService;
- // @Autowired
- // MinIoConfig minIoConfig;
- @Autowired
- NestService nestService;
- @Autowired
- PlanePhotoService planePhotoService;
- //
- // @Test
- // void contextLoads() {
- // }
- // @Test
- // public void test() throws IOException, JpegProcessingException {
- // PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage();
- // System.out.println(photoMessage.toString());
- // }
- //
- // @Test
- // public void test1() throws IOException, JpegProcessingException {
- // PhotoUtils.getPhotoGps();
- // }
- //
- // @Test
- // public void test3() throws Exception {
- //
- // String encrypt = Utils.encrypt("Keystar@2022", "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCDrKWklonbo4ZFgwLgE63wt+sHiB4Uq0Tl6V6g2Aoj5IPRd4TL8mJlMkaJu/c3G212jhjbUjYkWn5HOnrUwrVN1q+mJGGUCED6ruTNMiAc1Oe5gbLwGIeyk4IMuZFUVwq7XdTgVfFo9cVRAM8jIWftJrCm63ZrqqU/AdBoU4FSTQIDAQAB");
- // System.out.println(encrypt);
- // }
- //
- @Test
- public void testLogin() throws Exception {
- String s = PlaneMqttHandler.planeLogin();
- System.out.println(s);
- }
- //
- // @Test
- // public void testGetPhoto() throws Exception {
- // PlanePhotoVo planePhoto = PlaneMqttHandler.getPlanePhoto();
- // System.out.println(planePhoto);
- // }
- //
- // @Test
- // public void test4(){
- // String test = "640 pixels";
- // String[] s = test.split(" ");
- // System.out.println(s[0]);
- // }
- //
- // @Test
- // public void test5() throws IOException, JpegProcessingException {
- // // 获取图片的信息
- // PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage();
- // List<Location> locations = PhotoUtils.getDegrees(photoMessage);
- // System.out.println(locations.toString());
- // }
- //
- // @Test
- // public void test6() throws IOException {
- // String pvJson = FileUtils.getPVJson();
- // System.out.println(pvJson);
- // }
- //
- // @Test
- // public void test7() throws IOException {
- // String pvJson = FileUtils.getPVJson();
- //
- // Map<String, List> stringListMap = FileUtils.jsonTransData(pvJson);
- // System.out.println(stringListMap.toString());
- // }
- //
- // @Test
- // public void test8(){
- // FileUtil.ReadFileByIO("F:\\tangyangWrj\\plane-inspection\\target\\classes\\pv.json");
- //
- // }
- //
- // @Test
- // public void test9(){
- // String nestStatus = nestService.getNestStatus();
- // System.out.println(nestStatus);
- // }
- @Test
- public void test10() throws FileNotFoundException {
- File file = ResourceUtils.getFile("classpath:border.json");
- FileUtil.readFZLatLng(file.getPath());
- System.out.println("");
- }
- @Test
- public void test11(){
- List<Location> locations = LocationConstant.PZLocation.get("01");
- Location location = locations.get(1);
- System.out.println(location.toString());
- }
- // @Test
- // public void test12() throws IOException, JpegProcessingException {
- // photoService.queryPhoto();
- // }
- //
- // @Test
- // public void testMqtt() throws JsonProcessingException {
- // mqttService.sendMqtt();
- // }
- @Test
- public void getNewFile(){
- List<Item> nest = minioService.listObject("nest");
- System.out.println(nest.toString());
- }
- // @Test
- // public void getNewFile2(){
- // List<String> infraredPhoto = minioService.getInfraredPhoto();
- //
- // System.out.println(infraredPhoto.toString());
- // }
- @Test
- public void getFtpFile(){
- FtpUtils.getFtpFile();
- }
- @Test
- public void ssh() throws JSchException, SftpException {
- SSHUtils.connect("root", "keystar", "10.138.6.221", 22);
- SSHUtils.execCmd("cd /data/minio/data/nest/autoUpload/photo/");
- SSHUtils.execCmd("ls -ltr");
- String lsDirectory = "/data/minio/data/nest/autoUpload/photo/";
- SSHUtils.listFiles(lsDirectory);
- SSHUtils.close();
- }
- @Test
- public void testSSH(){
- // 连接到指定的服务器
- try {
- // 1、首先远程连接ssh
- SSHRemoteCall.getInstance().sshRemoteCallLogin("10.138.6.221", "root", "keystar");
- String command = "ls -lt /data/minio/data/nest/autoUpload/photo/";
- SSHRemoteCall.getInstance().execCommand(command);
- // 7、关闭连接
- SSHRemoteCall.getInstance().closeSession();
- } catch (Exception e) {
- // 打印错误信息
- System.err.println("远程连接失败......");
- e.printStackTrace();
- }
- }
- // @Test
- // public void getNew(){
- // List<String> newPhoto = FileUtil.getNewPhoto();
- // System.out.println(newPhoto.toString());
- //
- // }
- @Test
- public void sendMqtt() throws JsonProcessingException {
- mqttService.sendPhotoFile("/nest/autoUpload/photo/2422/1111/", "0");
- }
- @Test
- public void insert(){
- PlanePhotoEntity planePhotoEntity = new PlanePhotoEntity();
- planePhotoEntity.setId(1L);
- planePhotoEntity.setMissionId(1);
- planePhotoEntity.setRecordId(1);
- planePhotoEntity.setInfraredImagePath("123/123");
- planePhotoEntity.setPvName("pvName");
- planePhotoEntity.setPzName("pzName");
- planePhotoEntity.setTime(new Date());
- boolean save = planePhotoService.save(planePhotoEntity);
- System.out.println(save);
- }
- @Test
- public void test() throws IOException, JpegProcessingException {
- photoService.queryPhoto("F:\\1871\\1871\\方阵13-16巡检任务0224-2023-02-26-15-18-25-DJI_20230226144258_0005_THRM.jpg");
- }
- /**
- * 测试重合面积
- **/
- @Test
- public void CongHe() throws IOException, JpegProcessingException {
- List<Location> location1 = LocationConstant.PZLocation.get("FZ01");
- // 获取图片中的信息
- PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage("F:\\1871\\1871\\方阵13-16巡检任务0224-2023-02-26-15-18-25-DJI_20230226144258_0005_THRM.jpg");
- // 根据图片信息,获取图片四个角的经纬度,判断图片在哪个光伏区
- List<Location> degrees = PhotoUtils.getDegrees(photoMessage);
- List<Location> locations = LocationConstant.PVLocation.get("01").get("01HL09-3 01HL09-4");
- double v = GisCheckUtils.CoincidentArea(location1, degrees);
- double v1 = GisCheckUtils.CoincidentArea(locations, degrees);
- System.out.println(v);
- System.out.println(v1);
- }
- /**
- * 测试计算多边形面积
- **/
- @Test
- public void MianJi(){
- // 球面积计算公式
- // List<Location> pointList = LocationConstant.PZLocation.get("FZ01");
- // double v = GisCheckUtils.calculatePolygonArea(pointList);
- // // 970.2378908613696
- // // 722337.9547839954
- // System.out.println(v);
- }
- @Test
- public void MJ2(){
- List<Location> locations = LocationConstant.PVLocation.get("01").get("01HL09-3 01HL09-4");
- List<Location> sortLocation = GisCheckUtils.sortLocation(locations);
- System.out.println(sortLocation);
- // h
- double lat0 = sortLocation.get(0).getLat();
- double lat1 = sortLocation.get(1).getLat();
- double latH = lat0-lat1;
- BigDecimal meterH = new BigDecimal(latH).divide(new BigDecimal(0.00000899), 10, BigDecimal.ROUND_HALF_UP);
- // 4.6251901441m
- // w
- double lon1 = sortLocation.get(1).getLon();
- double lon2 = sortLocation.get(2).getLon();
- double lonW = lon1-lon2;
- BigDecimal meterW = new BigDecimal(lonW).divide(new BigDecimal(0.00001141), 10, BigDecimal.ROUND_HALF_UP);
- // 29.3227901828
- //s
- BigDecimal multiply = meterH.multiply(meterW);
- System.out.println(multiply);
- // 135.62348015099879734148
- }
- /**
- * 地球半径(米)
- * 6371000.0 ~ 6371009.0
- */
- private static double earthRadiusMeters = 6371006.0;
- /**
- * 米每度
- */
- private static double metersPerDegree = 2.0 * Math.PI * earthRadiusMeters / 360.0;
- /**
- * 弧度每度
- */
- private static double radiansPerDegree = Math.PI / 180.0;
- @Test
- public void MJ3() throws IOException, JpegProcessingException {
- // List<Location> pointList = LocationConstant.PVLocation.get("01").get("01HL09-3 01HL09-4");
- File file = ResourceUtils.getFile("classpath:1114_THRM.JPG");
- // 获取图片中的信息
- PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage(file.getPath());
- // 根据图片信息,获取图片四个角的经纬度,判断图片在哪个光伏区
- // List<Location> pointLs = PhotoUtils.getDegrees(photoMessage);
- List<Location> pointLs = LocationConstant.PZLocation.get("FZ01");
- List<Location> pointList = GisCheckUtils.sortLocation(pointLs);
- // 145.57421875
- // 34100.140625
- // 1295.87890625
- double v = GisCheckUtils.planarPolygonAreaMeters(pointList);
- System.out.println(v);
- }
- @Test
- public void MJ4(){
- System.out.println(System.getProperty("file.encoding"));
- System.out.println(Charset.defaultCharset());
- }
- /**
- * 根据图片中的某个坐标求解出对应的经纬度坐标
- **/
- @Test
- public void testPhoto() throws IOException, JpegProcessingException {
- // 获取图片中的信息
- PhotoMessageVo photoMessage = PhotoUtils.getPhotoMessage("F:\\1871\\1871\\方阵13-16巡检任务0224-2023-02-26-15-21-02-DJI_20230226144408_0040_THRM.jpg");
- Location pointLocation = PhotoUtils.getPointLocation(569.0,409.0 , photoMessage);
- System.out.println(""+ pointLocation.toString());
- }
- @Test
- public void testMapper(){
- PvNameBo pvNameBo = new PvNameBo();
- pvNameBo.setPvName("04HL15-07");
- // pvNameBo.setStartIndex(2);
- // pvNameBo.setPageSize(15);
- List<PlanePhotoEntity> photoBo = planePhotoMapper.getPhotoBo(pvNameBo);
- System.out.println(photoBo.toString());
- }
- @Test
- public void testService(){
- PvNameBo pvNameBo = new PvNameBo();
- pvNameBo.setPvName("04HL15-07 ");
- pvNameBo.setStartIndex(1);
- pvNameBo.setPageSize(15);
- PhotoResultVo photoMsg = photoService.getPhotoMsg(pvNameBo);
- System.out.println(photoMsg.toString());
- }
- @Test
- public void testResultMapper(){
- List<PhotoResultEntity> photoResultEntities = photoResultMapper.queryResultByPhotoId(1630493587477725184L);
- System.out.println(photoResultEntities);
- }
- @Test
- public void testBo(){
- Map<String, List<Location>> fz01 = LocationConstant.PVLocation.get("FZ01");
- System.out.println(fz01.toString());
- }
- @Test
- public void testMonth(){
- DateBo dateBo = new DateBo();
- try {
- dateBo = Utils.getMonthDay();
- } catch (ParseException e) {
- e.printStackTrace();
- }
- System.out.println(dateBo.toString());
- }
- @Test
- public void testRecordIdNum() throws ParseException {
- Integer recordIdNum = planePhotoService.getTotalSortie();
- System.out.println(recordIdNum);
- }
- @Test
- public void testEff() throws ParseException {
- Integer effectiveSortie = planePhotoService.getEffectiveSortie();
- System.out.println(effectiveSortie);
- }
- @Test
- public void testDate() throws ParseException {
- Integer effectiveInspectionDate = planePhotoService.getEffectiveInspectionDate();
- System.out.println(effectiveInspectionDate);
- }
- @Test
- public void testMapper2(){
- List<PhotoResultEntity> photoResultEntities = photoResultMapper.queryFltPVString(1889, "covered");
- int size = photoResultEntities.size();
- System.out.println(size);
- }
- @Test
- public void testMapper3(){
- List<PlanePhotoEntity> photoEntityList = planePhotoMapper.queryNewRecordByMission(2420);
- System.out.println(photoEntityList);
- // 499
- }
- @Test
- public void testgetHour(){
- List<PlaneInspectionResultBo> planeInspectionResultBos = photoResultService.listInspectionResult();
- System.out.println(planeInspectionResultBos);
- }
- /*@Test
- public void testFile(){
- String url = "F:/photo" + "/nest/photo/2420/1887/方阵13-16巡检任务0224-2023-03-04-11-04-02-DJI_20230304103720_0025_Z.JPG";
- String s = reportService.pic2Base64FromPath(url);
- System.out.println(s);
- }*/
- }
|