public Integer getStartedRoutes() {
   int started = 0;
   for (Route route : context.getRoutes()) {
     if (context.getRouteStatus(route.getId()).isStarted()) {
       started++;
     }
   }
   return started;
 }
 public Integer getTotalRoutes() {
   return context.getRoutes().size();
 }