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";
|
}
|
}
|