|
Objectives Addressed
Overview
In completing this assignment, you will develop a software application to analyze GPS data. Important Note
You will have over three weeks to work on this assignment. The assignment is worth 200 points. Problem Statement
In teams of three or four you are to design and implement a GPS analyzer. Potentially Interesting Results
GPS Data
The GPS data available to you consists of a file with multiple trips. Each trip represents one commute from my home to MSOE or back. The first few lines of the file are: Start time: 2004-03-05 11:09:23 record,fix,hour,min,sec,msec,latitude,longitude,alt 1,3,11,9,24,710,43.0835367,-88.0390017,702.09 2,3,11,9,26,310,43.0835367,-88.0390017,702.09 3,3,11,9,27,310,43.0835367,-88.0390017,702.09 ... The first line indicates the starting time for the first trip. The second line contains labels for the different fields associated with each record. The third line contains the data associated with the first data record. Each record includes (separated by commas) the record number, the number of satellites used to get a fix on the GPS receiver's position, the time the record was made (in hours, minutes, seconds, and milliseconds), the latitude, longitude, and altitude. These records continue until the end of the trip. Data for the second trip follow immediately after the first trip. In this particular example, the first trip has 1336 records. Here are lines 1337-1345 of the data file: 1335,4,11,31,52,750,43.0445550,-87.9081050,639.76 1336,4,11,31,53,750,43.0445550,-87.9081033,639.76 Start time: 2004-03-05 17:10:35 record,fix,hour,min,sec,msec,latitude,longitude,alt 1,3,17,10,36,380,43.0445983,-87.9081033,583.98 2,3,17,10,37,380,43.0445950,-87.9081017,583.98 3,3,17,10,38,380,43.0445917,-87.9081000,583.98 4,3,17,10,39,380,43.0445917,-87.9081033,587.27 5,3,17,10,40,380,43.0445850,-87.9081067,587.27 Note: You are not required to use the entire data file for your program. Design Report (due 11:00pm, the day prior to week 9 lab)
Your design should consist of a list of features, at least one use case describing how the user may interact with your software, and an annotated UML class diagram (see my useful software page for a tool to draw UML diagrams) expressing your high level design, a verbal description of how your objects/functions will interact. Interim Activity Logs (due 11:00pm, the day prior to week 8 and 10 labs)
You should submit an activity log to indicate your activity and progress on this assignment during the week prior to submission (one log file for the entire team). Team Evaluation
Upon completion of the project, each team member must complete the Team Evaluation Form and turn it in before taking the final exam. Lab Report (due 11:00pm, the day prior to last week 10 lecture)
Here is a template file to use as a starting point for this report. There should be one lab report for each team of students. The report should consist of the following:
As with any report you submit, correct spelling and grammar are required. In addition, your report should be submitted electronically following the Electronic submission guidelines. (You may wish to consult the XML help video and/or sample report before submitting your report.) Be sure to keep copies of all your files, in case something gets lost. Your lab grade will be determined by the following factors:
If you have any questions, consult your instructor. Acknowledgment
This assignment was developed by Dr. Chris Taylor. Example Explanation of a Statistic
One statistic we attempted to calculate was the location of traffic lights that varried their operation from flashing yellow in the middle of the night to red/green operation during the day. (We did not attempt to handle traffic lights that flashed red in the middle of the night.)
First we identified all of the potential traffic light locations (see our description of how we did that below [I'm not going to include this description]). A position that would qualify for the statistic we are calculating here must involve some stops during the day and no stops during the middle of the night (because it was flashing yellow then). Therefore, for each potential traffic light, we checked to see if any of the stops occurred before 6:00 AM (this was our middle-of-the-night to day transition time). If no stops occurred before 6:00 AM we then checked to make sure that at the vehicle passed through this location at least three times before 6:00 AM. We did this to eliminate stop lights on any potential "non-standard" routes. If the location met both of these criteria we then selected the center of all of the stopped positions within the 20 meter radius. We realize that there are better ways to get the true position of the traffic light, but we figured this would be close enough.
|
© 2001-2015 Dr. Christopher C. Taylor | Office: CC-36C | Phone: 277-7339 |