| | |
| | | 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.dto.GridDto; |
| | | 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.CsvToSQLiteUtils; |
| | | import com.se.simu.utils.ShpToolUtils; |
| | | import com.se.simu.utils.ZarrUtils; |
| | | import com.se.simu.utils.ZipUtils; |
| | | import com.se.simu.utils.*; |
| | | import io.swagger.annotations.*; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.codec.binary.Base64; |
| | | 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 org.springframework.web.util.UriUtils; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.io.File; |
| | | import java.io.IOException; |
| | | import java.io.*; |
| | | import java.net.URL; |
| | | import java.net.URLEncoder; |
| | | import java.nio.charset.StandardCharsets; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | |
| | | @Api(tags = "仿真管理") |
| | | @Slf4j |
| | |
| | | |
| | | @Value("${simu-app.filePath}") |
| | | private String uploadedFolder; |
| | | |
| | | @Value("${config.outPath}") |
| | | private String outPath; |
| | | |
| | | @Value("${config.inPath}") |
| | | private String inPath; |
| | | |
| | | |
| | | @Resource |
| | |
| | | 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")); |
| | |
| | | return fail("防汛范围不能为空", false); |
| | | } |
| | | } |
| | | //todo 组装cityjson |
| | | JSONObject jsonObject = new JSONObject(); |
| | | jsonObject.put("shp", jsonArray); |
| | | jsonObject.put("csv", array); |
| | | List<GridDto> dtos = new ArrayList<>(); |
| | | dtos.add(new GridDto( vo.getMiny(),vo.getMinx())); |
| | | dtos.add(new GridDto(vo.getMaxy(),vo.getMinx())); |
| | | dtos.add(new GridDto(vo.getMaxy(),vo.getMaxx())); |
| | | dtos.add(new GridDto(vo.getMiny(),vo.getMaxx())); |
| | | createSem(tableName, dtos); |
| | | // 开始模拟计算 |
| | | boolean flag = simuFilesService.createByfiles(vo); |
| | | return success(flag, flag ? "成功" : "失败"); |
| | |
| | | } |
| | | } |
| | | |
| | | public R<Boolean> createSem(String tableName, List<GridDto> dtos) throws Exception { |
| | | //降雨文件生成 |
| | | saveZarr(tableName); |
| | | String token = EntityLibraryUtils.login(); |
| | | //管点生成 |
| | | pointTosem(dtos,token); |
| | | //管线生成 |
| | | lineToSem(dtos,token); |
| | | //地形生成 |
| | | terrainToSem(dtos); |
| | | //范围生成 |
| | | gridToCityJson(dtos); |
| | | //河流生成 |
| | | riverToSem(); |
| | | //土地利用生成 |
| | | landuseToSem(); |
| | | return success(true); |
| | | } |
| | | |
| | | @ApiOperation(value = "tarr文件组装") |
| | | @GetMapping(value = "/testZarr", produces = "application/json; charset=UTF-8") |
| | | public R<Boolean> testZarr(@RequestParam("name") String tableName) throws IOException { |
| | | @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 basePath="D:\\城市内涝\\sem\\雨量站点数据\\"+tableName+"\\rainfall\\"; |
| | | 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); |
| | |
| | | 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+"的zarr数据生成====================="); |
| | | ZarrUtils.saveZarrRainfall(basePath + src, stationRainVos); |
| | | ZarrUtils.saveZarrTime(basePath + src, stationRainVos); |
| | | ZipUtils.toZarr(basePath + src, basePath + src + ".zip"); |
| | | System.out.println(src + "的zarr数据生成====================="); |
| | | //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); |
| | | } |
| | | return success(true); |
| | | 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(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(path + tableName + "\\降雨量.json", filePatn + "raingage.sem"); |
| | | return success(filePatn + "raingage.sem"); |
| | | } |
| | | |
| | | public R<String> pointTosem(List<GridDto> dtos,String token) throws Exception { |
| | | String path = outPath + "\\point\\"; |
| | | String publicKey = EntityLibraryUtils.getPublicKey(); |
| | | JSONArray jsonArrayList = EntityLibraryUtils.getPointInfo(dtos, token); |
| | | JSONObject jsonObject = getModule("pointmodule.json"); |
| | | for (int s = 0; s < jsonArrayList.size(); s++) { |
| | | JSONObject pointObject = jsonArrayList.getJSONObject(s); |
| | | //拼装坐标 |
| | | JSONArray vertice = new JSONArray(); |
| | | vertice.add(Double.valueOf(pointObject.getString("lon"))); |
| | | vertice.add(Double.valueOf(pointObject.getString("lat"))); |
| | | vertice.add(0.0); |
| | | jsonObject.getJSONArray("vertices").add(vertice); |
| | | //拼装基础信息 |
| | | JSONObject cityObject = new JSONObject(); |
| | | cityObject.put("type", "+PipePoint"); |
| | | JSONObject attribute = new JSONObject(); |
| | | attribute.put("维护时间", pointObject.get("operatetime")); |
| | | attribute.put("维护人", pointObject.get("operator")); |
| | | attribute.put("唯一编码", pointObject.get("seid")); |
| | | attribute.put("ID", pointObject.get("id")); |
| | | attribute.put("enti_uuid", pointObject.get("enti_uuid")); |
| | | attribute.put("标识码", pointObject.get("bsm")); |
| | | attribute.put("管线种类", pointObject.get("gxzl")); |
| | | attribute.put("地面高程", pointObject.get("dmgc")); |
| | | attribute.put("特征", pointObject.get("tz")); |
| | | attribute.put("附属物", pointObject.get("fsw")); |
| | | attribute.put("建筑物", pointObject.get("jzw")); |
| | | attribute.put("井底高程", pointObject.get("jdgc")); |
| | | attribute.put("井底埋深", pointObject.get("jdms")); |
| | | attribute.put("井脖埋深", pointObject.get("jbms")); |
| | | attribute.put("井盖形状", pointObject.get("jgxz")); |
| | | attribute.put("井盖尺寸", pointObject.get("jgcc")); |
| | | attribute.put("井盖材质", pointObject.get("jgcz")); |
| | | attribute.put("井盖状态", pointObject.get("jgzt")); |
| | | attribute.put("井脖材质", pointObject.get("jbcz")); |
| | | attribute.put("井脖尺寸", pointObject.get("jbcc")); |
| | | attribute.put("井材质", pointObject.get("jcz")); |
| | | attribute.put("井尺寸", pointObject.get("jcc")); |
| | | attribute.put("使用状况", pointObject.get("syzk")); |
| | | attribute.put("lon", Double.valueOf(pointObject.getString("lon"))); |
| | | attribute.put("lat", Double.valueOf(pointObject.getString("lat"))); |
| | | attribute.put("atti", pointObject.get("atti")); |
| | | attribute.put("雨水集结点", pointObject.get("ysjjd")); |
| | | 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(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(pointPath, filePatn + "node.sem"); |
| | | return success(filePatn + "node.sem"); |
| | | } |
| | | |
| | | @ApiOperation(value = "管点转cityjson") |
| | | @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(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(pointPath, filePatn + "node.sem"); |
| | | return success(filePatn + "node.sem"); |
| | | } |
| | | |
| | | public R<String> lineToSem(List<GridDto> dtos,String token) throws Exception { |
| | | String path = outPath + "\\line\\"; |
| | | String publicKey = EntityLibraryUtils.getPublicKey(); |
| | | JSONArray jsonArrayList = EntityLibraryUtils.getLineInfo(dtos, token); |
| | | if (jsonArrayList.size() == 0) { |
| | | return fail("该区域不存在管线!"); |
| | | } |
| | | StringBuffer stringBuffer = new StringBuffer("id in ("); |
| | | for (int i = 0; i < jsonArrayList.size(); i++) { |
| | | jsonArrayList.getJSONObject(i).getInteger("id"); |
| | | stringBuffer.append("'" + jsonArrayList.getJSONObject(i).getInteger("id") + "',"); |
| | | } |
| | | String sql = stringBuffer.toString(); |
| | | sql = sql.substring(0, sql.length() - 1) + ")"; |
| | | StringBuffer paramBuffer = new StringBuffer(""); |
| | | while (!"".equals(sql)) { |
| | | if (sql.length() > 110) { |
| | | String item = sql.substring(0, 110); |
| | | paramBuffer.append(EntityLibraryUtils.encrypt(item, publicKey) + ","); |
| | | sql = sql.replace(item, ""); |
| | | } else { |
| | | paramBuffer.append(EntityLibraryUtils.encrypt(sql, publicKey) + ","); |
| | | sql = ""; |
| | | } |
| | | } |
| | | String src = paramBuffer.toString().substring(0, paramBuffer.length() - 1); |
| | | JSONArray arrayDetail = EntityLibraryUtils.getLineDetail(src, token); |
| | | JSONObject jsonObject = getModule("linemodule.json"); |
| | | for (int i = 0; i < arrayDetail.size(); i++) { |
| | | JSONObject detailJSONObject = arrayDetail.getJSONObject(i); |
| | | //拼装基础信息 |
| | | JSONObject cityObject = new JSONObject(); |
| | | cityObject.put("type", "+PipeLine"); |
| | | JSONObject attribute = new JSONObject(); |
| | | attribute.put("维护时间", detailJSONObject.getJSONObject("properties").getLong("operatetime")); |
| | | attribute.put("维护人", detailJSONObject.getJSONObject("properties").getString("operator")); |
| | | attribute.put("唯一编码", detailJSONObject.getJSONObject("properties").get("seid")); |
| | | attribute.put("ENTI_UUID", detailJSONObject.getJSONObject("properties").get("enti_uuid")); |
| | | attribute.put("ID", detailJSONObject.getJSONObject("properties").get("id")); |
| | | attribute.put("lon", detailJSONObject.getJSONObject("properties").get("lon")); |
| | | attribute.put("lat", detailJSONObject.getJSONObject("properties").get("lat")); |
| | | attribute.put("atti", detailJSONObject.getJSONObject("properties").get("atti")); |
| | | attribute.put("管线种类", detailJSONObject.getJSONObject("properties").get("gxzl")); |
| | | attribute.put("起点标识码", detailJSONObject.getJSONObject("properties").get("qdbsm")); |
| | | attribute.put("止点标识码", detailJSONObject.getJSONObject("properties").get("zdbsm")); |
| | | attribute.put("起点高程", detailJSONObject.getJSONObject("properties").get("qdgc")); |
| | | attribute.put("起高程类型", detailJSONObject.getJSONObject("properties").get("qgclx")); |
| | | attribute.put("起点埋深", detailJSONObject.getJSONObject("properties").get("qdms")); |
| | | attribute.put("止点高程", detailJSONObject.getJSONObject("properties").get("zdgc")); |
| | | attribute.put("止高程类型", detailJSONObject.getJSONObject("properties").get("zgclx")); |
| | | attribute.put("止点埋深", detailJSONObject.getJSONObject("properties").get("zdms")); |
| | | attribute.put("材质", detailJSONObject.getJSONObject("properties").get("cz")); |
| | | attribute.put("埋设方式", detailJSONObject.getJSONObject("properties").get("msfs")); |
| | | attribute.put("管径1", detailJSONObject.getJSONObject("properties").get("gja")); |
| | | attribute.put("管径2", detailJSONObject.getJSONObject("properties").get("gjb")); |
| | | attribute.put("使用状况", detailJSONObject.getJSONObject("properties").get("syzk")); |
| | | attribute.put("管线段长度", detailJSONObject.getJSONObject("properties").get("gxdcd")); |
| | | attribute.put("groupID", detailJSONObject.getJSONObject("properties").get("groupid")); |
| | | attribute.put("Shape_Length", detailJSONObject.getJSONObject("properties").get("shape_length")); |
| | | attribute.put("标识码", detailJSONObject.getJSONObject("properties").get("bsm")); |
| | | JSONArray geometry = new JSONArray(); |
| | | JSONObject metry = new JSONObject(); |
| | | metry.put("type", "MultiLineString"); |
| | | metry.put("lod", 0); |
| | | JSONArray boundarie = new JSONArray(); |
| | | JSONArray array = detailJSONObject.getJSONObject("geometry").getJSONArray("coordinates").getJSONArray(0); |
| | | for (int m = 0; m < array.size(); m++) { |
| | | JSONArray object = array.getJSONArray(m); |
| | | jsonObject.getJSONArray("vertices").add(ProjectionToGeographicUtil.getPoint(object.getDouble(0), object.getDouble(1))); |
| | | 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(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(pointPath, filePatn + "link.sem"); |
| | | return success(filePatn + "link.sem"); |
| | | } |
| | | |
| | | @ApiOperation(value = "管线转cityjson") |
| | | @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(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(pointPath, filePatn + "link.sem"); |
| | | return success(filePatn + "link.sem"); |
| | | } |
| | | |
| | | @ApiOperation(value = "地形转sem") |
| | | @PostMapping(value = "/terrainToSem", produces = "application/json; charset=UTF-8") |
| | | public R<String> terrainToSem(@RequestBody List<GridDto> dtos) throws Exception { |
| | | long times = System.currentTimeMillis(); |
| | | String path = outPath + "\\terrain\\" + times + "\\"; |
| | | File dirFile = new File(path + "appearance"); |
| | | if (!dirFile.exists()) { |
| | | dirFile.mkdirs(); |
| | | } |
| | | double minx = 180.0; |
| | | double maxx = 0.0; |
| | | double miny = 180.0; |
| | | double maxy = 0.0; |
| | | for (GridDto dto : dtos |
| | | ) { |
| | | if (dto.getLon() > maxx) { |
| | | maxx = dto.getLon(); |
| | | } |
| | | if (dto.getLon() < minx) { |
| | | minx = dto.getLon(); |
| | | } |
| | | if (dto.getLat() > maxy) { |
| | | maxy = dto.getLat(); |
| | | } |
| | | if (dto.getLat() < miny) { |
| | | miny = dto.getLat(); |
| | | } |
| | | } |
| | | JSONArray min = ProjectionToGeographicUtil.get4548Point(minx, miny); |
| | | JSONArray max = ProjectionToGeographicUtil.get4548Point(maxx, maxy); |
| | | String tifPath = path + "terrain.tif"; |
| | | TiffClipper.cropTiffByLatLon(config.getTifPath(), tifPath, min.getDouble(0), min.getDouble(1), max.getDouble(0), max.getDouble(1)); |
| | | 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(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(path + "terrain.json", filePatn + "terrain.sem"); |
| | | return success(filePatn + "terrain.sem"); |
| | | } |
| | | |
| | | @ApiOperation(value = "地形转cityjson") |
| | | @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(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(path + "terrain.json", filePatn + "terrain.sem"); |
| | | return success(filePatn + "terrain.sem"); |
| | | } |
| | | |
| | | @ApiOperation(value = "grid转cityjson") |
| | | @PostMapping(value = "/gridToCityJson", produces = "application/json; charset=UTF-8") |
| | | public R<String> gridToCityJson(@RequestBody List<GridDto> dtos) throws Exception { |
| | | long times = System.currentTimeMillis(); |
| | | String path = outPath + "\\grid\\" + times + "\\"; |
| | | File dirFile = new File(path); |
| | | if (!dirFile.exists()) { |
| | | dirFile.mkdirs(); |
| | | } |
| | | JSONObject jsonObject = getModule("grid.json"); |
| | | JSONArray array = jsonObject.getJSONArray("vertices"); |
| | | for (GridDto dto : dtos |
| | | ) { |
| | | JSONArray jsonArray = new JSONArray(); |
| | | jsonArray.add(dto.getLon()); |
| | | jsonArray.add(dto.getLat()); |
| | | jsonArray.add(0); |
| | | array.add(jsonArray); |
| | | } |
| | | jsonObject.put("vertices", array); |
| | | FileWriter fileWriter = new FileWriter(path + "grid.json"); |
| | | fileWriter.write(jsonObject.toJSONString()); |
| | | fileWriter.close(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(path + "grid.json", filePatn + "grid.sem"); |
| | | return success(filePatn + "grid.sem"); |
| | | } |
| | | |
| | | @ApiOperation(value = "river转sem") |
| | | @GetMapping(value = "/riverToSem", produces = "application/json; charset=UTF-8") |
| | | public R<String> riverToSem() throws Exception { |
| | | long times = System.currentTimeMillis(); |
| | | String path = outPath + "\\river\\" + times + "\\"; |
| | | File dirFile = new File(path); |
| | | if (!dirFile.exists()) { |
| | | dirFile.mkdirs(); |
| | | } |
| | | JSONObject jsonObject = getModule("river.json"); |
| | | FileWriter fileWriter = new FileWriter(path + "river.json"); |
| | | fileWriter.write(jsonObject.toJSONString()); |
| | | fileWriter.close(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(path + "river.json", filePatn + "river.sem"); |
| | | return success(filePatn + "river.sem"); |
| | | } |
| | | |
| | | @ApiOperation(value = "landuse转sem") |
| | | @GetMapping(value = "/landuseToSem", produces = "application/json; charset=UTF-8") |
| | | public R<String> landuseToSem() throws Exception { |
| | | long times = System.currentTimeMillis(); |
| | | String path = outPath + "\\landuse\\" + times + "\\"; |
| | | File dirFile = new File(path); |
| | | if (!dirFile.exists()) { |
| | | dirFile.mkdirs(); |
| | | } |
| | | JSONObject jsonObject = getModule("landuse.json"); |
| | | FileWriter fileWriter = new FileWriter(path + "landuse.json"); |
| | | fileWriter.write(jsonObject.toJSONString()); |
| | | fileWriter.close(); |
| | | String filePatn = inPath + "\\tongzhou\\"; |
| | | File file = new File(filePatn); |
| | | if (!file.exists()) { |
| | | file.mkdirs(); |
| | | } |
| | | SemUtils.cityJsonToSem(path + "landuse.json", filePatn + "landuse.sem"); |
| | | return success(filePatn + "landuse.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; |
| | | } |
| | | |
| | | } |