Skip to content

Instantly share code, notes, and snippets.

@stevenbeeckman
Last active January 14, 2017 13:19
Show Gist options
  • Save stevenbeeckman/ce0917b8d6e960e33bdbbcd75c0d7d38 to your computer and use it in GitHub Desktop.
Save stevenbeeckman/ce0917b8d6e960e33bdbbcd75c0d7d38 to your computer and use it in GitHub Desktop.
EFHK to RJAA fuel consumption

An attempt to visualize my fuel consumption

Timestamp (UTC) | Total fuel (lbs) | Fuel flow (lbs/hr) | Miles to go (NM)

10h27 | 150200 | 11h00 | 140000 | 20k lbs/hr 11h41 | 129309 | 12h00 | 124500 | 15k lbs/hr 12h32 | 116000 | 18k lbs/hr 13h01 | 108611 | 16k lbs/hr | 3075 miles to go)

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Visualisation of the fuel consumption from EFHK to RJAA fuel consumption</title>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 960px;
height: 500px;
position: relative;
}
</style>
</head>
<body>
<svg width="960" height="500" viewport="0 0 2000 160000">
<rect x="20" y="9800" width="5" height="150200"/>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment