真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何進(jìn)行地圖GPS軌跡錄制

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)如何進(jìn)行地圖GPS軌跡錄制,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

成都創(chuàng)新互聯(lián)是一家專(zhuān)注于網(wǎng)站建設(shè)、做網(wǎng)站與策劃設(shè)計(jì),棗莊網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:棗莊等地區(qū)。棗莊做網(wǎng)站價(jià)格咨詢(xún):028-86922220

在地圖的使用中,尤其在導(dǎo)航場(chǎng)景下,進(jìn)行GPS軌跡錄制是十分必要并且有用的

系統(tǒng)架構(gòu)

如何進(jìn)行地圖GPS軌跡錄制

對(duì)于一個(gè)GPSRecordSystem(GPS軌跡錄制系統(tǒng))主要分成3個(gè)部分:開(kāi)始錄制,錄制GPS定位,結(jié)束錄制并存儲(chǔ),如上圖右方所示。在實(shí)際應(yīng)用中,以導(dǎo)航系統(tǒng)為例:(1)在開(kāi)始導(dǎo)航時(shí)(start navi),進(jìn)行錄制工作的相關(guān)配置;(2)收到安卓系統(tǒng)的onLocationChanged的callback進(jìn)行GPSLocation的記錄;(3)結(jié)束導(dǎo)航(stop navi)時(shí),停止記錄并存入文件。

相關(guān)代碼展示

用到的相關(guān)變量

	private LocationManager mLocationManager;   // 系統(tǒng)locationManager
	private LocationListener mLocationListener; // 系統(tǒng)locationListener
	
	private boolean mIsRecording = false;       // 是否正在錄制 

	private List mGpsList;              // 記錄gps的list
	private String mRecordFileName;             // gps文件名稱(chēng)
  • 開(kāi)始錄制

開(kāi)始錄制一般是在整個(gè)系統(tǒng)工作之初,比如在導(dǎo)航場(chǎng)景下,當(dāng)“開(kāi)始導(dǎo)航”時(shí),可以開(kāi)始進(jìn)行“startRecordLocation” 的配置

	public void startRecordLocation(Context context, String fileName) {
		// 已經(jīng)在錄制中不進(jìn)行錄制
		if (mIsRecording) {
			return;
		}
		Toast.makeText(context, "start record location...", Toast.LENGTH_SHORT).show();
		
		// 初始化locationManager和locationListener
		mLocationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
		mLocationListener = new MyLocationListener();
		try {
			// 添加listener
			mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mLocationListener);
		} catch (SecurityException e) {
			Toast.makeText(context, "start record location error!!!", Toast.LENGTH_SHORT).show();
            Log.e(TAG, "startRecordLocation Exception", e);
			e.printStackTrace();
		}

// 記錄文件名稱(chēng),筆者這里使用“realLocationRecord + routeID”形式進(jìn)行記錄
		mRecordFileName = fileName;
		if (!mRecordFileName.endsWith(".gps")) {
			mRecordFileName += ".gps";
		}

		mIsRecording = true;
	}
  • 錄制中記錄軌跡 記錄location一般是在獲取安卓系統(tǒng)onLocationChanged回調(diào)時(shí)調(diào)用“recordGPSLocation”

	public void recordGPSLocation(Location location) {
		if (mIsRecording && location != null) {
		// 記錄location to list
			mGpsList.add(locationToString(location));
		}
	}

locationToString工具方法

驅(qū)動(dòng)導(dǎo)航工作的GPS軌跡點(diǎn)一般要包含以下幾個(gè)要素,經(jīng)度,緯度,精度,角度,速度,時(shí)間,海拔高度,所以在此記錄下,為后期軌跡回放做準(zhǔn)備。

	private String locationToString(Location location) {
		StringBuilder sb = new StringBuilder();
		
		long time = System.currentTimeMillis();
		String timeStr = gpsDataFormatter.format(new Date(time));

		sb.append(location.getLatitude());
		sb.append(",");
		sb.append(location.getLongitude());
		sb.append(",");
		sb.append(location.getAccuracy());
		sb.append(",");
		sb.append(location.getBearing());
		sb.append(",");
		sb.append(location.getSpeed());
		sb.append(",");
		sb.append(timeStr);
		sb.append(",");
		sb.append(df.format((double) time / 1000.0));
		// sb.append(df.format(System.currentTimeMillis()/1000.0));
		// sb.append(df.format(location.getTime()/1000.0));
		sb.append(",");
		sb.append(location.getAltitude());
		sb.append("\n");
		return sb.toString();
	}
  • 結(jié)束錄制并保存gps文件

結(jié)束錄制一般作用在整個(gè)系統(tǒng)的結(jié)尾,例如在導(dǎo)航場(chǎng)景下,“結(jié)束導(dǎo)航”時(shí)停止錄制調(diào)用“stopRecordLocation”

	public void stopRecordLocation(Context context) {
        Toast.makeText(context, "stop record location, save to file...", Toast.LENGTH_SHORT).show();
        
        // 移除listener
		mLocationManager.removeUpdates(mLocationListener);
		String storagePath = StorageUtil.getStoragePath(context); // 存儲(chǔ)的路徑
		String filePath = storagePath + mRecordFileName;

		saveGPS(filePath);
		mIsRecording = false;
	}

GPS軌跡存儲(chǔ)工具方法

	private void saveGPS(String path) {
		OutputStreamWriter writer = null;
		try {
			File outFile = new File(path);
			File parent = outFile.getParentFile();
			if (parent != null && !parent.exists()) {
				parent.mkdirs();
			}
			OutputStream out = new FileOutputStream(outFile);
			writer = new OutputStreamWriter(out);
			for (String line : mGpsList) {
				writer.write(line);
			}
		} catch (Exception e) {
			Log.e(TAG, "saveGPS Exception", e);
			e.printStackTrace();
		} finally {
			if (writer != null) {
				try {
					writer.flush();
				} catch (IOException e) {
					e.printStackTrace();
					Log.e(TAG, "Failed to flush output stream", e);
				}
				try {
					writer.close();
				} catch (IOException e) {
					e.printStackTrace();
					Log.e(TAG, "Failed to close output stream", e);
				}
			}
		}
	}	

StorageUtil的getStoragePath工具方法

// 存儲(chǔ)在跟路徑下/TencentMapSDK/navigation
    private static final String NAVIGATION_PATH = "/tencentmapsdk/navigation";

// getStoragePath工具方法
    public static String getStoragePath(Context context) {
        if (context == null) {
            return null;
        }
        String strFolder;
        boolean hasSdcard;
        try {
            hasSdcard = Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);
        } catch (Exception e) {
            Log.e(TAG, "getStoragePath Exception", e);
            e.printStackTrace();
            hasSdcard = false;
        }
        if (!hasSdcard) {
            strFolder = context.getFilesDir().getPath() + NAVIGATION_PATH;
            File file = new File(strFolder);
            if (!file.exists()) {
                file.mkdirs();
            }
        } else {
            strFolder = Environment.getExternalStorageDirectory().getPath() + NAVIGATION_PATH;
            File file = new File(strFolder);
            if (!file.exists()) { // 目錄不存在,創(chuàng)建目錄
                if (!file.mkdirs()) {
                    strFolder = context.getFilesDir().getPath() + NAVIGATION_PATH;
                    file = new File(strFolder);
                    if (!file.exists()) {
                        file.mkdirs();
                    }
                }
            } else { // 目錄存在,創(chuàng)建文件測(cè)試是否有權(quán)限
                try {
                    String newFile = strFolder + "/.test";
                    File tmpFile = new File(newFile);
                    if (tmpFile.createNewFile()) {
                        tmpFile.delete();
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                    Log.e(TAG, "getStoragePath Exception", e);
                    strFolder = context.getFilesDir().getPath() + NAVIGATION_PATH;
                    file = new File(strFolder);
                    if (!file.exists()) {
                        file.mkdirs();
                    }
                }
            }
        }
        return strFolder;
    }

結(jié)果展示

最終存儲(chǔ)在了手機(jī)目錄下的navigation目錄

如何進(jìn)行地圖GPS軌跡錄制

可以對(duì)于錄制的gps文件講解在導(dǎo)航場(chǎng)景下進(jìn)行軌跡回放的分享

上述就是小編為大家分享的如何進(jìn)行地圖GPS軌跡錄制了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)頁(yè)名稱(chēng):如何進(jìn)行地圖GPS軌跡錄制
文章來(lái)源:http://weahome.cn/article/jegsii.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部