Skip to content

Instantly share code, notes, and snippets.

@davidfischer
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidfischer/156e8972258fd1a3f13d to your computer and use it in GitHub Desktop.
Save davidfischer/156e8972258fd1a3f13d to your computer and use it in GitHub Desktop.
Beer Styles
  • International bittering units or IBU is a way of measuring the perceived bitterness of beer
  • Standard Reference Method or SRM is a system for measuring the color of beer
body, html {
margin: 0;
padding: 0;
font-family: "Open Sans", serif;
}
.axis path,
.axis line {
fill: none;
stroke: #ccc;
shape-rendering: crispEdges;
}
text {
fill: #666;
font-size: 0.7em;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
#tooltip {
max-width: 300px;
background-color: rgba(242, 242, 242, 0.8);
border: 1px solid #666;
padding: 15px;
position: absolute;
}
#tooltip h3 {
margin: 0;
padding: 0;
}
#tooltip h5 {
color: #777;
margin: 0;
padding: 0;
text-transform: uppercase;
}
#tooltip label {
float: left;
font-weight: bold;
margin-right: 20px;
width: 40px;
}
#tooltip #srm-color {
border: 1px solid black;
border-radius: 50%;
display: inline-block;
height: 15px;
margin-left: 10px;
width: 15px;
}
#tooltip p {
font-size: 0.8em;
margin: 0.5em 0;
}
#tooltip #logo-container {
float: left;
border-radius: 3px;
margin-right: 3px;
width: 50px;
height: 50px;
}
#tooltip #logo-container img {
border-radius: 3px;
max-width: 100%;
max-height: 100%;
overflow: hidden;
}
"use strict";
(function () {
var margin = {top: 10, bottom: 10, left: 10, right: 10};
var width = window.innerWidth * 0.98 - margin.left - margin.right;
var height = window.innerHeight * 0.98 - margin.top - margin.bottom;
var dim = d3.min([width, height]);
var x = d3.scale.linear()
.range([0, width])
.domain([1, 100]);
var y = d3.scale.linear()
.range([height, 0])
.domain([2, 12]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.tickValues([]);
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.tickValues([]);
// SRM to color linear scale
// This is taken directly from Wikipedia
var srm = d3.scale.linear()
.domain([2, 3, 4, 6, 8, 10, 13, 17, 20, 24, 29, 35, 40])
.range(['#F8F753', '#F6F513', '#ECE61A', '#D5BC26', '#BF923B', '#BF813A', '#BC6733', '#8D4C32', '#5D341A', '#261716', '#0F0B0A', '#080707', '#030403']);
// ABV strength scale
var strength = d3.scale.threshold()
.domain([3.99, 6.01, 9.01])
.range(["Session", "Standard", "High", "Very High"])
// Used to determine the size of the circle
// Corresponds roughly to how wide the variation of the style
// with respect to ABV and IBU
var variability = d3.scale.linear()
.range([dim / 90, dim / 20])
var svg = d3.select('#chart').append('svg')
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.call(d3.behavior.zoom()
.scaleExtent([1, 5])
.on("zoom", redraw))
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var lines = svg.append("g");
// Credit the BJCP for their guidelines and data
svg.append("text")
.attr("x", 20)
.attr("y", height - 5)
.text("Source: BJCP");
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("x", width)
.attr("dy", "-0.71em")
.style("text-anchor", "end")
.text("More Bitter");
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Higher Alcohol");
function slugify (str) {
return str.toLowerCase().replace(/ /g, '-').replace(/[^a-z0-9-]/g, '')
}
function redraw () {
if (d3.event.scale > 1) {
svg.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
} else {
// When zooming out from a fully zoomed out position,
// Simply center the SVG again
svg.attr("transform", "translate(" + margin.top + "," + margin.left + ")");
}
// Resize the circles
d3.selectAll("circle.dot").attr("r", function (d) { return variability(((d['IBU Max'] - d['IBU Min']) / 60) * ((d['ABV Max'] - d['ABV Min']) / 4)) / d3.event.scale; });
}
d3.csv("styles.csv", function(error, data) {
svg.selectAll(".dots")
.data(data).enter()
// Circles
.append("circle")
.attr("stroke", "black")
.attr("stroke-width", 0.1)
.attr("r", function (d) { return variability(((d['IBU Max'] - d['IBU Min']) / 60) * ((d['ABV Max'] - d['ABV Min']) / 4)); })
.attr("transform", function(d) {
// Place the circle on the graph based on the X, Y coords
return "translate(" + x(d['IBU Mid']) + "," + y(d['ABV Mid']) + ")";
})
.attr("id", function (d) { return slugify(d['Style Name']); } )
.attr("class", function (d) { return 'dot ' + slugify(d['Style Category']); } )
.attr("style", "opacity: 0.7")
.attr("fill", function (d) { return srm(parseInt(d['SRM Mid'])); } )
.on("mouseover", function(d) {
// Show the tooltip at the current mouse position
// with additional data
var m = d3.mouse(d3.select("#chart").node());
var category = slugify(d['Style Category']);
d3.select("#tooltip").style("display", null)
.style("left", (m[0] > (width * 0.66) ? m[0] - 250 : m[0] + 30) + "px")
.style("top", (m[1] > (height / 2) ? m[1] - 250 : m[1] - 20) + "px");
d3.select("#style-name").html(d['Style Name']);
d3.select("#style-category").html(d['Style Category']);
d3.select("#abv-min").html(d['ABV Min']);
d3.select("#abv-max").html(d['ABV Max']);
d3.select("#abv-strength").html(strength(d['ABV Mid']));
d3.select("#ibu-min").html(d['IBU Min']);
d3.select("#ibu-max").html(d['IBU Max']);
d3.select("#srm-min").html(d['SRM Min']);
d3.select("#srm-max").html(d['SRM Max']);
d3.select("#srm-color").style("background-color", srm(d['SRM Mid']));
d3.select("#description").html(d['Description'] || '');
d3.select("#commercial-beer-name").html(d['Commercial Example Name'] || '');
d3.select("#logo-container").html(d['Commercial Example Picture'] ? '<img src="' + d['Commercial Example Picture'] + '" />' : '');
// Draw lines to other beers of the same style category
d3.selectAll('.' + category).each(function (datum) {
if (datum['Number'] !== d['Number']) {
lines.append("line")
.attr("class", "beer-links")
.attr("stroke", "#000")
.attr("stroke-width", 0.2)
.attr("x1", x(d['IBU Mid']))
.attr("y1", y(d['ABV Mid']))
.attr("x2", x(datum['IBU Mid']))
.attr("y2", y(datum['ABV Mid']));
}
});
}).on("mouseout", function() {
// Hide the tooltip
d3.select("#tooltip").style("display", "none");
// Remove the lines to other beers
d3.selectAll(".beer-links").remove();
});
});
})();
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A Visualization of BJCP Beer Styles">
<meta name="author" content="David Fischer">
<title>A Visualization of BJCP Beer Styles</title>
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<link rel="stylesheet" href="chart.css">
</head>
<body>
<div id="chart"></div>
<div id="tooltip" style="display: none">
<h3 id="style-name"></h3>
<h5 id="style-category"></h5>
<div id="abv">
<label>ABV</label>
<span id="abv-min"></span><span>%</span>
<span> - </span>
<span id="abv-max"></span><span>%</span>
<span>(</span><span id="abv-strength"></span><span>)</span>
<div class="clearfix"></div>
</div>
<div id="ibu">
<label>IBU</label>
<span id="ibu-min"></span>
<span> - </span>
<span id="ibu-max"></span>
<div class="clearfix"></div>
</div>
<div id="srm">
<label>SRM</label>
<span id="srm-min"></span>
<span> - </span>
<span id="srm-max"></span>
<div id="srm-color"></div>
<div class="clearfix"></div>
</div>
<p id="description"></p>
<div id="commercial-example">
<div><strong>Commercial example</strong></div>
<div id="logo-container"></div>
<span id="commercial-beer-name"></span>
</div>
</div>
<script type="text/javascript" src="chart.js"></script>
</body>
</html>
Number Style Name Style Category ABV Min ABV Max ABV Mid IBU Min IBU Max IBU Mid SRM Min SRM Max SRM Mid Description Commercial Example Name Commercial Example Picture
1A American Light Lager Standard American Beer 2.8 4.2 3.5 8 12 10 2 3 2.5 A light-bodied and very refreshing lager. Bud Light http://lh3.googleusercontent.com/insZIS_g3fAAoAOdYRxSF58nfWL-PaistrAb5vWwlS0M-LORuVqqW5Od07MdtM1oZrXe0dVIa_oDBlcy2i_sKBr1dOU5Rg
1B American Lager Standard American Beer 4.2 5.3 4.75 8 18 13 2 4 3 A light-bodied lager designed with drinkability in mind. Pabst Blue Ribbon http://lh3.googleusercontent.com/YiHW8qM1ktMHyatEEfLozu2G5odHJsZ4Z8ovTtGsFiJJUhy9Cw1zZ4Z37SDUW0f3-FDjM17n9tYMyjSUeJVwaMxieoOrhg
1C Cream Ale Standard American Beer 4.2 5.6 4.9 8 20 14 2.5 5 3.75 An ale that is light and crisp while medium-bodied with a smooth mouthfeel. Mother Earth Cali Creamin' http://lh5.ggpht.com/0uLs4sqO1hu_cYZh77WzWB1edCyktbLOfquxrN-Ua58ZVY_xu5Gl1LwmBcjl0NpRe8o_fZJUK3QIhatbWPYvMVqrmNzJgg
1D American Wheat Beer Standard American Beer 4 5.5 4.75 15 30 22.5 3 6 4.5 A refreshing wheat beer that favors hoppy notes over yeast character. Bell's Oberon http://lh4.ggpht.com/-pil94g1ZAhgpNsUNe7WI6XqR-ccvOoFowdVHVg18_ia0jXu866HF9_Ye-nC6i3SHGaF5lmqOM5uMhyHQG2HpT4Aq1l5Dw
2A International Pale Lager International Lager 4.6 6 5.3 18 25 21.5 2 6 4 A highly carbonated, medium-bodied lager that is well-balanced. Heineken http://lh4.ggpht.com/80tXfLBPO1_Qkv6ljC6NkD27F7mfuPjT_cc9MGKlv9hVeSzgtP2wP5etw0x8XsP-uq-5k6oJv5RsTtyvJ3Nhv6m2wNYBBg
2B International Amber Lager International Lager 4.6 6 5.3 8 25 16.5 7 14 10.5 A malty lager focusing on notes of a caramel or toast quality with restrained bitterness. Brooklyn Lager http://lh3.googleusercontent.com/ihR6NQI5A0F-h9G4ld3uz7PTGr8hZBkkWtvexMmWQlztq4KQVQFPkw_RzhFLaZvzVWJUTuXxiFQgyAus-6IXFXNcMJ3mlQ
2C International Dark Lager International Lager 4.2 6 5.1 8 20 14 14 22 18 A dark and sweet international pale lager that is full-bodied with malt as the primary flavor element. Shiner Bock http://lh3.googleusercontent.com/e2MLpIvpzjH6-OF2UiXDRcoEEk2QffPg9csL5yB72P4Qloy9kNTL6QQWF7m9hQtNce4qzXXFyF6kLaTEqxhU7yPyTATHrBw
3A Czech Pale Lager Czech Lager 3 4.1 3.55 20 35 27.5 3 6 4.5 A rich, Czech-style lager that is light-bodied with small hints of bitterness. Notch Session Pils http://lh4.ggpht.com/x3ektFS_xZH5Ubdc7SZsNvbIrbvXziyKAE_n3qh6hKsSckPjCrHnffqxfCOR8tc9MGaTMosy_GzvT495tmdKpwo_KhYm
3B Czech Premium Pale Lager Czech Lager 4.2 5.8 5 30 45 37.5 3.5 6 4.75 Well-balanced with complex malt flavors that carry strong bitter notes without a harsh finish. Brewfist Czech Norris http://lh6.ggpht.com/ogXjEzAjPZIK18LunUPk-g6HNGonYGfB4iXp0cn-mqZ8KRW3jBgL7udz6jiI8WHkUEnbCxxOqXxpmFU_Gr7GqlPWtcn3HHM
3C Czech Amber Lager Czech Lager 4.4 5.8 5.1 20 35 27.5 10 16 13 A malt-focused Czech lager that brings out more biscuit or caramel notes than hop character. Notch Polotmavy http://lh4.ggpht.com/x3ektFS_xZH5Ubdc7SZsNvbIrbvXziyKAE_n3qh6hKsSckPjCrHnffqxfCOR8tc9MGaTMosy_GzvT495tmdKpwo_KhYm
3D Czech Dark Lager Czech Lager 4.4 5.8 5.1 18 34 26 14 35 24.5 A rich, dark, malty Czech-style lager with pronounced roast character. Green Man Czech Dark Lager http://lh4.ggpht.com/5o_Mmwq29exS8CjEArthloZd7CB7la0HeqjzB53ovH3dyKBSIVGTp-OBXGn-FIPttzoXvZRlElXLUMwtFWpK7zTPPHNmvA
4A Munich Helles Pale Malty European Lager 4.7 5.4 5.05 16 22 19 3 5 4 A clean, malty, gold-colored German-style lager with a grainy-sweet flavor and a soft, dry finish. Weihenstephaner Original http://lh4.ggpht.com/4vI-fBBBDN0DDYheL03fXVuWp_MZ4IV8FsvKjM84WhbjOtKpgomw1n6vh68Ewn_HsMutqWwya5_XCJrQ2jZJYQ1mR4QD
4B Festbier Pale Malty European Lager 5.8 6.3 6.05 18 25 21.5 4 7 5.5 A smooth, pale German-style lager with a strong malt presence balanced with a light hop character. Augustiner Oktoberfestbier http://lh3.googleusercontent.com/_t0UdT78jeGaKt_3BWy76SGf67Ze4rAo_qeZJi4DxTKrc1yZ9iILd0cogGABAs4YtGdsx10t9D_OSULBwfFW4ne_b374hEI
4C Helles Bock Pale Malty European Lager 6.3 7.4 6.85 23 35 29 6 11 8.5 A strong, malty, pale German-style lager with strong hop character. Tröegs Cultivator Helles Bock http://lh6.ggpht.com/n_OjCBocXFckhhlJYLLVC4Lsp3FK1pqBb1dL714w05Tyh-HInKj25WBpAPn-0-HWtDJlQq_YUGJpcNIYkG4NsyLlE6C5vBI
5A German Leichtbier Pale Bitter European Beer 2.4 3.6 3 15 28 21.5 2 5 3.5 A pale, light-bodied German-style lager. Beck’s Light http://lh3.ggpht.com/gez9KEfjM8jT-buLicoRmkL2Qj1ck3oOaz8OrSyl5P0WJvhGjBMPksIMEgvPJiMZ4DcZmUG4DDlfml68LAYYWJOWXsY8_w
5B Kölsch Pale Bitter European Beer 4.4 5.2 4.8 18 30 24 3.5 5 4.25 A crisp, clear beer balanced with subtle fruit and hop characters. Ballast Point Pale Ale http://lh4.ggpht.com/rLgikncunFJ7tFJ12l1Tf4dGZJHEvQMAMOAvkQH0DP44tcJWWfUwe-fDIuDe38KhPkGoH-8gxUvyElCYCUsKGi6wnmKqWA
5C German Helles Exportbier Pale Bitter European Beer 4.8 6 5.4 20 30 25 4 7 5.5 A well-balanced, smooth German-style lager with moderate body and aromatic hop character. DAB Original http://lh3.ggpht.com/Jt3XYDPr1AdjXNIuLfUTbPMfGW4ZGTloqQv7nWfXv6hUZRAtcfkYf5wNxm5JeayVHX651jh2-oYCnWhn4x3TzUO6dE1b
5D German Pils Pale Bitter European Beer 4.4 5.2 4.8 22 40 31 2 5 3.5 A gold-colored, light-bodied German-style beer with crisp, floral hop aroma. Paulaner Premium Pils http://lh3.googleusercontent.com/YYFkpyGZTRstXaUpjRm2PlXYRFOpAwk8GFFvAnlupYS_gG7lG1y5GUaeAj2xlemNf-QsmmBrFoBBn9v8yoYrTNnZF2SI
6A Märzen Amber Malty European Lager 5.8 6.3 6.05 18 24 21 8 17 12.5 A malty, German-style amber lager with a toasty and bready flavor, restrained bitterness with a dry finish. Bomber Marzen http://lh6.ggpht.com/Ecivvlbdzte5Jeq8iYADG4iNicpKpsiFC4c5hVnEkbU3QBxG7xyR4AbU_rjrtMDbpIUMRzCEVHNBsyuIu0nx42rqMrl0m1M
6B Rauchbier Amber Malty European Lager 4.8 6 5.4 20 30 25 12 22 17 A malty, German-style amber lager with a balanced, beechwood smoke character. Revolution Chicago Smoke http://lh6.ggpht.com/osMEf4HGVre7BYm36UehoPakCUeo4AFlb8_bUcihJ9QXb_v0Rvr2FgkBZ9Hh7NUMoISq48V4TLVUnVtkuSZWxX16hA0_fg
6C Dunkles Bock Amber Malty European Lager 6.3 7.2 6.75 20 27 23.5 14 22 18 A dark, strong German-style lager that emphasizes its malt richness and toasty qualities. Great Lakes Rockefeller Bock http://lh3.googleusercontent.com/EV9F5zO4gMVXPKMnDMGuMQFYJmsm2fQBrKDuv-QLXV0Dqs1RseYxDsbxJLVo_uBB9WkMKlYsZFtu-pQrY45PI-eZORy9Sg
7A Vienna Lager Amber Bitter European Beer 4.7 5.5 5.1 18 30 24 9 15 12 A moderate amber lager with soft malt characteristics at the forefront that finishes well balanced. Figueroa Mountain Danish-style Red Lager http://lh6.ggpht.com/gv-Wh60q-iIxJ9l6WchG3gLGhUui7lPiXvMdfL8HB2idNSxFJjFem_nnsAYT5euP1is-R5ZmP7ohM8UUzfH2IL9lSCBgdA
7B Altbier Amber Bitter European Beer 4.3 5.5 4.9 25 50 37.5 11 17 14 A medium-bodied German-style beer that balances its bitterness and crisp maltiness with subtle fruity notes. Uerige Altbier http://lh4.ggpht.com/G8KnDQN0ye-f9rjhuWWAiQ5F9381u4slCcvVmJjjMWmeq5h_7x2DOBPGYGyzLArm3o_6dtLXPa4pBr7T1l2kWG8KhnSHVg
7C-a Pale Kellerbier Amber Bitter European Beer 4.7 5.4 5.05 20 35 27.5 3 7 5 A young, unfiltered German-style beer with pronounced yeast character. Hofbrau Munchner Sommer Naturtrub http://lh4.ggpht.com/5FD2m400cFMk-_qtoT5mx-Pup_NqwT1XD6wI5gXkb2FbXJi1LTDOjTNsaz9gCv0gK_i5XoyI0CQlqjNuT2JzfrMmw0zfPg
7C-b Amber Kellerbier Amber Bitter European Beer 4.8 5.4 5.1 25 40 32.5 7 17 12 A young, unfiltered German-style beer with pronounced yeast character. Löwenbräu Kellerbier http://lh5.ggpht.com/ldYNSxc_a4ef6fa95Q4rj9BfAjUraB-TJpZqHBf57LilqqE5-cChnuQzvEx-fBuHteLcbf7Sk1qpyaEzesuV-F1XvhYjPa4
8A Munich Dunkel Dark European Lager 4.5 5.6 5.05 18 28 23 14 28 21 A dark, rich beer with with rich, complex ready notes and chocolate-like flavors. Titletown Gemutlichkeit http://lh3.ggpht.com/EnbpU_BiYlJXW_L-jm8dIDys19cTZNrDF277EGXqmaieJqERev8wgPaYDqTCcWmsrGZqWKGMKUrLqoMq3SLPSm7_rF63DYE
8B Schwarzbier Dark European Lager 4.4 5.4 4.9 20 30 25 17 30 23.5 A dark, German-style lager with balanced roasted, smooth malt flavors and mild bitterness. Live Oak Schwarzbier http://lh3.googleusercontent.com/UK40KbVezSTt_byuxyDA0vwUMRFhdHW1zMLrYULDGD3ZRUrwEpuAj8ZDql1huZf5O-x1swakQ79m079-SPqgjVnN_OgB
9A Doppelbock Strong European Beer 7 10 8.5 16 26 21 6 25 15.5 A noticeably strong, rich, and very malty German-style lager. Tröegs Troegenator http://lh6.ggpht.com/n_OjCBocXFckhhlJYLLVC4Lsp3FK1pqBb1dL714w05Tyh-HInKj25WBpAPn-0-HWtDJlQq_YUGJpcNIYkG4NsyLlE6C5vBI
9B Eisbock Strong European Beer 9 14 11.5 25 35 30 18 30 24 A dark, full-bodied German-style lager that is very strong and carries a viscous quality. Kulmbacher Eisbock http://lh3.ggpht.com/AJl2-fyGhcdL_NUHQVuU1ZLGYUSFvn1ozxXxK59AwPr_lJ5xt2TTPzaLef6HaZuX78UUde_B3Zjnws3U5amQSWAbt0wVGGo
9C Baltic Porter Strong European Beer 6.5 9.5 8 20 40 30 17 30 23.5 A complex beer that combines multi-layered malt with dark fruit flavors. Devils Backbone Danzig http://lh5.ggpht.com/WjdcC6-n0WyBdZ-cu4BBgMNL8pPHX2wptFALwqTgzfQ40eHjejd4wLDu76ny1ehxEIyZbCi0ZS0w_oHJAJng8JhAASw7hg
10A Weissbier German Wheat Beer 4.3 5.6 4.95 8 15 11.5 2 6 4 A refreshing German-style wheat beer with high carbonation, a fluffy mouthfeel, and a dry finish. Ayinger Bräu Weisse http://lh3.ggpht.com/wXb0SHWFwPPsGytjXUQcq6vb5OSyjKahYodd7oDuLK3-OekbxUIbrs0x74TTgPVkAU9CtmhY8dOM8Rp8FOfYVb0L3mcwtBs
10B Dunkles Weissbier German Wheat Beer 4.3 5.6 4.95 10 18 14 14 23 18.5 A moderately dark German-style wheat beer with a banana-and-clove yeast character, supported by a toasted bread flavor. Bombshell Dunkelweizen http://lh4.ggpht.com/H2OFaLnTNXb0SDMACr7jP2sw5XUxZMdKMtz3gQktnlvRDDVB2NOC_fQzs6QBOX00sBtCBPMQo8Nmia5ysEikF7OdxRYLXg
10C Weizenbock German Wheat Beer 6.5 9 7.75 15 30 22.5 6 25 15.5 A strong, wheat-based ale that combines noticeable yeast flavors with full-bodied, malt-rich flavor. Flying Dog Wild Dog Weizenbock http://lh3.googleusercontent.com/K1WiSrv1cSYMAp4ISUcSC3o-VjYRx8bAF4I36H6--iPoOy6qLteAmzIRdRk9a3-IkAriJLjkPVoGnRRK-ESSNIwCHZo0BA
11A Ordinary Bitter British Bitter 3.2 3.8 3.5 25 35 30 8 14 11 A moderately bitter ale with low carbonation designed for easy drinking. Tetley’s Original Bitter
11B Best Bitter British Bitter 3.8 4.6 4.2 25 40 32.5 8 16 12 A refreshing session beer with aromatic hops and a balanced malt profile. Harvey’s Sussex Best Bitter
11C Strong Bitter British Bitter 4.6 6.2 5.4 30 50 40 8 16 12 A pale bitter ale with pronounced malt and hop flavors. Bass Ale
12A British Golden Ale Pale Commonwealth Beer 3.8 5 4.4 20 45 32.5 2 6 4 A pale, moderate ale centered around its hop profile. Kelham Island Pale Rider
12B Australian Sparkling Ale Pale Commonwealth Beer 4.5 6 5.25 20 35 27.5 4 7 5.5 An evenly balanced ale with soft, fruity esters, suited for a hot summer’s day. Coopers Sparkling Ale http://lh3.ggpht.com/8X6surRE8d9Z-V13xqK2DbhKy5HEXf6kdy4mKdugikC9ojK2ivfOKz4osVF06ugQS-_fyVN14M9a1si0eSsmj9iaT_8olg
12C English IPA Pale Commonwealth Beer 5 7.5 6.25 40 60 50 6 14 10 A moderately strong British-style ale with a focus on the hoppy aroma and dry finish. Meantime India Pale Ale http://lh5.ggpht.com/QnXLIZZG1qE31YeeOmW8Yv-r7ZG7-AzunNKzKsrLHfSW5fxP_NP_k10LzqgHXKryGNbtXyjww5SPAI3RonlG1H89KbkALg
13A Dark Mild Brown British Beer 3 3.8 3.4 10 25 17.5 12 25 18.5 A dark, malt-focused session ale with a wide range of dark malt and sugar expression. Theakston Traditional Mild
13B British Brown Ale Brown British Beer 4.2 5.4 4.8 20 30 25 12 22 17 A brown British ale centered around light, caramel-centric malty notes. Riggwelter Yorkshire Ale
13C English Porter Brown British Beer 4 5.4 4.7 18 35 26.5 20 30 25 A moderately strong brown beer that explores roasted malt flavors of chocolate and caramel. Fuller's London Porter http://lh4.ggpht.com/d8zRovY0J2118_-3WUncCF02eqY4o1DW3BjROfANf5fshfa7VW6njMchWcbrNxZ_VfsJCE2FInDxkW2QsbIOUJEMLLpRrg
14A Scottish Light Scottish Ale 2.5 3.2 2.85 10 20 15 17 22 19.5 A very dark Scottish-style ale centered around malt flavors with distinct caramel notes. McEwan's 60
14B Scottish Heavy Scottish Ale 3.2 3.9 3.55 10 20 15 13 22 17.5 A medium-bodied Scottish-style ale with a central focus on maltiness and caramel flavors. Caledonia Smooth
14C Scottish Export Scottish Ale 3.9 6 4.95 15 30 22.5 13 22 17.5 A dark Scottish-style ale that is malt-focused and well-balanced. Belhaven Scottish Ale http://lh6.ggpht.com/vwzhXuHn0VHaDjIiO9w6oJS9FwbjUWJthg-vA3IFYoirfgD52tBN4EIDJh0AhX7hQV7NHU1wEZ4U6MyM0QajHvWmClLOeQ
15A Irish Red Ale Irish Beer 3.8 5 4.4 18 28 23 9 14 11.5 An easy-drinking pint that balances toffee and caramel sweetness with a rosted dry finish. Smithwick’s Irish Ale
15B Irish Stout Irish Beer 4 4.5 4.25 25 45 35 25 40 32.5 A black beer with a well-rounded bitterness that’s balanced with a pronounced roasted flavor that gives off coffeee notes. Harpoon Boston Irish Stout http://lh3.googleusercontent.com/SBRoVZkJN7qVm2_2klW0EFCE5JqumJfjkxeOF-Znb8DZmHK0Tfvss9Qx1pNhfYPGgAMxlmxQbpe8oiMFmet8IPsdS5CPeA
15C Irish Extra Stout Irish Beer 5.5 6.5 6 35 50 42.5 25 40 32.5 A full-bodied black beer with a pronounced roasted quality that offer a rich, malty range of coffee and dark chocolate flavors. Guinness Extra Stout http://lh3.googleusercontent.com/gOdnsG2JrEaL3PhTvag_c1TuppNgqnY96TPWvWiFqaYeBqXsUbcg3iv6HcQ6jSZaL1Dt5560w6EaINn_c3QN6OPxEUkV
16A Sweet Stout Dark British Beer 4 6 5 20 40 30 30 40 35 A very dark, full-bodied stout with creamy notes that soften its roasted, coffee-flavored qualities. Samuel Adams Cream Stout http://lh3.googleusercontent.com/OSfkCnvxS2-HVjENBtbRbpopUQmN_0kk9TnpPp5uAe6ZJGubraINu5tpJ3qy7t24GAGmkRbMN1k6pwmpmOsqKXak2g4QpQ
16B Oatmeal Stout Dark British Beer 4.2 5.9 5.05 25 40 32.5 22 40 31 A very dark, full-bodied, roast ale with a complementary oatmeal flavor. Samuel Smith Oatmeal Stout http://lh4.ggpht.com/WDA0DzTeFDGbdmvIQkWj_ibMM_7hLyDZ9wdXEoJ1-yltb2FP3rxCtKFZS8twOf0Y-JbU-zD5D6zsEkC_dtiXtOoAE4D6ew
16C Tropical Stout Dark British Beer 5.5 8 6.75 30 50 40 30 40 35 A very dark, sweet, moderately strong ale focusing on fruity notes over restrained bitterness. Lion Stout http://lh6.ggpht.com/U9Etwr7wEz8y0gKKEmNZD55KVQXEADgLHWNngB0SjCDPxGdqWK_Y_zkEnyfuq1CZOmqaqgpDVf1S8Iq1vLW9PwzFliza1A
16D Foreign Extra Stout Dark British Beer 6.3 8 7.15 50 70 60 30 40 35 A very dark, fairly dry stout with prominent roast flavors. The Kernel Export Stout
17A British Strong Ale Strong British Ale 5.5 8 6.75 30 60 45 8 22 15 A smooth, robust ale rich in nutty, toffee, and caramel malt flavors with a hint of dark fruit notes. Young's Winter Warmer http://lh5.ggpht.com/zPEc-gTKR49PBlA_fqoaAkm0o6LeEv8ceu7rukwoiOdicbMX9iz05beKeqau4Y3KjcbX8HtCHBJNI4uHdIBEUt6b_T86_nQ
17B Old Ale Strong British Ale 5.5 9 7.25 30 60 45 10 22 16 A noticeably strong beer tilted towards malty sweetness that is best drunk by a warm fire on a cold winter’s night. North Coast Old Stock http://lh3.googleusercontent.com/EbmSGIOXNOOlnPY2e9LzhrfXLdcu98WCYrTKavcq3Uqgtn8FCs1CvXA0HqwJSFtM2qLIE2kcjbU5V-D0QDHC-yclRIJENg
17C Wee Heavy Strong British Ale 6.5 10 8.25 17 35 26 14 25 19.5 A rich, dessert-esque beer with a strong caramel component that is designed to go down smooth. AleSmith Wee Heavy http://lh5.ggpht.com/xSgBb_KXZPhZ9VTVdV1285FgtAZuOu1GkrXfS442rkA-e97vVcmYLtwbT_K4u2EdImWHHXsMSIjI2kctH1nVEY21PCM_Lw
17D English Barleywine Strong British Ale 8 12 10 35 70 52.5 8 22 15 An intense, complex English ale that showcases malty richness paired with a velvety, luscious texture. Firestone Walker Sucaba http://lh4.ggpht.com/2bEtJiPT1M-oFo1Nro8xbvfRL40dpuKM3qOr9jc7hmq1pMFGQxDhuwcqFkNV0YvNXNumyQbTLGjOVBMqLzbR8XdM5ZBQpQ
18A Blonde Ale Pale American Ale 3.8 5.5 4.65 15 28 21.5 3 6 4.5 An approachable, malt-oriented American beer that is well-balanced and great for easy-drinking. Pelican Kiwanda Cream Ale http://lh3.ggpht.com/AUfECl5VbzYs4ETJLB3KDfjQrxjH8kw0NPfuz8YwbVDyQHiqP9FPk0GplLaUCp_LTWyWLvJ0zT0Dm4y04CxRZU40j4mlVgY
18B American Pale Ale Pale American Ale 4.5 6.2 5.35 30 50 40 5 10 7.5 A moderate, refreshing ale with noticeable hop aroma balanced by supporting malt flavors. Sierra Nevada Pale Ale http://lh3.googleusercontent.com/1KpRDqZoad482vvDW12Oi8gDlc-X-Lj0p0COkpfttQYg8KHwQQiYRFPtkrE8q4_7IdNgIRiijQUyxlYbim--C2x3fXJxdw
19A American Amber Ale Amber and Brown American Beer 4.5 6.2 5.35 25 40 32.5 10 17 13.5 A moderate, hoppy beer with a distinct caramel malty flavor. Tröegs HopBack Amber Ale http://lh6.ggpht.com/n_OjCBocXFckhhlJYLLVC4Lsp3FK1pqBb1dL714w05Tyh-HInKj25WBpAPn-0-HWtDJlQq_YUGJpcNIYkG4NsyLlE6C5vBI
19B California Common Amber and Brown American Beer 4.5 5.5 5 30 45 37.5 10 14 12 A crisp, lightly toasty beer with pronounced hop flavor favoring a woody, rustic bitterness. Anchor Steam http://lh5.ggpht.com/eRZk05l9u4hpB6Nap2pMl5q6eirc1sSKKGMfmVh7pN1D5CEIUYsUtBISM8GZBQtaC6fE-fv-zf0-O6u_BNdIXrvfriGasQ
19C American Brown Ale Amber and Brown American Beer 4.3 6.2 5.25 20 30 25 18 35 26.5 A malty beer that uses its hop flavor to complement and enhance its chocolate and caramel characters. Cigar City Maduro Brown Ale http://lh5.ggpht.com/Vtvhn4_0lW2E99IbP45NA6CCvT6Q42WqCy9Qqe5cMyMFLiUF0IiAxjMhiqYSQxDbtkGuMayxc0QN-W0kdE7ZaJk2kze8XI4
20A American Porter American Porter and Stout 4.8 6.5 5.65 25 50 37.5 22 40 31 A complex, malty dark beer with a lightly burnt character. Deschutes Black Butte Porter http://lh3.ggpht.com/Mo4SwswgDbAr6sdAdV1FaTpQYFj-IOt_f1HPRgvakEUl6Wn8pXh4oytR7zGAY__CIpekSTM0Swd0-Gn_a54V4I2ZWeZXng
20B American Stout American Porter and Stout 5 7 6 35 75 55 30 40 35 A fairly strong, highly roasted dark stout with pronounced bitterness. Rogue Shakespeare Stout http://lh3.googleusercontent.com/K4NzvKugIk-Y8tVwM0xLxP_yL0wId-r82cW7uhGqcxg5jDaR9kbKmDyFaKjA1Ocu121Rhuxi26L3dDT3XfsJrvhYOZOE
20C Imperial Stout American Porter and Stout 8 12 10 50 90 70 30 40 35 A big, intensely flavored dark ale that ends with a warming, bittersweet finish. Great Divide Yeti Imperial Stout http://lh3.googleusercontent.com/jcs7YGvNt-1Q2wopxYGkZBJSOetf-wVEWRad9fKQtLOyQncIrfmVbgPN2b2tDR3mTCUATwUUt8w0CCIxHT27pHkmNF-ENw
21A American IPA IPA 5.5 7.5 6.5 40 70 55 6 14 10 A bitter, moderately strong American pale ale that uses its clean, supporting malt to showcase its hop character. Lagunitas IPA http://lh4.ggpht.com/yelcHpRoDHQ7KykVmtGEC-Pa1RxrIlj-1XayiT0uHmNwCuJNMT-IzwIY19Ndgqu_MnYBLWiHQoXIV0KGRKE9LrbFrAyy
21B-a Belgian IPA IPA 6.2 9.5 7.85 50 100 75 5 15 10 A light-colored ale with strong bitterness paired with the fruity and spicy esters derived from its Belgian yeast. Stone Cali-Belgique http://lh3.ggpht.com/uQYp_2c6DOh4XYRh3O8Z3Z7EKPt9iA-ybF18OAkClDeG6yALi92A4hpDTUyFnRHHneQxv4TrSFfTKa8uDcXncqB2VnAr4AQ
21B-b Black IPA IPA 5.5 9 7.25 50 90 70 25 40 32.5 A dark, hop-forward beer with supportive malts that provides gentle supporting character paired with a smooth mouthfeel. 21st Amendment Back in Black http://lh5.ggpht.com/OMFof_9J5Gs_I2gT3lQtgsgWLsG1n5PHOWupUcKAbvsZy7_2KgpPhc10hxF4zkMmpmFgiq9U2ODtYx45d3QNtu9jl97j4w
21B-c Brown IPA IPA 5.5 7.5 6.5 40 70 55 11 19 15 A bitter, moderately strong ale that combines its hop-forward character with caramel, toffee and dark fruit malt character. Dogfish Head Indian Brown Ale http://lh6.ggpht.com/9oIXfmiT5y9_syBVfr72Orl5fF6ndtedXLnaHjnpQ2pq4bx1uytS_oE0Kea-eEwuoV-AVVW0Z2u3rKs4rvrDnBGZlG4c
21B-d Red IPA IPA 5.5 7.5 6.5 40 70 55 11 19 15 A bitter, moderately strong ale that carries some caramel and dark fruit malt character and finishes dry. Green Flash Hop Head Red http://lh3.googleusercontent.com/2vzx9cdPDeS4EPZl8avouxbEeMmuzGbB-Z2EJ1TxZnH6J_azNILsR2KsiI6KfE04xl-DIDEyR5mu0oXwaxG_QZv5ffnJkA
21B-e Rye IPA IPA 5.5 8 6.75 50 75 62.5 6 14 10 A decidedly hoppy and bitter ale with a light grainy spicy character and lingering dryness. Founders Reds Rye http://lh6.ggpht.com/lNqWKwSrq-SOksiGuqKwtYlcWXr_e6v9Cj0MpmczO4S-26YHHSGveGgxtQZa50zSh8RjjJaKpxLGmdcV6Sjhs94zxJPxUw
21B-f White IPA IPA 5.5 7 6.25 40 70 55 5 8 6.5 A light, fruity ale that takes its bitter, hoppy character and combines it with Belgian yeast notes of coriander and pepper. New Belgium Accumulation http://lh4.ggpht.com/hKyLVNhb3Ab3-NYVQ5qJ5Q9q_pvCab2cwMkil9f8SW9PjYUPUlnpL_mKH4S8scVul5Zz7G4fCs1mRF3elVlj8uMrqu9iSw
22A Double IPA Strong American Ale 7.5 10 8.75 60 120 90 6 14 10 An intensely hoppy pale ale with minimal malt character, designed to showcase its strong hop flavors. Avery Maharaja http://lh6.ggpht.com/6EOroCaFYkMDcgYEegdvYEaZHPGLEaIeXVp_SBJ67Ws9f6USJIBPIusqSTSA0WY3AuOOzSDWpCtdM_8IwviczJE5IGhM-g
22B American Strong Ale Strong American Ale 6.3 10 8.15 50 100 75 7 19 13 A strong ale with full malt and hop flavors and distinct bitterness. Bear Republic Red Rocket Ale http://lh3.googleusercontent.com/L85hcgsBmYh9AVZuQ4e5RoE4X-WBK1--RnLiaTl9oLDzuA2WWE_5lyri0iv825sXoEsZPdSzDSv9Yh_jgxGTj6WULBHMvQ
22C American Barleywine Strong American Ale 8 12 10 50 100 75 10 19 14.5 A very strong ale with hop character, rich malt flavors, and prevalent alcohol with a very long finish. Victory Old Horizontal http://lh3.googleusercontent.com/FPh59c4EYFqeX669011UpWZdZxXRYf2T_XqKzfsOuCvAIABLdyPHopBHURjW-JK6Ulb-dXjKG8sZVpduTw49N60rt_q7sQ
22D Wheatwine Strong American Ale 8 12 10 30 60 45 8 15 11.5 A rich, high alcohol ale with bready wheat and fruity yeast flavors. Smuttynose Wheat Wine http://lh3.googleusercontent.com/D5bz-tWlg_iRwBiK__rNQ-hzd39UgG5eVDvr3cwCzjg08GbIGNNBiuxAw-v_75ADq_rHuvUUO8y_Y2RAccH1IqQFkrv_
23A Berliner Weisse European Sour Ale 2.8 3.8 3.3 3 8 5.5 2 3 2.5 A very pale wheat beer low in alcohol with light bread and clean lactic sour flavors. Bayerischer Bahnhof Berliner Style Weisse http://lh4.ggpht.com/-uz5m5yx_u8zhYhndA0hf3uxeWihOLLgbJ3kRX5u2PQTocps2C_EbGFpb0JwLwltshv1Wx-x65XeAGDr9S3IlhNSC3j1
23B Flanders Red Ale European Sour Ale 4.6 6.5 5.55 10 25 17.5 10 16 13 A sour, fruity, red wine-like Belgian-style ale. Duchesse de Bourgogne http://lh5.ggpht.com/heaITHJHOdtm3bSxGe6I-XFhaKcrFRCydv02npD6S4u9EscRrG31-0v59-ec5aiGlgxjg8wJsrFX0DdncxSRl1PZ13Te
23C Oud Bruin European Sour Ale 4 8 6 20 25 22.5 15 22 18.5 A somewhat sour, fruity, malty Belgian-style brown ale. Liefmans Liefmans Oud Bruin http://lh4.ggpht.com/zJLDqVht0TBP_diMbOZFkK1xbVitSM5_SyrLIYcyowlhUr6MtLuMki_Ek1TlWHXHVAbgU9la96eVhOv5x7a9OZ3KIU8h
23D Lambic European Sour Ale 5 6.5 5.75 0 10 5 3 7 5 A sour, somewhat funky wild Belgian wheat beer with earthy flavors. Oceanside Ale Works Daliesque http://lh3.ggpht.com/aXfnnYZZRo2b3x0HgKfh6X6okkK-YZEx_MdDnSWcRgfC52ZqEI8r_pOrb5LpZeU_I9X3-KCZu7IUP_0D7NrRyJ5hIeOtww
23E Gueuze European Sour Ale 5 8 6.5 0 10 5 3 7 5 A sour, balanced, highly carbonated, and very refreshing Belgian wheat beer. Drie Fonteinen Oud Gueuze http://lh6.ggpht.com/L71P6cE6tA9StUI4d4G2SgrNH1Sy0jeo81vvComN0Acb72AHsrKZV6IMI318erlSKbUEIaU-kndGnIOU8JM_f0NegMsylw
23F Fruit Lambic European Sour Ale 5 7 6 0 10 5 3 7 5 A fruity, sour, wild Belgian wheat beer. Cantillon Vigneronne http://lh3.googleusercontent.com/FNiAwPUrWcCg-chyDO8gAdG0f9cNkoVo8sbtszsjD3-GlhZAYNaUJ3caMslUkS0y6s-j_MKr2kSfzhz0zOyuvqfjPO-brgE
24A Witbier Belgian Ale 4.5 5.5 5 8 20 14 2 4 3 A refreshing wheat ale very pale in color Allagash White http://lh3.ggpht.com/T7ImAOLJDQtIiFSdnTklGPU9_2yBD6gJOLO7s_e4Ag7Lek1hM1_55nnrLcaasD4AuJxhP7QuAHDqpX_yVXDeLHERBrnp
24B Belgian Pale Ale Belgian Ale 4.8 5.5 5.15 20 30 25 8 14 11 A somewhat fruity and easy drinking Belgian ale which is less aggressive than many other Belgian beers Palm Speciale
24C Biére de Garde Belgian Ale 6 8.5 7.25 18 28 23 6 19 12.5 A very malty and strong lagered ale Russian River Perdition http://lh6.ggpht.com/HxQ3KKCKgyopjT6nRNnLOmh1-wO_ouiTiV0lLONp_ylLuvWinBY02lze3p7edO1DUIFc6rmFPpVe6qTpfQZT1KDS_ow48is
25A Belgian Blond Ale Strong Belgian Ale 6 7.5 6.75 15 30 22.5 4 7 5.5 A moderately strong golden ale with fruity-spicy Belgian yeast characteristics La Trappe Blond http://lh3.googleusercontent.com/maT2N2ZqqdFNcEy2aciPWcQhMeFsbpvpvynqWP5wYzeyYAnb7XgMjTQC6UxkSa3FjES0JYPMmPCoHUYvQ0A-Yy-VZGY4yG4
25B Saison Strong Belgian Ale 5 7 6 20 35 27.5 5 14 9.5 A Belgian ale that is most commonly pale, refreshing, moderately strong and finishes dry Modern Times Lomaland http://lh4.ggpht.com/7Sf00FNdFxTWsy64R_wp77ynnts4m-upHGcYv-gF09DtsZz1xR4lW2iWeV1QuM7H3UD8TDFRGmUKftI9CRZQT8IbeiAUnw
25C Belgian Golden Strong Ale Strong Belgian Ale 7.5 10.5 9 22 35 28.5 3 6 4.5 A strong and complex Belgian-style ale with fruity and hoppy characteristics Delirium Tremens http://lh5.ggpht.com/gpKnc3RfgPLYxgpUb-nvPZXV7YwEMhU2zGyxSddOCoDOn8SRna9uJ_wJ11M8FD_7uJqqeB32qTiCzdSqw8AnHSmdDToRFw
26A Trappist Single Trappist Ale 4.8 6 5.4 25 45 35 3 5 4 A hightly attenuated and carbonated Trappist ale with fruity-spicy notes and pale color Westvleteren Blond http://lh3.googleusercontent.com/MbyXC3GLXO7OosqSpDuOYZp5lr4Or9y6jcdeUgdeusRbujim3jngFPYgWXXE-F9YzU4kDZRLiFj0P_r63gbnwwGEUL1jbUY
26B Belgian Dubbel Trappist Ale 6 7.6 6.8 15 25 20 3 5 4 A moderately strong Trappist ale with rich malty flavors and a color of reddish-copper Fall Brewing Demognome http://lh6.ggpht.com/5LXa_30qhnj2mvgQJ3ZqMawhDijLYtsTcuEx3AB-dHXZZDRpprY3T2sqMY9G8mxiddO9oj-c8LJIQheBbhpKd7STejqv3Q
26C Belgian Tripel Trappist Ale 7.5 9.5 8.5 20 40 30 4.5 7 5.75 A strong and pale Trappist ale with spicy-fruity notes and highly aromatic Unibroue La Fin Du Monde http://lh3.googleusercontent.com/uoDG0Et0V-JEQTxQDCIDFdaVSfKrTiergRm13ZibLWHRk9nQVs1QGQFSnwoiWIhAN4_dJQaEreoZFLBbVkeCMn4QdudOzYM
26D Belgian Dark Strong Ale Trappist Ale 8 12 10 20 35 27.5 12 22 17 A very strong and complex Belgian ale full of dark fruit flavors Boulevard The Sixth Glass http://lh3.ggpht.com/tZsUUiz2K2nnhkwzuPDEJ2LXxohitK_O5cuJMZX0ty6p19V3hcWsiTUFaYOAJ_o9zxQ2Qbim0SG6Vk0u72f3uhhumA5PQZk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment