| | |
| | | import com.flightfeather.uav.lightshare.bean.CompanySOP |
| | | import com.flightfeather.uav.lightshare.bean.DataVo |
| | | import com.flightfeather.uav.model.BaseDataPrep |
| | | import com.flightfeather.uav.model.BaseSOP |
| | | import com.flightfeather.uav.socket.bean.AirData |
| | | import com.flightfeather.uav.socket.bean.AirDataPackage |
| | | import com.flightfeather.uav.socket.eunm.FactorType |
| | |
| | | import kotlin.math.round |
| | | import kotlin.math.sqrt |
| | | |
| | | class EPWDataPrep : BaseDataPrep<DataVo, CompanySOP>() { |
| | | class EPWDataPrep : BaseDataPrep<DataVo, BaseSOP>() { |
| | | |
| | | // 向前检索的数据记录数 |
| | | private val ncal = 15 |
| | |
| | | return mDataList |
| | | } |
| | | |
| | | override fun sopPrep(sopList: List<CompanySOP>): List<CompanySOP> { |
| | | override fun sopPrep(sopList: List<BaseSOP>): List<BaseSOP> { |
| | | return sopList |
| | | } |
| | | |