本文整理汇总了Python中GPS.getPosition方法的典型用法代码示例。如果您正苦于以下问题:Python GPS.getPosition方法的具体用法?Python GPS.getPosition怎么用?Python GPS.getPosition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GPS
的用法示例。
在下文中一共展示了GPS.getPosition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: gpsData
# 需要导入模块: import GPS [as 别名]
# 或者: from GPS import getPosition [as 别名]
def gpsData():
errmsg = 'Trying GPS ...Result: Fix Error'
gpsmsg = 'GPS Fix Result: '
pos = GPS.getActualPosition()
res = pos.split(',')
fix = res[5]
if (fix== '0'):
Log.appendLog(errmsg)
return -1
#Log.appendLog(gpsmsg+pos)
gepos = GPS.getPosition()
data = {"speed":res[7],"gpssats":res[10],"alt":res[4],"course":res[6], \
"latitud":gepos[0],"longitud":gepos[2], \
"latref":gepos[1],"longref":gepos[3]}
return data
示例2: getGPSLocation
# 需要导入模块: import GPS [as 别名]
# 或者: from GPS import getPosition [as 别名]
def getGPSLocation(type) :
gpsStatus = GPS.getPowerOnOff()
if gpsStatus == 0:
GPS. powerOnOff(1)
gpsStatus = GPS.getPowerOnOff()
while gpsStatus == 0 :
gpsStatus = GPS.getPowerOnOff()
GPSResult = GPS.getPosition()
SER.send(str(GPSResult)+'\r\n')
Latitude = str(GPSResult).split(',')[0].replace('(','')
Latitude = Latitude[0:len(Latitude)-7]+'.'+Latitude[len(Latitude)-7:len(Latitude)]
Longitude = str(GPSResult).split(',')[2].replace(')','')
Longitude = Longitude[0:len(Longitude)-7]+'.'+Longitude[len(Longitude)-7:len(Longitude)]
if type == 'Lat' :
GPSResult = Latitude
elif type == 'Lon' :
GPSResult = Longitude
return GPSResult