<- Back

Departure Monitor with prediction times.

Shows the real time departures prediction time on a station with coloring based on delay. Colors: black (no prediction), green (prediction available with low delay), red (delay bigger than 5 minutes).

Demo

Code excerpt

          
            jQuery(function($){
  const mobilitybox_access_token = '---LOGIN_OR_REGISTER_FOR_FREE_TO_INSERT_API_KEY_HERE---';
  const mobilitybox = new Mobilitybox(mobilitybox_access_token);
  mobilitybox.get_attributions().then((attributions)=>{
    $(".attributions").html(attributions.html);
  })

  mobilitybox.find_stations_by_name({query: "S Südkreuz Bhf (Berlin)"}).then((stations)=>{
    var station = stations[0];

    StationHTML(station).appendTo($(".departures"));

    station.get_next_departures().then((departures)=>{
      departures.map((departure)=>{
        DepartureHTML(departure).appendTo($(".departures"));
      })
    });
  });
});

function StationHTML(station){
  return jQuery(
    '<a href="#" class="list-group-item list-group-item-action active">'+
        '<div class="d-flex w-100 justify-content-between">'+
          '<h5 class="mb-1">'+station.name+'</h5>'+
        '</div>'+
      '</a>'
  )
}

function DepartureHTML(departure){

  const prediction_status_color = function(){
    var prediction_delay = (!departure.departure_time.predicted_at)?(0):(departure.departure_time.predicted_at-departure.departure_time.scheduled_at);
    return (prediction_delay >= 5*60*1000 /*miliseconds*/)?'text-danger':'text-success';
  }

  return jQuery(
    '<a href="#" class="list-group-item list-group-item-action">'+
        '<div class="d-flex w-100 justify-content-between">'+
          '<div class="d-flex flex-column">'+
            '<h5 class="mb-1">'+departure.headsign+'</h5>'+
            '<p class="mb-1">'+departure.line_name+'</p>'+
            '<small>'+departure.provider+'</small>'+
          '</div>'+
          (!!departure.departure_time.predicted_at?
            ('<bold class="'+prediction_status_color()+'">'+departure.departure_time.predicted_at_formatted()+'</bold>') :
            ('<bold>'+departure.departure_time.scheduled_at_formatted()+'</bold>')
          )+
        '</div>'+
      '</a>'
  )
}

          
        

Full HTML-Code


<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>Departure Monitor with prediction times.</title>
		<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />

		<!-- CSS only -->
		<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
		
		<!-- JS, Popper.js, and jQuery -->
		<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
		<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
		<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
		<script src="https://unpkg.com/mobilitybox/dist/mobilitybox.min.js"></script>

		<style>
			body {
			  background-color: silver;
			}
			
			.attributions {
				border-radius: 0 3px 0 0;
				background-color: white;
				border-left: 0;
				border-bottom: 0;
				padding: 5px;
				font-size: 10px;
			}
		</style>
	</head>
	<body>
		<div class="container">
		      <div class="row">
		        <div class="col-sm">
		          <br />
		          <div class="list-group departures"></div>
		        </div>
		      </div>
		    </div>
		    <span class="fixed-bottom">
		      <span class="attributions border text-muted font-weight-light"></span>
		    </span>

		<script type="text/javascript">
      jQuery(function($){
			  const mobilitybox_access_token = '---LOGIN_OR_REGISTER_FOR_FREE_TO_INSERT_API_KEY_HERE---';
			  const mobilitybox = new Mobilitybox(mobilitybox_access_token);
			  mobilitybox.get_attributions().then((attributions)=>{
			    $(".attributions").html(attributions.html);
			  })
			
			  mobilitybox.find_stations_by_name({query: "S Südkreuz Bhf (Berlin)"}).then((stations)=>{
			    var station = stations[0];
			
			    StationHTML(station).appendTo($(".departures"));
			
			    station.get_next_departures().then((departures)=>{
			      departures.map((departure)=>{
			        DepartureHTML(departure).appendTo($(".departures"));
			      })
			    });
			  });
			});
			
			function StationHTML(station){
			  return jQuery(
			    '<a href="#" class="list-group-item list-group-item-action active">'+
			        '<div class="d-flex w-100 justify-content-between">'+
			          '<h5 class="mb-1">'+station.name+'</h5>'+
			        '</div>'+
			      '</a>'
			  )
			}
			
			function DepartureHTML(departure){
			
			  const prediction_status_color = function(){
			    var prediction_delay = (!departure.departure_time.predicted_at)?(0):(departure.departure_time.predicted_at-departure.departure_time.scheduled_at);
			    return (prediction_delay >= 5*60*1000 /*miliseconds*/)?'text-danger':'text-success';
			  }
			
			  return jQuery(
			    '<a href="#" class="list-group-item list-group-item-action">'+
			        '<div class="d-flex w-100 justify-content-between">'+
			          '<div class="d-flex flex-column">'+
			            '<h5 class="mb-1">'+departure.headsign+'</h5>'+
			            '<p class="mb-1">'+departure.line_name+'</p>'+
			            '<small>'+departure.provider+'</small>'+
			          '</div>'+
			          (!!departure.departure_time.predicted_at?
			            ('<bold class="'+prediction_status_color()+'">'+departure.departure_time.predicted_at_formatted()+'</bold>') :
			            ('<bold>'+departure.departure_time.scheduled_at_formatted()+'</bold>')
			          )+
			        '</div>'+
			      '</a>'
			  )
			}
		</script>
	</body>
</html>