private void SetCoords(School school)
 {
     try
     {
         GeocodeResult geocodeResult = new Geocode().GetCoordinates(school.GetAddress());
         school.Location = geocodeResult.Location;
     }
     catch(FormatException)
     {
         Console.WriteLine("Unable to get address for {0}\nThere was a format exception", school);
     }
     catch (Exception e)
     {
         Console.WriteLine("Unable to get address for {0}\nError was{1}", school, e);
     }
 }