Created
July 5, 2015 00:59
-
-
Save SteveBronder/efeb39496a95802a6bd5 to your computer and use it in GitHub Desktop.
My Chart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype HTML> | |
<meta charset = 'utf-8'> | |
<html> | |
<head> | |
<link rel='stylesheet' href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> | |
<link rel='stylesheet' href='http://nvd3.org/src/nv.d3.css'> | |
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js' type='text/javascript'></script> | |
<script src='http://d3js.org/d3.v3.min.js' type='text/javascript'></script> | |
<script src='http://timelyportfolio.github.io/rCharts_nvd3_tests/libraries/widgets/nvd3/js/nv.d3.min-new.js' type='text/javascript'></script> | |
<script src='http://nvd3.org/lib/fisheye.js' type='text/javascript'></script> | |
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js"></script> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script> | |
<style> | |
.rChart { | |
display: block | |
margin: auto auto; | |
width: 100%; | |
height: 400px; | |
} | |
.bs-docs-example:after { | |
content: ""; | |
background: transparent; | |
border: none; | |
} | |
</style> | |
</head> | |
<body ng-app> | |
<div class='container' ng-controller="DemoCtrl"> | |
<div class='row'> | |
<div class='col-md-3'> | |
<form class='well'> | |
<select | |
ng-model="selected" | |
ng-options="c as c.value group by c.variable for c in filters" | |
class="form-control" multiple size="10"> | |
</select> | |
</form> | |
</div> | |
<div class='col-md-8'> | |
<div class="bs-docs-example"> | |
<div id='chart17b01d193ba4' class='rChart '> | |
<svg></svg> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<script type="text/javascript"> | |
function DemoCtrl($scope){ | |
$scope.opts = { | |
"dom": "chart17b01d193ba4", | |
"width": 700, | |
"height": 400, | |
"x": "year", | |
"y": "ridership", | |
"group": "station", | |
"type": "lineChart", | |
"id": "chart17b01d193ba4" | |
} | |
$scope.data = [ | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 6887 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 7902 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 8487 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 8182 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 7848 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 8197 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 8911 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 9317 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 10131 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 7226 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 7198 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 7118 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 7036 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 7118 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 7778 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 7642 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 7681 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 7719 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 7774 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 7479 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 7598 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 7342 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1977, | |
"ridership": 140 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1978, | |
"ridership": 219 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1979, | |
"ridership": 384 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1980, | |
"ridership": 362 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1981, | |
"ridership": 876 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1982, | |
"ridership": 215 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1983, | |
"ridership": 316 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1984, | |
"ridership": 416 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1985, | |
"ridership": 1099 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1986, | |
"ridership": 341 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1987, | |
"ridership": 731 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1988, | |
"ridership": 984 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1989, | |
"ridership": 1342 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1990, | |
"ridership": 1102 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1991, | |
"ridership": 1064 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1992, | |
"ridership": 1294 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1993, | |
"ridership": 1263 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1994, | |
"ridership": 804 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1995, | |
"ridership": 1480 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1996, | |
"ridership": 1583 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1997, | |
"ridership": 1826 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1998, | |
"ridership": 2074 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 1999, | |
"ridership": 1688 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2000, | |
"ridership": 1759 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2001, | |
"ridership": 1905 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2002, | |
"ridership": 1825 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2003, | |
"ridership": 1441 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2004, | |
"ridership": 1644 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2005, | |
"ridership": 1752 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2006, | |
"ridership": 1821 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2007, | |
"ridership": 1889 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2008, | |
"ridership": 2081 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2009, | |
"ridership": 1970 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2010, | |
"ridership": 1889 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2011, | |
"ridership": 1866 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2012, | |
"ridership": 1827 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "Blue", | |
"year": 2013, | |
"ridership": 1768 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 2497 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 3078 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 3026 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 2973 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 3050 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 3468 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 3546 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 3873 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 4075 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 3883 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 3622 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 3159 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 2898 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 2770 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 2775 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 2662 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 2621 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 2784 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 2787 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 2999 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 3099 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 2976 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 2988 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 3052 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 3240 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 3392 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 3288 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 3382 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 3316 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 3399 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 3241 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 3183 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 3163 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 5011 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 6163 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 7105 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 6837 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 7305 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 7572 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 7401 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 7779 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 7193 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 7625 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 7501 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 7406 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 7596 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 7889 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 7885 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 8469 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 8591 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 8717 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 9205 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 9430 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 9946 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 10530 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 10738 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 10968 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 10730 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 10605 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 10765 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 10888 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 10608 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1984, | |
"ridership": 1295 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1985, | |
"ridership": 2124 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1986, | |
"ridership": 2395 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1987, | |
"ridership": 2549 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1988, | |
"ridership": 2684 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1989, | |
"ridership": 2876 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1990, | |
"ridership": 3054 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1991, | |
"ridership": 3158 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1992, | |
"ridership": 3052 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1993, | |
"ridership": 3227 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1994, | |
"ridership": 3305 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1995, | |
"ridership": 3270 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1996, | |
"ridership": 3113 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1997, | |
"ridership": 3103 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1998, | |
"ridership": 3209 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 1999, | |
"ridership": 3309 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2000, | |
"ridership": 3481 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2001, | |
"ridership": 3777 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2002, | |
"ridership": 3804 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2003, | |
"ridership": 3917 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2004, | |
"ridership": 4054 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2005, | |
"ridership": 4202 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2006, | |
"ridership": 4316 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2007, | |
"ridership": 4327 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2008, | |
"ridership": 4506 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2009, | |
"ridership": 4593 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2010, | |
"ridership": 4524 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2011, | |
"ridership": 4559 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2012, | |
"ridership": 4484 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "Yellow", | |
"year": 2013, | |
"ridership": 4408 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 1890 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 1965 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 2091 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 2217 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 2317 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 2595 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 2972 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 2969 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 3125 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 2922 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 2781 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 2453 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 2247 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 2158 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 2099 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 1983 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 1975 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 2180 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 2248 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 2324 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 2219 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 2143 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 2089 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 1956 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 1972 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 2123 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 2137 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 2225 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 2221 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 2241 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 2150 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 2374 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 2105 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 3696 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 5003 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 5392 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 6758 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 6684 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 7429 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 6741 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 6052 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 7480 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 7807 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 8759 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 8685 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 8629 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 8383 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 8604 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 7419 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 8102 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 6984 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 7214 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 6724 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 6720 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 6518 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 6509 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 7001 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 7656 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 7252 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 7375 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 7907 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 8303 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 8455 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 8452 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 8900 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 9414 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 9639 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 9194 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 8047 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 8618 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1979, | |
"ridership": 1344 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1980, | |
"ridership": 1380 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1981, | |
"ridership": 1366 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1982, | |
"ridership": 1162 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1983, | |
"ridership": 1198 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1984, | |
"ridership": 1234 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1985, | |
"ridership": 1315 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1986, | |
"ridership": 1463 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1987, | |
"ridership": 1490 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1988, | |
"ridership": 1549 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1989, | |
"ridership": 1623 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1990, | |
"ridership": 1655 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1991, | |
"ridership": 1705 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1992, | |
"ridership": 1617 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1993, | |
"ridership": 1498 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1994, | |
"ridership": 1514 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1995, | |
"ridership": 1484 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1996, | |
"ridership": 1400 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1997, | |
"ridership": 1377 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1998, | |
"ridership": 1439 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 1999, | |
"ridership": 1430 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2000, | |
"ridership": 1505 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2001, | |
"ridership": 1503 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2002, | |
"ridership": 1507 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2003, | |
"ridership": 1481 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2004, | |
"ridership": 1560 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2005, | |
"ridership": 1544 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2006, | |
"ridership": 1554 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2007, | |
"ridership": 1609 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2008, | |
"ridership": 1629 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2009, | |
"ridership": 1548 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2010, | |
"ridership": 1571 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2011, | |
"ridership": 1543 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2012, | |
"ridership": 1546 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "Orange", | |
"year": 2013, | |
"ridership": 1547 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 1899 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 2149 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 2064 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 2159 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 2254 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 2351 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 2652 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 2468 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 2629 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 2818 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 3078 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 2964 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 2474 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 2564 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 2766 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 2694 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 2611 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 2632 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 2681 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 2708 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 2752 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 2914 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 2935 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 2927 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 3359 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 3752 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 4065 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 4166 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 4406 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 4355 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 4335 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 4414 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 4838 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 4829 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 2443 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 2702 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 2961 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 3870 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 3512 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 3419 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 3708 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 3921 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 3864 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 3934 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 3660 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 4066 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 4204 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 4326 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 4214 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 4443 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 4432 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 4632 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 4396 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 4456 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 4680 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 4520 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 4582 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 4831 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 5082 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 4976 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 5010 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 4807 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 4656 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 4676 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 4700 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 4731 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2000, | |
"ridership": 3957 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2001, | |
"ridership": 4771 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2002, | |
"ridership": 5346 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2003, | |
"ridership": 5835 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2004, | |
"ridership": 6009 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2005, | |
"ridership": 6596 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2006, | |
"ridership": 7330 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2007, | |
"ridership": 8441 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2008, | |
"ridership": 10168 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2009, | |
"ridership": 11375 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2010, | |
"ridership": 11990 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2011, | |
"ridership": 12386 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2012, | |
"ridership": 12860 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "Yellow", | |
"year": 2013, | |
"ridership": 12891 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 1702 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 1920 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 2060 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 2227 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 2371 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 2524 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 2556 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 2723 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 2722 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 2826 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 2819 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 3035 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 3030 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 2825 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 3034 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 2860 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 2987 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 3113 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 3673 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 4077 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 4059 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 4227 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 4977 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 5310 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 5561 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 5653 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 5630 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 6154 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 6018 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 5752 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 6108 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 6575 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 6583 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 7079 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 7275 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 6695 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 7066 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 7317 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 7356 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 7413 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 7405 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 7381 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 7385 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 7578 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 7483 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 7475 | |
}, | |
{ | |
"station": "Court House", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 7690 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1977, | |
"ridership": 3912 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1978, | |
"ridership": 5110 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1979, | |
"ridership": 7554 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1980, | |
"ridership": 8204 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1981, | |
"ridership": 7438 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1982, | |
"ridership": 7667 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1983, | |
"ridership": 8723 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1984, | |
"ridership": 9779 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1985, | |
"ridership": 10602 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1986, | |
"ridership": 10939 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1987, | |
"ridership": 12253 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1988, | |
"ridership": 12965 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1989, | |
"ridership": 13633 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1990, | |
"ridership": 13349 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1991, | |
"ridership": 13335 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1992, | |
"ridership": 12630 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1993, | |
"ridership": 12601 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1994, | |
"ridership": 11704 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1995, | |
"ridership": 12067 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1996, | |
"ridership": 11670 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1997, | |
"ridership": 11596 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1998, | |
"ridership": 11420 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 1999, | |
"ridership": 11847 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2000, | |
"ridership": 12108 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2001, | |
"ridership": 12851 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2002, | |
"ridership": 12908 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2003, | |
"ridership": 13560 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2004, | |
"ridership": 13722 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2005, | |
"ridership": 12809 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2006, | |
"ridership": 13324 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2007, | |
"ridership": 14158 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2008, | |
"ridership": 15028 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2009, | |
"ridership": 14748 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2010, | |
"ridership": 14952 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2011, | |
"ridership": 15187 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2012, | |
"ridership": 13592 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "Yellow", | |
"year": 2013, | |
"ridership": 12594 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1979, | |
"ridership": 2535 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1980, | |
"ridership": 2638 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1981, | |
"ridership": 2016 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1982, | |
"ridership": 1851 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1983, | |
"ridership": 1935 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1984, | |
"ridership": 2018 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1985, | |
"ridership": 1909 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1986, | |
"ridership": 2026 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1987, | |
"ridership": 2091 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1988, | |
"ridership": 2153 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1989, | |
"ridership": 2206 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1990, | |
"ridership": 1903 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1991, | |
"ridership": 2007 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1992, | |
"ridership": 1827 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1993, | |
"ridership": 1567 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1994, | |
"ridership": 1633 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1995, | |
"ridership": 1708 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1996, | |
"ridership": 1529 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1997, | |
"ridership": 1631 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1998, | |
"ridership": 1656 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 1999, | |
"ridership": 1716 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2000, | |
"ridership": 1802 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2001, | |
"ridership": 1854 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2002, | |
"ridership": 1848 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2003, | |
"ridership": 1899 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2004, | |
"ridership": 1914 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2005, | |
"ridership": 1828 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2006, | |
"ridership": 1892 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2007, | |
"ridership": 1827 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2008, | |
"ridership": 1978 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2009, | |
"ridership": 1960 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2010, | |
"ridership": 1909 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2011, | |
"ridership": 1844 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2012, | |
"ridership": 1829 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "Orange", | |
"year": 2013, | |
"ridership": 1754 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 7784 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 10124 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 13617 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 15643 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 14128 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 11628 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 12761 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 13894 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 16767 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 17099 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 18838 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 19374 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 21075 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 21631 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 17744 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 20922 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 20518 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 20411 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 20586 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 20025 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 19185 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 20067 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 20179 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 21425 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 22625 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 22407 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 22490 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 22514 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 23196 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 23700 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 24149 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 24591 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 23561 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 22907 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 22721 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 18830 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 21084 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 3361 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 3768 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 4015 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 4269 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 4329 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 3906 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 3831 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 3762 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 3698 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 3458 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 3528 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 3659 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 3626 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 3756 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 4060 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 4049 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 3871 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 4018 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 3994 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 4238 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 4246 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 4306 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 4202 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 4134 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 4102 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 4287 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 4108 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 7950 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 12531 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 12790 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 15087 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 13102 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 16049 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 15600 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 15150 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 19446 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 23505 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 23287 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 23982 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 25275 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 24651 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 24914 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 24088 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 18308 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 23364 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 22586 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 22142 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 23427 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 23624 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 23928 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 24885 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 26250 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 25394 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 24612 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 25300 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 25571 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 26624 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 26934 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 26506 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 25311 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 24105 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 23796 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 26773 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 25351 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 15167 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 17085 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 23386 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 28891 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 27294 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 25396 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 22875 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 20354 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 24138 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 24246 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 25710 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 27418 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 26751 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 28717 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 27010 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 24529 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 24239 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 23427 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 22302 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 21258 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 21514 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 22725 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 22706 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 23404 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 24636 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 23573 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 23432 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 23874 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 24149 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 24179 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 24121 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 23190 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 22469 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 23137 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 22575 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 22918 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 22545 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 4036 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 4432 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 5660 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 6774 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 6154 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 5960 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 5721 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 5481 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 6376 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 7101 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 8777 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 8998 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 9001 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 8799 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 8460 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 8751 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 8114 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 8162 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 7870 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 7461 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 6566 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 7938 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 8470 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 9302 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 9879 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 10424 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 10959 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 10915 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 11166 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 10883 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 10429 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 10603 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 11108 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 10756 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 10258 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 9879 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 9052 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 1788 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 1849 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 1834 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 1890 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 1898 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 1854 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 1868 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 1850 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 1790 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 1860 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 1930 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 2023 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 2025 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 2089 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 2082 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 2170 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 2302 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 2409 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 2514 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 2366 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 2365 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 2448 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 2443 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1978, | |
"ridership": 2969 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1979, | |
"ridership": 4896 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1980, | |
"ridership": 5294 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1981, | |
"ridership": 4481 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1982, | |
"ridership": 4150 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1983, | |
"ridership": 3845 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1984, | |
"ridership": 3539 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1985, | |
"ridership": 4363 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1986, | |
"ridership": 4868 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1987, | |
"ridership": 5600 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1988, | |
"ridership": 5484 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1989, | |
"ridership": 5761 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1990, | |
"ridership": 5825 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1991, | |
"ridership": 5585 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1992, | |
"ridership": 5033 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1993, | |
"ridership": 4886 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1994, | |
"ridership": 5034 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1995, | |
"ridership": 4670 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1996, | |
"ridership": 4536 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1997, | |
"ridership": 4324 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1998, | |
"ridership": 4538 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 1999, | |
"ridership": 4501 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2000, | |
"ridership": 5121 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2001, | |
"ridership": 5738 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2002, | |
"ridership": 5861 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2003, | |
"ridership": 6082 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2004, | |
"ridership": 6236 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2005, | |
"ridership": 6280 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2006, | |
"ridership": 6665 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2007, | |
"ridership": 6877 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2008, | |
"ridership": 7071 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2009, | |
"ridership": 7198 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2010, | |
"ridership": 7543 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2011, | |
"ridership": 7364 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2012, | |
"ridership": 7636 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "Yellow", | |
"year": 2013, | |
"ridership": 7853 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1998, | |
"ridership": 5600 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 1999, | |
"ridership": 6370 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2000, | |
"ridership": 7131 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2001, | |
"ridership": 8194 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2002, | |
"ridership": 8416 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2003, | |
"ridership": 8482 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2004, | |
"ridership": 9265 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2005, | |
"ridership": 9416 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2006, | |
"ridership": 9857 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2007, | |
"ridership": 9769 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2008, | |
"ridership": 9823 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2009, | |
"ridership": 9591 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2010, | |
"ridership": 9665 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2011, | |
"ridership": 9543 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2012, | |
"ridership": 9089 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "Blue", | |
"year": 2013, | |
"ridership": 8306 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 5674 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 7106 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 7654 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 7750 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 8164 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 8268 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 8346 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 8388 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 8430 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 8520 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 8343 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 8278 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 8346 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 8424 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 8581 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 9089 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 9195 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 9172 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 9321 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 9310 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 9268 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 9771 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 9713 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 10189 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 9696 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 9804 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 9957 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 9671 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 9703 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 4096 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 4619 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 4980 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 5254 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 5481 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 5578 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 5664 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 5944 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 6096 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 6117 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 5966 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 5857 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 5850 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 6190 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 6149 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 2486 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 2948 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 3062 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 3844 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 4538 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 4857 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 5786 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 6482 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 6788 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 6911 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 7150 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 7005 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 7305 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 7331 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 7432 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 7397 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 7294 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 6923 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 6940 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 6757 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1984, | |
"ridership": 4084 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1985, | |
"ridership": 6099 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1986, | |
"ridership": 7030 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1987, | |
"ridership": 7849 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1988, | |
"ridership": 8002 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1989, | |
"ridership": 8979 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1990, | |
"ridership": 9445 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1991, | |
"ridership": 9075 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1992, | |
"ridership": 7566 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1993, | |
"ridership": 7902 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1994, | |
"ridership": 7109 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1995, | |
"ridership": 7917 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1996, | |
"ridership": 7570 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1997, | |
"ridership": 7544 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1998, | |
"ridership": 7174 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 1999, | |
"ridership": 7305 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2000, | |
"ridership": 7787 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2001, | |
"ridership": 8372 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2002, | |
"ridership": 8084 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2003, | |
"ridership": 8136 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2004, | |
"ridership": 8501 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2005, | |
"ridership": 8375 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2006, | |
"ridership": 8648 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2007, | |
"ridership": 8601 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2008, | |
"ridership": 8834 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2009, | |
"ridership": 8847 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2010, | |
"ridership": 8760 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2011, | |
"ridership": 9184 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2012, | |
"ridership": 9060 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "Yellow", | |
"year": 2013, | |
"ridership": 8571 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1979, | |
"ridership": 2381 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1980, | |
"ridership": 2815 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1981, | |
"ridership": 2165 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1982, | |
"ridership": 2219 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1983, | |
"ridership": 2260 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1984, | |
"ridership": 2300 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1985, | |
"ridership": 2940 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1986, | |
"ridership": 3191 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1987, | |
"ridership": 3432 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1988, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1989, | |
"ridership": 3859 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1990, | |
"ridership": 3856 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1991, | |
"ridership": 3834 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1992, | |
"ridership": 3541 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1993, | |
"ridership": 3406 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1994, | |
"ridership": 3235 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1995, | |
"ridership": 3192 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1996, | |
"ridership": 3155 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1997, | |
"ridership": 3092 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1998, | |
"ridership": 3219 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 1999, | |
"ridership": 3250 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2000, | |
"ridership": 3477 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2001, | |
"ridership": 3462 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2002, | |
"ridership": 3447 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2003, | |
"ridership": 3370 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2004, | |
"ridership": 3424 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2005, | |
"ridership": 2917 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2006, | |
"ridership": 2771 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2007, | |
"ridership": 2796 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2008, | |
"ridership": 2763 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2009, | |
"ridership": 2593 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2010, | |
"ridership": 2570 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2011, | |
"ridership": 2478 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2012, | |
"ridership": 2336 | |
}, | |
{ | |
"station": "Landover", | |
"color": "Orange", | |
"year": 2013, | |
"ridership": 2191 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 4294 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 4826 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 5015 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 5195 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 5112 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 5283 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 5111 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 5159 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 4874 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 7024 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 8927 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 12836 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 13829 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 13162 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 13218 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 12982 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 12746 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 13902 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 15020 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 16177 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 16423 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 17809 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 18918 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 16380 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 14173 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 14953 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 15587 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 14324 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 14009 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 14063 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 14722 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 14710 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 15419 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 16411 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 15956 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 15765 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 16177 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 16047 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 16383 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 16441 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 16959 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 17009 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 17370 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 16873 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 16845 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 16234 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 2715 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 3137 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 3633 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 3964 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 4384 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 4501 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 4286 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 3917 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 3909 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 3927 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 3911 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 3815 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 3734 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 3859 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 3910 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 4141 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 4438 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 4718 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 4881 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 5091 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 5125 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 5100 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 5256 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 5346 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 5627 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 5574 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 5866 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 6010 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 6221 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 10493 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 13704 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 19400 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 18516 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 19608 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 17635 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 17395 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 17154 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 16550 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 19386 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 25356 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 24394 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 26888 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 25956 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 25289 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 24128 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 25285 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 26484 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 27643 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 25423 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 24929 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 25801 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 26541 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 27457 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 28941 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 28671 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 28076 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 28450 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 28983 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 29564 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 29798 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 30615 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 30569 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 29698 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 28983 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 28802 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 28039 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 1114 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 1250 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 1346 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 1424 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 1540 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 1674 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 1736 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 2290 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 1929 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 2373 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 2637 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 2839 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 3092 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 3194 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 3402 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 3325 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 3260 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 3144 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 3165 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 3047 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 3175 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 3100 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1979, | |
"ridership": 5715 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1980, | |
"ridership": 6592 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1981, | |
"ridership": 6514 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1982, | |
"ridership": 5886 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1983, | |
"ridership": 5805 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1984, | |
"ridership": 5723 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1985, | |
"ridership": 5695 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1986, | |
"ridership": 6065 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1987, | |
"ridership": 6330 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1988, | |
"ridership": 8359 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1989, | |
"ridership": 8867 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1990, | |
"ridership": 8786 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1991, | |
"ridership": 8671 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1992, | |
"ridership": 8374 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1993, | |
"ridership": 8741 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1994, | |
"ridership": 5586 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1995, | |
"ridership": 7670 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1996, | |
"ridership": 7406 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1997, | |
"ridership": 7544 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1998, | |
"ridership": 7924 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 1999, | |
"ridership": 8123 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2000, | |
"ridership": 8742 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2001, | |
"ridership": 9065 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2002, | |
"ridership": 9058 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2003, | |
"ridership": 9260 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2004, | |
"ridership": 9586 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2005, | |
"ridership": 9091 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2006, | |
"ridership": 10006 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2007, | |
"ridership": 10436 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2008, | |
"ridership": 10625 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2009, | |
"ridership": 10118 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2010, | |
"ridership": 10287 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2011, | |
"ridership": 9940 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2012, | |
"ridership": 9839 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "Orange", | |
"year": 2013, | |
"ridership": 9242 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1977, | |
"ridership": 10558 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1978, | |
"ridership": 12775 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1979, | |
"ridership": 14441 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1980, | |
"ridership": 16123 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1981, | |
"ridership": 16365 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1982, | |
"ridership": 15310 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1983, | |
"ridership": 16512 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1984, | |
"ridership": 17714 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1985, | |
"ridership": 19838 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1986, | |
"ridership": 19443 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1987, | |
"ridership": 18721 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1988, | |
"ridership": 19496 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1989, | |
"ridership": 20862 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1990, | |
"ridership": 20687 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1991, | |
"ridership": 20285 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1992, | |
"ridership": 18743 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1993, | |
"ridership": 18157 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1994, | |
"ridership": 15043 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1995, | |
"ridership": 16873 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1996, | |
"ridership": 15869 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1997, | |
"ridership": 15646 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1998, | |
"ridership": 15105 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 1999, | |
"ridership": 14707 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2000, | |
"ridership": 15548 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2001, | |
"ridership": 17401 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2002, | |
"ridership": 14136 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2003, | |
"ridership": 15726 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2004, | |
"ridership": 15337 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2005, | |
"ridership": 15171 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2006, | |
"ridership": 15893 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2007, | |
"ridership": 15968 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2008, | |
"ridership": 16055 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2009, | |
"ridership": 16318 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2010, | |
"ridership": 16726 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2011, | |
"ridership": 16999 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2012, | |
"ridership": 17114 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "Yellow", | |
"year": 2013, | |
"ridership": 16324 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1977, | |
"ridership": 1312 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1978, | |
"ridership": 2068 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1979, | |
"ridership": 3325 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1980, | |
"ridership": 3586 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1981, | |
"ridership": 3136 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1982, | |
"ridership": 3210 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1983, | |
"ridership": 2773 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1984, | |
"ridership": 2335 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1985, | |
"ridership": 2821 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1986, | |
"ridership": 2998 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1987, | |
"ridership": 3309 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1988, | |
"ridership": 2786 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1989, | |
"ridership": 3091 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1990, | |
"ridership": 6650 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1991, | |
"ridership": 7602 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1992, | |
"ridership": 7365 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1993, | |
"ridership": 8387 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1994, | |
"ridership": 8529 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1995, | |
"ridership": 9587 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1996, | |
"ridership": 9895 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1997, | |
"ridership": 10411 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1998, | |
"ridership": 10865 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 1999, | |
"ridership": 10832 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2000, | |
"ridership": 11058 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2001, | |
"ridership": 11751 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2002, | |
"ridership": 12805 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2003, | |
"ridership": 13518 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2004, | |
"ridership": 15833 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2005, | |
"ridership": 15783 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2006, | |
"ridership": 16176 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2007, | |
"ridership": 16339 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2008, | |
"ridership": 16803 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2009, | |
"ridership": 16503 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2010, | |
"ridership": 17197 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2011, | |
"ridership": 17023 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2012, | |
"ridership": 16382 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "Yellow", | |
"year": 2013, | |
"ridership": 15589 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 2830 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 3384 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 4927 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 4779 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 6753 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 5095 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 5177 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 5258 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 6383 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 6201 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 6649 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 7164 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 6971 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 6044 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 5079 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 5407 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 5106 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 5264 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 4855 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 4522 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 4514 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 4663 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 4983 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 5353 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 3255 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 3281 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 3247 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 3247 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 3421 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 3651 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 3583 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 3824 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 4098 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 4144 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 4050 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 3978 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 3869 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 2257 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 2391 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 2361 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 2568 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 2724 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 2860 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 3389 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 3889 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 4357 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 4644 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 4630 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 4637 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 4872 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 4903 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 5034 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 5093 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 5309 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 5374 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 5336 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 5120 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 2140 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 2798 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 3371 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 3537 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 3966 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 3944 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 3866 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 3735 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 3663 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 3550 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 3443 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 3386 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 3338 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 3545 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 3543 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 3844 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 3915 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 3994 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 4106 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 4163 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 4237 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 4365 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 4572 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 4736 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 4880 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 4927 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 4812 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 4834 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 4900 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 11167 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 11725 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 17155 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 12752 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 12241 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 11406 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 11520 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 11633 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 13856 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 13432 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 15672 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 17560 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 14615 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 13565 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 13637 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 12165 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 13814 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 12771 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 13831 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 13591 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 13597 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 13453 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 13655 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 14672 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 15633 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 14816 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 15397 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 16065 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 16224 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 16770 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 15462 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 17760 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 16941 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 18122 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 17158 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 16718 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 15632 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 4050 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 5826 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 7319 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 8144 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 9055 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 9106 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 8745 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 8432 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 8325 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 8321 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 9014 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 9023 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 8876 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 9065 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 9111 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 9767 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 10635 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 11050 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 12290 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 13100 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 13360 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 13894 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 14439 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 14390 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 14107 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 13945 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 13856 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 13870 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 13444 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 9121 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 13860 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 16414 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 15533 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 14478 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 14607 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 14735 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 13445 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 14043 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 14664 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 14476 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 15729 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 14857 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 13385 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 12741 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 11778 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 12317 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 11311 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 10565 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 10354 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 10579 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 10610 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 11492 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 12040 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 12034 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 12374 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 12464 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 13078 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 14032 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 14777 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 15155 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 14077 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 13421 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 13471 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 13621 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 13057 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 4060 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 6184 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 8312 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 12427 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 9657 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 9711 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 9008 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 8305 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 8986 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 9503 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 9442 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 11351 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 11121 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 11931 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 12062 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 11580 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 13596 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 12420 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 12844 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 11888 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 12310 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 11712 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 12217 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 12241 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 12155 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 12021 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 11164 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 12915 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 12234 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 12465 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 11597 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 12027 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 12764 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 12895 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 12603 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 11946 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 10786 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 4258 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 5139 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 5543 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 5770 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 5916 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 6278 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 6356 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 6537 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 6263 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 5931 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 5776 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 5909 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 5523 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 3956 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 4307 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 4316 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 4094 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 3445 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 2887 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 3033 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 3178 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 3226 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 3399 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 3989 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 4113 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 4063 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 3942 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 3890 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 3525 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 3441 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 3037 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 3586 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 3438 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 3179 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 3069 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 2991 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 3319 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 3174 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 2963 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 3042 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 2939 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 5608 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 5341 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 5329 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 3235 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 3062 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 3559 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 3077 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 3069 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 2873 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 5182 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 5636 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 5859 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 6122 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 6039 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 6214 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 6510 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 6631 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 6453 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 6668 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 6417 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 6396 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 5924 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 2556 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 3873 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 4809 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 4687 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 4137 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 4383 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 4629 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 5195 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 5304 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 5529 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 6021 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 6427 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 6227 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 6448 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 5859 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 5944 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 5728 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 5204 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 5171 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 5079 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 5344 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 5543 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 5595 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 6031 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 6019 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 6138 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 6161 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 6201 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 6362 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 6466 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 6664 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 6811 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 6685 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 6488 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 6143 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 5823 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 2354 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 3264 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 4330 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 4516 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 4515 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 4211 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 4081 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 3795 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 3855 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 3778 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 3673 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 3783 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 3539 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 3863 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 4266 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 4369 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 4541 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 4506 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 4531 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 4763 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 4805 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 4943 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 4628 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 4587 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 4773 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 4632 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 4569 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 7038 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 9248 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 11386 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 12540 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 10464 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 10836 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 11532 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 12227 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 11761 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 13720 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 15433 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 16116 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 20314 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 21946 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 22595 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 22271 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 25840 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 25911 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 25238 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 23874 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 23965 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 25037 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 26343 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 27330 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 29738 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 30278 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 31681 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 32653 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 31864 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 32596 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 32935 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 34383 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 34465 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 32745 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 33697 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 33250 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 32975 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1992, | |
"ridership": 2715 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1993, | |
"ridership": 2990 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1994, | |
"ridership": 3234 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1995, | |
"ridership": 3190 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1996, | |
"ridership": 3305 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1997, | |
"ridership": 3310 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1998, | |
"ridership": 2880 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 1999, | |
"ridership": 3065 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2000, | |
"ridership": 3285 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2001, | |
"ridership": 3539 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2002, | |
"ridership": 3481 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2003, | |
"ridership": 3474 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2004, | |
"ridership": 3683 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2005, | |
"ridership": 3679 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2006, | |
"ridership": 3835 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2007, | |
"ridership": 3825 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2008, | |
"ridership": 3828 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2009, | |
"ridership": 3689 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2010, | |
"ridership": 3792 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2011, | |
"ridership": 3653 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2012, | |
"ridership": 3587 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "Blue", | |
"year": 2013, | |
"ridership": 3380 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 7657 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 7670 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 7682 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 6650 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 7759 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 6831 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 7746 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 7926 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 8747 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 6793 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 6036 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 7338 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 6422 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 6701 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 6436 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 6670 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 6264 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 6433 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 6458 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 6770 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 6841 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 6858 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 6923 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 7094 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 7462 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 7730 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 7648 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 7276 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 7155 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 7559 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 6699 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 6414 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1980, | |
"ridership": 1728 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1981, | |
"ridership": 2259 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1982, | |
"ridership": 2212 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1983, | |
"ridership": 2281 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1984, | |
"ridership": 2350 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1985, | |
"ridership": 2757 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1986, | |
"ridership": 2796 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1987, | |
"ridership": 2341 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1988, | |
"ridership": 2403 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1989, | |
"ridership": 2454 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1990, | |
"ridership": 2312 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1991, | |
"ridership": 2669 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1992, | |
"ridership": 2862 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1993, | |
"ridership": 2432 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1994, | |
"ridership": 2396 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1995, | |
"ridership": 2348 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1996, | |
"ridership": 2287 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1997, | |
"ridership": 2169 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1998, | |
"ridership": 2301 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 1999, | |
"ridership": 2205 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2000, | |
"ridership": 2334 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2001, | |
"ridership": 2607 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2002, | |
"ridership": 2623 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2003, | |
"ridership": 3007 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2004, | |
"ridership": 3135 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2005, | |
"ridership": 3289 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2006, | |
"ridership": 3608 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2007, | |
"ridership": 3886 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2008, | |
"ridership": 4016 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2009, | |
"ridership": 4067 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2010, | |
"ridership": 4103 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2011, | |
"ridership": 3953 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2012, | |
"ridership": 3733 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "Silver", | |
"year": 2013, | |
"ridership": 3695 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1992, | |
"ridership": 3320 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1993, | |
"ridership": 3723 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1994, | |
"ridership": 3947 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1995, | |
"ridership": 4112 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1996, | |
"ridership": 3878 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1997, | |
"ridership": 4054 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1998, | |
"ridership": 4157 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 1999, | |
"ridership": 4563 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2000, | |
"ridership": 4466 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2001, | |
"ridership": 4628 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2002, | |
"ridership": 4040 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2003, | |
"ridership": 3284 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2004, | |
"ridership": 3275 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2005, | |
"ridership": 3146 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2006, | |
"ridership": 3163 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2007, | |
"ridership": 3201 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2008, | |
"ridership": 3175 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2009, | |
"ridership": 3067 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2010, | |
"ridership": 3974 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2011, | |
"ridership": 4236 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2012, | |
"ridership": 4536 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "Green", | |
"year": 2013, | |
"ridership": 4347 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 5251 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 5584 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 5601 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 5586 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 5508 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 5337 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 5291 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 5574 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 3384 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 4001 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 4388 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 4576 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 4746 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 4498 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 4468 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 4887 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 4874 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 4754 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 4653 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 4543 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 4472 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 4374 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 4094 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1985, | |
"ridership": 2199 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1986, | |
"ridership": 3077 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1987, | |
"ridership": 3775 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1988, | |
"ridership": 4109 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1989, | |
"ridership": 4074 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1990, | |
"ridership": 4333 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1991, | |
"ridership": 3955 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1992, | |
"ridership": 3903 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1993, | |
"ridership": 3546 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1994, | |
"ridership": 3661 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1995, | |
"ridership": 3605 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1996, | |
"ridership": 3613 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1997, | |
"ridership": 3719 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1998, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 1999, | |
"ridership": 3752 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2000, | |
"ridership": 4050 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2001, | |
"ridership": 4287 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2002, | |
"ridership": 4446 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2003, | |
"ridership": 4223 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2004, | |
"ridership": 4172 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2005, | |
"ridership": 3682 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2006, | |
"ridership": 3714 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2007, | |
"ridership": 4010 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2008, | |
"ridership": 4097 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2009, | |
"ridership": 4096 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2010, | |
"ridership": 4210 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2011, | |
"ridership": 4266 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2012, | |
"ridership": 4151 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "Red", | |
"year": 2013, | |
"ridership": 3951 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1992, | |
"ridership": 6887 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1993, | |
"ridership": 7902 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1994, | |
"ridership": 8487 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1995, | |
"ridership": 8182 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1996, | |
"ridership": 7848 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1997, | |
"ridership": 8197 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1998, | |
"ridership": 8911 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 1999, | |
"ridership": 9317 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2000, | |
"ridership": 10131 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2001, | |
"ridership": 7226 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2002, | |
"ridership": 7198 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2003, | |
"ridership": 7118 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2004, | |
"ridership": 7036 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2005, | |
"ridership": 7118 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2006, | |
"ridership": 7778 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2007, | |
"ridership": 7642 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2008, | |
"ridership": 7681 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2009, | |
"ridership": 7719 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2010, | |
"ridership": 7774 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2011, | |
"ridership": 7479 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2012, | |
"ridership": 7598 | |
}, | |
{ | |
"station": "Anacostia", | |
"color": "All", | |
"year": 2013, | |
"ridership": 7342 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1977, | |
"ridership": 140 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1978, | |
"ridership": 219 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1979, | |
"ridership": 384 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1980, | |
"ridership": 362 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1981, | |
"ridership": 876 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1982, | |
"ridership": 215 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1983, | |
"ridership": 316 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1984, | |
"ridership": 416 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1985, | |
"ridership": 1099 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1986, | |
"ridership": 341 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1987, | |
"ridership": 731 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1988, | |
"ridership": 984 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1989, | |
"ridership": 1342 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1990, | |
"ridership": 1102 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1991, | |
"ridership": 1064 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1992, | |
"ridership": 1294 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1993, | |
"ridership": 1263 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1994, | |
"ridership": 804 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1995, | |
"ridership": 1480 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1996, | |
"ridership": 1583 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1997, | |
"ridership": 1826 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1998, | |
"ridership": 2074 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 1999, | |
"ridership": 1688 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2000, | |
"ridership": 1759 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2001, | |
"ridership": 1905 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2002, | |
"ridership": 1825 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2003, | |
"ridership": 1441 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2004, | |
"ridership": 1644 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2005, | |
"ridership": 1752 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2006, | |
"ridership": 1821 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2007, | |
"ridership": 1889 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2008, | |
"ridership": 2081 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2009, | |
"ridership": 1970 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2010, | |
"ridership": 1889 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2011, | |
"ridership": 1866 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2012, | |
"ridership": 1827 | |
}, | |
{ | |
"station": "Arlington Cemetery", | |
"color": "All", | |
"year": 2013, | |
"ridership": 1768 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1981, | |
"ridership": 2497 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1982, | |
"ridership": 3078 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1983, | |
"ridership": 3026 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2973 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1985, | |
"ridership": 3050 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1986, | |
"ridership": 3468 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3546 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1988, | |
"ridership": 3873 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1989, | |
"ridership": 4075 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1990, | |
"ridership": 3883 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1991, | |
"ridership": 3622 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3159 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1993, | |
"ridership": 2898 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1994, | |
"ridership": 2770 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1995, | |
"ridership": 2775 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1996, | |
"ridership": 2662 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1997, | |
"ridership": 2621 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1998, | |
"ridership": 2784 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 1999, | |
"ridership": 2787 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2000, | |
"ridership": 2999 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3099 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2002, | |
"ridership": 2976 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2003, | |
"ridership": 2988 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3052 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3240 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2006, | |
"ridership": 3392 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2007, | |
"ridership": 3288 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2008, | |
"ridership": 3382 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2009, | |
"ridership": 3316 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2010, | |
"ridership": 3399 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2011, | |
"ridership": 3241 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2012, | |
"ridership": 3183 | |
}, | |
{ | |
"station": "Benning Road", | |
"color": "All", | |
"year": 2013, | |
"ridership": 3163 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1985, | |
"ridership": 5011 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1986, | |
"ridership": 6163 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1987, | |
"ridership": 7105 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1988, | |
"ridership": 6837 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1989, | |
"ridership": 7305 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1990, | |
"ridership": 7572 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1991, | |
"ridership": 7401 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1992, | |
"ridership": 7779 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1993, | |
"ridership": 7193 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1994, | |
"ridership": 7625 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1995, | |
"ridership": 7501 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1996, | |
"ridership": 7406 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1997, | |
"ridership": 7596 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1998, | |
"ridership": 7889 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 1999, | |
"ridership": 7885 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2000, | |
"ridership": 8469 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2001, | |
"ridership": 8591 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2002, | |
"ridership": 8717 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2003, | |
"ridership": 9205 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2004, | |
"ridership": 9430 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2005, | |
"ridership": 9946 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2006, | |
"ridership": 10530 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2007, | |
"ridership": 10738 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2008, | |
"ridership": 10968 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2009, | |
"ridership": 10730 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2010, | |
"ridership": 10605 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2011, | |
"ridership": 10765 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2012, | |
"ridership": 10888 | |
}, | |
{ | |
"station": "Bethesda", | |
"color": "All", | |
"year": 2013, | |
"ridership": 10608 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1984, | |
"ridership": 1295 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2124 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1986, | |
"ridership": 2395 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1987, | |
"ridership": 2549 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1988, | |
"ridership": 2684 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1989, | |
"ridership": 2876 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1990, | |
"ridership": 3054 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1991, | |
"ridership": 3158 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3052 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3227 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3305 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3270 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3113 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3103 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3209 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3309 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3481 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3777 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2002, | |
"ridership": 3804 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3917 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4054 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2005, | |
"ridership": 4202 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4316 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4327 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4506 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4593 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4524 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4559 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4484 | |
}, | |
{ | |
"station": "Braddock Road", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4408 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1981, | |
"ridership": 1890 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1982, | |
"ridership": 1965 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1983, | |
"ridership": 2091 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2217 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2317 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1986, | |
"ridership": 2595 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1987, | |
"ridership": 2972 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1988, | |
"ridership": 2969 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1989, | |
"ridership": 3125 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1990, | |
"ridership": 2922 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1991, | |
"ridership": 2781 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1992, | |
"ridership": 2453 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1993, | |
"ridership": 2247 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1994, | |
"ridership": 2158 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1995, | |
"ridership": 2099 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1996, | |
"ridership": 1983 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1997, | |
"ridership": 1975 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1998, | |
"ridership": 2180 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 1999, | |
"ridership": 2248 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2000, | |
"ridership": 2324 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2001, | |
"ridership": 2219 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2002, | |
"ridership": 2143 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2003, | |
"ridership": 2089 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2004, | |
"ridership": 1956 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2005, | |
"ridership": 1972 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2006, | |
"ridership": 2123 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2007, | |
"ridership": 2137 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2008, | |
"ridership": 2225 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2009, | |
"ridership": 2221 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2010, | |
"ridership": 2241 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2011, | |
"ridership": 2150 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2012, | |
"ridership": 2374 | |
}, | |
{ | |
"station": "Capitol Heights", | |
"color": "All", | |
"year": 2013, | |
"ridership": 2105 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1977, | |
"ridership": 3696 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1978, | |
"ridership": 5003 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1979, | |
"ridership": 5392 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1980, | |
"ridership": 6758 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1981, | |
"ridership": 6684 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1982, | |
"ridership": 7429 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1983, | |
"ridership": 6741 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1984, | |
"ridership": 6052 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1985, | |
"ridership": 7480 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1986, | |
"ridership": 7807 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1987, | |
"ridership": 8759 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1988, | |
"ridership": 8685 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1989, | |
"ridership": 8629 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1990, | |
"ridership": 8383 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1991, | |
"ridership": 8604 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1992, | |
"ridership": 7419 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1993, | |
"ridership": 8102 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1994, | |
"ridership": 6984 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1995, | |
"ridership": 7214 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1996, | |
"ridership": 6724 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1997, | |
"ridership": 6720 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1998, | |
"ridership": 6518 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 1999, | |
"ridership": 6509 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2000, | |
"ridership": 7001 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2001, | |
"ridership": 7656 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2002, | |
"ridership": 7252 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2003, | |
"ridership": 7375 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2004, | |
"ridership": 7907 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2005, | |
"ridership": 8303 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2006, | |
"ridership": 8455 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2007, | |
"ridership": 8452 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2008, | |
"ridership": 8900 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2009, | |
"ridership": 9414 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2010, | |
"ridership": 9639 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2011, | |
"ridership": 9194 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2012, | |
"ridership": 8047 | |
}, | |
{ | |
"station": "Capitol South", | |
"color": "All", | |
"year": 2013, | |
"ridership": 8618 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1979, | |
"ridership": 1344 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1980, | |
"ridership": 1380 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1981, | |
"ridership": 1366 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1982, | |
"ridership": 1162 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1983, | |
"ridership": 1198 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1984, | |
"ridership": 1234 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1985, | |
"ridership": 1315 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1986, | |
"ridership": 1463 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1987, | |
"ridership": 1490 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1988, | |
"ridership": 1549 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1989, | |
"ridership": 1623 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1990, | |
"ridership": 1655 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1991, | |
"ridership": 1705 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1992, | |
"ridership": 1617 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1993, | |
"ridership": 1498 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1994, | |
"ridership": 1514 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1995, | |
"ridership": 1484 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1996, | |
"ridership": 1400 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1997, | |
"ridership": 1377 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1998, | |
"ridership": 1439 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 1999, | |
"ridership": 1430 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2000, | |
"ridership": 1505 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2001, | |
"ridership": 1503 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2002, | |
"ridership": 1507 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2003, | |
"ridership": 1481 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2004, | |
"ridership": 1560 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2005, | |
"ridership": 1544 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2006, | |
"ridership": 1554 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2007, | |
"ridership": 1609 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2008, | |
"ridership": 1629 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2009, | |
"ridership": 1548 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2010, | |
"ridership": 1571 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2011, | |
"ridership": 1543 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2012, | |
"ridership": 1546 | |
}, | |
{ | |
"station": "Cheverly", | |
"color": "All", | |
"year": 2013, | |
"ridership": 1547 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1980, | |
"ridership": 1899 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1981, | |
"ridership": 2149 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1982, | |
"ridership": 2064 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1983, | |
"ridership": 2159 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2254 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2351 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1986, | |
"ridership": 2652 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1987, | |
"ridership": 2468 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1988, | |
"ridership": 2629 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1989, | |
"ridership": 2818 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1990, | |
"ridership": 3078 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1991, | |
"ridership": 2964 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1992, | |
"ridership": 2474 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1993, | |
"ridership": 2564 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1994, | |
"ridership": 2766 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1995, | |
"ridership": 2694 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1996, | |
"ridership": 2611 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1997, | |
"ridership": 2632 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1998, | |
"ridership": 2681 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 1999, | |
"ridership": 2708 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2000, | |
"ridership": 2752 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2001, | |
"ridership": 2914 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2002, | |
"ridership": 2935 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2003, | |
"ridership": 2927 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3359 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3752 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4065 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4166 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4406 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4355 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4335 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4414 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4838 | |
}, | |
{ | |
"station": "Clarendon", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4829 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1982, | |
"ridership": 2443 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1983, | |
"ridership": 2702 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2961 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1985, | |
"ridership": 3870 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1986, | |
"ridership": 3512 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3419 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1988, | |
"ridership": 3708 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1989, | |
"ridership": 3921 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1990, | |
"ridership": 3864 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1991, | |
"ridership": 3934 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3660 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1993, | |
"ridership": 4066 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1994, | |
"ridership": 4204 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1995, | |
"ridership": 4326 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1996, | |
"ridership": 4214 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1997, | |
"ridership": 4443 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1998, | |
"ridership": 4432 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 1999, | |
"ridership": 4632 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2000, | |
"ridership": 4396 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4456 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4680 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2003, | |
"ridership": 4520 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4582 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2005, | |
"ridership": 4831 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2006, | |
"ridership": 5082 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4976 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2008, | |
"ridership": 5010 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4807 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4656 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4676 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4700 | |
}, | |
{ | |
"station": "Cleveland Park", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4731 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3957 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4771 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2002, | |
"ridership": 5346 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2003, | |
"ridership": 5835 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2004, | |
"ridership": 6009 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2005, | |
"ridership": 6596 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2006, | |
"ridership": 7330 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2007, | |
"ridership": 8441 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2008, | |
"ridership": 10168 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2009, | |
"ridership": 11375 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2010, | |
"ridership": 11990 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2011, | |
"ridership": 12386 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2012, | |
"ridership": 12860 | |
}, | |
{ | |
"station": "Columbia Heights", | |
"color": "All", | |
"year": 2013, | |
"ridership": 12891 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2001, | |
"ridership": 1702 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2002, | |
"ridership": 1920 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2003, | |
"ridership": 2060 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2004, | |
"ridership": 2227 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2005, | |
"ridership": 2371 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2006, | |
"ridership": 2524 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2007, | |
"ridership": 2556 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2008, | |
"ridership": 2723 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2009, | |
"ridership": 2722 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2010, | |
"ridership": 2826 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2011, | |
"ridership": 2819 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2012, | |
"ridership": 3035 | |
}, | |
{ | |
"station": "Congress Heights", | |
"color": "All", | |
"year": 2013, | |
"ridership": 3030 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1980, | |
"ridership": 2825 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1981, | |
"ridership": 3034 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1982, | |
"ridership": 2860 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1983, | |
"ridership": 2987 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1984, | |
"ridership": 3113 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1985, | |
"ridership": 3673 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1986, | |
"ridership": 4077 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1987, | |
"ridership": 4059 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1988, | |
"ridership": 4227 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1989, | |
"ridership": 4977 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1990, | |
"ridership": 5310 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1991, | |
"ridership": 5561 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1992, | |
"ridership": 5653 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1993, | |
"ridership": 5630 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1994, | |
"ridership": 6154 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1995, | |
"ridership": 6018 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1996, | |
"ridership": 5752 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1997, | |
"ridership": 6108 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1998, | |
"ridership": 6575 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 1999, | |
"ridership": 6583 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2000, | |
"ridership": 7079 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2001, | |
"ridership": 7275 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2002, | |
"ridership": 6695 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2003, | |
"ridership": 7066 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2004, | |
"ridership": 7317 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2005, | |
"ridership": 7356 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2006, | |
"ridership": 7413 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2007, | |
"ridership": 7405 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2008, | |
"ridership": 7381 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2009, | |
"ridership": 7385 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2010, | |
"ridership": 7578 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2011, | |
"ridership": 7483 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2012, | |
"ridership": 7475 | |
}, | |
{ | |
"station": "Court House", | |
"color": "All", | |
"year": 2013, | |
"ridership": 7690 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1977, | |
"ridership": 3912 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1978, | |
"ridership": 5110 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1979, | |
"ridership": 7554 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1980, | |
"ridership": 8204 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1981, | |
"ridership": 7438 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1982, | |
"ridership": 7667 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1983, | |
"ridership": 8723 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1984, | |
"ridership": 9779 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1985, | |
"ridership": 10602 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1986, | |
"ridership": 10939 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1987, | |
"ridership": 12253 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1988, | |
"ridership": 12965 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1989, | |
"ridership": 13633 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1990, | |
"ridership": 13349 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1991, | |
"ridership": 13335 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1992, | |
"ridership": 12630 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1993, | |
"ridership": 12601 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1994, | |
"ridership": 11704 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1995, | |
"ridership": 12067 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1996, | |
"ridership": 11670 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1997, | |
"ridership": 11596 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1998, | |
"ridership": 11420 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 1999, | |
"ridership": 11847 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2000, | |
"ridership": 12108 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2001, | |
"ridership": 12851 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2002, | |
"ridership": 12908 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2003, | |
"ridership": 13560 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2004, | |
"ridership": 13722 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2005, | |
"ridership": 12809 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2006, | |
"ridership": 13324 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2007, | |
"ridership": 14158 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2008, | |
"ridership": 15028 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2009, | |
"ridership": 14748 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2010, | |
"ridership": 14952 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2011, | |
"ridership": 15187 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2012, | |
"ridership": 13592 | |
}, | |
{ | |
"station": "Crystal City", | |
"color": "All", | |
"year": 2013, | |
"ridership": 12594 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1979, | |
"ridership": 2535 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1980, | |
"ridership": 2638 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1981, | |
"ridership": 2016 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1982, | |
"ridership": 1851 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1983, | |
"ridership": 1935 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2018 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1985, | |
"ridership": 1909 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1986, | |
"ridership": 2026 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1987, | |
"ridership": 2091 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1988, | |
"ridership": 2153 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1989, | |
"ridership": 2206 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1990, | |
"ridership": 1903 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1991, | |
"ridership": 2007 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1992, | |
"ridership": 1827 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1993, | |
"ridership": 1567 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1994, | |
"ridership": 1633 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1995, | |
"ridership": 1708 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1996, | |
"ridership": 1529 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1997, | |
"ridership": 1631 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1998, | |
"ridership": 1656 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 1999, | |
"ridership": 1716 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2000, | |
"ridership": 1802 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2001, | |
"ridership": 1854 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2002, | |
"ridership": 1848 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2003, | |
"ridership": 1899 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2004, | |
"ridership": 1914 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2005, | |
"ridership": 1828 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2006, | |
"ridership": 1892 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2007, | |
"ridership": 1827 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2008, | |
"ridership": 1978 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2009, | |
"ridership": 1960 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2010, | |
"ridership": 1909 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2011, | |
"ridership": 1844 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2012, | |
"ridership": 1829 | |
}, | |
{ | |
"station": "Deanwood", | |
"color": "All", | |
"year": 2013, | |
"ridership": 1754 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1977, | |
"ridership": 7784 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1978, | |
"ridership": 10124 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1979, | |
"ridership": 13617 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1980, | |
"ridership": 15643 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1981, | |
"ridership": 14128 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1982, | |
"ridership": 11628 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1983, | |
"ridership": 12761 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1984, | |
"ridership": 13894 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1985, | |
"ridership": 16767 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1986, | |
"ridership": 17099 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1987, | |
"ridership": 18838 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1988, | |
"ridership": 19374 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1989, | |
"ridership": 21075 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1990, | |
"ridership": 21631 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1991, | |
"ridership": 17744 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1992, | |
"ridership": 20922 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1993, | |
"ridership": 20518 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1994, | |
"ridership": 20411 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1995, | |
"ridership": 20586 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1996, | |
"ridership": 20025 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1997, | |
"ridership": 19185 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1998, | |
"ridership": 20067 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 1999, | |
"ridership": 20179 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2000, | |
"ridership": 21425 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2001, | |
"ridership": 22625 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2002, | |
"ridership": 22407 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2003, | |
"ridership": 22490 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2004, | |
"ridership": 22514 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2005, | |
"ridership": 23196 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2006, | |
"ridership": 23700 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2007, | |
"ridership": 24149 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2008, | |
"ridership": 24591 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2009, | |
"ridership": 23561 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2010, | |
"ridership": 22907 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2011, | |
"ridership": 22721 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2012, | |
"ridership": 18830 | |
}, | |
{ | |
"station": "Dupont Circle", | |
"color": "All", | |
"year": 2013, | |
"ridership": 21084 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3361 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1988, | |
"ridership": 3768 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1989, | |
"ridership": 4015 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1990, | |
"ridership": 4269 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1991, | |
"ridership": 4329 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3906 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3831 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3762 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3698 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3458 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3528 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3659 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3626 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3756 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4060 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4049 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3871 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4018 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3994 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4238 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4246 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4306 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4202 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4134 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4102 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4287 | |
}, | |
{ | |
"station": "East Falls Church", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4108 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1977, | |
"ridership": 7950 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1978, | |
"ridership": 12531 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1979, | |
"ridership": 12790 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1980, | |
"ridership": 15087 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1981, | |
"ridership": 13102 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1982, | |
"ridership": 16049 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1983, | |
"ridership": 15600 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1984, | |
"ridership": 15150 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1985, | |
"ridership": 19446 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1986, | |
"ridership": 23505 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1987, | |
"ridership": 23287 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1988, | |
"ridership": 23982 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1989, | |
"ridership": 25275 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1990, | |
"ridership": 24651 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1991, | |
"ridership": 24914 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1992, | |
"ridership": 24088 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1993, | |
"ridership": 18308 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1994, | |
"ridership": 23364 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1995, | |
"ridership": 22586 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1996, | |
"ridership": 22142 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1997, | |
"ridership": 23427 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1998, | |
"ridership": 23624 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 1999, | |
"ridership": 23928 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2000, | |
"ridership": 24885 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2001, | |
"ridership": 26250 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2002, | |
"ridership": 25394 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2003, | |
"ridership": 24612 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2004, | |
"ridership": 25300 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2005, | |
"ridership": 25571 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2006, | |
"ridership": 26624 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2007, | |
"ridership": 26934 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2008, | |
"ridership": 26506 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2009, | |
"ridership": 25311 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2010, | |
"ridership": 24105 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2011, | |
"ridership": 23796 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2012, | |
"ridership": 26773 | |
}, | |
{ | |
"station": "Farragut North", | |
"color": "All", | |
"year": 2013, | |
"ridership": 25351 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1977, | |
"ridership": 15167 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1978, | |
"ridership": 17085 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1979, | |
"ridership": 23386 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1980, | |
"ridership": 28891 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1981, | |
"ridership": 27294 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1982, | |
"ridership": 25396 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1983, | |
"ridership": 22875 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1984, | |
"ridership": 20354 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1985, | |
"ridership": 24138 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1986, | |
"ridership": 24246 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1987, | |
"ridership": 25710 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1988, | |
"ridership": 27418 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1989, | |
"ridership": 26751 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1990, | |
"ridership": 28717 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1991, | |
"ridership": 27010 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1992, | |
"ridership": 24529 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1993, | |
"ridership": 24239 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1994, | |
"ridership": 23427 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1995, | |
"ridership": 22302 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1996, | |
"ridership": 21258 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1997, | |
"ridership": 21514 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1998, | |
"ridership": 22725 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 1999, | |
"ridership": 22706 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2000, | |
"ridership": 23404 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2001, | |
"ridership": 24636 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2002, | |
"ridership": 23573 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2003, | |
"ridership": 23432 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2004, | |
"ridership": 23874 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2005, | |
"ridership": 24149 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2006, | |
"ridership": 24179 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2007, | |
"ridership": 24121 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2008, | |
"ridership": 23190 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2009, | |
"ridership": 22469 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2010, | |
"ridership": 23137 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2011, | |
"ridership": 22575 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2012, | |
"ridership": 22918 | |
}, | |
{ | |
"station": "Farragut West", | |
"color": "All", | |
"year": 2013, | |
"ridership": 22545 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1977, | |
"ridership": 4036 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1978, | |
"ridership": 4432 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1979, | |
"ridership": 5660 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1980, | |
"ridership": 6774 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1981, | |
"ridership": 6154 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1982, | |
"ridership": 5960 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1983, | |
"ridership": 5721 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1984, | |
"ridership": 5481 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1985, | |
"ridership": 6376 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1986, | |
"ridership": 7101 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1987, | |
"ridership": 8777 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1988, | |
"ridership": 8998 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1989, | |
"ridership": 9001 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1990, | |
"ridership": 8799 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1991, | |
"ridership": 8460 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1992, | |
"ridership": 8751 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1993, | |
"ridership": 8114 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1994, | |
"ridership": 8162 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1995, | |
"ridership": 7870 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1996, | |
"ridership": 7461 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1997, | |
"ridership": 6566 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1998, | |
"ridership": 7938 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 1999, | |
"ridership": 8470 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2000, | |
"ridership": 9302 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2001, | |
"ridership": 9879 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2002, | |
"ridership": 10424 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2003, | |
"ridership": 10959 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2004, | |
"ridership": 10915 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2005, | |
"ridership": 11166 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2006, | |
"ridership": 10883 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2007, | |
"ridership": 10429 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2008, | |
"ridership": 10603 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2009, | |
"ridership": 11108 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2010, | |
"ridership": 10756 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2011, | |
"ridership": 10258 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2012, | |
"ridership": 9879 | |
}, | |
{ | |
"station": "Federal Triangle", | |
"color": "All", | |
"year": 2013, | |
"ridership": 9052 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1991, | |
"ridership": 1788 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1992, | |
"ridership": 1849 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1993, | |
"ridership": 1834 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1994, | |
"ridership": 1890 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1995, | |
"ridership": 1898 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1996, | |
"ridership": 1854 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1997, | |
"ridership": 1868 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1998, | |
"ridership": 1850 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 1999, | |
"ridership": 1790 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2000, | |
"ridership": 1860 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2001, | |
"ridership": 1930 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2002, | |
"ridership": 2023 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2003, | |
"ridership": 2025 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2004, | |
"ridership": 2089 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2005, | |
"ridership": 2082 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2006, | |
"ridership": 2170 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2007, | |
"ridership": 2302 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2008, | |
"ridership": 2409 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2009, | |
"ridership": 2514 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2010, | |
"ridership": 2366 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2011, | |
"ridership": 2365 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2012, | |
"ridership": 2448 | |
}, | |
{ | |
"station": "Forest Glen", | |
"color": "All", | |
"year": 2013, | |
"ridership": 2443 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1978, | |
"ridership": 2969 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1979, | |
"ridership": 4896 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1980, | |
"ridership": 5294 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1981, | |
"ridership": 4481 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1982, | |
"ridership": 4150 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1983, | |
"ridership": 3845 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1984, | |
"ridership": 3539 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1985, | |
"ridership": 4363 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1986, | |
"ridership": 4868 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1987, | |
"ridership": 5600 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1988, | |
"ridership": 5484 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1989, | |
"ridership": 5761 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1990, | |
"ridership": 5825 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1991, | |
"ridership": 5585 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1992, | |
"ridership": 5033 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1993, | |
"ridership": 4886 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1994, | |
"ridership": 5034 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1995, | |
"ridership": 4670 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1996, | |
"ridership": 4536 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1997, | |
"ridership": 4324 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1998, | |
"ridership": 4538 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 1999, | |
"ridership": 4501 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2000, | |
"ridership": 5121 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2001, | |
"ridership": 5738 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2002, | |
"ridership": 5861 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2003, | |
"ridership": 6082 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2004, | |
"ridership": 6236 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2005, | |
"ridership": 6280 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2006, | |
"ridership": 6665 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2007, | |
"ridership": 6877 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2008, | |
"ridership": 7071 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2009, | |
"ridership": 7198 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2010, | |
"ridership": 7543 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2011, | |
"ridership": 7364 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2012, | |
"ridership": 7636 | |
}, | |
{ | |
"station": "Fort Totten", | |
"color": "All", | |
"year": 2013, | |
"ridership": 7853 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1998, | |
"ridership": 5600 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 1999, | |
"ridership": 6370 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2000, | |
"ridership": 7131 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2001, | |
"ridership": 8194 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2002, | |
"ridership": 8416 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2003, | |
"ridership": 8482 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2004, | |
"ridership": 9265 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2005, | |
"ridership": 9416 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2006, | |
"ridership": 9857 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2007, | |
"ridership": 9769 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2008, | |
"ridership": 9823 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2009, | |
"ridership": 9591 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2010, | |
"ridership": 9665 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2011, | |
"ridership": 9543 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2012, | |
"ridership": 9089 | |
}, | |
{ | |
"station": "Franconia-Springfield", | |
"color": "All", | |
"year": 2013, | |
"ridership": 8306 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1985, | |
"ridership": 5674 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1986, | |
"ridership": 7106 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1987, | |
"ridership": 7654 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1988, | |
"ridership": 7750 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1989, | |
"ridership": 8164 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1990, | |
"ridership": 8268 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1991, | |
"ridership": 8346 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1992, | |
"ridership": 8388 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1993, | |
"ridership": 8430 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1994, | |
"ridership": 8520 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1995, | |
"ridership": 8343 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1996, | |
"ridership": 8278 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1997, | |
"ridership": 8346 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1998, | |
"ridership": 8424 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 1999, | |
"ridership": 8581 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2000, | |
"ridership": 9089 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2001, | |
"ridership": 9195 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2002, | |
"ridership": 9172 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2003, | |
"ridership": 9321 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2004, | |
"ridership": 9310 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2005, | |
"ridership": 9268 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2006, | |
"ridership": 9771 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2007, | |
"ridership": 9713 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2008, | |
"ridership": 10189 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2009, | |
"ridership": 9696 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2010, | |
"ridership": 9804 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2011, | |
"ridership": 9957 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2012, | |
"ridership": 9671 | |
}, | |
{ | |
"station": "Friendship Heights", | |
"color": "All", | |
"year": 2013, | |
"ridership": 9703 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 1999, | |
"ridership": 4096 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2000, | |
"ridership": 4619 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4980 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2002, | |
"ridership": 5254 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2003, | |
"ridership": 5481 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2004, | |
"ridership": 5578 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2005, | |
"ridership": 5664 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2006, | |
"ridership": 5944 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2007, | |
"ridership": 6096 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2008, | |
"ridership": 6117 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2009, | |
"ridership": 5966 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2010, | |
"ridership": 5857 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2011, | |
"ridership": 5850 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2012, | |
"ridership": 6190 | |
}, | |
{ | |
"station": "Glenmont", | |
"color": "All", | |
"year": 2013, | |
"ridership": 6149 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1994, | |
"ridership": 2486 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1995, | |
"ridership": 2948 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3062 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3844 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1998, | |
"ridership": 4538 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 1999, | |
"ridership": 4857 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2000, | |
"ridership": 5786 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2001, | |
"ridership": 6482 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2002, | |
"ridership": 6788 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2003, | |
"ridership": 6911 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2004, | |
"ridership": 7150 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2005, | |
"ridership": 7005 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2006, | |
"ridership": 7305 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2007, | |
"ridership": 7331 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2008, | |
"ridership": 7432 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2009, | |
"ridership": 7397 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2010, | |
"ridership": 7294 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2011, | |
"ridership": 6923 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2012, | |
"ridership": 6940 | |
}, | |
{ | |
"station": "Greenbelt", | |
"color": "All", | |
"year": 2013, | |
"ridership": 6757 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1984, | |
"ridership": 4084 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1985, | |
"ridership": 6099 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1986, | |
"ridership": 7030 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1987, | |
"ridership": 7849 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1988, | |
"ridership": 8002 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1989, | |
"ridership": 8979 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1990, | |
"ridership": 9445 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1991, | |
"ridership": 9075 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1992, | |
"ridership": 7566 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1993, | |
"ridership": 7902 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1994, | |
"ridership": 7109 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1995, | |
"ridership": 7917 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1996, | |
"ridership": 7570 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1997, | |
"ridership": 7544 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1998, | |
"ridership": 7174 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 1999, | |
"ridership": 7305 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2000, | |
"ridership": 7787 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2001, | |
"ridership": 8372 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2002, | |
"ridership": 8084 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2003, | |
"ridership": 8136 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2004, | |
"ridership": 8501 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2005, | |
"ridership": 8375 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2006, | |
"ridership": 8648 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2007, | |
"ridership": 8601 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2008, | |
"ridership": 8834 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2009, | |
"ridership": 8847 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2010, | |
"ridership": 8760 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2011, | |
"ridership": 9184 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2012, | |
"ridership": 9060 | |
}, | |
{ | |
"station": "Huntington", | |
"color": "All", | |
"year": 2013, | |
"ridership": 8571 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1979, | |
"ridership": 2381 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1980, | |
"ridership": 2815 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1981, | |
"ridership": 2165 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1982, | |
"ridership": 2219 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1983, | |
"ridership": 2260 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2300 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2940 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1986, | |
"ridership": 3191 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3432 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1988, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1989, | |
"ridership": 3859 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1990, | |
"ridership": 3856 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1991, | |
"ridership": 3834 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3541 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3406 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3235 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3192 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3155 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3092 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3219 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3250 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3477 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3462 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2002, | |
"ridership": 3447 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3370 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3424 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2005, | |
"ridership": 2917 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2006, | |
"ridership": 2771 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2007, | |
"ridership": 2796 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2008, | |
"ridership": 2763 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2009, | |
"ridership": 2593 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2010, | |
"ridership": 2570 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2011, | |
"ridership": 2478 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2012, | |
"ridership": 2336 | |
}, | |
{ | |
"station": "Landover", | |
"color": "All", | |
"year": 2013, | |
"ridership": 2191 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2001, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2002, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2003, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2004, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2005, | |
"ridership": 4294 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4826 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2007, | |
"ridership": 5015 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2008, | |
"ridership": 5195 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2009, | |
"ridership": 5112 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2010, | |
"ridership": 5283 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2011, | |
"ridership": 5111 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2012, | |
"ridership": 5159 | |
}, | |
{ | |
"station": "Largo Town Center", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4874 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1977, | |
"ridership": 7024 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1978, | |
"ridership": 8927 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1979, | |
"ridership": 12836 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1980, | |
"ridership": 13829 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1981, | |
"ridership": 13162 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1982, | |
"ridership": 13218 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1983, | |
"ridership": 12982 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1984, | |
"ridership": 12746 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1985, | |
"ridership": 13902 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1986, | |
"ridership": 15020 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1987, | |
"ridership": 16177 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1988, | |
"ridership": 16423 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1989, | |
"ridership": 17809 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1990, | |
"ridership": 18918 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1991, | |
"ridership": 16380 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1992, | |
"ridership": 14173 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1993, | |
"ridership": 14953 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1994, | |
"ridership": 15587 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1995, | |
"ridership": 14324 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1996, | |
"ridership": 14009 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1997, | |
"ridership": 14063 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1998, | |
"ridership": 14722 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 1999, | |
"ridership": 14710 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2000, | |
"ridership": 15419 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2001, | |
"ridership": 16411 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2002, | |
"ridership": 15956 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2003, | |
"ridership": 15765 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2004, | |
"ridership": 16177 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2005, | |
"ridership": 16047 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2006, | |
"ridership": 16383 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2007, | |
"ridership": 16441 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2008, | |
"ridership": 16959 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2009, | |
"ridership": 17009 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2010, | |
"ridership": 17370 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2011, | |
"ridership": 16873 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2012, | |
"ridership": 16845 | |
}, | |
{ | |
"station": "McPherson Square", | |
"color": "All", | |
"year": 2013, | |
"ridership": 16234 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2715 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1986, | |
"ridership": 3137 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3633 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1988, | |
"ridership": 3964 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1989, | |
"ridership": 4384 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1990, | |
"ridership": 4501 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1991, | |
"ridership": 4286 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3917 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3909 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3927 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3911 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3815 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3734 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3859 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3910 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2000, | |
"ridership": 4141 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4438 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4718 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2003, | |
"ridership": 4881 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2004, | |
"ridership": 5091 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2005, | |
"ridership": 5125 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2006, | |
"ridership": 5100 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2007, | |
"ridership": 5256 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2008, | |
"ridership": 5346 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2009, | |
"ridership": 5627 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2010, | |
"ridership": 5574 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2011, | |
"ridership": 5866 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2012, | |
"ridership": 6010 | |
}, | |
{ | |
"station": "Medical Center", | |
"color": "All", | |
"year": 2013, | |
"ridership": 6221 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1977, | |
"ridership": 10493 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1978, | |
"ridership": 13704 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1979, | |
"ridership": 19400 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1980, | |
"ridership": 18516 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1981, | |
"ridership": 19608 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1982, | |
"ridership": 17635 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1983, | |
"ridership": 17395 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1984, | |
"ridership": 17154 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1985, | |
"ridership": 16550 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1986, | |
"ridership": 19386 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1987, | |
"ridership": 25356 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1988, | |
"ridership": 24394 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1989, | |
"ridership": 26888 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1990, | |
"ridership": 25956 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1991, | |
"ridership": 25289 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1992, | |
"ridership": 24128 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1993, | |
"ridership": 25285 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1994, | |
"ridership": 26484 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1995, | |
"ridership": 27643 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1996, | |
"ridership": 25423 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1997, | |
"ridership": 24929 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1998, | |
"ridership": 25801 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 1999, | |
"ridership": 26541 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2000, | |
"ridership": 27457 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2001, | |
"ridership": 28941 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2002, | |
"ridership": 28671 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2003, | |
"ridership": 28076 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2004, | |
"ridership": 28450 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2005, | |
"ridership": 28983 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2006, | |
"ridership": 29564 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2007, | |
"ridership": 29798 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2008, | |
"ridership": 30615 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2009, | |
"ridership": 30569 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2010, | |
"ridership": 29698 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2011, | |
"ridership": 28983 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2012, | |
"ridership": 28802 | |
}, | |
{ | |
"station": "Metro Center", | |
"color": "All", | |
"year": 2013, | |
"ridership": 28039 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2001, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2002, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2003, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2004, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2005, | |
"ridership": 1114 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2006, | |
"ridership": 1250 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2007, | |
"ridership": 1346 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2008, | |
"ridership": 1424 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2009, | |
"ridership": 1540 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2010, | |
"ridership": 1674 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2011, | |
"ridership": 1736 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2012, | |
"ridership": 2290 | |
}, | |
{ | |
"station": "Morgan Boulevard", | |
"color": "All", | |
"year": 2013, | |
"ridership": 1929 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2001, | |
"ridership": 2373 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2002, | |
"ridership": 2637 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2003, | |
"ridership": 2839 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3092 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3194 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2006, | |
"ridership": 3402 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2007, | |
"ridership": 3325 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2008, | |
"ridership": 3260 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2009, | |
"ridership": 3144 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2010, | |
"ridership": 3165 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2011, | |
"ridership": 3047 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2012, | |
"ridership": 3175 | |
}, | |
{ | |
"station": "Naylor Road", | |
"color": "All", | |
"year": 2013, | |
"ridership": 3100 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1979, | |
"ridership": 5715 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1980, | |
"ridership": 6592 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1981, | |
"ridership": 6514 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1982, | |
"ridership": 5886 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1983, | |
"ridership": 5805 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1984, | |
"ridership": 5723 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1985, | |
"ridership": 5695 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1986, | |
"ridership": 6065 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1987, | |
"ridership": 6330 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1988, | |
"ridership": 8359 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1989, | |
"ridership": 8867 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1990, | |
"ridership": 8786 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1991, | |
"ridership": 8671 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1992, | |
"ridership": 8374 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1993, | |
"ridership": 8741 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1994, | |
"ridership": 5586 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1995, | |
"ridership": 7670 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1996, | |
"ridership": 7406 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1997, | |
"ridership": 7544 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1998, | |
"ridership": 7924 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 1999, | |
"ridership": 8123 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2000, | |
"ridership": 8742 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2001, | |
"ridership": 9065 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2002, | |
"ridership": 9058 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2003, | |
"ridership": 9260 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2004, | |
"ridership": 9586 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2005, | |
"ridership": 9091 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2006, | |
"ridership": 10006 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2007, | |
"ridership": 10436 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2008, | |
"ridership": 10625 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2009, | |
"ridership": 10118 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2010, | |
"ridership": 10287 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2011, | |
"ridership": 9940 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2012, | |
"ridership": 9839 | |
}, | |
{ | |
"station": "New Carrollton", | |
"color": "All", | |
"year": 2013, | |
"ridership": 9242 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1977, | |
"ridership": 10558 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1978, | |
"ridership": 12775 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1979, | |
"ridership": 14441 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1980, | |
"ridership": 16123 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1981, | |
"ridership": 16365 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1982, | |
"ridership": 15310 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1983, | |
"ridership": 16512 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1984, | |
"ridership": 17714 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1985, | |
"ridership": 19838 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1986, | |
"ridership": 19443 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1987, | |
"ridership": 18721 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1988, | |
"ridership": 19496 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1989, | |
"ridership": 20862 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1990, | |
"ridership": 20687 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1991, | |
"ridership": 20285 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1992, | |
"ridership": 18743 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1993, | |
"ridership": 18157 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1994, | |
"ridership": 15043 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1995, | |
"ridership": 16873 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1996, | |
"ridership": 15869 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1997, | |
"ridership": 15646 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1998, | |
"ridership": 15105 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 1999, | |
"ridership": 14707 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2000, | |
"ridership": 15548 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2001, | |
"ridership": 17401 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2002, | |
"ridership": 14136 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2003, | |
"ridership": 15726 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2004, | |
"ridership": 15337 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2005, | |
"ridership": 15171 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2006, | |
"ridership": 15893 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2007, | |
"ridership": 15968 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2008, | |
"ridership": 16055 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2009, | |
"ridership": 16318 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2010, | |
"ridership": 16726 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2011, | |
"ridership": 16999 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2012, | |
"ridership": 17114 | |
}, | |
{ | |
"station": "Pentagon", | |
"color": "All", | |
"year": 2013, | |
"ridership": 16324 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1977, | |
"ridership": 1312 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1978, | |
"ridership": 2068 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1979, | |
"ridership": 3325 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1980, | |
"ridership": 3586 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1981, | |
"ridership": 3136 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1982, | |
"ridership": 3210 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1983, | |
"ridership": 2773 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2335 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2821 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1986, | |
"ridership": 2998 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3309 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1988, | |
"ridership": 2786 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1989, | |
"ridership": 3091 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1990, | |
"ridership": 6650 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1991, | |
"ridership": 7602 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1992, | |
"ridership": 7365 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1993, | |
"ridership": 8387 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1994, | |
"ridership": 8529 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1995, | |
"ridership": 9587 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1996, | |
"ridership": 9895 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1997, | |
"ridership": 10411 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1998, | |
"ridership": 10865 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 1999, | |
"ridership": 10832 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2000, | |
"ridership": 11058 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2001, | |
"ridership": 11751 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2002, | |
"ridership": 12805 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2003, | |
"ridership": 13518 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2004, | |
"ridership": 15833 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2005, | |
"ridership": 15783 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2006, | |
"ridership": 16176 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2007, | |
"ridership": 16339 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2008, | |
"ridership": 16803 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2009, | |
"ridership": 16503 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2010, | |
"ridership": 17197 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2011, | |
"ridership": 17023 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2012, | |
"ridership": 16382 | |
}, | |
{ | |
"station": "Pentagon City", | |
"color": "All", | |
"year": 2013, | |
"ridership": 15589 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1977, | |
"ridership": 2830 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1978, | |
"ridership": 3384 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1979, | |
"ridership": 4927 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1980, | |
"ridership": 4779 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1981, | |
"ridership": 6753 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1982, | |
"ridership": 5095 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1983, | |
"ridership": 5177 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1984, | |
"ridership": 5258 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1985, | |
"ridership": 6383 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1986, | |
"ridership": 6201 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1987, | |
"ridership": 6649 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1988, | |
"ridership": 7164 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1989, | |
"ridership": 6971 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1990, | |
"ridership": 6044 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1991, | |
"ridership": 5079 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1992, | |
"ridership": 5407 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1993, | |
"ridership": 5106 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1994, | |
"ridership": 5264 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1995, | |
"ridership": 4855 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1996, | |
"ridership": 4522 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1997, | |
"ridership": 4514 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1998, | |
"ridership": 4663 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 1999, | |
"ridership": 4983 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2000, | |
"ridership": 5353 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3255 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2002, | |
"ridership": 3281 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3247 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3247 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3421 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2006, | |
"ridership": 3651 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2007, | |
"ridership": 3583 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2008, | |
"ridership": 3824 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4098 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4144 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4050 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2012, | |
"ridership": 3978 | |
}, | |
{ | |
"station": "Potomac Ave", | |
"color": "All", | |
"year": 2013, | |
"ridership": 3869 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1994, | |
"ridership": 2257 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1995, | |
"ridership": 2391 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1996, | |
"ridership": 2361 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1997, | |
"ridership": 2568 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1998, | |
"ridership": 2724 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 1999, | |
"ridership": 2860 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3389 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3889 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4357 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2003, | |
"ridership": 4644 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4630 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2005, | |
"ridership": 4637 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4872 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4903 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2008, | |
"ridership": 5034 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2009, | |
"ridership": 5093 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2010, | |
"ridership": 5309 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2011, | |
"ridership": 5374 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2012, | |
"ridership": 5336 | |
}, | |
{ | |
"station": "Prince George's Plaza", | |
"color": "All", | |
"year": 2013, | |
"ridership": 5120 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2140 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1986, | |
"ridership": 2798 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3371 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1988, | |
"ridership": 3537 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1989, | |
"ridership": 3966 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1990, | |
"ridership": 3944 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1991, | |
"ridership": 3866 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3735 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3663 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3550 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3443 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3386 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3338 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3545 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3543 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3844 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3915 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2002, | |
"ridership": 3994 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2003, | |
"ridership": 4106 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4163 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2005, | |
"ridership": 4237 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4365 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4572 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4736 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4880 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4927 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4812 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4834 | |
}, | |
{ | |
"station": "Rockville", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4900 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1977, | |
"ridership": 11167 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1978, | |
"ridership": 11725 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1979, | |
"ridership": 17155 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1980, | |
"ridership": 12752 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1981, | |
"ridership": 12241 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1982, | |
"ridership": 11406 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1983, | |
"ridership": 11520 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1984, | |
"ridership": 11633 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1985, | |
"ridership": 13856 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1986, | |
"ridership": 13432 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1987, | |
"ridership": 15672 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1988, | |
"ridership": 17560 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1989, | |
"ridership": 14615 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1990, | |
"ridership": 13565 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1991, | |
"ridership": 13637 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1992, | |
"ridership": 12165 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1993, | |
"ridership": 13814 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1994, | |
"ridership": 12771 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1995, | |
"ridership": 13831 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1996, | |
"ridership": 13591 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1997, | |
"ridership": 13597 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1998, | |
"ridership": 13453 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 1999, | |
"ridership": 13655 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2000, | |
"ridership": 14672 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2001, | |
"ridership": 15633 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2002, | |
"ridership": 14816 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2003, | |
"ridership": 15397 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2004, | |
"ridership": 16065 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2005, | |
"ridership": 16224 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2006, | |
"ridership": 16770 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2007, | |
"ridership": 15462 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2008, | |
"ridership": 17760 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2009, | |
"ridership": 16941 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2010, | |
"ridership": 18122 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2011, | |
"ridership": 17158 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2012, | |
"ridership": 16718 | |
}, | |
{ | |
"station": "Rosslyn", | |
"color": "All", | |
"year": 2013, | |
"ridership": 15632 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1985, | |
"ridership": 4050 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1986, | |
"ridership": 5826 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1987, | |
"ridership": 7319 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1988, | |
"ridership": 8144 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1989, | |
"ridership": 9055 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1990, | |
"ridership": 9106 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1991, | |
"ridership": 8745 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1992, | |
"ridership": 8432 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1993, | |
"ridership": 8325 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1994, | |
"ridership": 8321 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1995, | |
"ridership": 9014 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1996, | |
"ridership": 9023 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1997, | |
"ridership": 8876 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1998, | |
"ridership": 9065 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 1999, | |
"ridership": 9111 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2000, | |
"ridership": 9767 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2001, | |
"ridership": 10635 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2002, | |
"ridership": 11050 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2003, | |
"ridership": 12290 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2004, | |
"ridership": 13100 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2005, | |
"ridership": 13360 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2006, | |
"ridership": 13894 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2007, | |
"ridership": 14439 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2008, | |
"ridership": 14390 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2009, | |
"ridership": 14107 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2010, | |
"ridership": 13945 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2011, | |
"ridership": 13856 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2012, | |
"ridership": 13870 | |
}, | |
{ | |
"station": "Shady Grove", | |
"color": "All", | |
"year": 2013, | |
"ridership": 13444 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1978, | |
"ridership": 9121 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1979, | |
"ridership": 13860 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1980, | |
"ridership": 16414 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1981, | |
"ridership": 15533 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1982, | |
"ridership": 14478 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1983, | |
"ridership": 14607 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1984, | |
"ridership": 14735 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1985, | |
"ridership": 13445 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1986, | |
"ridership": 14043 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1987, | |
"ridership": 14664 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1988, | |
"ridership": 14476 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1989, | |
"ridership": 15729 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1990, | |
"ridership": 14857 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1991, | |
"ridership": 13385 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1992, | |
"ridership": 12741 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1993, | |
"ridership": 11778 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1994, | |
"ridership": 12317 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1995, | |
"ridership": 11311 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1996, | |
"ridership": 10565 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1997, | |
"ridership": 10354 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1998, | |
"ridership": 10579 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 1999, | |
"ridership": 10610 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2000, | |
"ridership": 11492 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2001, | |
"ridership": 12040 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2002, | |
"ridership": 12034 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2003, | |
"ridership": 12374 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2004, | |
"ridership": 12464 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2005, | |
"ridership": 13078 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2006, | |
"ridership": 14032 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2007, | |
"ridership": 14777 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2008, | |
"ridership": 15155 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2009, | |
"ridership": 14077 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2010, | |
"ridership": 13421 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2011, | |
"ridership": 13471 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2012, | |
"ridership": 13621 | |
}, | |
{ | |
"station": "Silver Spring", | |
"color": "All", | |
"year": 2013, | |
"ridership": 13057 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1977, | |
"ridership": 4060 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1978, | |
"ridership": 6184 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1979, | |
"ridership": 8312 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1980, | |
"ridership": 12427 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1981, | |
"ridership": 9657 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1982, | |
"ridership": 9711 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1983, | |
"ridership": 9008 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1984, | |
"ridership": 8305 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1985, | |
"ridership": 8986 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1986, | |
"ridership": 9503 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1987, | |
"ridership": 9442 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1988, | |
"ridership": 11351 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1989, | |
"ridership": 11121 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1990, | |
"ridership": 11931 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1991, | |
"ridership": 12062 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1992, | |
"ridership": 11580 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1993, | |
"ridership": 13596 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1994, | |
"ridership": 12420 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1995, | |
"ridership": 12844 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1996, | |
"ridership": 11888 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1997, | |
"ridership": 12310 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1998, | |
"ridership": 11712 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 1999, | |
"ridership": 12217 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2000, | |
"ridership": 12241 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2001, | |
"ridership": 12155 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2002, | |
"ridership": 12021 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2003, | |
"ridership": 11164 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2004, | |
"ridership": 12915 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2005, | |
"ridership": 12234 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2006, | |
"ridership": 12465 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2007, | |
"ridership": 11597 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2008, | |
"ridership": 12027 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2009, | |
"ridership": 12764 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2010, | |
"ridership": 12895 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2011, | |
"ridership": 12603 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2012, | |
"ridership": 11946 | |
}, | |
{ | |
"station": "Smithsonian", | |
"color": "All", | |
"year": 2013, | |
"ridership": 10786 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4258 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2002, | |
"ridership": 5139 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2003, | |
"ridership": 5543 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2004, | |
"ridership": 5770 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2005, | |
"ridership": 5916 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2006, | |
"ridership": 6278 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2007, | |
"ridership": 6356 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2008, | |
"ridership": 6537 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2009, | |
"ridership": 6263 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2010, | |
"ridership": 5931 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2011, | |
"ridership": 5776 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2012, | |
"ridership": 5909 | |
}, | |
{ | |
"station": "Southern Avenue", | |
"color": "All", | |
"year": 2013, | |
"ridership": 5523 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1977, | |
"ridership": 3956 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1978, | |
"ridership": 4307 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1979, | |
"ridership": 4316 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1980, | |
"ridership": 4094 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1981, | |
"ridership": 3445 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1982, | |
"ridership": 2887 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1983, | |
"ridership": 3033 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1984, | |
"ridership": 3178 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1985, | |
"ridership": 3226 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1986, | |
"ridership": 3399 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3989 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1988, | |
"ridership": 4113 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1989, | |
"ridership": 4063 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1990, | |
"ridership": 3942 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1991, | |
"ridership": 3890 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3525 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3441 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3037 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3586 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3438 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3179 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3069 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 1999, | |
"ridership": 2991 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3319 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3174 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2002, | |
"ridership": 2963 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3042 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2004, | |
"ridership": 2939 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2005, | |
"ridership": 5608 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2006, | |
"ridership": 5341 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2007, | |
"ridership": 5329 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2008, | |
"ridership": 3235 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2009, | |
"ridership": 3062 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2010, | |
"ridership": 3559 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2011, | |
"ridership": 3077 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2012, | |
"ridership": 3069 | |
}, | |
{ | |
"station": "Stadium-Armory", | |
"color": "All", | |
"year": 2013, | |
"ridership": 2873 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1992, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1993, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1994, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1995, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1996, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1997, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1998, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 1999, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2000, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2001, | |
"ridership": 5182 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2002, | |
"ridership": 5636 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2003, | |
"ridership": 5859 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2004, | |
"ridership": 6122 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2005, | |
"ridership": 6039 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2006, | |
"ridership": 6214 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2007, | |
"ridership": 6510 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2008, | |
"ridership": 6631 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2009, | |
"ridership": 6453 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2010, | |
"ridership": 6668 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2011, | |
"ridership": 6417 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2012, | |
"ridership": 6396 | |
}, | |
{ | |
"station": "Suitland", | |
"color": "All", | |
"year": 2013, | |
"ridership": 5924 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1978, | |
"ridership": 2556 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1979, | |
"ridership": 3873 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1980, | |
"ridership": 4809 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1981, | |
"ridership": 4687 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1982, | |
"ridership": 4137 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1983, | |
"ridership": 4383 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1984, | |
"ridership": 4629 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1985, | |
"ridership": 5195 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1986, | |
"ridership": 5304 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1987, | |
"ridership": 5529 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1988, | |
"ridership": 6021 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1989, | |
"ridership": 6427 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1990, | |
"ridership": 6227 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1991, | |
"ridership": 6448 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1992, | |
"ridership": 5859 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1993, | |
"ridership": 5944 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1994, | |
"ridership": 5728 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1995, | |
"ridership": 5204 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1996, | |
"ridership": 5171 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1997, | |
"ridership": 5079 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1998, | |
"ridership": 5344 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 1999, | |
"ridership": 5543 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2000, | |
"ridership": 5595 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2001, | |
"ridership": 6031 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2002, | |
"ridership": 6019 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2003, | |
"ridership": 6138 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2004, | |
"ridership": 6161 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2005, | |
"ridership": 6201 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2006, | |
"ridership": 6362 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2007, | |
"ridership": 6466 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2008, | |
"ridership": 6664 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2009, | |
"ridership": 6811 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2010, | |
"ridership": 6685 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2011, | |
"ridership": 6488 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2012, | |
"ridership": 6143 | |
}, | |
{ | |
"station": "Takoma", | |
"color": "All", | |
"year": 2013, | |
"ridership": 5823 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2354 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1986, | |
"ridership": 3264 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1988, | |
"ridership": 4330 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1989, | |
"ridership": 4516 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1990, | |
"ridership": 4515 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1991, | |
"ridership": 4211 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1992, | |
"ridership": 4081 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3795 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3855 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3778 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3673 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3783 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3539 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3863 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4266 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4369 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2003, | |
"ridership": 4541 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4506 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2005, | |
"ridership": 4531 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4763 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4805 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4943 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4628 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4587 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4773 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4632 | |
}, | |
{ | |
"station": "Twinbrook", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4569 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1977, | |
"ridership": 7038 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1978, | |
"ridership": 9248 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1979, | |
"ridership": 11386 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1980, | |
"ridership": 12540 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1981, | |
"ridership": 10464 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1982, | |
"ridership": 10836 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1983, | |
"ridership": 11532 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1984, | |
"ridership": 12227 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1985, | |
"ridership": 11761 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1986, | |
"ridership": 13720 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1987, | |
"ridership": 15433 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1988, | |
"ridership": 16116 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1989, | |
"ridership": 20314 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1990, | |
"ridership": 21946 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1991, | |
"ridership": 22595 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1992, | |
"ridership": 22271 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1993, | |
"ridership": 25840 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1994, | |
"ridership": 25911 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1995, | |
"ridership": 25238 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1996, | |
"ridership": 23874 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1997, | |
"ridership": 23965 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1998, | |
"ridership": 25037 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 1999, | |
"ridership": 26343 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2000, | |
"ridership": 27330 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2001, | |
"ridership": 29738 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2002, | |
"ridership": 30278 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2003, | |
"ridership": 31681 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2004, | |
"ridership": 32653 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2005, | |
"ridership": 31864 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2006, | |
"ridership": 32596 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2007, | |
"ridership": 32935 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2008, | |
"ridership": 34383 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2009, | |
"ridership": 34465 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2010, | |
"ridership": 32745 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2011, | |
"ridership": 33697 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2012, | |
"ridership": 33250 | |
}, | |
{ | |
"station": "Union Station", | |
"color": "All", | |
"year": 2013, | |
"ridership": 32975 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1992, | |
"ridership": 2715 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1993, | |
"ridership": 2990 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3234 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3190 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3305 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3310 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1998, | |
"ridership": 2880 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3065 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2000, | |
"ridership": 3285 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2001, | |
"ridership": 3539 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2002, | |
"ridership": 3481 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3474 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3683 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3679 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2006, | |
"ridership": 3835 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2007, | |
"ridership": 3825 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2008, | |
"ridership": 3828 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2009, | |
"ridership": 3689 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2010, | |
"ridership": 3792 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2011, | |
"ridership": 3653 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2012, | |
"ridership": 3587 | |
}, | |
{ | |
"station": "Van Dorn Street", | |
"color": "All", | |
"year": 2013, | |
"ridership": 3380 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1982, | |
"ridership": 7657 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1983, | |
"ridership": 7670 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1984, | |
"ridership": 7682 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1985, | |
"ridership": 6650 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1986, | |
"ridership": 7759 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1987, | |
"ridership": 6831 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1988, | |
"ridership": 7746 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1989, | |
"ridership": 7926 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1990, | |
"ridership": 8747 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1991, | |
"ridership": 6793 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1992, | |
"ridership": 6036 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1993, | |
"ridership": 7338 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1994, | |
"ridership": 6422 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1995, | |
"ridership": 6701 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1996, | |
"ridership": 6436 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1997, | |
"ridership": 6670 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1998, | |
"ridership": 6264 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 1999, | |
"ridership": 6433 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2000, | |
"ridership": 6458 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2001, | |
"ridership": 6770 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2002, | |
"ridership": 6841 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2003, | |
"ridership": 6858 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2004, | |
"ridership": 6923 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2005, | |
"ridership": 7094 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2006, | |
"ridership": 7462 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2007, | |
"ridership": 7730 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2008, | |
"ridership": 7648 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2009, | |
"ridership": 7276 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2010, | |
"ridership": 7155 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2011, | |
"ridership": 7559 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2012, | |
"ridership": 6699 | |
}, | |
{ | |
"station": "Van Ness-UDC", | |
"color": "All", | |
"year": 2013, | |
"ridership": 6414 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1980, | |
"ridership": 1728 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1981, | |
"ridership": 2259 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1982, | |
"ridership": 2212 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1983, | |
"ridership": 2281 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1984, | |
"ridership": 2350 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2757 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1986, | |
"ridership": 2796 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1987, | |
"ridership": 2341 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1988, | |
"ridership": 2403 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1989, | |
"ridership": 2454 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1990, | |
"ridership": 2312 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1991, | |
"ridership": 2669 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1992, | |
"ridership": 2862 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1993, | |
"ridership": 2432 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1994, | |
"ridership": 2396 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1995, | |
"ridership": 2348 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1996, | |
"ridership": 2287 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1997, | |
"ridership": 2169 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1998, | |
"ridership": 2301 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 1999, | |
"ridership": 2205 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2000, | |
"ridership": 2334 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2001, | |
"ridership": 2607 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2002, | |
"ridership": 2623 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3007 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3135 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3289 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2006, | |
"ridership": 3608 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2007, | |
"ridership": 3886 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4016 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4067 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4103 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2011, | |
"ridership": 3953 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2012, | |
"ridership": 3733 | |
}, | |
{ | |
"station": "Virginia Square-GMU", | |
"color": "All", | |
"year": 2013, | |
"ridership": 3695 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1991, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3320 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3723 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3947 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1995, | |
"ridership": 4112 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3878 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1997, | |
"ridership": 4054 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1998, | |
"ridership": 4157 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 1999, | |
"ridership": 4563 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2000, | |
"ridership": 4466 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4628 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4040 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2003, | |
"ridership": 3284 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2004, | |
"ridership": 3275 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3146 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2006, | |
"ridership": 3163 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2007, | |
"ridership": 3201 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2008, | |
"ridership": 3175 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2009, | |
"ridership": 3067 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2010, | |
"ridership": 3974 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4236 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4536 | |
}, | |
{ | |
"station": "Waterfront", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4347 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1985, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1986, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1987, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1988, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1989, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1990, | |
"ridership": 0 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1991, | |
"ridership": 5251 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1992, | |
"ridership": 5584 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1993, | |
"ridership": 5601 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1994, | |
"ridership": 5586 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1995, | |
"ridership": 5508 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1996, | |
"ridership": 5337 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1997, | |
"ridership": 5291 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1998, | |
"ridership": 5574 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3384 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2000, | |
"ridership": 4001 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4388 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4576 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2003, | |
"ridership": 4746 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4498 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2005, | |
"ridership": 4468 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2006, | |
"ridership": 4887 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4874 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4754 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4653 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4543 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4472 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4374 | |
}, | |
{ | |
"station": "Wheaton", | |
"color": "All", | |
"year": 2013, | |
"ridership": 4094 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1977, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1978, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1979, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1980, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1981, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1982, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1983, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1984, | |
"ridership": 0 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1985, | |
"ridership": 2199 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1986, | |
"ridership": 3077 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1987, | |
"ridership": 3775 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1988, | |
"ridership": 4109 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1989, | |
"ridership": 4074 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1990, | |
"ridership": 4333 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1991, | |
"ridership": 3955 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1992, | |
"ridership": 3903 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1993, | |
"ridership": 3546 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1994, | |
"ridership": 3661 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1995, | |
"ridership": 3605 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1996, | |
"ridership": 3613 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1997, | |
"ridership": 3719 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1998, | |
"ridership": 3662 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 1999, | |
"ridership": 3752 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2000, | |
"ridership": 4050 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2001, | |
"ridership": 4287 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2002, | |
"ridership": 4446 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2003, | |
"ridership": 4223 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2004, | |
"ridership": 4172 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2005, | |
"ridership": 3682 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2006, | |
"ridership": 3714 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2007, | |
"ridership": 4010 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2008, | |
"ridership": 4097 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2009, | |
"ridership": 4096 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2010, | |
"ridership": 4210 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2011, | |
"ridership": 4266 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2012, | |
"ridership": 4151 | |
}, | |
{ | |
"station": "White Flint", | |
"color": "All", | |
"year": 2013, | |
"ridership": 3951 | |
} | |
] | |
$scope.controls = [] | |
$scope.filters = [ | |
{ | |
"variable": "color", | |
"value": "Green" | |
}, | |
{ | |
"variable": "color", | |
"value": "Blue" | |
}, | |
{ | |
"variable": "color", | |
"value": "Silver" | |
}, | |
{ | |
"variable": "color", | |
"value": "Red" | |
}, | |
{ | |
"variable": "color", | |
"value": "Yellow" | |
}, | |
{ | |
"variable": "color", | |
"value": "Orange" | |
}, | |
{ | |
"variable": "color", | |
"value": "All" | |
} | |
] | |
$scope.drawChart = function(){ | |
drawChart($scope.opts, $scope.data) | |
} | |
$scope.$watch('selected', function(){ | |
var keys = _.pluck($scope.selected, "variable") | |
var values = _.pluck($scope.selected, "value") | |
$scope.opts.selected = _.zipObject(keys, values) | |
}) | |
$scope.$watch('opts',function(){ | |
$scope.drawChart() | |
}, true) | |
} | |
function drawChart(opts, data){ | |
if (Object.keys(opts.selected).length > 0){ | |
data = _.filter(data, opts.selected) | |
} | |
if(!(opts.type==="pieChart" || opts.type==="sparklinePlus" || opts.type==="bulletChart")) { | |
var data = d3.nest() | |
.key(function(d){ | |
//return opts.group === undefined ? 'main' : d[opts.group] | |
//instead of main would think a better default is opts.x | |
return opts.group === undefined ? opts.y : d[opts.group]; | |
}).entries(data); | |
} | |
if (opts.disabled != undefined){ | |
data.map(function(d, i){ | |
d.disabled = opts.disabled[i] | |
}) | |
} | |
nv.addGraph(function() { | |
var chart = nv.models[opts.type]() | |
.x(function(d) { return d[opts.x] }) | |
.y(function(d) { return d[opts.y] }) | |
.width(opts.width) | |
.height(opts.height) | |
chart | |
.showLegend(false) | |
d3.select("#" + opts.id + ' svg') | |
// .empty() | |
.datum(data) | |
.transition().duration(500) | |
.call(chart); | |
nv.utils.windowResize(chart.update); | |
return chart; | |
}); | |
}; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment