local function printGps()
if gps.isOpen() then
local tLocation = gps.getLocation()
local speed = gps.getSpeed()
log.info("testGps.printGps",
gps.isOpen(),gps.isFix(),
tLocation.lngType,tLocation.lng,tLocation.latType,tLocation.lat,
gps.getAltitude(),
speed,
gps.getCourse(),
gps.getViewedSateCnt(),
gps.getUsedSateCnt())
end
end
gps.isFix()返回true,则证明此时定位成功,经纬度、海拔、速度信息有效。
此时的数据是可信的;如若不然,gps数据是不准确的。
如果觉得我的回答对您有用,请随意打赏。你的支持将鼓励我继续创作!