2018
For a detailed description of what this project does, please consult the
Assignment-Briefing.pdf
file.
- Install Python 3 (3.6) on your machine
- Navigate to the Way-to-Go/ folder
- Execute
python main.py
- Install Python 3 on your machine
- Navigate to the Way-to-Go/ folder
- Execute
python -m <Package>.<file_name>
e.g.python -m Model.DirectoryModel.route_test
- That GpsLocator.py and GpsLocator class is named as such (as opposed to GPSLocator or gps_locator)
- That GeoUtils.py is named as such (as opposed to geo_utils.py)
- That GpsLocator.py and GeoUtils.py will be placed in the root directory of the program (i.e. directly inside the Way-to-Go/ folder)
- That GpsLocator.locationReceived() has the added parameter of 'self', since it is not a static method.
GpsLocator.locationRecieved()
is not called_location_received()
as you would expect a private method using PEP8, nor does is used name wrangling i.e.__locationReceived()