From 440888a8ae5f0a6df4eba6710f096327d4d78c9c Mon Sep 17 00:00:00 2001
From: 张洋洋 <10611411+yang-yang-z@user.noreply.gitee.com>
Date: 星期四, 23 一月 2025 16:33:53 +0800
Subject: [PATCH] [add]cityjson转sem

---
 src/main/java/com/se/simu/controller/SimuController.java |  503 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 482 insertions(+), 21 deletions(-)

diff --git a/src/main/java/com/se/simu/controller/SimuController.java b/src/main/java/com/se/simu/controller/SimuController.java
index 60fdd44..58bdf74 100644
--- a/src/main/java/com/se/simu/controller/SimuController.java
+++ b/src/main/java/com/se/simu/controller/SimuController.java
@@ -1,21 +1,31 @@
 package com.se.simu.controller;
 
-import com.se.simu.domain.vo.CreateSimuVo;
-import com.se.simu.domain.vo.R;
-import com.se.simu.service.GedbService;
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.google.common.io.Resources;
+import com.se.simu.config.PropertiesConfig;
+import com.se.simu.domain.dto.GeDb;
+import com.se.simu.domain.dto.GeLayer;
+import com.se.simu.domain.po.DataPo;
+import com.se.simu.domain.po.SimuPo;
+import com.se.simu.domain.vo.*;
+import com.se.simu.service.*;
+import com.se.simu.utils.*;
 import io.swagger.annotations.*;
 import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.lang3.StringUtils;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.core.io.ClassPathResource;
 import org.springframework.web.bind.annotation.*;
 
 import javax.annotation.Resource;
-import java.util.List;
+import java.io.*;
+import java.net.URL;
+import java.nio.charset.StandardCharsets;
+import java.util.*;
+import java.util.stream.Collectors;
 
-/**
- * 浠跨湡绠$悊
- *
- * @author WWW
- * @date   2024-09-18
- */
 @Api(tags = "浠跨湡绠$悊")
 @Slf4j
 @RestController
@@ -23,18 +33,82 @@
 @SuppressWarnings("ALL")
 public class SimuController extends BaseController {
     @Resource
+    UwService uwService;
+
+    @Resource
     GedbService gedbService;
+
+    @Resource
+    SimuService simuService;
+
+    @Resource
+    SimuFilesService simuFilesService;
+
+    @Resource
+    PropertiesConfig config;
+
+    @Value("${simu-app.filePath}")
+    private String uploadedFolder;
+
+    @Value("${config.outPath}")
+    private String outPath;
+
+
+    @Resource
+    ResultService resultService;
+
+    private final List<String> FLOOD_TYPE = new ArrayList<>(Arrays.asList("娌欒", "闃叉按鏉�"));
 
     @ApiOperation(value = "鍒涘缓")
     @PostMapping(value = "/create", produces = "application/json; charset=UTF-8")
     public R<Object> create(@RequestBody @ApiParam("鍒涘缓浠跨湡瑙嗗浘绫�") CreateSimuVo vo) {
         try {
-            // 469538.6536261877,4416744.922022615,469853.14714664617,4417049.378602433
-            String bbox = "116.64388473935195,39.884315914604464,116.64754729082588,39.887069143903496";
-            String taskName = "20240913";
-            Object rs = gedbService.test(bbox, taskName);
+            if (null == vo.getTotal() || vo.getTotal() < 1 || vo.getTotal() > 1000) {
+                return fail("闄嶉洦閲忎笉鑳戒负绌猴紝涓斿彇鍊煎湪1~1000涔嬮棿");
+            }
+            if (null == vo.getDuration() || vo.getDuration() < 1 || vo.getDuration() > 10080) {
+                return fail("浠跨湡鏃堕暱涓嶈兘涓虹┖锛屼笖鍙栧�煎湪1~10080涔嬮棿");
+            }
+            if (null == vo.getMinx() || null == vo.getMiny() || null == vo.getMaxx() || null == vo.getMaxy()) {
+                return fail("閫夋嫨鑼冨洿涓嶈兘涓虹┖", false);
+            }
+            if (null == vo.getPid() || vo.getPid() < 0) {
+                vo.setPid(0);
+            }
+            if (null == vo.getNum() || vo.getNum() < 1) {
+                vo.setNum(simuService.getMaxId() + 1);
+            }
+            if (null == vo.getPid() || vo.getPid() < 0) {
+                vo.setPid(0);
+            }
+            if (null == vo.getStartTime()) {
+                vo.setStartTime(new Date());
+            }
+            if (vo.getPid() > 0) {
+                SimuPo pp = simuService.getSimuByPid(vo.getPid());
+                if (null == pp) {
+                    return fail("pid涓嶅瓨鍦�");
+                }
+                if (null == vo.getFloodStart() || vo.getFloodStart() < 1 || vo.getFloodStart() > vo.getDuration() * 60) {
+                    return fail("闃叉睕寮�濮嬫椂闂翠笉鑳戒负绌猴紝涓斿彇鍊煎湪1~" + (vo.getDuration() * 60) + "涔嬮棿");
+                }
+                if (null == vo.getFloodEnd() || vo.getFloodEnd() < vo.getFloodStart() || vo.getFloodEnd() > vo.getDuration() * 60) {
+                    return fail("闃叉睕缁撴潫鏃堕棿涓嶈兘涓虹┖锛屼笖鍙栧�煎湪" + vo.getFloodStart() + "~" + (vo.getDuration() * 60) + "涔嬮棿");
+                }
+                if (null == vo.getFloodHeight() || vo.getFloodHeight() < 1 || vo.getFloodHeight() > 2000) {
+                    return fail("闃叉睕楂樺害涓嶈兘涓虹┖锛屼笖鍙栧�煎湪1~2000涔嬮棿");
+                }
+                if (!FLOOD_TYPE.contains(vo.getFloodType())) {
+                    return fail("闃叉睕绫诲瀷涓嶈兘涓虹┖锛屼笖鍙兘鏄矙琚嬪拰闃叉按鏉�");
+                }
+                if (null == vo.getFloodMinx() || null == vo.getFloodMiny() || null == vo.getFloodMaxx() || null == vo.getFloodMaxy()) {
+                    return fail("闃叉睕鑼冨洿涓嶈兘涓虹┖", false);
+                }
+            }
 
-            return success(rs);
+            boolean flag = simuService.create(vo);
+
+            return success(flag, flag ? "鎴愬姛" : "澶辫触");
         } catch (Exception ex) {
             return fail(ex, null);
         }
@@ -42,14 +116,18 @@
 
     @ApiOperation(value = "鍒犻櫎")
     @ApiImplicitParams({
-            @ApiImplicitParam(name = "ids", value = "浠诲姟ID", dataType = "Integer", paramType = "query", allowMultiple = true, example = "2")
+            @ApiImplicitParam(name = "ids", value = "ID", dataType = "Integer", paramType = "query", allowMultiple = true, example = "0")
     })
     @GetMapping(value = "/del")
     public R<Object> del(@RequestParam List<Integer> ids) {
         try {
-            //
+            if (ids == null || ids.isEmpty()) {
+                return fail("鏃ュ織ID涓嶈兘涓虹┖", null);
+            }
 
-            return success(0);
+            int count = simuService.del(ids);
+
+            return success(count);
         } catch (Exception ex) {
             return fail(ex, null);
         }
@@ -57,13 +135,396 @@
 
     @ApiOperation(value = "鑾峰彇")
     @GetMapping("/get")
-    public R<Object> get(@ApiParam("浠诲姟瑙嗗浘绫�") Object vo) {
+    public R<Object> get(@ApiParam("浠跨湡瑙嗗浘绫�") SimuVo vo) {
         try {
-            //
+            if (null == vo) {
+                vo = new SimuVo();
+            }
+            if (null == vo.getPageSize() || vo.getPageSize() < 1) {
+                vo.setPageSize(10);
+            }
+            if (null == vo.getPageIndex() || vo.getPageIndex() < 1) {
+                vo.setPageIndex(1);
+            }
 
-            return success(null, 0);
+            IPage<SimuPo> paged = simuService.get(vo);
+            if (null == paged) {
+                return success(null, 0);
+            }
+
+            return success(paged.getRecords(), paged.getTotal());
         } catch (Exception ex) {
             return fail(ex, null);
         }
     }
+
+    @ApiOperation(value = "闄嶆按鑼冨洿鏍¢獙")
+    @GetMapping("/rangeVerify")
+    public R<Object> rangeVerify(@RequestParam @ApiParam("鏈�灏廥") double minx,
+                                 @RequestParam @ApiParam("鏈�灏弝") double miny,
+                                 @RequestParam @ApiParam("鏈�澶") double maxx,
+                                 @RequestParam @ApiParam("鏈�澶") double maxy) {
+        try {
+            DataPo data = new DataPo();
+            data.setMinx(minx);
+            data.setMiny(miny);
+            data.setMaxx(maxx);
+            data.setMaxy(maxy);
+            data.setEpsg(4326);
+
+            String token = gedbService.getToken();
+            GeDb db = gedbService.connectGedb(token, data);
+            List<GeLayer> layers = gedbService.getLayers(token, db);
+            boolean result = gedbService.queryBboxCount(token, db, layers);
+            log.info("result = " + result);
+            return success(result);
+
+            //  return success(gedbService.queryBboxCount(token, db, layers));
+        } catch (Exception ex) {
+            return fail(ex, false);
+        }
+    }
+
+    /**
+     * 鏂囦欢鍒涘缓妯℃嫙
+     * <p>
+     * "鐘舵�侊細
+     * 0-鍒涘缓浠跨湡浠诲姟锛�
+     * 1-杩炴帴GEDB搴擄紝
+     * 2-涓嬭浇绌洪棿鏁版嵁锛�
+     * 3-涓嬭浇楂樼▼鏁版嵁锛�
+     * 4-鐢熸垚闄嶉洦鏂囦欢锛�
+     * 5-鐢熸垚閰嶇疆鏂囦欢锛�
+     * 6-妯℃嫙鍐呮稘浠跨湡锛�
+     * 7-澶勭悊姘翠綅鏂囦欢锛�
+     * 8-澶勭悊鎺掓按鏂囦欢锛�
+     * 9-澶勭悊浠跨湡缁撴灉锛�
+     * 10-瀹屾垚锛�-10-鍑洪敊
+     *
+     * @param vo VO
+     * @return {@link R}<{@link Object}>
+     */
+    @ApiOperation(value = "鏂囦欢鍒涘缓")
+    @PostMapping(value = "/file_create", produces = "application/json; charset=UTF-8")
+    public R<Object> fileCreate(@RequestBody @ApiParam("鍒涘缓浠跨湡瑙嗗浘绫�") CreateFilesSimuVo vo) throws IOException {
+        // 鑾峰彇涓婁紶鏂囦欢璺緞
+        String targetDir = uploadedFolder;
+        log.info("涓婁紶鏂囦欢璺緞锛歿}", targetDir);
+        // 鑾峰彇鍚勪釜鏂囦欢鐨勫湴鍧�
+        String floodFile = vo.getFloodFile();
+        log.info("鑼冨洿鏂囦欢鍦板潃锛歿}", floodFile);
+        try {
+            // 鍒ゆ柇鏄惁缁樺埗鍖哄煙
+            if (!StringUtils.isEmpty(vo.getMaxx().toString()) && !Objects.isNull(vo.getMaxx())) {
+                rangeVerify(vo.getMinx(), vo.getMaxx(), vo.getMiny(), vo.getMaxy());
+                log.info("缁樺埗鍖哄煙鑼冨洿楠岃瘉閫氳繃!");
+            } else
+                // 鍒ゆ柇鍦板潃涓嶄负绌�
+                if (StringUtils.isEmpty(floodFile)) {
+                    return fail("鑼冨洿鏂囦欢鍦板潃涓嶈兘涓虹┖", false);
+                } else {
+                    // 鑾峰彇鏂囦欢鐨勫悗缂�鍚�
+                    String fileName = floodFile.substring(floodFile.lastIndexOf("."));
+                    // 鍒ゆ柇鍚庣紑鍚嶆槸鍚︿负.shp
+                    if (!fileName.equalsIgnoreCase(".shp")) {
+                        return fail("鑼冨洿鏂囦欢鏍煎紡涓嶆纭�", false);
+                    } else {
+                        // 1 璇诲彇shp鏂囦欢锛岃幏鍙栬寖鍥村��
+                        JSONObject jsonObject = ShpToolUtils.readShp(floodFile);
+                        // 2 鑾峰彇jsonObject涓殑鑼冨洿鍊�
+                        Double minX = jsonObject.getDouble("minY");
+                        Double maxX = jsonObject.getDouble("maxY");
+                        Double minY = jsonObject.getDouble("minX");
+                        Double maxY = jsonObject.getDouble("maxX");
+                        // 3 鍒ゆ柇鑼冨洿鍊兼槸鍚︿负绌�
+                        // vo.setMinx(jsonObject.getDouble("minX"));
+                        // vo.setMaxx(jsonObject.getDouble("maxX"));
+                        // vo.setMiny(jsonObject.getDouble("minY"));
+                        // vo.setMaxy(jsonObject.getDouble("maxY"));
+                        vo.setMinx(jsonObject.getDouble("minY"));
+                        vo.setMaxx(jsonObject.getDouble("maxY"));
+                        vo.setMiny(jsonObject.getDouble("minX"));
+                        vo.setMaxy(jsonObject.getDouble("maxX"));
+                        rangeVerify(minX, maxX, minY, maxY);
+                    }
+                }
+            // todo: 瑙f瀽鑼冨洿鏂囦欢 鏍规嵁涓嶅悓鐨勭殑鏍煎紡鏂囦欢杩涜涓嶅悓鐨勮В鏋愶紝鑾峰彇闇�瑕佽绠楃殑鑼冨洿鍊�
+            //  涓婁紶鏍煎紡锛�.shp/.tiff/.img/.geojson
+            //  閲嶆柊缁檝o璧嬪��
+        } catch (Exception e) {
+            log.error("瑙f瀽鑼冨洿鏂囦欢澶辫触");
+            if (null == vo.getMinx() || null == vo.getMiny() || null == vo.getMaxx() || null == vo.getMaxy()) {
+                return fail("瑙f瀽鑼冨洿鏂囦欢澶辫触锛侀�夋嫨鑼冨洿涓嶈兘涓虹┖锛岃閲嶆柊閫夋嫨鏂囦欢锛�", false);
+            }
+        }
+        JSONArray jsonArray = new JSONArray();
+        String stationFile = vo.getStationFile();
+        log.info("绔欑偣鏂囦欢shp鍦板潃锛歿}", stationFile);
+        try {
+            // 鍒ゆ柇鍦板潃涓嶄负绌�
+            if (StringUtils.isEmpty(stationFile)) {
+                return fail("绔欑偣鏂囦欢shp鍦板潃涓嶈兘涓虹┖", false);
+            }
+            // 1 璇诲彇shp鏂囦欢锛岃幏鍙栫珯鐐瑰潗鏍囧��
+            jsonArray = ShpToolUtils.readShpGetLocal(stationFile);
+            System.out.println("jsonArray = " + jsonArray);
+        } catch (Exception e) {
+            log.error("瑙f瀽绔欑偣鏂囦欢shp澶辫触");
+        }
+
+        String stationRainFile = vo.getStationRainFile();
+        log.info("绔欑偣闆ㄩ噺CSV鏂囦欢鍦板潃锛歿}", floodFile);
+        JSONArray array = new JSONArray();
+        // 鍒涘缓琛ㄥ悕 鏃堕棿鎴�
+        String tableName = "station_rain_" + System.currentTimeMillis();
+        try {
+            // 鍒ゆ柇鍦板潃涓嶄负绌�
+            if (StringUtils.isEmpty(stationRainFile)) {
+                return fail("绔欑偣闆ㄩ噺CSV鏂囦欢鍦板潃涓嶈兘涓虹┖", false);
+            }
+            // 1 璇诲彇CSV 鏂囦欢
+            array = CsvToSQLiteUtils.readCsvSaveLocal(stationRainFile, tableName);
+            // 鑾峰彇浠跨湡鏃堕棿 duration
+            Integer duration = CsvToSQLiteUtils.getDuration(tableName);
+            log.info("浠跨湡鏃堕棿 duration = {}", duration);
+            vo.setDuration(duration);
+
+            // 鑾峰彇闄嶉洦鎬婚噺 total
+            Double total = CsvToSQLiteUtils.getTotal(tableName);
+            log.info("闄嶉洦鎬婚噺 total = {}", total);
+            vo.setTotal(total);
+
+        } catch (Exception e) {
+            log.error("瑙f瀽绔欑偣闆ㄩ噺CSV鏂囦欢澶辫触");
+        }
+        // TODO: 2024/12/24 鏍规嵁杩欎簺鏂囦欢鐨勫湴鍧�锛岃幏鍙栨枃浠跺唴瀹癸紝鍒涘缓浠跨湡瑙嗗浘
+        try {
+            if (null == vo.getDuration() || vo.getDuration() < 1 || vo.getDuration() > 10080) {
+                return fail("浠跨湡鏃堕暱涓嶈兘涓虹┖锛屼笖鍙栧�煎湪1~10080涔嬮棿");
+            }
+            if (null == vo.getPid() || vo.getPid() < 0) {
+                vo.setPid(0);
+            }
+            if (null == vo.getNum() || vo.getNum() < 1) {
+                vo.setNum(simuService.getMaxId() + 1);
+            }
+            if (null == vo.getStartTime()) {
+                vo.setStartTime(new Date());
+            }
+            // 闃叉睕浣滀笟
+            if (vo.getPid() > 0) {
+                SimuPo pp = simuService.getSimuByPid(vo.getPid());
+                if (null == pp) {
+                    return fail("pid涓嶅瓨鍦�");
+                }
+                if (null == vo.getFloodStart() || vo.getFloodStart() < 1 || vo.getFloodStart() > vo.getDuration() * 60) {
+                    return fail("闃叉睕寮�濮嬫椂闂翠笉鑳戒负绌猴紝涓斿彇鍊煎湪1~" + (vo.getDuration() * 60) + "涔嬮棿");
+                }
+                if (null == vo.getFloodEnd() || vo.getFloodEnd() < vo.getFloodStart() || vo.getFloodEnd() > vo.getDuration() * 60) {
+                    return fail("闃叉睕缁撴潫鏃堕棿涓嶈兘涓虹┖锛屼笖鍙栧�煎湪" + vo.getFloodStart() + "~" + (vo.getDuration() * 60) + "涔嬮棿");
+                }
+                if (null == vo.getFloodHeight() || vo.getFloodHeight() < 1 || vo.getFloodHeight() > 2000) {
+                    return fail("闃叉睕楂樺害涓嶈兘涓虹┖锛屼笖鍙栧�煎湪1~2000涔嬮棿");
+                }
+                if (!FLOOD_TYPE.contains(vo.getFloodType())) {
+                    return fail("闃叉睕绫诲瀷涓嶈兘涓虹┖锛屼笖鍙兘鏄矙琚嬪拰闃叉按鏉�");
+                }
+                if (null == vo.getFloodMinx() || null == vo.getFloodMiny() || null == vo.getFloodMaxx() || null == vo.getFloodMaxy()) {
+                    return fail("闃叉睕鑼冨洿涓嶈兘涓虹┖", false);
+                }
+            }
+            // 寮�濮嬫ā鎷熻绠�
+            boolean flag = simuFilesService.createByfiles(vo);
+            return success(flag, flag ? "鎴愬姛" : "澶辫触");
+        } catch (Exception ex) {
+            return fail(ex, null);
+        }
+    }
+
+    @ApiOperation(value = "tarr鏂囦欢缁勮")
+    @GetMapping(value = "/saveZarr", produces = "application/json; charset=UTF-8")
+    public R<String> saveZarr(@RequestParam("name") String tableName) throws Exception {
+        List<String> list = CsvToSQLiteUtils.getNameList(tableName);
+        String path = outPath + "\\";
+        String rainfall = "rainfall\\";
+        String basePath = path + tableName + "\\" + rainfall;
+        JSONObject jsonObject = getModule("rainfallmodule.json");
+        for (String src : list
+        ) {
+            File directories = new File(basePath);
+            if (!directories.exists()) {
+                directories.mkdirs();
+                System.out.println("Directories created successfully.");
+            } else {
+                System.out.println("Directories already exist.");
+            }
+            List<StationRainVo> stationRainVos = CsvToSQLiteUtils.getList(tableName, src);
+            ZarrUtils.saveZarrRainfall(basePath + src, stationRainVos);
+            ZarrUtils.saveZarrTime(basePath + src, stationRainVos);
+            ZipUtils.toZarr(basePath + src, basePath + src + ".zip");
+            System.out.println(src + "鐨剒arr鏁版嵁鐢熸垚=====================");
+            //json鎷艰
+            String uuid = "UUID_" + UUID.randomUUID().toString();
+            //鎷艰zarr
+            JSONObject dynamizer = new JSONObject();
+            dynamizer.put("url", rainfall.replace("\\", "/") + src + ".zarr");
+            dynamizer.put("gmlId", uuid);
+            jsonObject.getJSONArray("Dynamizers").add(dynamizer);
+            //鎷艰鍧愭爣
+            JSONArray vertice = new JSONArray();
+            vertice.add(stationRainVos.get(0).getLongitude());
+            vertice.add(stationRainVos.get(0).getLatitude());
+            vertice.add(0.0);
+            jsonObject.getJSONArray("vertices").add(vertice);
+            //鎷艰鍩虹淇℃伅
+            JSONObject cityObject = new JSONObject();
+            cityObject.put("type", "+Rainfall");
+            JSONObject attribute = new JSONObject();
+            attribute.put("name", src);
+            cityObject.put("attributes", attribute);
+            JSONArray geometry = new JSONArray();
+            JSONObject metry = new JSONObject();
+            metry.put("type", "MultiPoint");
+            metry.put("lod", 0);
+            JSONArray boundarie = new JSONArray();
+            boundarie.add(jsonObject.getJSONArray("vertices").size()-1);
+            metry.put("boundaries", boundarie);
+            geometry.add(metry);
+            cityObject.put("geometry", geometry);
+            jsonObject.getJSONObject("CityObjects").put(uuid, cityObject);
+        }
+        File jsonFile = new File(path + tableName + "\\闄嶉洦閲�.json");
+        if (jsonFile.exists()) {
+            jsonFile.createNewFile();
+        }
+        FileWriter fileWriter = new FileWriter(path + tableName + "\\闄嶉洦閲�.json");
+        fileWriter.write(jsonObject.toJSONString());
+        fileWriter.close();
+        SemUtils.cityJsonToSem(path + tableName + "\\闄嶉洦閲�.json",path + tableName + "\\station_rain.sem");
+        return success(path + tableName + "\\station_rain.sem");
+    }
+
+    @ApiOperation(value = "绠$偣杞琧ityjson")
+    @GetMapping(value = "/pointToCityJson", produces = "application/json; charset=UTF-8")
+    public R<String> pointToCityJson(@RequestParam("shpPath") String shpPath) throws Exception {
+        String path = outPath + "\\point\\";
+        List<Map<String, Object>> list = ShpReadUtils.readPointShp(shpPath);
+        JSONObject jsonObject = getModule("pointmodule.json");
+        for (Map<String, Object> map : list
+        ) {
+            //鎷艰鍧愭爣
+            JSONArray vertice = new JSONArray();
+            vertice.add(map.get("lon"));
+            vertice.add(map.get("lat"));
+            vertice.add(0.0);
+            jsonObject.getJSONArray("vertices").add(vertice);
+            //鎷艰鍩虹淇℃伅
+            JSONObject cityObject = new JSONObject();
+            cityObject.put("type", "+PipePoint");
+            JSONObject attribute = new JSONObject();
+            attribute.put("name", map.get("fsw"));
+            cityObject.put("attributes", attribute);
+            JSONArray geometry = new JSONArray();
+            JSONObject metry = new JSONObject();
+            metry.put("type", "MultiPoint");
+            metry.put("lod", 0);
+            JSONArray boundarie = new JSONArray();
+            boundarie.add(jsonObject.getJSONArray("vertices").size()-1);
+            metry.put("boundaries", boundarie);
+            geometry.add(metry);
+            cityObject.put("geometry", geometry);
+            jsonObject.getJSONObject("CityObjects").put("UUID_" + UUID.randomUUID().toString(), cityObject);
+        }
+        long times = System.currentTimeMillis();
+        String pointPath = path + times + "\\绠$偣.json";
+        File dirFile = new File(path + times);
+        if (!dirFile.exists()) {
+            dirFile.mkdirs();
+        }
+        FileWriter fileWriter = new FileWriter(pointPath);
+        fileWriter.write(jsonObject.toJSONString());
+        fileWriter.close();
+        SemUtils.cityJsonToSem(pointPath,path + times + "\\point.sem");
+        return success(path + times + "\\point.sem");
+    }
+
+    @ApiOperation(value = "绠$嚎杞琧ityjson")
+    @GetMapping(value = "/lineToCityJson", produces = "application/json; charset=UTF-8")
+    public R<String> lineToCityJson(@RequestParam("shpPath") String shpPath) throws Exception {
+        String path = outPath + "\\line\\";
+        List<Map<String, Object>> list = ShpReadUtils.readPointShp(shpPath);
+        JSONObject jsonObject = getModule("linemodule.json");
+        for (Map<String, Object> map : list
+        ) {
+            //鎷艰鍩虹淇℃伅
+            JSONObject cityObject = new JSONObject();
+            cityObject.put("type", "+PipeLine");
+            JSONObject attribute = new JSONObject();
+            attribute.put("name", map.get("msfs"));
+            JSONArray geometry = new JSONArray();
+            JSONObject metry = new JSONObject();
+            metry.put("type", "MultiLineString");
+            metry.put("lod", 0);
+            JSONArray boundarie = new JSONArray();
+            JSONArray array = JSONObject.parseObject(map.get("the_geom").toString()).getJSONArray("coordinates");
+            for (int i = 0; i < array.size(); i++) {
+                JSONObject object = JSONObject.parseObject(array.get(i).toString());
+                jsonObject.getJSONArray("vertices").add(ProjectionToGeographicUtil.getPoint(Double.valueOf(object.get("x").toString()),Double.valueOf(object.get("y").toString())));
+                boundarie.add(jsonObject.getJSONArray("vertices").size()-1);
+            }
+            JSONArray jsonArray=new JSONArray();
+            jsonArray.add(boundarie);
+            metry.put("boundaries", jsonArray);
+            JSONArray metryArray=new JSONArray();
+            metryArray.add(metry);
+            cityObject.put("geometry",metryArray);
+            cityObject.put("attributes",attribute);
+            cityObject.put("attributes", attribute);
+            geometry.add(metry);
+            jsonObject.getJSONObject("CityObjects").put("UUID_" + UUID.randomUUID().toString(), cityObject);
+        }
+        long times = System.currentTimeMillis();
+        String pointPath = path + times + "\\绠$嚎.json";
+        File dirFile = new File(path + times);
+        if (!dirFile.exists()) {
+            dirFile.mkdirs();
+        }
+        FileWriter fileWriter = new FileWriter(pointPath);
+        fileWriter.write(jsonObject.toJSONString());
+        fileWriter.close();
+        SemUtils.cityJsonToSem(pointPath, path + times + "\\line.sem");
+        return success(path + times + "\\line.sem");
+    }
+    @ApiOperation(value = "鍦板舰杞琧ityjson")
+    @GetMapping(value = "/terrainToCityJson", produces = "application/json; charset=UTF-8")
+    public R<String> terrainToCityJson(@RequestParam("tifPath") String tifPath) throws Exception {
+        long times = System.currentTimeMillis();
+        String path = outPath + "\\terrain\\"+times+"\\";
+        File dirFile = new File(path+"appearance");
+        if (!dirFile.exists()) {
+            dirFile.mkdirs();
+        }
+        String pngPath=path+"appearance\\terrain.png";
+        TiffToRGBUtil.tifToPng(tifPath,pngPath);
+        JSONObject jsonObject = getModule("terrainmodule.json");
+        jsonObject.put("vertices",TiffCoordinateExtractorUtil.getCoordinate(tifPath));
+        FileWriter fileWriter = new FileWriter(path + "terrain.json");
+        fileWriter.write(jsonObject.toJSONString());
+        fileWriter.close();
+        SemUtils.cityJsonToSem(path + "terrain.json", path + "terrain.sem");
+        return success(path + "terrain.sem");
+    }
+    public JSONObject getModule(String moduleName) {
+        JSONObject jsonObject = new JSONObject();
+        try {
+            URL resource = Resources.getResource(moduleName);
+            String fileContent = Resources.toString(resource, StandardCharsets.UTF_8);
+            jsonObject = JSONObject.parseObject(fileContent);
+            System.out.println(fileContent);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return jsonObject;
+    }
+
 }

--
Gitblit v1.9.3