当前位置: 首页>>代码示例>>Python>>正文


Python GPS.getPosition方法代码示例

本文整理汇总了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
开发者ID:gabrielventosa,项目名称:avl_so,代码行数:17,代码来源:gpsinfo.py

示例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
开发者ID:MrZANE42,项目名称:car-tracker,代码行数:26,代码来源:RHandler.py


注:本文中的GPS.getPosition方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。