博碩士論文 92532018 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:14 、訪客IP:18.226.96.61
姓名 謝定龔(TING-KONG HSIEH)  查詢紙本館藏   畢業系所 資訊工程學系在職專班
論文名稱 CDMA手機定位研究與實作
(CDMA Cellular Phone Position Locating and Its Implementation)
相關論文
★ 以Q-學習法為基礎之群體智慧演算法及其應用★ 發展遲緩兒童之復健系統研製
★ 從認知風格角度比較教師評量與同儕互評之差異:從英語寫作到遊戲製作★ 基於檢驗數值的糖尿病腎病變預測模型
★ 模糊類神經網路為架構之遙測影像分類器設計★ 複合式群聚演算法
★ 身心障礙者輔具之研製★ 指紋分類器之研究
★ 背光影像補償及色彩減量之研究★ 類神經網路於營利事業所得稅選案之應用
★ 一個新的線上學習系統及其於稅務選案上之應用★ 人眼追蹤系統及其於人機介面之應用
★ 結合群體智慧與自我組織映射圖的資料視覺化研究★ 追瞳系統之研發於身障者之人機介面應用
★ 以類免疫系統為基礎之線上學習類神經模糊系統及其應用★ 基因演算法於語音聲紋解攪拌之應用
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 近年來手機定位技術的研究與應用的發展相當熱門,在美國FCC制定E911服務後,歐盟也相繼開始制定E112救難服務相關技術與法規,因此手機定位功能將是每隻手機必備的功能之一,目前的主流技術主要是在手機上加裝GPS定位晶片,或是由網路端來做定位的計算,再將定位的結果回傳給手機。前者需要修改手機的硬體以及增加零件成本,而後者的定位精確度誤差較大而且需要額外的資料傳輸費用。
本論文主要目的在介紹CDMA手機的定位方法與如何實作,在以不修改目前手機的硬體,只修改手機韌體的情況下透過量測基地台的廣播訊號,利用3個基地台的到達訊號時間差計算出2D座標定位。此外在論文中,主要解決了三個實作手機定位所需解決的問題。
第一,當量測訊號受到非視線傳播NLOS的干擾時,我們使用滑動視窗找最小值後再以平滑處理來改善NLOS干擾。第二在實作演算法在手機上時,我們將複雜的矩陣運算做分割與簡化,以避免超過手機運算能力,當量測到的基地台數目k大於3個時,重複取 次三角定位運算後再加權平均。最後,經過實驗當量測的基地台數目增加時,將所有基地台組合所計算出的定位座標直接平均座,可提高量測的精確度,若進一步將計算結果乘上三角形重心與預估距離的反比,經過此加權法總和所求的座標精確度,誤差有明顯的較直接平均來的好。
在實際的網路測試時,我們分別作靜態與動態的定位測試,其中靜態測試結果可以符合FCC的要求。
摘要(英) The mobile location positioning technology has been developed and widely used in recent years. After the US FCC mandates the E911 emergency service to be provided by all wireless service providers, the European Commission also starts to work out the E112 relative standards and regulations. Therefore positioning will be one of the essential features in cellular phones. The current main stream technology is to build-in a GPS chip for satellite positioning or via network based wireless location sending back result to the handset. The prior solution requires modifying the handset and increases bill of material (BOM) cost, and the later one has lower accuracy problem and requires additional data transmission fee to users.
The main purpose of this thesis is to implement a positioning algorithm on a CDMA compatible cellular phone. In the condition of no hardware modification, but only modifying the firmware, the handset measures time difference of the base stations’ broadcast signal and locate the 2D position via trilateration method. Besides, there are 3 main issues are resolved in our implementation. First, when the measured signal is interfered by NLOS (Non-Sight-of-Light) effect, we utilize a sliding window to look up the minimum value and adopt a smoothing method to improve the NLOS effect. Second, for the implementation of algorithm on the embedded system, we simplify the complex matrix computation to use only 2 x 2 matrix form instead of k x k matrix in order not to overrun the system ability. When the number of the received BS signals, k, is greater than 3, all location estimates of the combinations are computed. Then these estimates are either directly averaged or weighted summed to compute a final estimate. In order to evaluate the system performance, we ran the static and dynamic tests on the live network. The results show the static tests can pass the FCC’s requirement.
關鍵字(中) ★ 到達訊號時間差
★ 手機定位
關鍵字(英) ★ cdma
★ location positioning
★ tdoa
★ e911
論文目次 目錄
摘要………………………………………………………………Ⅰ
英文摘要(Abstract) ……………………………………………Ⅲ
誌謝………………………………………………………………Ⅴ
圖目錄……………………………………………………………Ⅷ
表目錄……………………………………………………………Ⅹ
第一章 介紹…………………………………………………… 1
1.1研究目的………………………………………………… 1
1.2研究大綱………………………………………………… 2
第二章 手機定位技術概要…………………………………… 4
2.1手機端定位技術………………………………………… 4
2.2網路端定位技術………………………………………… 7
第三章 基地台無線定位技術………………………………… 9
3.1入射角度的定位法……………………………………… 9
3.2接收訊號強度定位法……………………………………11
3.3到達時間定位法…………………………………………12
3.4到達時間差定位法………………………………………14
3.5NLOS影響量測訊號的精確度……………………………17
3.6定位精確度的評估方法…………………………………18
第四章CDMA手機定位實作……………………………………19
4.1網路架構………………………………………………19
4.1.1基地台經緯度座標解析度………………………19
4.1.2CDMA行動通訊系統在台灣的涵蓋率……………21
4.2CDMA手機硬體架構…………………………24
4.2.1手機數位電路……………………………………24
4.2.2手機類比電路………………………………… 25
4.3軟體架構.………………………………………… 27
4.3.1定點數學函數庫……………………………… 28
4.4定位流程…………...…………………………… 30
4.4.1 搜尋PN碼與量測到達訊號時間差………… 30
4.4.2 解調系統參數訊息………………………… 31
4.4.3 TDOA定位計算………………………………34
第五章 實驗結果……………………………………………38
5.1TDOA演算法驗證…………………………………………38
5.2在實際網路測試結果……………………………………38
5.2.1在LOS網路環境下之定點測試…………………40
5.2.2在NLOS網路環境下之定點測試………………41
5.2.3在實際網路下之動態測試……………………45
第六章 結論和展望…………………………………………47
6.1結論……………………………………………………...47
6.2展望……………………………………………………47
參考文獻……………………………………………………… 49
參考文獻 [1] J.J. Caffery and G.L. Stuber,”Radio location in urban CDMA microcells,”in Proc. IEEE Int. Symp. Personal, Indoor and Mobile Radio Communications, Toronto, Canada, Sept.1995,vol.2,pp.858-862.
[2] J.J. Caffery and G.L. Stuber, ”Overview of radiolocation in CDMA cellular systems,” IEEE Commun, Mag., vol.36, no.4, pp.38-45,Apr. 1998.
[3] Y.T. Chan,”A simple and efficient estimator for hyperbolic location,”IEEE Transactions on Signal Processing, Vol. 42 No. 8, August 1994.
[4] L. Cong and W. Zhuang,“Non-line-of-sight error mitigation in TDOA. mobile location,”in Proc. IEEE Globecom, pp. 680–684, Nov 2001
[5] M. Cowlishaw,“decNumber C Library”,IBM UK Laboratories, http://www2.hursley.ibm.com/decimal
[6] G.M. Djuknic and R.E. Richton,”Geolocation and Assisted GPS,”Bell Laboratories, Lucent Technologies, Communication Magazine,pp.123-125,Feb.2001.
[7] W.H. Foy,”Position-location solutions by Taylor-series estimation,” IEEE Trans. Aerosp. Electron. Syst., vol. AES-12, pp. 187–194, March 1976
[8] E. Hespsaydir,”Mobile positioning in CDMA cellular networks,”Proceedings of The 5th International Conference on Automatic Face and Gesture Recognition 2002, Washington D. C, May20-21, 2002.
[9] G. Messier, M. Fattouche and B. R. Petersen,“Lo-cating an IS-95 mobile using its signal", in Conf. Rec. The Tenth International Conference on Wireless Communications (Wireless 98), vol. II, (Calgary, AB, Canada), pp. 562-574
[10] G.A. Mizusawa,”Performance of Hyperbolic Position Location Techniques for Code Division Multiple Access”, Virginia Tech, Blacksburg, VA 24061-0350, August 1996.
[11] M. Aatique,“Evaluation of TDOA Techniques for Position Location in CDMA System” ,Master’s Thesis at Virginia Polytechnic Institute and State University, September 1997.
[12] A.H. Sayed,A. Tarighat,and N. Khajehnouri,”Network-based wireless location,”IEEE Signal Processing Magazine, pp 24-40, July 2005
[13] Qualcomm Inc. MSM6025 Chipset Solution, http://www.cdmatech.com/products/msm6025_chipset_solution.jsp
[14] G.L. Quian,“TD-SCDMA service a high performance/price accurate locating technology”,China PUTIAN Institute,
[15] Google Earth Home, http://earth.google.com/
[16] CDMA University,CDMA2000 1x Series (RC1 & RC2, Rel 0, Rel A) (DVD-ROM)”,Qualcomm Inc., http://www.cdmauniversity.com
[17] http://www.fcc.gov/911/enhanced/
[18] http://www.geo-linx.com/public_safety.php
[19] “E112 issues and answer”,True Position,Inc. http://www.geo-linx.com/public_safety.php
[20] http://en.wikipedia.org/wiki/Low_noise_amplifier.
[21] http://en.wikipedia.org/wiki/Friis%27_formula
[22] 王誌麟, “表面聲波濾波器(SAW Filter)技術與應用發展趨勢”, EE Design, http://www.eedesign.com.tw/eenew/maintain/content/upload/document/dc907.htm
[23] 張廷維, “叢集技術在多基地台無線定位系統之應用”, 長庚大學電機工程研究所論文,民國九十年
[24] “台灣全島網路服務涵蓋圖”, 亞太行動寬頻電信, http://www.apbw.com/static/html//basic_service/com_july.shtml
[25] “無線通訊接收機介紹”,IC Design Magazine,June 2001
[26] http://cce.ccmtc.edu.tw/peterweb/book/download/
指導教授 蘇木春(Mu-Chun Su) 審核日期 2006-7-21
推文 facebook   plurk   twitter   funp   google   live   udn   HD   myshare   reddit   netvibes   friend   youpush   delicious   baidu   
網路書籤 Google bookmarks   del.icio.us   hemidemi   myshare   

若有論文相關問題,請聯絡國立中央大學圖書館推廣服務組 TEL:(03)422-7151轉57407,或E-mail聯絡  - 隱私權政策聲明