cutfilldemo/src/main/java/org/example/service/RingGridService.java

11 lines
287 B
Java
Raw Normal View History

2024-05-07 10:08:30 +08:00
package org.example.service;
import org.example.utils.CommonResult;
import org.locationtech.jts.geom.Coordinate;
import org.springframework.stereotype.Service;
public interface RingGridService {
CommonResult calcFillCut(Coordinate[] coordinates, double range) throws Exception;
}