android典型应用之gps

1.
gps说明
a)
原理

每一卫星播发一个伪随机测距码信号,该信号大约每1毫秒播发一次。接收仪同时复制出一个同样结构的信号并与接收到的卫星信号进行比较,由信号的延迟时间(dT)推算出卫星至
接收仪的距离
b)
述语

TTFF
:首次定位时间
PRN
:伪随机码,用于辨别是哪颗卫星
SNR
:信噪比
2.
androidgps的内部支持
a)
位置服务

android
对卫星定位的支持名字叫位置服务可以通过设置来打开或关闭它
b)
android实现

frameworks/base/location/java/android/location/LocationManager.java
接口
frameworks/base/services/java/com/android/server/LocationManagerService.java
服务
frameworks/base/core/jni/android_location_GpsLocationProvider.cpp
等待gps事件发给 service
libhardware_legacy/include/hardware_legacy/gps.h
定义了底级gps的实现不同硬件以不同方式实现它,它可能是对设备的访问,也可能与modem通过rpc通讯得到gps数据
c)
应用程序调用接口

frameworks/base/location/java/android/location/*.java
LocationManager.java
是最重要的接口,通过它访问gps定位资源
LocationListener.java
是定位的回调函数通过实现它来接收定位数据
Gps*.java
提供了获取当前gps信息的接口包括捕获的卫星数信噪比等
d)
调试

想要调试gps可以把/system/etc/gps.conf中的debug等级调为5此时你可以在logcat看到全部的gps信息
在室内基本没有信号,窗边效果也不好,建议在室外,至少是站在阳台上测试
3.
例程
a)
功能

显示当前经纬度及搜到的卫星个数
b)
可从此处下载可独立运行的代码mygps.tgz.rar(5.75 KB, 下载次数: 228)


c)
核心代码及说明
  1. package com.android.mygps;

  2. import android.app.Activity;
  3. import android.util.Log;
  4. import android.os.Bundle;
  5. import android.location.GpsStatus;
  6. import android.location.Location;
  7. import android.location.LocationListener;
  8. import android.location.LocationManager;
  9. import android.location.GpsSatellite;
  10. import android.widget.TextView;
  11. import android.content.Context;
  12. import java.util.Iterator;

  13. public class MyGpsActivity extends Activity {
  14.     LocationManager mLocationManager;

  15.     public void onCreate(Bundle savedInstanceState) {
  16.          super.onCreate(savedInstanceState);
  17.          setContentView(R.layout.main);

  18.          mLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
  19.          String provider = mLocationManager.GPS_PROVIDER;
  20.          Location location = mLocationManager.getLastKnownLocation(provider);
  21.          mLocationManager.requestLocationUpdates(provider, 4000, 10,
  22.                   locationListener);  // 4秒一次,开始接听gps数据
  23.          mLocationManager.addGpsStatusListener(statusListener); // 注册状态信息回调
  24.          updateWithNewLocation(location);
  25.          updateGpsStatus(0, null);
  26.     }

  27.     public void onDestroy() {
  28.          super.onDestroy();
  29.     }

  30.     private final GpsStatus.Listener statusListener = new GpsStatus.Listener() {
  31.          public void onGpsStatusChanged(int event) {
  32.              Log.w("xieyan", "now gps status changed" + event);
  33.              GpsStatus status = mLocationManager.getGpsStatus(null); // 取当前状态
  34.              updateGpsStatus(event, status);
  35.          } // GPS状态变化时的回调,如卫星数,信号强度等
  36.     };

  37.     private final LocationListener locationListener = new LocationListener() {
  38.          public void onLocationChanged(Location location) {
  39.              Log.w("xieyan", "now location changed");
  40.              updateWithNewLocation(location);
  41.          } // 经纬度变化时的回调

  42.          public void onProviderDisabled(String provider) {
  43.              Log.w("xieyan", "now provider disable");
  44.              updateWithNewLocation(null);
  45.          }

  46.          public void onProviderEnabled(String provider) {
  47.              Log.w("xieyan", "now provider enable");
  48.          }

  49.          public void onStatusChanged(String provider, int status, Bundle extras) {
  50.              Log.w("xieyan", "now provider status changed" + status);
  51.          }
  52.     };

  53.     private void updateGpsStatus(int event, GpsStatus status) {
  54.          TextView slView = (TextView) findViewById(R.id.TextViewSatellites);
  55.          if (status == null) {
  56.              slView.setText(getString(R.string.satellites) + "0");
  57.          } else if (event == GpsStatus.GPS_EVENT_SATELLITE_STATUS) {
  58.              int maxSatellites = status.getMaxSatellites();
  59.              Iterator it = status.getSatellites().iterator();
  60.              int count = 0;
  61.              while (it.hasNext() && count <= maxSatellites) {
  62.                   GpsSatellite s = it.next();
  63.                   count++;
  64.              } // 计算卫星个数,可在此打印出卫星的其它信息
  65.              slView.setText(getString(R.string.satellites) + count);
  66.          }
  67.     }

  68.     private void updateWithNewLocation(Location location) {
  69.          if (location != null) {
  70.              double lat = location.getLatitude();
  71.              double lng = location.getLongitude();     // 取经纬度
  72.              TextView latView = (TextView) findViewById(R.id.TextViewLng);
  73.              TextView lngView = (TextView) findViewById(R.id.TextViewLat);
  74.              latView.setText(getString(R.string.latitude)
  75.                        + String.format("%.5f", lat));
  76.              lngView.setText(getString(R.string.longitude)
  77.                        + String.format("%.5f", lng));
  78.          } else {
  79.              TextView latView = (TextView) findViewById(R.id.TextViewLng);
  80.              TextView lngView = (TextView) findViewById(R.id.TextViewLat);
  81.              latView.setText(getString(R.string.getinfo_fail));
  82.              lngView.setText("");
  83.          }
  84.     }
  85. }
复制代码


4.
辅助工具

定位程序要么带地图很大,要么太简单不能得到足够数据。推荐gpslogger,使用它可以看到当前的经纬度,速度,信号强度,当前搜到了几颗星(搜到小于三颗星时,定位不到经纬度),帮助进一步定位问题。
http://gpslogger.codeplex.com/
可以下载到它的源码

你可能感兴趣的:(android典型应用之gps)