Python obtains the GPS information script of android devices for sharing

Source: Internet
Author: User
This article describes how to use python to obtain the GPS information script of android devices. This article provides the implementation code directly. if you need it, you can refer to it on android, we can use QPython to write and execute Python scripts. It applies to many android

System functions are easily encapsulated, and it is very convenient to write small programs with simple functions using QPython.

This example is a basic script that I used to read mobile phone location information and further process data.

The code is as follows:


#-*-Coding: UTF-8 -*-
Import androidhelper
Import time
From math import radians
Droid = androidhelper. Android ()
Droid. startSensingTimed (1,250)
Droid. startLocating ()
While 1:
Gpsdata = droid. readLocation (). result
S6data = droid. sensorsReadOrientation (). result
If len (gpsdata)> 0:
Print gpsdata ['GPS '] ['bearing'] # obtain the gps orientation (angle)
If len (s6data)> 0:
Print s6data [0] # obtain the azimuth angle of the compass (azimuth) (radian)
Time. sleep (0.5)
Droid. stopLocating ()
Droid. stopSensing ()

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.