|
@@ -232,6 +232,15 @@ public class RasterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("栅格数据进度查询")
|
|
|
+ @GetMapping("progress/{fileId}/")
|
|
|
+ private R getProgress(@PathVariable("fileId") Long fileId) {
|
|
|
+ log.info("run getProgress: {}", fileId);
|
|
|
+ FileEntity entity = fileServer.findById(fileId);
|
|
|
+ return new R(200, entity);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
// 严格坐标转换
|
|
|
private FileEntity cmdTansformGdalwarpStrict(Long fileId){
|
|
|
log.info("run cmdTansformGdalwarpStrict: {}", fileId);
|