feiyu02
2025-08-28 ddaa44400aa478058ffe9349d59904a130b7ce9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.flightfeather.uav.model.underwaygrid
 
import com.flightfeather.uav.model.BaseDataPrep
 
/**
 * 走航网格数据预处理
 * @date 2025/3/21
 * @author feiyu02
 */
class UnderwayGridDataPrep : BaseDataPrep<GridCellAndData, GridCellSop>() {
    override fun mDataPrep(mDataList: List<GridCellAndData>): List<GridCellAndData> {
        return mDataList
    }
 
    override fun sopPrep(sopList: List<GridCellSop>): List<GridCellSop> {
        return sopList
    }
}