package com.moon.server.service.data;
|
|
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.LogFactory;
|
import org.gdal.ogr.Geometry;
|
import org.springframework.stereotype.Service;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
/**
|
* 栅格分析服务
|
* @author WWW
|
* @date 2023-11-16
|
*/
|
@Service
|
public class SlopAnalysisService {
|
private final static Log log = LogFactory.getLog(SlopAnalysisService.class);
|
|
/**
|
* 下载坡度分析Excel
|
*/
|
public void downloadSlopXls(Geometry polygon, HttpServletResponse res) {
|
|
|
}
|
}
|