Class that holds Course information

Dependents:   Course_Example course_input class_finder

Revision:
8:f235174016c8
Parent:
7:fe9fcb384036
Child:
9:8fea357ee7a5
--- a/Course.cpp	Thu Dec 08 17:59:37 2016 +0000
+++ b/Course.cpp	Thu Dec 08 21:02:51 2016 +0000
@@ -5,7 +5,11 @@
     map<string, float> m;
     m["CLH"] = 33.774801;
     m["COC"] = 33.777442;
+    m["HWY"] = 33.777498;
+    m["ICR"] = 33.775448;
     m["KLS"] = 33.777262;
+    m["SCH"] = 33.776562;
+    m["SKI"] = 33.773603;
     m["VAN"] = 33.775991;
     return m;
 }
@@ -14,7 +18,11 @@
     map<string, float> m;
     m["CLH"] = -84.396389;
     m["COC"] = -84.397259;
+    m["HWY"] = -84.398582;
+    m["ICR"] = -84.401261;
     m["KLS"] = -84.396003;
+    m["SCH"] = -84.388060;
+    m["SKI"] = -84.395897;
     m["VAN"] = -84.397128;
     return m;
 }
@@ -23,7 +31,11 @@
     map<string, string> m;
     m["CLH"] = "Clough";
     m["COC"] = "CoC";
+    m["HWY"] = "Howey";
+    m["ICR"] = "IC";
     m["KLS"] = "Klaus";
+    m["SCH"] = "CoB";
+    m["SKI"] = "Skiles";
     m["VAN"] = "VanLeer";
     return m;
 }