1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.flightfeather.uav.lightshare.service
|
| import com.flightfeather.uav.domain.entity.GridCell
|
| /**
| *
| * @date 2025/1/13
| * @author feiyu02
| */
| interface SatelliteDataCalculateService {
|
| /**
| * 根据卫星遥测网格的中心坐标点,计算网格4个顶点坐标
| * @param groupId 网格组索引id
| */
| fun calGridVertex(groupId: Int): List<GridCell?>
|
| fun splitGrid(groupId: Int): List<GridCell?>
| }
|
|