src/main/kotlin/com/flightfeather/uav/lightshare/service/SatelliteDataCalculateService.kt
@@ -15,5 +15,10 @@ */ fun calGridVertex(groupId: Int): List<GridCell?> fun splitGrid(groupId: Int): List<GridCell?> /** * 将网格组进行细分 * @param groupId 网格组索引id * @param scale 拆分的系数,例如 2,表示将原有网格按边长的 1/2 拆分成 2 * 2 的4个网格 */ fun splitGrid(groupId: Int, scale: Int): List<GridCell?> }