Changes between Version 4 and Version 5 of Internal/WiMax


Ignore:
Timestamp:
Apr 25, 2011, 8:00:41 PM (13 years ago)
Author:
nilanjan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/WiMax

    v4 v5  
    63634. Run ''wimax_gps_oml2'' collection application.
    6464{{{
    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
    7366}}}
     67This will create an sqlite database file (exp4.sq3) on the oml server.
    7468
    7569== Troubleshooting GPS Service Daemon ==
    7670Please refer to troubleshooting ''gpsd'' please refer to http://gpsd.berlios.de/troubleshooting.html.
    7771
     72== Sample data ==
     73Here's a snapshot of drive data collected around the Wimax BS at Rugters Winlab.
     74
     75[[Image(gps_drive_rssi.png)]]
     76
    7877== 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.
     78After 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.
    8079
    81 == Sample data ==
    82 Here's a snapshot of the sample data collected around the Wimax BS at Rugters Winlab.
    83 [[Image(Excelexample.PNG)]]
     801. Process the sql file into delimited ascii text.
     81{{{
     82sqlite3 exp4.sq3 "select * from wimax_measurements;" > exp4.dat
     83}}}
     84
     852. Extract the rssi field from delimited ascii text file. This was done via awk script: rssi.awk
     86{{{
     87awk -f rssi.awk exp4.dat > exp4_rssi.dat
     88}}}
     89