feiyu02
2025-09-30 94fee0b511279679b43e210878d3d36e5a14384b
src/main/kotlin/com/flightfeather/uav/model/underwaygrid/UnderwayGridModel.kt
@@ -1,9 +1,7 @@
package com.flightfeather.uav.model.underwaygrid
import com.flightfeather.uav.model.BaseDataPrep
import com.flightfeather.uav.model.BaseModel
import com.flightfeather.uav.model.BaseSection
import com.flightfeather.uav.model.BaseWeight
import com.flightfeather.uav.model.*
import com.flightfeather.uav.model.epw.NoSection
import com.flightfeather.uav.model.epw.WeightType
import com.flightfeather.uav.socket.eunm.FactorType
@@ -19,7 +17,7 @@
    override var weights: List<BaseWeight<GridCellAndData, GridCellSop>> = listOf(GridWindDirWeight(), GridWindDisWeight())
    override var sections: List<BaseSection<GridCellAndData, GridCellSop>> = emptyList()
    override var sections: List<BaseSection<GridCellAndData, GridCellSop>> = listOf(BaseNoSection())
    override fun mDataCheck(m: GridCellAndData): Boolean {
        return m.gridDataDetail.pm25 != null