1
13693261870
2024-09-30 60494b2aa2d720a98c421dc732ca2636b273e10c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.se.simu.service;
 
import com.se.simu.config.PropertiesConfig;
import com.se.simu.domain.dto.ResultDto;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
 
/**
 * 处理结果服务类
 *
 * @author WWW
 * @date   2024-09-29
 */
@Slf4j
@Service
@SuppressWarnings("ALL")
public class ResultService {
    @Resource
    PropertiesConfig config;
 
    public final static double MAX_X_OFFSET = 0.002;
 
 
    public void process(ResultDto dto) {
        //
    }
 
    public String test() {
        ResultDto dto = new ResultDto(
                "202409",
                "D:\\simu\\input\\tongzhou-local-mesh2-terrain.tif",
                "D:\\simu\\input\\tongzhou-local-mesh2-buildings.tif",
                "D:\\simu\\input\\waters",
                "D:\\simu\\input\\flows",
                "D:\\simu\\out",
                "");
        process(dto);
 
        return "OK";
    }
}