Changes between Version 4 and Version 5 of Internal/WiMax
- Timestamp:
- Apr 25, 2011, 8:00:41 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/WiMax
v4 v5 63 63 4. Run ''wimax_gps_oml2'' collection application. 64 64 {{{ 65 ./wimax_gps_oml2 --oml-id 4 --oml-exp-id exp4 --oml-server localhost:3003mple a Garmin USB Receiver - model#: GPS18x-5Hz. Other compatible GPS models can be found on http://gpsd.berlios.de/hardware.html 66 Installation / setup procedures 67 68 1. Edit the /etc/apt/sources.list and add the following line: 69 70 deb http://packages.orbit-lab.org/ubuntu jaunty main 71 72 2. Update information based on the changed sources.list. 65 ./wimax_gps_oml2 --oml-id 4 --oml-exp-id exp4 --oml-server localhost:3003 73 66 }}} 67 This will create an sqlite database file (exp4.sq3) on the oml server. 74 68 75 69 == Troubleshooting GPS Service Daemon == 76 70 Please refer to troubleshooting ''gpsd'' please refer to http://gpsd.berlios.de/troubleshooting.html. 77 71 72 == Sample data == 73 Here's a snapshot of drive data collected around the Wimax BS at Rugters Winlab. 74 75 [[Image(gps_drive_rssi.png)]] 76 78 77 == Post processing data == 79 After the application is run, it'll create an sql file on the oml server. Processing of this file to extract the measured data can be done in several ways.78 After the application is run, it'll create an sql file on the oml server. Processing this file to extract the measured data can be done in several ways. The steps outlined here can be used to generate the image shown above. 80 79 81 == Sample data == 82 Here's a snapshot of the sample data collected around the Wimax BS at Rugters Winlab. 83 [[Image(Excelexample.PNG)]] 80 1. Process the sql file into delimited ascii text. 81 {{{ 82 sqlite3 exp4.sq3 "select * from wimax_measurements;" > exp4.dat 83 }}} 84 85 2. Extract the rssi field from delimited ascii text file. This was done via awk script: rssi.awk 86 {{{ 87 awk -f rssi.awk exp4.dat > exp4_rssi.dat 88 }}} 89