Last active
September 25, 2015 07:56
-
-
Save chiperoo/ddf8ac2c198d98c37d0d to your computer and use it in GitHub Desktop.
Data analysis exercise using D3
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
// Oran Chirapuntu | |
$( document ).ready(function() { | |
loadDefaultDataset(); | |
}); // end document ready | |
// load dataset and process | |
function loadDataset(dataFile) { | |
var data = d3.csv.parse(dataFile) | |
processData(data); | |
} | |
function loadDefaultDataset() { | |
d3.csv("small.csv", function(data) { | |
processData(data); | |
}); | |
} | |
function processData(data){ | |
// print out the first record | |
data.forEach(function(d) { | |
d.Duration = +d.Duration; | |
d["Zip Code"] = +d["Zip Code"]; | |
}); | |
//console.log(data[0]); | |
// min and max dates | |
var minStartDateString = d3.min(data, function(d) { return d["Start Date"]; }); | |
var maxEndDateString = d3.max(data, function(d) { return d["End Date"]; }); | |
//var durationExtent = d3.extent(data, function(d) { return d.Duration }); | |
// filter by local (Bay Area) zips | |
var localZips = data.filter(function(d) { return d["Zip Code"] > 94000 && d["Zip Code"] < 95500; }); | |
// filter out bad zip codes and include non Bay Area zips | |
var nonLocalZips = data.filter(function(d) { return d["Zip Code"] > 10000 && d["Zip Code"] < 100000 && (d["Zip Code"] <= 94000 || d["Zip Code"] >= 95500); }); | |
//console.log(localZips[0]); | |
// group by start station | |
var localMetricsStart = d3.nest() | |
.key(function(d) { return d["Start Station"]; }) | |
.rollup(function(v) { return { | |
count: v.length, | |
min: d3.min(v, function(d) {return d.Duration}), | |
max: d3.max(v, function(d) { return d.Duration; }), | |
avg: d3.mean(v, function(d) { return d.Duration; }).toFixed(3), | |
median: d3.median(v, function(d) { return d.Duration;}) | |
}; }) | |
.entries(localZips); | |
// sort start stations desc by count | |
localMetricsStart.sort(function(a,b){ | |
if(a.values.count > b.values.count) { return -1; } | |
else if(a.values.count < b.values.count) {return 1; } | |
else return 0; | |
}); | |
//console.log(JSON.stringify(localMetricsStart)); | |
// group by end station | |
var localMetricsEnd = d3.nest() | |
.key(function(d) { return d["End Station"]; }) | |
.rollup(function(v) { return { | |
count: v.length, | |
min: d3.min(v, function(d) {return d.Duration}), | |
max: d3.max(v, function(d) { return d.Duration; }), | |
avg: d3.mean(v, function(d) { return d.Duration; }).toFixed(3), | |
median: d3.median(v, function(d) { return d.Duration;}) | |
}; }) | |
.entries(localZips); | |
// sort end stations desc by count | |
localMetricsEnd.sort(function(a,b){ | |
if(a.values.count > b.values.count) { return -1; } | |
else if(a.values.count < b.values.count) {return 1; } | |
else return 0; | |
}) | |
//console.log(JSON.stringify(localMetricsEnd)); | |
// var localZipCount = d3.nest() | |
// .key(function(d) { return d["Zip Code"]; }) | |
// .rollup(function(v) { return v.length; }) | |
// .entries(localZips); | |
//console.log("Local zips: " + JSON.stringify(localZipCount)); | |
// var nonLocalZipCount = d3.nest() | |
// .key(function(d) { return d["Zip Code"]; }) | |
// .rollup(function(v) { return v.length; }) | |
// .entries(nonLocalZips); | |
//console.log("Non local zips: " + JSON.stringify(nonLocalZipCount)); | |
var localPercent = (localZips.length / data.length).toFixed(3) * 100; | |
var nonLocalPercent = (nonLocalZips.length / data.length).toFixed(3) * 100; | |
console.log("Number of local zip trips: " + localZips.length + "(" + localPercent + "%); non local zip trips: " | |
+ nonLocalZips.length + "(" + nonLocalPercent + "%)"); | |
var percentMessage = "<p>The data presented here focuses on local (Bay Area) data as determined by the Zip Code data. This is because the local data accounts " + | |
"for <font color='red'>" + localPercent + "%</font> of the total trips.</p>" + | |
"<p>The Bay Area zip codes were determined to be the zip codes between 94000 and 95500.</p>" + | |
"<p>The minimum, maximum, average, and median durations are also presented. These are values in seconds. I did not filter out the extreme values because the outliers " + | |
"should not dramatically affect the aggregated values. It can also be interesting to see the origin and destination of someone who may have \"forgotten\" to " + | |
"return a bicycle.</p>" | |
$("#localPercentage").html(percentMessage); | |
var summaryMessage = "<p>I wanted to take a look at usage data. I wanted to know where the users start and end their bicycle journeys.</p>" + | |
"<p>Knowing the users of the bicycle service helps to identify where to concentrate resources. Because local users account for the lion's share of the usage, " + | |
"I decided to focus on the top 10 starting and ending stations as well as the bottom 10 starting and ending stations.</p>" + | |
"<p>Hovering over each data row will show the hourly breakdown for the respective pickup or dropoff location.</p>" + | |
"<p>While the numbers may look significant, it is important to note that this is aggregated data from <font color='red'>" + minStartDateString + | |
"</font> to <font color='red'>" + maxEndDateString + "</font></p>" + | |
"<p>With the hourly breakdown, we can see that the most journeys originate and end at the Caltrain Station. This tells us that the users either take Caltrain " + | |
"and/or one of the many buses that serves the station. The Caltrain station has a peak start in the morning and a peak end in the afternoon. Because the numbers " + | |
"of start and ending journeys do not match up, there is a longer term inventory problem. Slowly and organically, the number of bicycles at the Caltrain station " + | |
"will grow.</p>"; | |
$("#summary").html(summaryMessage); | |
// | |
// break down time usage for the top local stations | |
// | |
var timeRegex = /([0-9])+\:/ | |
var timeDelimiterRegex = /\:/; | |
var localZipsCopy = localZips; | |
// top start | |
var topStartStationMap = d3.map(localMetricsStart.slice(0,10), function(d) { return d.key; }); | |
var topStartStationsByLocalZips = localZipsCopy.filter(function(d) { | |
return topStartStationMap.has(d["Start Station"]); | |
}) | |
console.log(JSON.stringify(topStartStationsByLocalZips)); | |
var startStationTopBreakdownByHour = d3.nest() | |
.key(function(d) { return d["Start Station"]; }) | |
.key(function(d) { return d["Start Date"].match(timeRegex)[0].replace(timeDelimiterRegex, ''); }) | |
.rollup(function(v) { return { | |
count: v.length | |
}; }) | |
.map(topStartStationsByLocalZips); | |
console.log(JSON.stringify(startStationTopBreakdownByHour)); | |
// top end | |
var topEndStationMap = d3.map(localMetricsEnd.slice(0,10), function(d) { return d.key; }); | |
var topEndStationsByLocalZips = localZipsCopy.filter(function(d) { | |
return topEndStationMap.has(d["End Station"]); | |
}) | |
console.log(JSON.stringify(endStationTopBreakdownByHour)); | |
var endStationTopBreakdownByHour = d3.nest() | |
.key(function(d) { return d["End Station"]; }) | |
.key(function(d) { return d["End Date"].match(timeRegex)[0].replace(timeDelimiterRegex, ''); }) | |
.rollup(function(v) { return { | |
count: v.length | |
}; }) | |
.map(topEndStationsByLocalZips); | |
console.log(JSON.stringify(endStationTopBreakdownByHour)); | |
// bottom start | |
var bottomStartStationMap = d3.map(localMetricsStart.slice(localMetricsStart.length - 11,localMetricsStart.length - 1) | |
.sort(function(a,b){ | |
if(a.values.count > b.values.count) { return 1; } | |
else if(a.values.count < b.values.count) {return -1; } | |
else return 0;}), function(d) { return d.key; }); | |
var bottomStartStationsByLocalZips = localZipsCopy.filter(function(d) { | |
return bottomStartStationMap.has(d["Start Station"]); | |
}) | |
//console.log(JSON.stringify(bottomStartStationsByLocalZips)); | |
var startStationBottomBreakdownByHour = d3.nest() | |
.key(function(d) { return d["Start Station"]; }) | |
.key(function(d) { return d["Start Date"].match(timeRegex)[0].replace(timeDelimiterRegex, ''); }) | |
.rollup(function(v) { return { | |
count: v.length | |
}; }) | |
.map(bottomStartStationsByLocalZips); | |
//console.log(JSON.stringify(startStationBottomBreakdownByHour)); | |
// bottom end | |
var bottomEndStationMap = d3.map(localMetricsStart.slice(localMetricsStart.length - 11,localMetricsStart.length - 1) | |
.sort(function(a,b){ | |
if(a.values.count > b.values.count) { return -1; } | |
else if(a.values.count < b.values.count) {return 1; } | |
else return 0;}), function(d) { return d.key; }); | |
var bottomEndStationsByLocalZips = localZipsCopy.filter(function(d) { | |
return bottomEndStationMap.has(d["End Station"]); | |
}) | |
//console.log(JSON.stringify(bottomEndStationsByLocalZips)); | |
var endStationBottomBreakdownByHour = d3.nest() | |
.key(function(d) { return d["End Station"]; }) | |
.key(function(d) { return d["End Date"].match(timeRegex)[0].replace(timeDelimiterRegex, ''); }) | |
.rollup(function(v) { return { | |
count: v.length | |
}; }) | |
.map(bottomEndStationsByLocalZips); | |
//console.log(JSON.stringify(endStationBottomBreakdownByHour)); | |
// | |
// generate tables | |
// | |
// station table column definition | |
var stationColumns = ["Station Name", "Count", "Min Duration", "Max Duration", "Avg Duration", "Med Duration"]; | |
var stationDetailCoumns = ["Morning Hour", "Morning Count", "Afternoon Hour", "Afternoon Count"]; | |
// clear old tables | |
$("#startStationTop").empty(); | |
$("#endStationTop").empty(); | |
$("#startStationBottom").empty(); | |
$("#endStationBottom").empty(); | |
// render the station tables | |
var startStationTableTop = tabulateStations("startStationTop", localMetricsStart.slice(0,10), stationColumns, startStationTopBreakdownByHour, stationDetailCoumns); | |
var endStationTableTop = tabulateStations("endStationTop", localMetricsEnd.slice(0,10), stationColumns, endStationTopBreakdownByHour, stationDetailCoumns); | |
// flip the sort order to asc | |
var startStationTableBottom = tabulateStations("startStationBottom", localMetricsStart.slice(localMetricsStart.length - 11,localMetricsStart.length - 1).sort(function(a,b){ | |
if(a.values.count > b.values.count) { return 1; } | |
else if(a.values.count < b.values.count) {return -1; } | |
else return 0;}), stationColumns, startStationBottomBreakdownByHour, stationDetailCoumns); | |
var endStationTableBottom = tabulateStations("endStationBottom", localMetricsEnd.slice(localMetricsEnd.length - 11, localMetricsEnd.length - 1).sort(function(a,b){ | |
if(a.values.count > b.values.count) { return 1; } | |
else if(a.values.count < b.values.count) {return -1; } | |
else return 0;}), stationColumns, endStationBottomBreakdownByHour, stationDetailCoumns); | |
// | |
// alternate row colors | |
// | |
d3.selectAll("#startStationTop tr").classed("alt", function(d, i) { | |
return i % 2 ? false : true; | |
}); | |
d3.selectAll("#endStationTop tr").classed("alt", function(d, i) { | |
return i % 2 ? false : true; | |
}); | |
d3.selectAll("#startStationBottom tr").classed("alt", function(d, i) { | |
return i % 2 ? false : true; | |
}); | |
d3.selectAll("#endStationBottom tr").classed("alt", function(d, i) { | |
return i % 2 ? false : true; | |
}); | |
}; | |
// end process data | |
function tabulateStations(id, data, columns, detailData, detailDataColumns) { | |
var table = d3.select("#" + id).append("table"), | |
thead = table.append("thead"), | |
tbody = table.append("tbody"); | |
// append the header row | |
thead.append("tr") | |
.selectAll("th") | |
.data(columns) | |
.enter() | |
.append("th") | |
.text(function(column) { | |
return column; | |
}); | |
var tds =[]; | |
data.forEach(function(d){ | |
var innerTd = {}; | |
innerTd["Station Name"] = d.key; | |
innerTd["Count"]= d.values.count; | |
innerTd["Min Duration"] = d.values.min; | |
innerTd["Max Duration"] = d.values.max; | |
innerTd["Avg Duration"] = d.values.avg; | |
innerTd["Med Duration"] = d.values.median; | |
tds.push(innerTd); | |
}); | |
// create a row for each object in the data | |
var rows = tbody.selectAll("tr") | |
//.data(data) | |
.data(tds) | |
.enter() | |
.append("tr") | |
.on('mouseover', function(d){ | |
d3.select(this).classed("selected", true); | |
var map = d3.map(detailData); | |
var stationHourly = map.get(d["Station Name"]); | |
var detailable = tabulateStationDetails(id, stationHourly, detailDataColumns); | |
}) | |
.on('mouseout', function(d){ | |
d3.select(this).classed("selected", false); | |
$("#" + id + "TimeBreakdown").empty(); | |
}); | |
// create a cell in each row for each column | |
var cells = rows.selectAll("td") | |
.data(function(row) { | |
return columns.map(function(column) { | |
return {column: column, value: row[column]}; | |
}); | |
}) | |
.enter() | |
.append("td") | |
.text(function(d) { | |
return d.value; | |
}); | |
return table; | |
} | |
function tabulateStationDetails(id, data, columns) { | |
var table = d3.select("#" + id + "TimeBreakdown").append("table"), | |
thead = table.append("thead"), | |
tbody = table.append("tbody"); | |
// append the header row | |
thead.append("tr") | |
.selectAll("th") | |
.data(columns) | |
.enter() | |
.append("th") | |
.text(function(column) { | |
return column; | |
}); | |
var tds =[]; | |
var map = d3.map(data); | |
for(var i=0; i<12; i++) { | |
var hourlyDataMorning = map.get(i); | |
var hourlyDataAfternoon = map.get(i+12); | |
var hourlyMapMorning = d3.map(hourlyDataMorning); | |
var hourlyMapAfternoon = d3.map(hourlyDataAfternoon); | |
//console.log(JSON.stringify(hourlyData)); | |
var innerTd = {}; | |
innerTd["Morning Hour"] = i; | |
innerTd["Afternoon Hour"] = i + 12; | |
var countMor = hourlyMapMorning.get("count") | |
innerTd["Morning Count"] = (countMor !== undefined) ? countMor : 0; | |
var countAft = hourlyMapAfternoon.get("count"); | |
innerTd["Afternoon Count"] = (countAft !== undefined) ? countAft : 0; | |
tds.push(innerTd); | |
} | |
// create a row for each object in the data | |
var rows = tbody.selectAll("tr") | |
//.data(data) | |
.data(tds) | |
.enter() | |
.append("tr") | |
.on('mouseover', function(){ d3.select(this).classed("selected", true); }) | |
.on('mouseout', function(){ d3.select(this).classed("selected", false); }); | |
// create a cell in each row for each column | |
var cells = rows.selectAll("td") | |
.data(function(row) { | |
return columns.map(function(column) { | |
return {column: column, value: row[column]}; | |
}); | |
}) | |
.enter() | |
.append("td") | |
.text(function(d) { | |
return d.value; | |
}); | |
return table; | |
} | |
// handle upload button | |
function upload_button(el, callback) { | |
var uploader = document.getElementById(el); | |
var reader = new FileReader(); | |
reader.onload = function(e) { | |
var contents = e.target.result; | |
callback(contents); | |
}; | |
uploader.addEventListener("change", handleFiles, false); | |
function handleFiles() { | |
var file = this.files[0]; | |
try { | |
reader.readAsText(file); | |
$("#startStationTop").empty(); | |
$("#endStationTop").empty(); | |
$("#startStationBottom").empty(); | |
$("#endStationBottom").empty(); | |
$("#startStationTop").text("loading..."); | |
$("#endStationTop").text("loading..."); | |
$("#startStationBottom").text("loading..."); | |
$("#endStationBottom").text("loading..."); | |
} | |
catch(err) { | |
console.log(err.message); | |
} | |
}; | |
}; | |
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> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
</head> | |
<body> | |
<p> | |
Upload a csv file. It needs to be in the format (with header line): | |
</p> | |
<blockquote> | |
<div> | |
Trip ID,Duration,Start Date,Start Station,Start Terminal,End Date,End Station,End Terminal,Bike #,Subscriber Type,Zip Code<br/> | |
261618,457,4/26/14 9:38,Santa Clara County Civic Center,80,4/26/14 9:46,Ryland Park,84,294,Subscriber,95112 | |
</div> | |
</blockquote> | |
<input type="file" id="uploader"> | |
<div id="#container"> | |
<hr> | |
<br/> | |
<div id="localPercentage"></div> | |
<br/> | |
<div id="summary"></div> | |
<br/> | |
<hr> | |
<br/><br/> | |
<h1>Top Usage Stations</h1> | |
<hr> | |
<h3>Start Stations</h3> | |
<div id="tablesDiv"> | |
<div id="startStationTop" class="left"></div> | |
<div id="startStationTopTimeBreakdown" class="right"></div> | |
</div> | |
<div style="clear:both;"></div> | |
<br/><br/> | |
<h3>End Stations</h3> | |
<div id="tablesDiv"> | |
<div id="endStationTop" class="left"></div> | |
<div id="endStationTopTimeBreakdown" class="right"></div> | |
</div> | |
<div style="clear:both;"></div> | |
<br/><br/> | |
<h1>Bottom Usage Stations</h1> | |
<hr> | |
<h3>Start Stations</h3> | |
<div id="tablesDiv"> | |
<div id="startStationBottom" class="left"></div> | |
<div id="startStationBottomTimeBreakdown" class="right"></div> | |
</div> | |
<div style="clear:both;"></div> | |
<br/><br/> | |
<h3>End Stations</h3> | |
<div id="tablesDiv"> | |
<div id="endStationBottom" class="left"></div> | |
<div id="endStationBottomTimeBreakdown" class="right"></div> | |
</div> | |
<div style="clear:both;"></div> | |
</div> | |
<br/><br/><br/> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script src='analysis.js'></script> | |
<script> | |
upload_button("uploader", loadDataset); | |
</script> | |
</body> | |
</html> |
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
Trip ID | Duration | Start Date | Start Station | Start Terminal | End Date | End Station | End Terminal | Bike # | Subscriber Type | Zip Code | |
---|---|---|---|---|---|---|---|---|---|---|---|
261618 | 457 | 4/26/14 9:38 | Santa Clara County Civic Center | 80 | 4/26/14 9:46 | Ryland Park | 84 | 294 | Subscriber | 95112 | |
261617 | 110 | 4/26/14 9:38 | 2nd at Folsom | 62 | 4/26/14 9:39 | 2nd at South Park | 64 | 331 | Subscriber | 94105 | |
261616 | 254 | 4/26/14 9:37 | Spear at Folsom | 49 | 4/26/14 9:41 | Howard at 2nd | 63 | 509 | Subscriber | 94105 | |
261614 | 1079 | 4/26/14 9:35 | Golden Gate at Polk | 59 | 4/26/14 9:53 | Grant Avenue at Columbus Avenue | 73 | 537 | Subscriber | 94109 | |
261613 | 377 | 4/26/14 9:30 | 2nd at Folsom | 62 | 4/26/14 9:36 | 5th at Howard | 57 | 575 | Subscriber | 94103 | |
261612 | 625 | 4/26/14 9:31 | Civic Center BART (7th at Market) | 72 | 4/26/14 9:41 | Clay at Battery | 41 | 378 | Subscriber | 94111 | |
261611 | 12888 | 4/26/14 9:30 | University and Emerson | 35 | 4/26/14 13:05 | University and Emerson | 35 | 139 | Customer | 94609 | |
261609 | 967 | 4/26/14 9:28 | San Antonio Caltrain Station | 29 | 4/26/14 9:44 | California Ave Caltrain Station | 36 | 97 | Subscriber | 94040 | |
261608 | 5043 | 4/26/14 9:25 | Steuart at Market | 74 | 4/26/14 10:49 | San Francisco Caltrain (Townsend at 4th) | 70 | 516 | Customer | nil | |
261607 | 5065 | 4/26/14 9:25 | Steuart at Market | 74 | 4/26/14 10:49 | San Francisco Caltrain (Townsend at 4th) | 70 | 349 | Customer | nil | |
261606 | 681 | 4/26/14 9:23 | Santa Clara at Almaden | 4 | 4/26/14 9:35 | San Jose Diridon Caltrain Station | 2 | 658 | Subscriber | 95113 | |
261605 | 474 | 4/26/14 9:21 | Spear at Folsom | 49 | 4/26/14 9:29 | 5th at Howard | 57 | 370 | Subscriber | 94105 | |
261604 | 313 | 4/26/14 9:20 | Embarcadero at Bryant | 54 | 4/26/14 9:25 | Harry Bridges Plaza (Ferry Building) | 50 | 311 | Subscriber | 94105 | |
261603 | 546 | 4/26/14 9:18 | St James Park | 13 | 4/26/14 9:27 | Paseo de San Antonio | 7 | 161 | Subscriber | 95112 | |
261602 | 331 | 4/26/14 9:17 | Redwood City Caltrain Station | 22 | 4/26/14 9:23 | Mezes Park | 83 | 235 | Subscriber | 94063 | |
261601 | 683 | 4/26/14 9:04 | Ryland Park | 84 | 4/26/14 9:16 | Santa Clara at Almaden | 4 | 144 | Subscriber | 95110 | |
261599 | 404 | 4/26/14 8:58 | 5th at Howard | 57 | 4/26/14 9:05 | San Francisco Caltrain 2 (330 Townsend) | 69 | 528 | Subscriber | 94112 | |
261598 | 461 | 4/26/14 8:55 | 2nd at Folsom | 62 | 4/26/14 9:03 | Steuart at Market | 74 | 492 | Subscriber | 94107 | |
261596 | 377 | 4/26/14 8:53 | Mezes Park | 83 | 4/26/14 8:59 | Redwood City Caltrain Station | 22 | 235 | Subscriber | 94063 | |
261594 | 402 | 4/26/14 8:53 | Ryland Park | 84 | 4/26/14 8:59 | Santa Clara County Civic Center | 80 | 294 | Subscriber | 95112 | |
261593 | 270 | 4/26/14 8:52 | South Van Ness at Market | 66 | 4/26/14 8:57 | Powell Street BART | 39 | 326 | Subscriber | 94404 | |
261583 | 8103 | 4/26/14 8:10 | University and Emerson | 35 | 4/26/14 10:25 | University and Emerson | 35 | 212 | Customer | 78703 | |
261581 | 481 | 4/26/14 7:51 | Market at 4th | 76 | 4/26/14 7:59 | Embarcadero at Sansome | 60 | 395 | Subscriber | 94102 | |
261579 | 489 | 4/26/14 7:40 | South Van Ness at Market | 66 | 4/26/14 7:49 | Market at Sansome | 77 | 527 | Subscriber | 94102 | |
261574 | 456 | 4/26/14 7:39 | Steuart at Market | 74 | 4/26/14 7:46 | 2nd at Townsend | 61 | 563 | Subscriber | 94610 | |
261564 | 620 | 4/26/14 7:05 | Howard at 2nd | 63 | 4/26/14 7:16 | 2nd at Folsom | 62 | 492 | Subscriber | 94107 | |
261557 | 28276 | 4/26/14 6:50 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/26/14 14:41 | South Van Ness at Market | 66 | 351 | Customer | 94124 | |
261556 | 686 | 4/26/14 6:40 | Market at 10th | 67 | 4/26/14 6:52 | Steuart at Market | 74 | 563 | Subscriber | 94103 | |
261555 | 317 | 4/26/14 6:13 | Steuart at Market | 74 | 4/26/14 6:19 | Embarcadero at Bryant | 54 | 562 | Subscriber | 94109 | |
261554 | 544 | 4/26/14 3:28 | Palo Alto Caltrain Station | 34 | 4/26/14 3:37 | California Ave Caltrain Station | 36 | 135 | Customer | 94306 | |
261553 | 556 | 4/26/14 2:18 | Powell Street BART | 39 | 4/26/14 2:27 | South Van Ness at Market | 66 | 402 | Subscriber | 94102 | |
261552 | 4177 | 4/26/14 1:57 | Mechanics Plaza (Market at Battery) | 75 | 4/26/14 3:06 | Embarcadero at Vallejo | 48 | 468 | Customer | 94115 | |
261551 | 4187 | 4/26/14 1:57 | Mechanics Plaza (Market at Battery) | 75 | 4/26/14 3:06 | Embarcadero at Vallejo | 48 | 374 | Customer | 94115 | |
261550 | 536 | 4/26/14 1:38 | San Jose Diridon Caltrain Station | 2 | 4/26/14 1:47 | SJSU - San Salvador at 9th | 16 | 31 | Subscriber | 95112 | |
261549 | 24939 | 4/26/14 1:11 | Beale at Market | 56 | 4/26/14 8:07 | Market at Sansome | 77 | 459 | Customer | nil | |
261548 | 493 | 4/26/14 0:36 | Market at 4th | 76 | 4/26/14 0:44 | Market at 10th | 67 | 625 | Subscriber | 94102 | |
261547 | 847 | 4/26/14 0:21 | Market at 10th | 67 | 4/26/14 0:35 | Market at 4th | 76 | 625 | Subscriber | 94102 | |
261546 | 187 | 4/26/14 0:18 | Commercial at Montgomery | 45 | 4/26/14 0:21 | Market at Sansome | 77 | 589 | Subscriber | 94112 | |
261545 | 689 | 4/26/14 0:04 | 2nd at South Park | 64 | 4/26/14 0:15 | Powell at Post (Union Square) | 71 | 598 | Subscriber | 94107 | |
261544 | 617 | 4/25/14 23:59 | Powell at Post (Union Square) | 71 | 4/26/14 0:10 | San Francisco Caltrain 2 (330 Townsend) | 69 | 482 | Subscriber | 94107 | |
261543 | 620 | 4/25/14 23:59 | Powell at Post (Union Square) | 71 | 4/26/14 0:10 | San Francisco Caltrain 2 (330 Townsend) | 69 | 623 | Subscriber | 94107 | |
261542 | 289 | 4/25/14 23:37 | Embarcadero at Sansome | 60 | 4/25/14 23:42 | Steuart at Market | 74 | 358 | Subscriber | 94702 | |
261541 | 301 | 4/25/14 23:31 | 2nd at Folsom | 62 | 4/25/14 23:36 | San Francisco Caltrain (Townsend at 4th) | 70 | 336 | Subscriber | 95112 | |
261540 | 380 | 4/25/14 23:22 | Powell at Post (Union Square) | 71 | 4/25/14 23:29 | Grant Avenue at Columbus Avenue | 73 | 273 | Subscriber | 94133 | |
261539 | 404 | 4/25/14 23:14 | Powell Street BART | 39 | 4/25/14 23:21 | South Van Ness at Market | 66 | 326 | Subscriber | 94404 | |
261538 | 640 | 4/25/14 23:14 | Market at 4th | 76 | 4/25/14 23:25 | Grant Avenue at Columbus Avenue | 73 | 433 | Subscriber | 94102 | |
261537 | 678 | 4/25/14 23:06 | 2nd at Townsend | 61 | 4/25/14 23:18 | 5th at Howard | 57 | 474 | Subscriber | 94112 | |
261536 | 349 | 4/25/14 22:44 | Howard at 2nd | 63 | 4/25/14 22:49 | 2nd at Townsend | 61 | 511 | Subscriber | 94107 | |
261535 | 689 | 4/25/14 22:44 | Post at Kearny | 47 | 4/25/14 22:55 | Howard at 2nd | 63 | 318 | Subscriber | 94107 | |
261534 | 671 | 4/25/14 22:39 | Market at Sansome | 77 | 4/25/14 22:50 | Embarcadero at Sansome | 60 | 626 | Subscriber | 94133 | |
261533 | 209618 | 4/25/14 22:16 | 2nd at Townsend | 61 | 4/28/14 8:30 | San Francisco Caltrain (Townsend at 4th) | 70 | 573 | Subscriber | 94117 | |
261532 | 663 | 4/25/14 22:17 | 2nd at Townsend | 61 | 4/25/14 22:28 | Clay at Battery | 41 | 634 | Customer | 94117 | |
261531 | 271 | 4/25/14 22:16 | San Pedro Square | 6 | 4/25/14 22:20 | Paseo de San Antonio | 7 | 178 | Subscriber | 95112 | |
261530 | 106 | 4/25/14 22:14 | 2nd at Townsend | 61 | 4/25/14 22:15 | 2nd at Townsend | 61 | 333 | Subscriber | 94117 | |
261529 | 357 | 4/25/14 22:14 | Market at 4th | 76 | 4/25/14 22:20 | 2nd at Folsom | 62 | 336 | Subscriber | 94107 | |
261528 | 62 | 4/25/14 22:14 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 22:15 | Grant Avenue at Columbus Avenue | 73 | 542 | Subscriber | 94133 | |
261527 | 202 | 4/25/14 22:12 | Spear at Folsom | 49 | 4/25/14 22:15 | Howard at 2nd | 63 | 511 | Subscriber | 94105 | |
261526 | 424 | 4/25/14 22:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 22:13 | Powell Street BART | 39 | 385 | Subscriber | 94107 | |
261525 | 409 | 4/25/14 22:02 | Market at 4th | 76 | 4/25/14 22:09 | Howard at 2nd | 63 | 514 | Customer | nil | |
261510 | 1065 | 4/25/14 21:47 | Washington at Kearny | 46 | 4/25/14 22:05 | San Francisco Caltrain 2 (330 Townsend) | 69 | 351 | Subscriber | 94158 | |
261509 | 1070 | 4/25/14 21:42 | Clay at Battery | 41 | 4/25/14 22:00 | San Francisco Caltrain 2 (330 Townsend) | 69 | 586 | Subscriber | 94158 | |
261508 | 371 | 4/25/14 21:40 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 21:46 | 2nd at South Park | 64 | 444 | Subscriber | 94107 | |
261506 | 231 | 4/25/14 21:25 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 21:29 | Townsend at 7th | 65 | 435 | Subscriber | 94609 | |
261505 | 631 | 4/25/14 21:23 | 2nd at Townsend | 61 | 4/25/14 21:34 | Civic Center BART (7th at Market) | 72 | 540 | Subscriber | 94103 | |
261503 | 510 | 4/25/14 21:19 | Market at 4th | 76 | 4/25/14 21:28 | Harry Bridges Plaza (Ferry Building) | 50 | 478 | Subscriber | 94939 | |
261502 | 153 | 4/25/14 21:19 | Spear at Folsom | 49 | 4/25/14 21:21 | Temporary Transbay Terminal (Howard at Beale) | 55 | 596 | Subscriber | 94105 | |
261500 | 219 | 4/25/14 21:12 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 21:16 | Townsend at 7th | 65 | 279 | Subscriber | 94107 | |
261499 | 498 | 4/25/14 21:10 | 2nd at South Park | 64 | 4/25/14 21:18 | Mechanics Plaza (Market at Battery) | 75 | 468 | Customer | 30080 | |
261494 | 238 | 4/25/14 20:47 | Howard at 2nd | 63 | 4/25/14 20:51 | Howard at 2nd | 63 | 492 | Subscriber | 94103 | |
261493 | 776 | 4/25/14 20:46 | Civic Center BART (7th at Market) | 72 | 4/25/14 20:59 | Washington at Kearny | 46 | 512 | Subscriber | 94133 | |
261489 | 479 | 4/25/14 20:41 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 20:49 | Embarcadero at Sansome | 60 | 593 | Customer | 84104 | |
261488 | 501 | 4/25/14 20:41 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 20:49 | Embarcadero at Sansome | 60 | 546 | Customer | 84104 | |
261486 | 562 | 4/25/14 20:37 | Mountain View City Hall | 27 | 4/25/14 20:47 | Rengstorff Avenue / California Street | 33 | 308 | Subscriber | 94040 | |
261482 | 524 | 4/25/14 20:31 | 2nd at South Park | 64 | 4/25/14 20:39 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 444 | Subscriber | 94107 | |
261480 | 675 | 4/25/14 20:25 | Market at Sansome | 77 | 4/25/14 20:36 | Market at 10th | 67 | 532 | Subscriber | 94117 | |
261479 | 820 | 4/25/14 20:17 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 20:31 | Powell at Post (Union Square) | 71 | 482 | Subscriber | 94107 | |
261478 | 848 | 4/25/14 20:17 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 20:31 | Powell at Post (Union Square) | 71 | 503 | Subscriber | 94107 | |
261476 | 228 | 4/25/14 20:15 | Embarcadero at Bryant | 54 | 4/25/14 20:19 | Embarcadero at Folsom | 51 | 342 | Subscriber | 94105 | |
261474 | 277 | 4/25/14 20:13 | Market at Sansome | 77 | 4/25/14 20:18 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 387 | Subscriber | 94105 | |
261473 | 654 | 4/25/14 20:10 | Market at 4th | 76 | 4/25/14 20:20 | Grant Avenue at Columbus Avenue | 73 | 542 | Subscriber | 94133 | |
261472 | 295 | 4/25/14 20:05 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 20:10 | Spear at Folsom | 49 | 371 | Subscriber | 94105 | |
261471 | 326 | 4/25/14 20:06 | Spear at Folsom | 49 | 4/25/14 20:11 | Beale at Market | 56 | 432 | Subscriber | 94111 | |
261470 | 346 | 4/25/14 20:04 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 20:10 | Spear at Folsom | 49 | 370 | Subscriber | 94105 | |
261469 | 683 | 4/25/14 20:00 | Townsend at 7th | 65 | 4/25/14 20:12 | Powell Street BART | 39 | 312 | Subscriber | 94709 | |
261468 | 781 | 4/25/14 20:02 | Mountain View City Hall | 27 | 4/25/14 20:15 | San Antonio Caltrain Station | 29 | 97 | Subscriber | 94040 | |
261467 | 789 | 4/25/14 20:02 | Mountain View City Hall | 27 | 4/25/14 20:15 | San Antonio Caltrain Station | 29 | 183 | Subscriber | 94040 | |
261466 | 1094 | 4/25/14 20:00 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 20:18 | Grant Avenue at Columbus Avenue | 73 | 504 | Subscriber | 94133 | |
261464 | 428 | 4/25/14 19:55 | Townsend at 7th | 65 | 4/25/14 20:02 | Civic Center BART (7th at Market) | 72 | 282 | Subscriber | 94925 | |
261462 | 461 | 4/25/14 19:57 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 20:05 | Civic Center BART (7th at Market) | 72 | 292 | Subscriber | 94103 | |
261461 | 918 | 4/25/14 19:57 | Embarcadero at Sansome | 60 | 4/25/14 20:12 | Golden Gate at Polk | 59 | 537 | Subscriber | 94102 | |
261460 | 302 | 4/25/14 19:55 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 20:00 | 2nd at South Park | 64 | 405 | Subscriber | 94602 | |
261459 | 301 | 4/25/14 19:53 | Redwood City Caltrain Station | 22 | 4/25/14 19:58 | Mezes Park | 83 | 682 | Subscriber | 94063 | |
261457 | 377 | 4/25/14 19:46 | Paseo de San Antonio | 7 | 4/25/14 19:52 | San Pedro Square | 6 | 178 | Subscriber | 95112 | |
261456 | 298 | 4/25/14 19:41 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 19:46 | 2nd at South Park | 64 | 466 | Subscriber | 94107 | |
261455 | 480 | 4/25/14 19:40 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 19:48 | Market at 4th | 76 | 478 | Subscriber | 94107 | |
261454 | 579 | 4/25/14 19:34 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 19:44 | 2nd at Townsend | 61 | 413 | Subscriber | 94061 | |
261453 | 380 | 4/25/14 19:30 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 19:36 | Market at Sansome | 77 | 637 | Subscriber | 94133 | |
261452 | 724 | 4/25/14 19:32 | Steuart at Market | 74 | 4/25/14 19:44 | San Francisco Caltrain (Townsend at 4th) | 70 | 292 | Subscriber | 94158 | |
261450 | 995 | 4/25/14 19:31 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 19:48 | Mechanics Plaza (Market at Battery) | 75 | 380 | Subscriber | 94702 | |
261448 | 1134 | 4/25/14 19:31 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 19:50 | South Van Ness at Market | 66 | 315 | Subscriber | 94127 | |
261447 | 1145 | 4/25/14 19:31 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 19:50 | South Van Ness at Market | 66 | 597 | Subscriber | 94122 | |
261446 | 973 | 4/25/14 19:31 | Market at 4th | 76 | 4/25/14 19:47 | Golden Gate at Polk | 59 | 608 | Subscriber | 94108 | |
261443 | 393 | 4/25/14 19:22 | 2nd at Townsend | 61 | 4/25/14 19:29 | Temporary Transbay Terminal (Howard at Beale) | 55 | 413 | Subscriber | 94061 | |
261442 | 344 | 4/25/14 19:21 | Powell Street BART | 39 | 4/25/14 19:27 | San Francisco Caltrain 2 (330 Townsend) | 69 | 503 | Subscriber | 94107 | |
261441 | 509 | 4/25/14 19:14 | Davis at Jackson | 42 | 4/25/14 19:23 | Spear at Folsom | 49 | 596 | Subscriber | 94105 | |
261438 | 757 | 4/25/14 19:11 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 19:24 | San Francisco Caltrain (Townsend at 4th) | 70 | 597 | Subscriber | 94116 | |
261437 | 258 | 4/25/14 19:11 | Civic Center BART (7th at Market) | 72 | 4/25/14 19:15 | Market at 4th | 76 | 535 | Subscriber | 94108 | |
261433 | 235 | 4/25/14 19:08 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 19:12 | Spear at Folsom | 49 | 578 | Subscriber | 94105 | |
261431 | 253 | 4/25/14 19:08 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 19:12 | Davis at Jackson | 42 | 596 | Subscriber | 94105 | |
261430 | 665 | 4/25/14 19:06 | Broadway St at Battery St | 82 | 4/25/14 19:18 | San Francisco Caltrain (Townsend at 4th) | 70 | 397 | Subscriber | 99403 | |
261429 | 597 | 4/25/14 19:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 19:16 | Harry Bridges Plaza (Ferry Building) | 50 | 362 | Subscriber | 94610 | |
261423 | 1734 | 4/25/14 19:00 | Embarcadero at Sansome | 60 | 4/25/14 19:29 | San Francisco Caltrain (Townsend at 4th) | 70 | 380 | Subscriber | 94702 | |
261422 | 814 | 4/25/14 19:00 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 19:14 | San Francisco Caltrain (Townsend at 4th) | 70 | 315 | Subscriber | 94127 | |
261421 | 1712 | 4/25/14 19:00 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 19:29 | San Francisco Caltrain (Townsend at 4th) | 70 | 466 | Subscriber | 94122 | |
261420 | 526 | 4/25/14 19:00 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 19:09 | San Francisco Caltrain 2 (330 Townsend) | 69 | 322 | Subscriber | 94087 | |
261418 | 558 | 4/25/14 18:57 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 19:07 | 2nd at Townsend | 61 | 333 | Subscriber | 94158 | |
261417 | 194 | 4/25/14 18:57 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 19:00 | Townsend at 7th | 65 | 368 | Subscriber | 94709 | |
261415 | 221 | 4/25/14 18:56 | Howard at 2nd | 63 | 4/25/14 18:59 | Post at Kearny | 47 | 269 | Subscriber | 94107 | |
261414 | 836 | 4/25/14 18:42 | Townsend at 7th | 65 | 4/25/14 18:56 | Market at 4th | 76 | 608 | Subscriber | 94108 | |
261413 | 613 | 4/25/14 18:50 | Broadway St at Battery St | 82 | 4/25/14 19:00 | Embarcadero at Sansome | 60 | 380 | Subscriber | 94702 | |
261412 | 635 | 4/25/14 18:39 | Townsend at 7th | 65 | 4/25/14 18:49 | Powell Street BART | 39 | 417 | Subscriber | 94598 | |
261410 | 842 | 4/25/14 18:47 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 19:01 | Golden Gate at Polk | 59 | 551 | Subscriber | 94102 | |
261409 | 422 | 4/25/14 18:46 | San Antonio Caltrain Station | 29 | 4/25/14 18:53 | Rengstorff Avenue / California Street | 33 | 100 | Subscriber | 94040 | |
261408 | 198 | 4/25/14 18:45 | Broadway St at Battery St | 82 | 4/25/14 18:49 | Beale at Market | 56 | 636 | Subscriber | 94609 | |
261407 | 264 | 4/25/14 18:45 | Beale at Market | 56 | 4/25/14 18:49 | Spear at Folsom | 49 | 509 | Subscriber | 94105 | |
261406 | 1965 | 4/25/14 18:45 | 2nd at South Park | 64 | 4/25/14 19:18 | Golden Gate at Polk | 59 | 280 | Customer | nil | |
261405 | 693 | 4/25/14 18:44 | Market at Sansome | 77 | 4/25/14 18:56 | Townsend at 7th | 65 | 282 | Subscriber | 94925 | |
261404 | 918 | 4/25/14 18:43 | Market at 10th | 67 | 4/25/14 18:59 | 2nd at South Park | 64 | 603 | Subscriber | 94607 | |
261403 | 277 | 4/25/14 18:43 | Evelyn Park and Ride | 30 | 4/25/14 18:48 | Mountain View Caltrain Station | 28 | 148 | Subscriber | 94133 | |
261402 | 249 | 4/25/14 18:42 | Embarcadero at Sansome | 60 | 4/25/14 18:46 | Steuart at Market | 74 | 538 | Subscriber | 94597 | |
261399 | 307 | 4/25/14 18:39 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 18:44 | 5th at Howard | 57 | 529 | Subscriber | 94114 | |
261398 | 439 | 4/25/14 18:38 | Howard at 2nd | 63 | 4/25/14 18:46 | San Francisco Caltrain (Townsend at 4th) | 70 | 376 | Subscriber | 94107 | |
261397 | 259 | 4/25/14 18:38 | Howard at 2nd | 63 | 4/25/14 18:43 | Market at 4th | 76 | 491 | Subscriber | 94110 | |
261394 | 392 | 4/25/14 18:36 | Market at 4th | 76 | 4/25/14 18:42 | Temporary Transbay Terminal (Howard at Beale) | 55 | 333 | Subscriber | 94602 | |
261392 | 863 | 4/25/14 18:35 | San Antonio Caltrain Station | 29 | 4/25/14 18:49 | Mountain View City Hall | 27 | 183 | Subscriber | 94040 | |
261390 | 879 | 4/25/14 18:35 | San Antonio Caltrain Station | 29 | 4/25/14 18:49 | Mountain View City Hall | 27 | 97 | Subscriber | 94040 | |
261389 | 745 | 4/25/14 18:35 | San Jose Diridon Caltrain Station | 2 | 4/25/14 18:47 | Japantown | 9 | 199 | Subscriber | 95112 | |
261388 | 240 | 4/25/14 18:35 | Howard at 2nd | 63 | 4/25/14 18:39 | 2nd at South Park | 64 | 444 | Subscriber | 94040 | |
261387 | 1082 | 4/25/14 18:32 | Steuart at Market | 74 | 4/25/14 18:50 | Broadway St at Battery St | 82 | 380 | Subscriber | 94702 | |
261386 | 414 | 4/25/14 18:31 | 2nd at Townsend | 61 | 4/25/14 18:38 | Harry Bridges Plaza (Ferry Building) | 50 | 456 | Subscriber | 94107 | |
261385 | 567 | 4/25/14 18:33 | Powell Street BART | 39 | 4/25/14 18:43 | Washington at Kearny | 46 | 275 | Subscriber | 94133 | |
261382 | 305 | 4/25/14 18:32 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 18:37 | Embarcadero at Bryant | 54 | 404 | Subscriber | 94105 | |
261381 | 524 | 4/25/14 18:32 | Market at 4th | 76 | 4/25/14 18:41 | San Francisco Caltrain (Townsend at 4th) | 70 | 617 | Subscriber | 94102 | |
261380 | 385 | 4/25/14 18:30 | Market at 4th | 76 | 4/25/14 18:36 | Harry Bridges Plaza (Ferry Building) | 50 | 400 | Subscriber | 94941 | |
261379 | 566 | 4/25/14 18:29 | Spear at Folsom | 49 | 4/25/14 18:39 | Spear at Folsom | 49 | 432 | Subscriber | 94588 | |
261378 | 241 | 4/25/14 18:29 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 18:33 | Townsend at 7th | 65 | 450 | Subscriber | 94107 | |
261376 | 80 | 4/25/14 18:29 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 18:30 | San Francisco Caltrain (Townsend at 4th) | 70 | 531 | Subscriber | 94107 | |
261375 | 389 | 4/25/14 18:27 | Embarcadero at Sansome | 60 | 4/25/14 18:34 | Beale at Market | 56 | 382 | Subscriber | 94609 | |
261374 | 583 | 4/25/14 18:26 | Market at 10th | 67 | 4/25/14 18:36 | San Francisco Caltrain (Townsend at 4th) | 70 | 502 | Subscriber | 94402 | |
261373 | 616 | 4/25/14 18:24 | Howard at 2nd | 63 | 4/25/14 18:34 | Embarcadero at Bryant | 54 | 618 | Subscriber | 94109 | |
261370 | 156 | 4/25/14 18:22 | Embarcadero at Folsom | 51 | 4/25/14 18:25 | Embarcadero at Bryant | 54 | 300 | Subscriber | 94105 | |
261368 | 241 | 4/25/14 18:21 | 2nd at South Park | 64 | 4/25/14 18:25 | San Francisco Caltrain 2 (330 Townsend) | 69 | 357 | Subscriber | 94158 | |
261367 | 588 | 4/25/14 18:21 | Market at 10th | 67 | 4/25/14 18:31 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 359 | Subscriber | 94112 | |
261365 | 2084 | 4/25/14 18:19 | Washington at Kearny | 46 | 4/25/14 18:54 | Harry Bridges Plaza (Ferry Building) | 50 | 593 | Customer | 11230 | |
261364 | 509 | 4/25/14 18:19 | Post at Kearny | 47 | 4/25/14 18:27 | San Francisco Caltrain 2 (330 Townsend) | 69 | 352 | Subscriber | 94158 | |
261363 | 623 | 4/25/14 18:15 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 18:25 | Temporary Transbay Terminal (Howard at Beale) | 55 | 477 | Subscriber | 94611 | |
261362 | 600 | 4/25/14 18:15 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 18:25 | 5th at Howard | 57 | 416 | Subscriber | 94133 | |
261361 | 479 | 4/25/14 18:18 | 2nd at Townsend | 61 | 4/25/14 18:26 | Steuart at Market | 74 | 292 | Subscriber | 94611 | |
261360 | 382 | 4/25/14 18:18 | 2nd at Townsend | 61 | 4/25/14 18:24 | Market at Sansome | 77 | 363 | Subscriber | 94551 | |
261359 | 635 | 4/25/14 18:12 | 2nd at Townsend | 61 | 4/25/14 18:23 | Davis at Jackson | 42 | 328 | Subscriber | 94111 | |
261358 | 431 | 4/25/14 18:01 | 2nd at Townsend | 61 | 4/25/14 18:08 | Steuart at Market | 74 | 607 | Subscriber | 94612 | |
261357 | 436 | 4/25/14 17:51 | 2nd at Townsend | 61 | 4/25/14 17:58 | Steuart at Market | 74 | 266 | Subscriber | 94534 | |
261356 | 545 | 4/25/14 18:18 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 18:27 | Embarcadero at Bryant | 54 | 464 | Subscriber | 94105 | |
261355 | 606 | 4/25/14 18:17 | Davis at Jackson | 42 | 4/25/14 18:27 | San Francisco Caltrain 2 (330 Townsend) | 69 | 435 | Subscriber | 94030 | |
261354 | 473 | 4/25/14 18:16 | Embarcadero at Folsom | 51 | 4/25/14 18:24 | Washington at Kearny | 46 | 605 | Subscriber | 94133 | |
261353 | 198 | 4/25/14 18:11 | 2nd at Folsom | 62 | 4/25/14 18:14 | Market at Sansome | 77 | 320 | Subscriber | 94103 | |
261352 | 169 | 4/25/14 18:13 | Embarcadero at Bryant | 54 | 4/25/14 18:16 | Spear at Folsom | 49 | 432 | Subscriber | 94105 | |
261351 | 437 | 4/25/14 18:04 | Steuart at Market | 74 | 4/25/14 18:12 | Market at 4th | 76 | 389 | Subscriber | 94133 | |
261350 | 754 | 4/25/14 18:11 | Commercial at Montgomery | 45 | 4/25/14 18:24 | Spear at Folsom | 49 | 511 | Subscriber | 60091 | |
261348 | 465 | 4/25/14 18:08 | Market at Sansome | 77 | 4/25/14 18:16 | Grant Avenue at Columbus Avenue | 73 | 637 | Subscriber | 94133 | |
261347 | 549 | 4/25/14 18:05 | 2nd at Folsom | 62 | 4/25/14 18:14 | Powell Street BART | 39 | 275 | Subscriber | 94133 | |
261344 | 337 | 4/25/14 18:08 | Market at 10th | 67 | 4/25/14 18:13 | Powell Street BART | 39 | 496 | Subscriber | 94133 | |
261343 | 262 | 4/25/14 18:08 | Spear at Folsom | 49 | 4/25/14 18:12 | Howard at 2nd | 63 | 491 | Subscriber | 94114 | |
261342 | 294 | 4/25/14 18:07 | Market at 10th | 67 | 4/25/14 18:12 | Powell Street BART | 39 | 326 | Subscriber | 94803 | |
261341 | 283 | 4/25/14 18:06 | Spear at Folsom | 49 | 4/25/14 18:11 | Steuart at Market | 74 | 349 | Subscriber | 94115 | |
261340 | 878 | 4/25/14 18:06 | Market at Sansome | 77 | 4/25/14 18:21 | Steuart at Market | 74 | 442 | Subscriber | 94702 | |
261339 | 871 | 4/25/14 18:06 | Clay at Battery | 41 | 4/25/14 18:20 | San Francisco Caltrain (Townsend at 4th) | 70 | 572 | Subscriber | 94105 | |
261338 | 916 | 4/25/14 18:04 | Clay at Battery | 41 | 4/25/14 18:19 | San Francisco Caltrain (Townsend at 4th) | 70 | 531 | Customer | 94108 | |
261337 | 206 | 4/25/14 18:02 | 2nd at Folsom | 62 | 4/25/14 18:06 | Market at Sansome | 77 | 276 | Subscriber | 94702 | |
261336 | 584 | 4/25/14 18:01 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 18:11 | San Francisco Caltrain (Townsend at 4th) | 70 | 522 | Subscriber | 94301 | |
261334 | 420 | 4/25/14 18:00 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 18:07 | Market at 4th | 76 | 336 | Subscriber | 94133 | |
261333 | 347 | 4/25/14 17:59 | Embarcadero at Folsom | 51 | 4/25/14 18:05 | 2nd at Townsend | 61 | 328 | Subscriber | 94107 | |
261332 | 423 | 4/25/14 17:52 | Townsend at 7th | 65 | 4/25/14 17:59 | Civic Center BART (7th at Market) | 72 | 585 | Subscriber | 94707 | |
261331 | 586 | 4/25/14 17:58 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 18:08 | Steuart at Market | 74 | 380 | Subscriber | 94901 | |
261330 | 453 | 4/25/14 17:50 | Steuart at Market | 74 | 4/25/14 17:58 | Market at 4th | 76 | 289 | Subscriber | 94117 | |
261329 | 852 | 4/25/14 17:57 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 18:12 | Steuart at Market | 74 | 587 | Subscriber | 94122 | |
261328 | 419 | 4/25/14 17:50 | Steuart at Market | 74 | 4/25/14 17:57 | Howard at 2nd | 63 | 444 | Subscriber | 94105 | |
261327 | 368 | 4/25/14 17:57 | South Van Ness at Market | 66 | 4/25/14 18:03 | Powell Street BART | 39 | 274 | Subscriber | 94102 | |
261326 | 465 | 4/25/14 17:54 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 18:01 | 5th at Howard | 57 | 329 | Subscriber | 94158 | |
261325 | 323 | 4/25/14 17:54 | 5th at Howard | 57 | 4/25/14 17:59 | San Francisco Caltrain (Townsend at 4th) | 70 | 569 | Subscriber | 94103 | |
261324 | 586 | 4/25/14 17:53 | San Francisco City Hall | 58 | 4/25/14 18:03 | Market at Sansome | 77 | 447 | Subscriber | 94941 | |
261323 | 873 | 4/25/14 17:52 | Broadway St at Battery St | 82 | 4/25/14 18:07 | San Francisco Caltrain 2 (330 Townsend) | 69 | 574 | Subscriber | 95130 | |
261322 | 486 | 4/25/14 17:52 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 18:00 | Post at Kearny | 47 | 352 | Subscriber | 94611 | |
261321 | 251 | 4/25/14 17:51 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 17:56 | Townsend at 7th | 65 | 312 | Subscriber | 94107 | |
261320 | 624 | 4/25/14 17:51 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 18:01 | San Francisco Caltrain (Townsend at 4th) | 70 | 362 | Subscriber | 94303 | |
261318 | 570 | 4/25/14 17:50 | Embarcadero at Sansome | 60 | 4/25/14 17:59 | Temporary Transbay Terminal (Howard at Beale) | 55 | 470 | Subscriber | 94602 | |
261317 | 229 | 4/25/14 17:48 | Market at Sansome | 77 | 4/25/14 17:52 | Harry Bridges Plaza (Ferry Building) | 50 | 377 | Subscriber | 94510 | |
261316 | 447 | 4/25/14 17:48 | Commercial at Montgomery | 45 | 4/25/14 17:55 | Beale at Market | 56 | 559 | Subscriber | 94703 | |
261315 | 423 | 4/25/14 17:47 | Powell Street BART | 39 | 4/25/14 17:54 | Washington at Kearny | 46 | 420 | Subscriber | 94133 | |
261309 | 1466 | 4/25/14 17:46 | Mountain View City Hall | 27 | 4/25/14 18:10 | Park at Olive | 38 | 36 | Subscriber | 94025 | |
261308 | 476 | 4/25/14 17:45 | Spear at Folsom | 49 | 4/25/14 17:53 | Harry Bridges Plaza (Ferry Building) | 50 | 404 | Subscriber | 94105 | |
261307 | 436 | 4/25/14 17:45 | 2nd at South Park | 64 | 4/25/14 17:52 | Powell at Post (Union Square) | 71 | 273 | Subscriber | 94107 | |
261305 | 562 | 4/25/14 17:44 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 17:53 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 587 | Subscriber | 94122 | |
261304 | 540 | 4/25/14 17:44 | Spear at Folsom | 49 | 4/25/14 17:53 | Harry Bridges Plaza (Ferry Building) | 50 | 370 | Subscriber | 94105 | |
261303 | 260 | 4/25/14 17:44 | Golden Gate at Polk | 59 | 4/25/14 17:48 | Market at 10th | 67 | 326 | Subscriber | 94612 | |
261302 | 650 | 4/25/14 17:43 | Powell at Post (Union Square) | 71 | 4/25/14 17:54 | San Francisco Caltrain (Townsend at 4th) | 70 | 366 | Subscriber | 95020 | |
261301 | 562 | 4/25/14 17:43 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 17:53 | San Francisco Caltrain (Townsend at 4th) | 70 | 611 | Subscriber | 94403 | |
261300 | 275 | 4/25/14 17:43 | 2nd at South Park | 64 | 4/25/14 17:48 | Market at Sansome | 77 | 436 | Subscriber | 94588 | |
261299 | 636 | 4/25/14 17:43 | Post at Kearny | 47 | 4/25/14 17:53 | South Van Ness at Market | 66 | 527 | Subscriber | 94114 | |
261298 | 407 | 4/25/14 17:41 | 2nd at South Park | 64 | 4/25/14 17:48 | Market at Sansome | 77 | 387 | Subscriber | 94705 | |
261297 | 290 | 4/25/14 17:40 | San Jose City Hall | 10 | 4/25/14 17:45 | SJSU - San Salvador at 9th | 16 | 665 | Subscriber | 95126 | |
261296 | 893 | 4/25/14 17:40 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 17:55 | South Van Ness at Market | 66 | 274 | Subscriber | 94109 | |
261295 | 699 | 4/25/14 17:40 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 17:52 | Market at Sansome | 77 | 637 | Subscriber | 94611 | |
261294 | 299 | 4/25/14 17:40 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 17:45 | 5th at Howard | 57 | 278 | Subscriber | 94111 | |
261293 | 1042 | 4/25/14 17:40 | Market at Sansome | 77 | 4/25/14 17:57 | San Francisco Caltrain 2 (330 Townsend) | 69 | 583 | Subscriber | 95051 | |
261292 | 661 | 4/25/14 17:40 | Embarcadero at Folsom | 51 | 4/25/14 17:51 | San Francisco Caltrain (Townsend at 4th) | 70 | 331 | Subscriber | 95014 | |
261291 | 710 | 4/25/14 17:36 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 17:47 | Davis at Jackson | 42 | 435 | Subscriber | 94111 | |
261290 | 204 | 4/25/14 17:35 | Market at Sansome | 77 | 4/25/14 17:39 | Beale at Market | 56 | 327 | Subscriber | 94121 | |
261289 | 689 | 4/25/14 17:35 | California Ave Caltrain Station | 36 | 4/25/14 17:46 | Palo Alto Caltrain Station | 34 | 256 | Customer | 94306 | |
261288 | 554 | 4/25/14 17:35 | Howard at 2nd | 63 | 4/25/14 17:44 | Grant Avenue at Columbus Avenue | 73 | 596 | Subscriber | 94105 | |
261287 | 405 | 4/25/14 17:34 | St James Park | 13 | 4/25/14 17:41 | San Jose Diridon Caltrain Station | 2 | 690 | Subscriber | 94108 | |
261286 | 107 | 4/25/14 17:33 | 2nd at Folsom | 62 | 4/25/14 17:34 | Howard at 2nd | 63 | 596 | Subscriber | 94105 | |
261285 | 526 | 4/25/14 17:33 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 17:41 | Embarcadero at Bryant | 54 | 515 | Subscriber | 94133 | |
261284 | 451 | 4/25/14 17:31 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 17:39 | Embarcadero at Folsom | 51 | 300 | Subscriber | 94105 | |
261283 | 491 | 4/25/14 17:31 | Beale at Market | 56 | 4/25/14 17:39 | San Francisco Caltrain (Townsend at 4th) | 70 | 637 | Subscriber | 94010 | |
261282 | 238 | 4/25/14 17:29 | Mountain View City Hall | 27 | 4/25/14 17:33 | Mountain View Caltrain Station | 28 | 120 | Subscriber | 94107 | |
261281 | 427 | 4/25/14 17:29 | Market at 4th | 76 | 4/25/14 17:36 | San Francisco Caltrain (Townsend at 4th) | 70 | 587 | Subscriber | 94040 | |
261280 | 784 | 4/25/14 17:28 | Steuart at Market | 74 | 4/25/14 17:41 | San Francisco Caltrain 2 (330 Townsend) | 69 | 482 | Subscriber | 94107 | |
261279 | 280 | 4/25/14 17:27 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 17:32 | Temporary Transbay Terminal (Howard at Beale) | 55 | 465 | Subscriber | 94501 | |
261278 | 304 | 4/25/14 17:25 | Embarcadero at Sansome | 60 | 4/25/14 17:30 | Steuart at Market | 74 | 444 | Subscriber | 94549 | |
261277 | 206 | 4/25/14 17:25 | 2nd at South Park | 64 | 4/25/14 17:28 | San Francisco Caltrain 2 (330 Townsend) | 69 | 581 | Subscriber | 94107 | |
261276 | 418 | 4/25/14 17:24 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 17:31 | Powell Street BART | 39 | 402 | Subscriber | 94134 | |
261275 | 731 | 4/25/14 17:24 | Santa Clara County Civic Center | 80 | 4/25/14 17:37 | Ryland Park | 84 | 223 | Subscriber | 95112 | |
261274 | 655 | 4/25/14 17:22 | Steuart at Market | 74 | 4/25/14 17:32 | 5th at Howard | 57 | 528 | Subscriber | 94618 | |
261273 | 619 | 4/25/14 17:24 | Market at 10th | 67 | 4/25/14 17:34 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 322 | Subscriber | 94107 | |
261272 | 462 | 4/25/14 17:24 | Market at Sansome | 77 | 4/25/14 17:31 | Civic Center BART (7th at Market) | 72 | 582 | Subscriber | 94103 | |
261271 | 264 | 4/25/14 17:23 | 2nd at South Park | 64 | 4/25/14 17:28 | Market at Sansome | 77 | 610 | Subscriber | 94080 | |
261270 | 804 | 4/25/14 17:23 | Market at 10th | 67 | 4/25/14 17:36 | Washington at Kearny | 46 | 287 | Subscriber | 94133 | |
261268 | 977 | 4/25/14 17:00 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 17:16 | Harry Bridges Plaza (Ferry Building) | 50 | 487 | Subscriber | 94903 | |
261267 | 366 | 4/25/14 17:18 | Davis at Jackson | 42 | 4/25/14 17:24 | Embarcadero at Sansome | 60 | 382 | Subscriber | 94111 | |
261266 | 180 | 4/25/14 17:22 | Market at Sansome | 77 | 4/25/14 17:25 | Steuart at Market | 74 | 601 | Subscriber | 94122 | |
261265 | 440 | 4/25/14 17:21 | Steuart at Market | 74 | 4/25/14 17:28 | Embarcadero at Sansome | 60 | 606 | Subscriber | 94133 | |
261264 | 455 | 4/25/14 17:21 | Embarcadero at Sansome | 60 | 4/25/14 17:28 | Steuart at Market | 74 | 482 | Subscriber | 94565 | |
261263 | 943 | 4/25/14 17:12 | Townsend at 7th | 65 | 4/25/14 17:27 | Temporary Transbay Terminal (Howard at Beale) | 55 | 522 | Subscriber | 94611 | |
261262 | 443 | 4/25/14 17:07 | 2nd at Townsend | 61 | 4/25/14 17:14 | Harry Bridges Plaza (Ferry Building) | 50 | 410 | Subscriber | 94901 | |
261261 | 575 | 4/25/14 17:05 | 2nd at Townsend | 61 | 4/25/14 17:14 | Steuart at Market | 74 | 289 | Subscriber | 94605 | |
261260 | 491 | 4/25/14 17:17 | Market at 10th | 67 | 4/25/14 17:25 | San Francisco Caltrain 2 (330 Townsend) | 69 | 279 | Subscriber | 95112 | |
261259 | 7266 | 4/25/14 17:17 | Embarcadero at Sansome | 60 | 4/25/14 19:18 | Embarcadero at Sansome | 60 | 365 | Customer | nil | |
261258 | 7303 | 4/25/14 17:17 | Embarcadero at Sansome | 60 | 4/25/14 19:18 | Embarcadero at Sansome | 60 | 358 | Customer | nil | |
261257 | 923 | 4/25/14 17:16 | Market at Sansome | 77 | 4/25/14 17:32 | Townsend at 7th | 65 | 585 | Subscriber | 94131 | |
261256 | 547 | 4/25/14 17:16 | Beale at Market | 56 | 4/25/14 17:25 | 2nd at South Park | 64 | 387 | Subscriber | 94107 | |
261255 | 551 | 4/25/14 17:15 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 17:24 | Civic Center BART (7th at Market) | 72 | 625 | Subscriber | 94903 | |
261254 | 685 | 4/25/14 17:15 | Clay at Battery | 41 | 4/25/14 17:27 | Embarcadero at Bryant | 54 | 342 | Subscriber | 94111 | |
261253 | 520 | 4/25/14 17:15 | San Pedro Square | 6 | 4/25/14 17:24 | San Jose Diridon Caltrain Station | 2 | 702 | Subscriber | 95377 | |
261252 | 192 | 4/25/14 17:14 | Broadway St at Battery St | 82 | 4/25/14 17:18 | Mechanics Plaza (Market at Battery) | 75 | 402 | Subscriber | 94133 | |
261251 | 545 | 4/25/14 17:14 | Post at Kearny | 47 | 4/25/14 17:23 | San Francisco Caltrain (Townsend at 4th) | 70 | 627 | Subscriber | 94030 | |
261250 | 578 | 4/25/14 17:14 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 17:23 | San Francisco Caltrain (Townsend at 4th) | 70 | 324 | Subscriber | 94061 | |
261249 | 329 | 4/25/14 17:13 | Spear at Folsom | 49 | 4/25/14 17:19 | 2nd at Townsend | 61 | 292 | Subscriber | 94105 | |
261248 | 396 | 4/25/14 17:13 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 17:20 | San Francisco Caltrain (Townsend at 4th) | 70 | 348 | Subscriber | 94070 | |
261247 | 252 | 4/25/14 17:13 | 2nd at South Park | 64 | 4/25/14 17:17 | San Francisco Caltrain 2 (330 Townsend) | 69 | 274 | Subscriber | 94608 | |
261244 | 551 | 4/25/14 17:12 | Market at 4th | 76 | 4/25/14 17:22 | 2nd at Townsend | 61 | 266 | Subscriber | 94127 | |
261243 | 489 | 4/25/14 17:12 | Powell Street BART | 39 | 4/25/14 17:20 | San Francisco Caltrain (Townsend at 4th) | 70 | 575 | Subscriber | 94085 | |
261242 | 242 | 4/25/14 17:11 | Embarcadero at Vallejo | 48 | 4/25/14 17:15 | Steuart at Market | 74 | 528 | Subscriber | 94102 | |
261241 | 448 | 4/25/14 17:11 | Powell Street BART | 39 | 4/25/14 17:18 | Harry Bridges Plaza (Ferry Building) | 50 | 64 | Subscriber | 94903 | |
261238 | 270 | 4/25/14 17:10 | Clay at Battery | 41 | 4/25/14 17:14 | Temporary Transbay Terminal (Howard at Beale) | 55 | 461 | Subscriber | 94105 | |
261236 | 360 | 4/25/14 17:10 | San Pedro Square | 6 | 4/25/14 17:16 | San Jose Diridon Caltrain Station | 2 | 255 | Subscriber | 94002 | |
261235 | 373 | 4/25/14 17:08 | Market at 4th | 76 | 4/25/14 17:15 | Harry Bridges Plaza (Ferry Building) | 50 | 495 | Subscriber | 94939 | |
261234 | 826 | 4/25/14 16:54 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 17:08 | San Francisco Caltrain (Townsend at 4th) | 70 | 556 | Subscriber | 94403 | |
261233 | 550 | 4/25/14 17:07 | Market at 10th | 67 | 4/25/14 17:16 | San Francisco Caltrain (Townsend at 4th) | 70 | 497 | Subscriber | 94086 | |
261230 | 749 | 4/25/14 17:07 | 5th at Howard | 57 | 4/25/14 17:19 | Harry Bridges Plaza (Ferry Building) | 50 | 394 | Customer | 94611 | |
261229 | 178 | 4/25/14 17:07 | 2nd at Folsom | 62 | 4/25/14 17:10 | Market at Sansome | 77 | 442 | Subscriber | 94102 | |
261228 | 475 | 4/25/14 17:07 | Clay at Battery | 41 | 4/25/14 17:15 | 2nd at Townsend | 61 | 629 | Subscriber | 94103 | |
261227 | 303 | 4/25/14 17:07 | Market at 4th | 76 | 4/25/14 17:12 | Harry Bridges Plaza (Ferry Building) | 50 | 465 | Subscriber | 94558 | |
261226 | 349 | 4/25/14 17:05 | Market at 4th | 76 | 4/25/14 17:11 | Temporary Transbay Terminal (Howard at Beale) | 55 | 336 | Subscriber | 94706 | |
261225 | 1048 | 4/25/14 17:05 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 17:23 | 2nd at Townsend | 61 | 631 | Subscriber | 94107 | |
261224 | 427 | 4/25/14 17:05 | Embarcadero at Folsom | 51 | 4/25/14 17:12 | 2nd at Townsend | 61 | 474 | Subscriber | 94025 | |
261221 | 311 | 4/25/14 17:04 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 17:10 | San Francisco Caltrain (Townsend at 4th) | 70 | 570 | Subscriber | 94086 | |
261220 | 700 | 4/25/14 17:04 | Beale at Market | 56 | 4/25/14 17:16 | San Francisco Caltrain (Townsend at 4th) | 70 | 283 | Subscriber | 94041 | |
261219 | 590 | 4/25/14 17:04 | Embarcadero at Folsom | 51 | 4/25/14 17:14 | San Francisco Caltrain 2 (330 Townsend) | 69 | 312 | Subscriber | 94303 | |
261217 | 245 | 4/25/14 16:59 | Townsend at 7th | 65 | 4/25/14 17:04 | San Francisco Caltrain (Townsend at 4th) | 70 | 531 | Subscriber | 94103 | |
261216 | 269 | 4/25/14 17:03 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 17:08 | San Francisco Caltrain 2 (330 Townsend) | 69 | 390 | Subscriber | 94087 | |
261215 | 275 | 4/25/14 16:58 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 17:02 | Mechanics Plaza (Market at Battery) | 75 | 300 | Subscriber | 94105 | |
261212 | 188 | 4/25/14 16:58 | San Antonio Shopping Center | 31 | 4/25/14 17:01 | San Antonio Caltrain Station | 29 | 183 | Subscriber | 94070 | |
261211 | 4744 | 4/25/14 17:00 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 18:19 | Washington at Kearny | 46 | 351 | Customer | 19104 | |
261210 | 605 | 4/25/14 17:00 | Embarcadero at Folsom | 51 | 4/25/14 17:10 | San Francisco Caltrain (Townsend at 4th) | 70 | 329 | Subscriber | 94404 | |
261209 | 523 | 4/25/14 17:00 | Market at 10th | 67 | 4/25/14 17:09 | Market at Sansome | 77 | 532 | Subscriber | 94107 | |
261208 | 348 | 4/25/14 17:00 | Commercial at Montgomery | 45 | 4/25/14 17:06 | Grant Avenue at Columbus Avenue | 73 | 478 | Subscriber | 94122 | |
261206 | 460 | 4/25/14 17:00 | 5th at Howard | 57 | 4/25/14 17:07 | Harry Bridges Plaza (Ferry Building) | 50 | 516 | Subscriber | 94925 | |
261204 | 472 | 4/25/14 16:59 | Beale at Market | 56 | 4/25/14 17:06 | Embarcadero at Sansome | 60 | 358 | Subscriber | 94111 | |
261201 | 423 | 4/25/14 16:57 | 2nd at South Park | 64 | 4/25/14 17:04 | Market at Sansome | 77 | 626 | Subscriber | 94114 | |
261196 | 522 | 4/25/14 16:54 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 17:03 | Townsend at 7th | 65 | 522 | Subscriber | 94110 | |
261195 | 220 | 4/25/14 16:54 | San Antonio Shopping Center | 31 | 4/25/14 16:57 | San Antonio Caltrain Station | 29 | 155 | Subscriber | 94133 | |
261194 | 571 | 4/25/14 16:53 | Embarcadero at Vallejo | 48 | 4/25/14 17:03 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 570 | Subscriber | 94602 | |
261193 | 592 | 4/25/14 16:53 | Embarcadero at Vallejo | 48 | 4/25/14 17:03 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 557 | Subscriber | 94602 | |
261192 | 412 | 4/25/14 16:53 | Clay at Battery | 41 | 4/25/14 17:00 | 2nd at Folsom | 62 | 442 | Subscriber | 94107 | |
261191 | 592 | 4/25/14 16:53 | 2nd at Townsend | 61 | 4/25/14 17:03 | Temporary Transbay Terminal (Howard at Beale) | 55 | 324 | Subscriber | 94608 | |
261190 | 147 | 4/25/14 16:52 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 16:54 | Howard at 2nd | 63 | 269 | Subscriber | 94122 | |
261189 | 487 | 4/25/14 16:52 | Commercial at Montgomery | 45 | 4/25/14 17:00 | 2nd at South Park | 64 | 274 | Subscriber | 94104 | |
261188 | 272 | 4/25/14 16:52 | Market at Sansome | 77 | 4/25/14 16:56 | 5th at Howard | 57 | 516 | Subscriber | 94107 | |
261186 | 716 | 4/25/14 16:52 | Embarcadero at Folsom | 51 | 4/25/14 17:03 | San Francisco Caltrain (Townsend at 4th) | 70 | 361 | Subscriber | 95122 | |
261185 | 389 | 4/25/14 16:51 | Market at 4th | 76 | 4/25/14 16:58 | San Francisco Caltrain (Townsend at 4th) | 70 | 586 | Subscriber | 94070 | |
261183 | 4515 | 4/25/14 16:49 | Embarcadero at Vallejo | 48 | 4/25/14 18:04 | 2nd at Townsend | 61 | 363 | Customer | 75602 | |
261182 | 630 | 4/25/14 16:48 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 16:59 | Powell Street BART | 39 | 575 | Subscriber | 94107 | |
261181 | 848 | 4/25/14 16:48 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 17:02 | Beale at Market | 56 | 283 | Subscriber | 94044 | |
261180 | 467 | 4/25/14 16:48 | 2nd at Townsend | 61 | 4/25/14 16:56 | Steuart at Market | 74 | 606 | Subscriber | 94044 | |
261179 | 238 | 4/25/14 16:48 | Mountain View City Hall | 27 | 4/25/14 16:52 | Mountain View Caltrain Station | 28 | 163 | Subscriber | 94107 | |
261178 | 968 | 4/25/14 16:48 | Spear at Folsom | 49 | 4/25/14 17:04 | Civic Center BART (7th at Market) | 72 | 619 | Subscriber | 94114 | |
261177 | 462 | 4/25/14 16:47 | 2nd at Townsend | 61 | 4/25/14 16:55 | Steuart at Market | 74 | 549 | Subscriber | 94703 | |
261176 | 253 | 4/25/14 16:46 | Commercial at Montgomery | 45 | 4/25/14 16:50 | Davis at Jackson | 42 | 382 | Subscriber | 94111 | |
261175 | 312 | 4/25/14 16:45 | 5th at Howard | 57 | 4/25/14 16:50 | San Francisco Caltrain (Townsend at 4th) | 70 | 564 | Subscriber | 94115 | |
261174 | 656 | 4/25/14 16:45 | 2nd at Folsom | 62 | 4/25/14 16:56 | Harry Bridges Plaza (Ferry Building) | 50 | 371 | Subscriber | 94901 | |
261173 | 654 | 4/25/14 16:45 | 2nd at Folsom | 62 | 4/25/14 16:55 | Harry Bridges Plaza (Ferry Building) | 50 | 487 | Subscriber | 94903 | |
261172 | 4592 | 4/25/14 16:44 | Embarcadero at Sansome | 60 | 4/25/14 18:00 | Embarcadero at Vallejo | 48 | 518 | Customer | 48360 | |
261171 | 1075 | 4/25/14 16:44 | Clay at Battery | 41 | 4/25/14 17:02 | San Francisco Caltrain (Townsend at 4th) | 70 | 435 | Subscriber | 94025 | |
261170 | 4607 | 4/25/14 16:44 | Embarcadero at Sansome | 60 | 4/25/14 18:00 | Embarcadero at Vallejo | 48 | 622 | Customer | 48360 | |
261169 | 179 | 4/25/14 16:43 | South Van Ness at Market | 66 | 4/25/14 16:46 | Civic Center BART (7th at Market) | 72 | 437 | Subscriber | 94703 | |
261168 | 447 | 4/25/14 16:41 | Market at Sansome | 77 | 4/25/14 16:49 | San Francisco Caltrain (Townsend at 4th) | 70 | 445 | Subscriber | 94040 | |
261167 | 602 | 4/25/14 16:41 | Steuart at Market | 74 | 4/25/14 16:51 | San Francisco Caltrain 2 (330 Townsend) | 69 | 278 | Subscriber | 94024 | |
261165 | 428 | 4/25/14 16:40 | Market at 4th | 76 | 4/25/14 16:47 | San Francisco Caltrain (Townsend at 4th) | 70 | 515 | Subscriber | 94062 | |
261159 | 729 | 4/25/14 16:39 | Market at Sansome | 77 | 4/25/14 16:52 | San Francisco Caltrain 2 (330 Townsend) | 69 | 450 | Subscriber | 95014 | |
261158 | 788 | 4/25/14 16:39 | Townsend at 7th | 65 | 4/25/14 16:52 | Temporary Transbay Terminal (Howard at Beale) | 55 | 602 | Subscriber | 94611 | |
261157 | 312 | 4/25/14 16:39 | 2nd at South Park | 64 | 4/25/14 16:44 | San Francisco Caltrain 2 (330 Townsend) | 69 | 609 | Subscriber | 94002 | |
261156 | 634 | 4/25/14 16:38 | Steuart at Market | 74 | 4/25/14 16:48 | San Francisco Caltrain (Townsend at 4th) | 70 | 374 | Subscriber | 94010 | |
261155 | 569 | 4/25/14 16:37 | Steuart at Market | 74 | 4/25/14 16:46 | San Francisco Caltrain (Townsend at 4th) | 70 | 572 | Subscriber | 94403 | |
261154 | 624 | 4/25/14 16:32 | Steuart at Market | 74 | 4/25/14 16:42 | San Francisco Caltrain (Townsend at 4th) | 70 | 385 | Subscriber | 94061 | |
261151 | 766 | 4/25/14 16:38 | 2nd at Townsend | 61 | 4/25/14 16:51 | Harry Bridges Plaza (Ferry Building) | 50 | 481 | Subscriber | 94558 | |
261150 | 582 | 4/25/14 16:37 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 16:46 | San Francisco Caltrain (Townsend at 4th) | 70 | 352 | Subscriber | 94403 | |
261147 | 481 | 4/25/14 16:35 | 5th at Howard | 57 | 4/25/14 16:43 | Market at 10th | 67 | 337 | Subscriber | 94103 | |
261146 | 211 | 4/25/14 16:35 | Evelyn Park and Ride | 30 | 4/25/14 16:38 | Mountain View Caltrain Station | 28 | 213 | Subscriber | 94111 | |
261143 | 214 | 4/25/14 16:34 | 2nd at Folsom | 62 | 4/25/14 16:37 | Market at Sansome | 77 | 450 | Subscriber | 94110 | |
261142 | 563 | 4/25/14 16:33 | South Van Ness at Market | 66 | 4/25/14 16:43 | San Francisco Caltrain (Townsend at 4th) | 70 | 551 | Subscriber | 94061 | |
261141 | 305 | 4/25/14 16:33 | 2nd at South Park | 64 | 4/25/14 16:38 | Market at Sansome | 77 | 290 | Subscriber | 94563 | |
261140 | 1555 | 4/25/14 16:33 | Post at Kearny | 47 | 4/25/14 16:58 | Commercial at Montgomery | 45 | 478 | Subscriber | 94112 | |
261138 | 661 | 4/25/14 16:30 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 16:41 | Harry Bridges Plaza (Ferry Building) | 50 | 556 | Subscriber | 94107 | |
261136 | 585 | 4/25/14 16:29 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 16:39 | San Francisco Caltrain 2 (330 Townsend) | 69 | 625 | Subscriber | 94025 | |
261135 | 529 | 4/25/14 16:27 | Embarcadero at Folsom | 51 | 4/25/14 16:36 | Washington at Kearny | 46 | 383 | Subscriber | 94133 | |
261134 | 233 | 4/25/14 16:27 | Embarcadero at Folsom | 51 | 4/25/14 16:31 | Beale at Market | 56 | 637 | Subscriber | 94117 | |
261132 | 752 | 4/25/14 16:22 | Cowper at University | 37 | 4/25/14 16:35 | Palo Alto Caltrain Station | 34 | 63 | Subscriber | 94107 | |
261129 | 482 | 4/25/14 16:20 | Embarcadero at Folsom | 51 | 4/25/14 16:28 | 5th at Howard | 57 | 337 | Subscriber | 94103 | |
261127 | 482 | 4/25/14 16:17 | Powell at Post (Union Square) | 71 | 4/25/14 16:25 | San Francisco Caltrain (Townsend at 4th) | 70 | 380 | Subscriber | 95124 | |
261126 | 332 | 4/25/14 16:16 | Embarcadero at Sansome | 60 | 4/25/14 16:22 | Steuart at Market | 74 | 385 | Subscriber | 94066 | |
261125 | 654 | 4/25/14 16:15 | San Francisco City Hall | 58 | 4/25/14 16:26 | San Francisco Caltrain 2 (330 Townsend) | 69 | 283 | Subscriber | 94107 | |
261124 | 295 | 4/25/14 16:14 | Santa Clara at Almaden | 4 | 4/25/14 16:19 | San Jose Diridon Caltrain Station | 2 | 199 | Subscriber | 94103 | |
261122 | 658 | 4/25/14 16:10 | Golden Gate at Polk | 59 | 4/25/14 16:21 | San Francisco Caltrain (Townsend at 4th) | 70 | 541 | Subscriber | 94530 | |
261121 | 378 | 4/25/14 16:10 | Market at 4th | 76 | 4/25/14 16:16 | 2nd at Folsom | 62 | 371 | Subscriber | 94110 | |
261120 | 313 | 4/25/14 16:09 | Howard at 2nd | 63 | 4/25/14 16:15 | 5th at Howard | 57 | 398 | Subscriber | 94107 | |
261119 | 594 | 4/25/14 16:08 | San Francisco City Hall | 58 | 4/25/14 16:18 | San Francisco Caltrain (Townsend at 4th) | 70 | 589 | Subscriber | 95125 | |
261118 | 219 | 4/25/14 16:07 | 2nd at Townsend | 61 | 4/25/14 16:11 | San Francisco Caltrain (Townsend at 4th) | 70 | 393 | Subscriber | 94002 | |
261117 | 1890 | 4/25/14 16:06 | Embarcadero at Folsom | 51 | 4/25/14 16:38 | Harry Bridges Plaza (Ferry Building) | 50 | 546 | Subscriber | 94107 | |
261116 | 219 | 4/25/14 16:06 | 2nd at Folsom | 62 | 4/25/14 16:10 | Market at Sansome | 77 | 582 | Subscriber | 95051 | |
261115 | 1083 | 4/25/14 16:05 | Davis at Jackson | 42 | 4/25/14 16:23 | San Francisco Caltrain (Townsend at 4th) | 70 | 562 | Subscriber | 94086 | |
261114 | 597 | 4/25/14 16:05 | Market at 4th | 76 | 4/25/14 16:15 | San Francisco Caltrain (Townsend at 4th) | 70 | 506 | Customer | nil | |
261113 | 8015 | 4/25/14 16:04 | 5th at Howard | 57 | 4/25/14 18:17 | Market at 10th | 67 | 513 | Customer | 95363 | |
261112 | 661 | 4/25/14 16:03 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 16:14 | Market at 4th | 76 | 515 | Subscriber | 95020 | |
261110 | 658 | 4/25/14 16:02 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 16:13 | Market at 10th | 67 | 563 | Subscriber | 94132 | |
261109 | 438 | 4/25/14 16:00 | Market at 10th | 67 | 4/25/14 16:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 599 | Subscriber | 94041 | |
261108 | 395 | 4/25/14 15:57 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 16:04 | Powell Street BART | 39 | 420 | Subscriber | 95815 | |
261107 | 159 | 4/25/14 15:54 | Davis at Jackson | 42 | 4/25/14 15:57 | Harry Bridges Plaza (Ferry Building) | 50 | 594 | Subscriber | 94965 | |
261106 | 570 | 4/25/14 15:56 | Commercial at Montgomery | 45 | 4/25/14 16:05 | Embarcadero at Sansome | 60 | 537 | Customer | nil | |
261105 | 583 | 4/25/14 15:56 | Commercial at Montgomery | 45 | 4/25/14 16:05 | Embarcadero at Sansome | 60 | 538 | Customer | nil | |
261104 | 320 | 4/25/14 15:55 | Market at Sansome | 77 | 4/25/14 16:00 | Embarcadero at Bryant | 54 | 443 | Subscriber | 94930 | |
261102 | 136 | 4/25/14 15:53 | Commercial at Montgomery | 45 | 4/25/14 15:55 | Clay at Battery | 41 | 629 | Subscriber | 94122 | |
261101 | 899 | 4/25/14 15:51 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 16:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 468 | Subscriber | 95124 | |
261100 | 413 | 4/25/14 15:51 | Broadway St at Battery St | 82 | 4/25/14 15:58 | Beale at Market | 56 | 387 | Subscriber | 94550 | |
261099 | 729 | 4/25/14 15:50 | Beale at Market | 56 | 4/25/14 16:03 | San Francisco Caltrain (Townsend at 4th) | 70 | 561 | Subscriber | 95050 | |
261096 | 769 | 4/25/14 15:45 | Beale at Market | 56 | 4/25/14 15:58 | San Francisco Caltrain (Townsend at 4th) | 70 | 511 | Subscriber | 94066 | |
261095 | 794 | 4/25/14 15:43 | Steuart at Market | 74 | 4/25/14 15:57 | San Francisco Caltrain (Townsend at 4th) | 70 | 578 | Subscriber | 94070 | |
261094 | 362 | 4/25/14 15:40 | Powell Street BART | 39 | 4/25/14 15:46 | Market at Sansome | 77 | 445 | Subscriber | 94102 | |
261093 | 767 | 4/25/14 15:38 | Market at 10th | 67 | 4/25/14 15:51 | Townsend at 7th | 65 | 531 | Subscriber | 94107 | |
261092 | 507 | 4/25/14 15:37 | Embarcadero at Bryant | 54 | 4/25/14 15:46 | Market at Sansome | 77 | 443 | Subscriber | 94930 | |
261091 | 447 | 4/25/14 15:37 | Howard at 2nd | 63 | 4/25/14 15:44 | San Francisco Caltrain (Townsend at 4th) | 70 | 515 | Subscriber | 94133 | |
261090 | 281 | 4/25/14 15:34 | Market at 10th | 67 | 4/25/14 15:39 | Golden Gate at Polk | 59 | 490 | Subscriber | 94117 | |
261088 | 318 | 4/25/14 15:27 | Spear at Folsom | 49 | 4/25/14 15:32 | Mechanics Plaza (Market at Battery) | 75 | 468 | Subscriber | 94105 | |
261087 | 178 | 4/25/14 15:27 | San Antonio Shopping Center | 31 | 4/25/14 15:30 | San Antonio Caltrain Station | 29 | 12 | Subscriber | 94010 | |
261086 | 170 | 4/25/14 15:26 | Beale at Market | 56 | 4/25/14 15:29 | Embarcadero at Folsom | 51 | 637 | Subscriber | 94117 | |
261085 | 208 | 4/25/14 15:21 | Market at Sansome | 77 | 4/25/14 15:24 | Harry Bridges Plaza (Ferry Building) | 50 | 271 | Subscriber | 94930 | |
261084 | 346 | 4/25/14 15:19 | 5th at Howard | 57 | 4/25/14 15:25 | Civic Center BART (7th at Market) | 72 | 378 | Subscriber | 94103 | |
261083 | 696 | 4/25/14 15:18 | Powell Street BART | 39 | 4/25/14 15:29 | 2nd at Folsom | 62 | 487 | Subscriber | 94133 | |
261082 | 292 | 4/25/14 15:04 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 15:09 | Broadway St at Battery St | 82 | 402 | Subscriber | 94123 | |
261081 | 1015 | 4/25/14 15:01 | Steuart at Market | 74 | 4/25/14 15:18 | Market at 10th | 67 | 359 | Subscriber | 94103 | |
261080 | 608 | 4/25/14 15:03 | South Van Ness at Market | 66 | 4/25/14 15:13 | Beale at Market | 56 | 637 | Subscriber | 94105 | |
261079 | 289 | 4/25/14 15:00 | Embarcadero at Vallejo | 48 | 4/25/14 15:05 | Beale at Market | 56 | 509 | Subscriber | 94105 | |
261078 | 319 | 4/25/14 14:57 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 15:02 | Spear at Folsom | 49 | 468 | Subscriber | 94105 | |
261077 | 403 | 4/25/14 14:55 | San Jose City Hall | 10 | 4/25/14 15:01 | San Jose Diridon Caltrain Station | 2 | 207 | Subscriber | 94502 | |
261076 | 306 | 4/25/14 14:51 | 2nd at Folsom | 62 | 4/25/14 14:56 | San Francisco Caltrain (Townsend at 4th) | 70 | 357 | Subscriber | 94118 | |
261075 | 146 | 4/25/14 14:41 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 14:43 | Davis at Jackson | 42 | 408 | Subscriber | 94108 | |
261074 | 1091 | 4/25/14 14:22 | 2nd at Townsend | 61 | 4/25/14 14:40 | Embarcadero at Vallejo | 48 | 557 | Customer | 75602 | |
261072 | 149 | 4/25/14 14:13 | Davis at Jackson | 42 | 4/25/14 14:15 | Harry Bridges Plaza (Ferry Building) | 50 | 408 | Subscriber | 94108 | |
261071 | 308 | 4/25/14 14:14 | Howard at 2nd | 63 | 4/25/14 14:20 | Market at 4th | 76 | 400 | Subscriber | 94941 | |
261070 | 312 | 4/25/14 14:13 | Washington at Kearny | 46 | 4/25/14 14:18 | Beale at Market | 56 | 358 | Subscriber | 94133 | |
261069 | 745 | 4/25/14 14:08 | San Jose City Hall | 10 | 4/25/14 14:21 | San Jose Diridon Caltrain Station | 2 | 659 | Subscriber | 95020 | |
261068 | 620 | 4/25/14 14:07 | Steuart at Market | 74 | 4/25/14 14:17 | 2nd at Townsend | 61 | 456 | Subscriber | 94112 | |
261067 | 169 | 4/25/14 14:04 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 14:07 | Embarcadero at Vallejo | 48 | 509 | Subscriber | 94105 | |
261066 | 580 | 4/25/14 14:01 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 14:11 | Market at 10th | 67 | 531 | Subscriber | 94107 | |
261065 | 304 | 4/25/14 13:58 | Commercial at Montgomery | 45 | 4/25/14 14:03 | Harry Bridges Plaza (Ferry Building) | 50 | 509 | Subscriber | 94123 | |
261064 | 216 | 4/25/14 13:53 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 13:56 | Broadway St at Battery St | 82 | 387 | Subscriber | 94133 | |
261063 | 1914 | 4/25/14 13:52 | Embarcadero at Vallejo | 48 | 4/25/14 14:24 | Embarcadero at Sansome | 60 | 622 | Customer | nil | |
261062 | 1963 | 4/25/14 13:52 | Embarcadero at Vallejo | 48 | 4/25/14 14:25 | Embarcadero at Sansome | 60 | 518 | Customer | nil | |
261061 | 1945 | 4/25/14 13:52 | Embarcadero at Vallejo | 48 | 4/25/14 14:24 | Embarcadero at Sansome | 60 | 444 | Customer | 2191 | |
261060 | 1985 | 4/25/14 13:51 | Embarcadero at Vallejo | 48 | 4/25/14 14:24 | Embarcadero at Sansome | 60 | 632 | Customer | 2191 | |
261059 | 1614 | 4/25/14 13:43 | Embarcadero at Sansome | 60 | 4/25/14 14:10 | San Francisco Caltrain (Townsend at 4th) | 70 | 479 | Customer | 94043 | |
261058 | 421 | 4/25/14 13:34 | 2nd at South Park | 64 | 4/25/14 13:41 | Powell Street BART | 39 | 347 | Subscriber | 94121 | |
261057 | 2626 | 4/25/14 13:31 | Broadway St at Battery St | 82 | 4/25/14 14:15 | Commercial at Montgomery | 45 | 629 | Customer | nil | |
261056 | 2647 | 4/25/14 13:31 | Broadway St at Battery St | 82 | 4/25/14 14:15 | Commercial at Montgomery | 45 | 274 | Customer | nil | |
261055 | 315 | 4/25/14 13:27 | Davis at Jackson | 42 | 4/25/14 13:32 | Market at Sansome | 77 | 516 | Subscriber | 94306 | |
261054 | 523 | 4/25/14 13:21 | Townsend at 7th | 65 | 4/25/14 13:29 | 2nd at Townsend | 61 | 573 | Customer | 75602 | |
261051 | 317 | 4/25/14 13:09 | Embarcadero at Bryant | 54 | 4/25/14 13:14 | Embarcadero at Folsom | 51 | 525 | Subscriber | 94702 | |
261046 | 625 | 4/25/14 12:43 | San Jose Diridon Caltrain Station | 2 | 4/25/14 12:53 | SJSU 4th at San Carlos | 12 | 667 | Subscriber | 95020 | |
261044 | 287 | 4/25/14 12:40 | Civic Center BART (7th at Market) | 72 | 4/25/14 12:45 | 5th at Howard | 57 | 569 | Subscriber | 94103 | |
261043 | 260 | 4/25/14 12:40 | Market at Sansome | 77 | 4/25/14 12:44 | Davis at Jackson | 42 | 516 | Subscriber | 94306 | |
261042 | 404 | 4/25/14 12:40 | Market at 10th | 67 | 4/25/14 12:46 | Market at 4th | 76 | 336 | Subscriber | 94103 | |
261041 | 262 | 4/25/14 12:38 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 12:42 | Howard at 2nd | 63 | 406 | Subscriber | 94941 | |
261040 | 613 | 4/25/14 12:26 | Beale at Market | 56 | 4/25/14 12:36 | Embarcadero at Vallejo | 48 | 360 | Customer | 2191 | |
261039 | 364 | 4/25/14 12:26 | Powell Street BART | 39 | 4/25/14 12:32 | 2nd at Folsom | 62 | 596 | Subscriber | 94107 | |
261038 | 653 | 4/25/14 12:26 | Beale at Market | 56 | 4/25/14 12:37 | Embarcadero at Vallejo | 48 | 570 | Customer | 2191 | |
261037 | 842 | 4/25/14 12:23 | Beale at Market | 56 | 4/25/14 12:37 | Embarcadero at Vallejo | 48 | 632 | Customer | nil | |
261036 | 848 | 4/25/14 12:22 | Beale at Market | 56 | 4/25/14 12:36 | Embarcadero at Vallejo | 48 | 518 | Customer | nil | |
261035 | 193 | 4/25/14 12:20 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 12:23 | Embarcadero at Bryant | 54 | 628 | Subscriber | 94010 | |
261034 | 146 | 4/25/14 12:18 | Davis at Jackson | 42 | 4/25/14 12:21 | Davis at Jackson | 42 | 594 | Subscriber | 94111 | |
261033 | 435 | 4/25/14 12:18 | Powell Street BART | 39 | 4/25/14 12:25 | 2nd at South Park | 64 | 347 | Subscriber | 94121 | |
261032 | 504 | 4/25/14 12:16 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 12:25 | Beale at Market | 56 | 570 | Subscriber | 94619 | |
261031 | 406 | 4/25/14 12:09 | Embarcadero at Vallejo | 48 | 4/25/14 12:16 | Embarcadero at Bryant | 54 | 622 | Subscriber | 94105 | |
261030 | 399 | 4/25/14 12:09 | Market at Sansome | 77 | 4/25/14 12:16 | 2nd at Townsend | 61 | 289 | Subscriber | 94107 | |
261029 | 512 | 4/25/14 12:05 | 2nd at Folsom | 62 | 4/25/14 12:14 | Powell Street BART | 39 | 487 | Subscriber | 94133 | |
261027 | 415 | 4/25/14 12:04 | San Francisco City Hall | 58 | 4/25/14 12:11 | Powell Street BART | 39 | 283 | Subscriber | 94107 | |
261026 | 466 | 4/25/14 12:02 | 5th at Howard | 57 | 4/25/14 12:10 | Commercial at Montgomery | 45 | 537 | Subscriber | 94122 | |
261025 | 367 | 4/25/14 11:57 | Embarcadero at Folsom | 51 | 4/25/14 12:03 | Embarcadero at Bryant | 54 | 525 | Subscriber | 94702 | |
261024 | 434 | 4/25/14 11:55 | Howard at 2nd | 63 | 4/25/14 12:03 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 348 | Customer | 79151 | |
261022 | 487 | 4/25/14 11:53 | 2nd at Townsend | 61 | 4/25/14 12:01 | Post at Kearny | 47 | 610 | Customer | 94941 | |
261021 | 258 | 4/25/14 11:52 | Commercial at Montgomery | 45 | 4/25/14 11:57 | Davis at Jackson | 42 | 594 | Subscriber | 94111 | |
261020 | 637 | 4/25/14 11:51 | Market at 4th | 76 | 4/25/14 12:02 | Mechanics Plaza (Market at Battery) | 75 | 420 | Subscriber | 94122 | |
261019 | 529 | 4/25/14 11:51 | 2nd at Townsend | 61 | 4/25/14 12:00 | Harry Bridges Plaza (Ferry Building) | 50 | 402 | Subscriber | 94605 | |
261018 | 4166 | 4/25/14 11:50 | Steuart at Market | 74 | 4/25/14 13:00 | Steuart at Market | 74 | 392 | Customer | nil | |
261017 | 346 | 4/25/14 11:49 | Market at Sansome | 77 | 4/25/14 11:55 | Powell Street BART | 39 | 555 | Subscriber | 94602 | |
261016 | 248 | 4/25/14 11:48 | 2nd at South Park | 64 | 4/25/14 11:53 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 345 | Subscriber | 94107 | |
261015 | 4334 | 4/25/14 11:48 | Steuart at Market | 74 | 4/25/14 13:00 | Steuart at Market | 74 | 180 | Customer | nil | |
261014 | 610 | 4/25/14 11:47 | Embarcadero at Folsom | 51 | 4/25/14 11:57 | San Francisco Caltrain (Townsend at 4th) | 70 | 280 | Subscriber | 94102 | |
261013 | 309 | 4/25/14 11:46 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 11:51 | Commercial at Montgomery | 45 | 509 | Subscriber | 94123 | |
261012 | 637 | 4/25/14 11:46 | Townsend at 7th | 65 | 4/25/14 11:57 | Post at Kearny | 47 | 381 | Subscriber | 94707 | |
261010 | 257 | 4/25/14 11:40 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 11:45 | Townsend at 7th | 65 | 573 | Subscriber | 94107 | |
261007 | 353 | 4/25/14 11:38 | 2nd at South Park | 64 | 4/25/14 11:44 | Market at Sansome | 77 | 430 | Subscriber | 94107 | |
261006 | 495 | 4/25/14 11:38 | Spear at Folsom | 49 | 4/25/14 11:46 | San Francisco Caltrain 2 (330 Townsend) | 69 | 575 | Subscriber | 94804 | |
261003 | 242 | 4/25/14 11:34 | Powell Street BART | 39 | 4/25/14 11:38 | Civic Center BART (7th at Market) | 72 | 535 | Subscriber | 94103 | |
261002 | 667 | 4/25/14 11:33 | San Jose City Hall | 10 | 4/25/14 11:44 | San Jose City Hall | 10 | 207 | Subscriber | 94502 | |
261000 | 624 | 4/25/14 11:33 | Steuart at Market | 74 | 4/25/14 11:43 | Embarcadero at Vallejo | 48 | 444 | Subscriber | 94114 | |
260999 | 175 | 4/25/14 11:30 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 11:33 | 2nd at Townsend | 61 | 402 | Subscriber | 94044 | |
260998 | 199 | 4/25/14 11:30 | Paseo de San Antonio | 7 | 4/25/14 11:33 | MLK Library | 11 | 130 | Subscriber | 95112 | |
260997 | 251 | 4/25/14 11:29 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 11:33 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 522 | Subscriber | 94941 | |
260995 | 362 | 4/25/14 11:23 | Commercial at Montgomery | 45 | 4/25/14 11:29 | 5th at Howard | 57 | 537 | Subscriber | 94122 | |
260994 | 503 | 4/25/14 11:18 | 2nd at South Park | 64 | 4/25/14 11:26 | Beale at Market | 56 | 518 | Subscriber | 94107 | |
260993 | 640 | 4/25/14 11:17 | Embarcadero at Bryant | 54 | 4/25/14 11:27 | Embarcadero at Vallejo | 48 | 363 | Subscriber | 94111 | |
260992 | 253 | 4/25/14 11:13 | 5th at Howard | 57 | 4/25/14 11:17 | Market at Sansome | 77 | 473 | Subscriber | 94107 | |
260991 | 666 | 4/25/14 11:08 | Beale at Market | 56 | 4/25/14 11:19 | Grant Avenue at Columbus Avenue | 73 | 570 | Subscriber | 94619 | |
260990 | 453 | 4/25/14 11:08 | Steuart at Market | 74 | 4/25/14 11:16 | 2nd at Townsend | 61 | 410 | Subscriber | 94612 | |
260989 | 264 | 4/25/14 11:08 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 11:12 | Clay at Battery | 41 | 342 | Subscriber | 94107 | |
260988 | 993 | 4/25/14 11:07 | Post at Kearny | 47 | 4/25/14 11:24 | San Francisco Caltrain 2 (330 Townsend) | 69 | 402 | Subscriber | 94158 | |
260987 | 765 | 4/25/14 11:03 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 11:15 | Broadway St at Battery St | 82 | 274 | Subscriber | 95130 | |
260986 | 287 | 4/25/14 11:02 | San Jose City Hall | 10 | 4/25/14 11:07 | Paseo de San Antonio | 7 | 82 | Subscriber | 95112 | |
260985 | 597 | 4/25/14 11:01 | Golden Gate at Polk | 59 | 4/25/14 11:11 | Post at Kearny | 47 | 527 | Subscriber | 94110 | |
260984 | 383 | 4/25/14 11:00 | Adobe on Almaden | 5 | 4/25/14 11:06 | MLK Library | 11 | 699 | Subscriber | 95126 | |
260983 | 573 | 4/25/14 10:59 | Washington at Kearny | 46 | 4/25/14 11:09 | 2nd at Folsom | 62 | 487 | Subscriber | 94133 | |
260982 | 697 | 4/25/14 10:57 | Broadway St at Battery St | 82 | 4/25/14 11:08 | 2nd at Townsend | 61 | 393 | Subscriber | 94044 | |
260981 | 288 | 4/25/14 10:56 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 11:01 | Townsend at 7th | 65 | 602 | Subscriber | 94107 | |
260980 | 626 | 4/25/14 10:54 | Clay at Battery | 41 | 4/25/14 11:04 | Powell Street BART | 39 | 535 | Subscriber | 94111 | |
260979 | 642 | 4/25/14 10:53 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 11:03 | Embarcadero at Folsom | 51 | 280 | Subscriber | 94105 | |
260978 | 770 | 4/25/14 10:51 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 11:03 | Spear at Folsom | 49 | 335 | Subscriber | 94133 | |
260976 | 491 | 4/25/14 10:48 | Powell at Post (Union Square) | 71 | 4/25/14 10:56 | Market at 10th | 67 | 496 | Subscriber | 94108 | |
260974 | 243 | 4/25/14 10:47 | Castro Street and El Camino Real | 32 | 4/25/14 10:51 | Mountain View Caltrain Station | 28 | 21 | Subscriber | 94110 | |
260973 | 369 | 4/25/14 10:46 | 2nd at Townsend | 61 | 4/25/14 10:52 | Embarcadero at Folsom | 51 | 525 | Subscriber | 94107 | |
260972 | 868 | 4/25/14 10:46 | Golden Gate at Polk | 59 | 4/25/14 11:00 | Embarcadero at Vallejo | 48 | 439 | Subscriber | 94102 | |
260971 | 359 | 4/25/14 10:45 | South Van Ness at Market | 66 | 4/25/14 10:51 | Powell Street BART | 39 | 596 | Subscriber | 94044 | |
260970 | 615 | 4/25/14 10:43 | Embarcadero at Bryant | 54 | 4/25/14 10:53 | Commercial at Montgomery | 45 | 538 | Subscriber | 94105 | |
260964 | 241 | 4/25/14 10:24 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 10:28 | Townsend at 7th | 65 | 381 | Subscriber | 94611 | |
260963 | 209 | 4/25/14 10:11 | Townsend at 7th | 65 | 4/25/14 10:15 | San Francisco Caltrain (Townsend at 4th) | 70 | 274 | Subscriber | 94611 | |
260962 | 451 | 4/25/14 10:05 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 10:13 | Steuart at Market | 74 | 578 | Subscriber | 94133 | |
260961 | 270 | 4/25/14 10:03 | Steuart at Market | 74 | 4/25/14 10:07 | Steuart at Market | 74 | 180 | Customer | 19104 | |
260960 | 323 | 4/25/14 10:00 | Howard at 2nd | 63 | 4/25/14 10:06 | Steuart at Market | 74 | 410 | Subscriber | 94105 | |
260959 | 374 | 4/25/14 10:00 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 10:06 | Mechanics Plaza (Market at Battery) | 75 | 351 | Subscriber | 94960 | |
260957 | 337 | 4/25/14 9:59 | Beale at Market | 56 | 4/25/14 10:05 | Broadway St at Battery St | 82 | 397 | Subscriber | 94131 | |
260951 | 311 | 4/25/14 9:52 | Washington at Kearny | 46 | 4/25/14 9:57 | Harry Bridges Plaza (Ferry Building) | 50 | 429 | Subscriber | 94133 | |
260945 | 1364 | 4/25/14 9:45 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 10:08 | Embarcadero at Sansome | 60 | 470 | Customer | 94043 | |
260944 | 219 | 4/25/14 9:45 | Mountain View Caltrain Station | 28 | 4/25/14 9:49 | Mountain View City Hall | 27 | 163 | Subscriber | 94107 | |
260943 | 514 | 4/25/14 9:44 | Powell at Post (Union Square) | 71 | 4/25/14 9:52 | Broadway St at Battery St | 82 | 393 | Subscriber | 94109 | |
260942 | 402 | 4/25/14 9:40 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 9:46 | Market at Sansome | 77 | 289 | Subscriber | 94102 | |
260940 | 449 | 4/25/14 9:35 | Powell Street BART | 39 | 4/25/14 9:42 | San Francisco Caltrain 2 (330 Townsend) | 69 | 602 | Subscriber | 94107 | |
260937 | 320 | 4/25/14 9:34 | San Antonio Caltrain Station | 29 | 4/25/14 9:40 | San Antonio Shopping Center | 31 | 12 | Subscriber | 94010 | |
260936 | 508 | 4/25/14 9:34 | Steuart at Market | 74 | 4/25/14 9:42 | 2nd at Townsend | 61 | 458 | Subscriber | 94611 | |
260933 | 568 | 4/25/14 9:31 | 2nd at South Park | 64 | 4/25/14 9:40 | Townsend at 7th | 65 | 372 | Subscriber | 94105 | |
260932 | 128 | 4/25/14 9:31 | Beale at Market | 56 | 4/25/14 9:33 | Temporary Transbay Terminal (Howard at Beale) | 55 | 352 | Subscriber | 94122 | |
260930 | 236 | 4/25/14 9:30 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:34 | Townsend at 7th | 65 | 608 | Subscriber | 94105 | |
260928 | 394 | 4/25/14 9:29 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 9:36 | Steuart at Market | 74 | 392 | Subscriber | 94133 | |
260927 | 354 | 4/25/14 9:29 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 9:35 | Market at Sansome | 77 | 516 | Subscriber | 94133 | |
260925 | 266 | 4/25/14 9:27 | SJSU - San Salvador at 9th | 16 | 4/25/14 9:32 | Paseo de San Antonio | 7 | 178 | Subscriber | 95126 | |
260924 | 624 | 4/25/14 9:25 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 9:35 | Market at Sansome | 77 | 415 | Subscriber | 95051 | |
260923 | 296 | 4/25/14 9:24 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 9:29 | Embarcadero at Sansome | 60 | 625 | Subscriber | 94549 | |
260922 | 559 | 4/25/14 9:23 | Embarcadero at Bryant | 54 | 4/25/14 9:33 | Mechanics Plaza (Market at Battery) | 75 | 611 | Subscriber | 94105 | |
260921 | 305 | 4/25/14 9:23 | Market at Sansome | 77 | 4/25/14 9:28 | 2nd at South Park | 64 | 518 | Subscriber | 94702 | |
260920 | 359 | 4/25/14 9:23 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:29 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 470 | Subscriber | 94040 | |
260919 | 536 | 4/25/14 9:21 | Davis at Jackson | 42 | 4/25/14 9:30 | 2nd at Townsend | 61 | 481 | Subscriber | 94111 | |
260918 | 555 | 4/25/14 9:19 | Embarcadero at Bryant | 54 | 4/25/14 9:28 | Commercial at Montgomery | 45 | 594 | Subscriber | 94105 | |
260917 | 440 | 4/25/14 9:19 | Powell Street BART | 39 | 4/25/14 9:26 | San Francisco Caltrain (Townsend at 4th) | 70 | 608 | Subscriber | 94109 | |
260916 | 448 | 4/25/14 9:19 | Clay at Battery | 41 | 4/25/14 9:26 | Powell Street BART | 39 | 347 | Subscriber | 94121 | |
260914 | 751 | 4/25/14 9:18 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 9:30 | Embarcadero at Sansome | 60 | 522 | Subscriber | 94606 | |
260913 | 685 | 4/25/14 9:17 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:29 | Steuart at Market | 74 | 407 | Subscriber | 94158 | |
260912 | 565 | 4/25/14 9:17 | Steuart at Market | 74 | 4/25/14 9:27 | Embarcadero at Sansome | 60 | 332 | Subscriber | 94066 | |
260911 | 543 | 4/25/14 9:17 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 9:26 | Washington at Kearny | 46 | 429 | Subscriber | 94133 | |
260910 | 655 | 4/25/14 9:16 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 9:27 | Market at 10th | 67 | 279 | Subscriber | 94402 | |
260909 | 425 | 4/25/14 9:14 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 9:21 | 2nd at South Park | 64 | 430 | Subscriber | 94705 | |
260908 | 513 | 4/25/14 9:14 | 2nd at Townsend | 61 | 4/25/14 9:22 | Steuart at Market | 74 | 449 | Subscriber | 94070 | |
260907 | 625 | 4/25/14 9:13 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 9:23 | Post at Kearny | 47 | 627 | Subscriber | 94030 | |
260906 | 553 | 4/25/14 9:13 | Civic Center BART (7th at Market) | 72 | 4/25/14 9:22 | Townsend at 7th | 65 | 417 | Subscriber | 94598 | |
260905 | 286 | 4/25/14 9:12 | Embarcadero at Folsom | 51 | 4/25/14 9:17 | 2nd at Folsom | 62 | 357 | Subscriber | 94025 | |
260904 | 345 | 4/25/14 9:12 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:18 | Townsend at 7th | 65 | 568 | Subscriber | 95129 | |
260902 | 446 | 4/25/14 9:11 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:19 | Howard at 2nd | 63 | 348 | Subscriber | 95112 | |
260901 | 540 | 4/25/14 9:11 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:20 | Steuart at Market | 74 | 374 | Subscriber | 94061 | |
260900 | 783 | 4/25/14 9:09 | Market at Sansome | 77 | 4/25/14 9:22 | San Francisco Caltrain (Townsend at 4th) | 70 | 470 | Subscriber | 94611 | |
260899 | 633 | 4/25/14 9:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:17 | Market at 4th | 76 | 371 | Subscriber | 94040 | |
260898 | 540 | 4/25/14 9:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:15 | Temporary Transbay Terminal (Howard at Beale) | 55 | 429 | Subscriber | 94301 | |
260897 | 621 | 4/25/14 9:05 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:16 | Temporary Transbay Terminal (Howard at Beale) | 55 | 522 | Subscriber | 94404 | |
260896 | 306 | 4/25/14 9:04 | Mezes Park | 83 | 4/25/14 9:09 | Redwood City Caltrain Station | 22 | 682 | Subscriber | 94063 | |
260895 | 309 | 4/25/14 9:04 | Market at Sansome | 77 | 4/25/14 9:09 | 2nd at South Park | 64 | 372 | Subscriber | 94588 | |
260894 | 392 | 4/25/14 9:04 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:11 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 531 | Subscriber | 94086 | |
260892 | 683 | 4/25/14 9:04 | Powell at Post (Union Square) | 71 | 4/25/14 9:15 | Townsend at 7th | 65 | 412 | Subscriber | 94108 | |
260891 | 738 | 4/25/14 9:03 | 2nd at South Park | 64 | 4/25/14 9:16 | Embarcadero at Vallejo | 48 | 528 | Subscriber | 94602 | |
260890 | 713 | 4/25/14 9:02 | 2nd at South Park | 64 | 4/25/14 9:13 | Embarcadero at Vallejo | 48 | 290 | Subscriber | 94602 | |
260889 | 399 | 4/25/14 9:01 | Spear at Folsom | 49 | 4/25/14 9:08 | 2nd at Folsom | 62 | 582 | Subscriber | 94105 | |
260888 | 321 | 4/25/14 9:01 | Beale at Market | 56 | 4/25/14 9:06 | Commercial at Montgomery | 45 | 382 | Subscriber | 94703 | |
260887 | 433 | 4/25/14 8:57 | Embarcadero at Bryant | 54 | 4/25/14 9:04 | San Francisco Caltrain (Townsend at 4th) | 70 | 522 | Subscriber | 94105 | |
260886 | 593 | 4/25/14 8:55 | 5th at Howard | 57 | 4/25/14 9:05 | Embarcadero at Folsom | 51 | 337 | Subscriber | 94103 | |
260885 | 586 | 4/25/14 8:49 | Embarcadero at Bryant | 54 | 4/25/14 8:59 | Clay at Battery | 41 | 461 | Subscriber | 94105 | |
260884 | 927 | 4/25/14 8:49 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 9:04 | Market at Sansome | 77 | 470 | Customer | nil | |
260883 | 495 | 4/25/14 8:48 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 8:56 | Market at 4th | 76 | 266 | Subscriber | 94941 | |
260882 | 505 | 4/25/14 8:47 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:56 | Howard at 2nd | 63 | 492 | Subscriber | 94086 | |
260880 | 494 | 4/25/14 8:46 | Howard at 2nd | 63 | 4/25/14 8:55 | Washington at Kearny | 46 | 452 | Subscriber | 94107 | |
260879 | 248 | 4/25/14 8:46 | Mountain View Caltrain Station | 28 | 4/25/14 8:50 | Castro Street and El Camino Real | 32 | 21 | Subscriber | 94110 | |
260878 | 104 | 4/25/14 8:46 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:48 | San Francisco Caltrain 2 (330 Townsend) | 69 | 627 | Subscriber | 94070 | |
260877 | 467 | 4/25/14 8:46 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:54 | Howard at 2nd | 63 | 618 | Subscriber | 94002 | |
260876 | 546 | 4/25/14 8:45 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:55 | Howard at 2nd | 63 | 621 | Subscriber | 94107 | |
260875 | 227 | 4/25/14 8:45 | Steuart at Market | 74 | 4/25/14 8:49 | Embarcadero at Vallejo | 48 | 581 | Subscriber | 94102 | |
260874 | 726 | 4/25/14 8:45 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:57 | Mechanics Plaza (Market at Battery) | 75 | 631 | Subscriber | 94303 | |
260873 | 735 | 4/25/14 8:45 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:57 | Embarcadero at Folsom | 51 | 328 | Subscriber | 95014 | |
260872 | 313 | 4/25/14 8:42 | Mountain View Caltrain Station | 28 | 4/25/14 8:48 | Evelyn Park and Ride | 30 | 148 | Subscriber | 94133 | |
260871 | 932 | 4/25/14 8:43 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 8:58 | Grant Avenue at Columbus Avenue | 73 | 289 | Subscriber | 94611 | |
260870 | 259 | 4/25/14 8:41 | Powell Street BART | 39 | 4/25/14 8:45 | Market at Sansome | 77 | 518 | Subscriber | 94116 | |
260869 | 376 | 4/25/14 8:38 | San Antonio Caltrain Station | 29 | 4/25/14 8:44 | San Antonio Shopping Center | 31 | 183 | Subscriber | 94070 | |
260868 | 233 | 4/25/14 8:38 | Howard at 2nd | 63 | 4/25/14 8:41 | 2nd at South Park | 64 | 290 | Subscriber | 94563 | |
260867 | 346 | 4/25/14 8:36 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 8:42 | Commercial at Montgomery | 45 | 537 | Subscriber | 60091 | |
260866 | 338 | 4/25/14 8:36 | Steuart at Market | 74 | 4/25/14 8:42 | Embarcadero at Sansome | 60 | 284 | Subscriber | 94597 | |
260865 | 477 | 4/25/14 8:35 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 8:42 | Market at 4th | 76 | 465 | Subscriber | 94111 | |
260864 | 208 | 4/25/14 8:34 | Market at Sansome | 77 | 4/25/14 8:37 | Howard at 2nd | 63 | 579 | Subscriber | 94563 | |
260863 | 380 | 4/25/14 8:31 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 8:37 | Embarcadero at Vallejo | 48 | 609 | Subscriber | 94609 | |
260862 | 552 | 4/25/14 8:29 | South Van Ness at Market | 66 | 4/25/14 8:38 | Market at Sansome | 77 | 585 | Subscriber | 94102 | |
260861 | 355 | 4/25/14 8:29 | 2nd at Folsom | 62 | 4/25/14 8:34 | San Francisco Caltrain (Townsend at 4th) | 70 | 627 | Subscriber | 94105 | |
260860 | 653 | 4/25/14 8:27 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 8:38 | San Francisco Caltrain 2 (330 Townsend) | 69 | 283 | Subscriber | 94901 | |
260859 | 505 | 4/25/14 8:27 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 8:36 | 2nd at Townsend | 61 | 273 | Subscriber | 94903 | |
260858 | 364 | 4/25/14 8:27 | Beale at Market | 56 | 4/25/14 8:34 | Market at 4th | 76 | 395 | Subscriber | 94105 | |
260857 | 324 | 4/25/14 8:27 | Beale at Market | 56 | 4/25/14 8:32 | Embarcadero at Vallejo | 48 | 260 | Subscriber | 94550 | |
260856 | 300 | 4/25/14 8:27 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 8:32 | 5th at Howard | 57 | 473 | Subscriber | 94303 | |
260855 | 339 | 4/25/14 8:26 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 8:32 | Embarcadero at Sansome | 60 | 385 | Subscriber | 94565 | |
260854 | 446 | 4/25/14 8:26 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:33 | Market at Sansome | 77 | 282 | Subscriber | 94040 | |
260853 | 549 | 4/25/14 8:26 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:35 | Steuart at Market | 74 | 431 | Subscriber | 94024 | |
260852 | 316 | 4/25/14 8:21 | South Van Ness at Market | 66 | 4/25/14 8:26 | Powell Street BART | 39 | 592 | Subscriber | 94404 | |
260850 | 927 | 4/25/14 8:21 | Steuart at Market | 74 | 4/25/14 8:37 | San Francisco Caltrain (Townsend at 4th) | 70 | 429 | Subscriber | 94105 | |
260847 | 181 | 4/25/14 8:19 | San Antonio Shopping Center | 31 | 4/25/14 8:22 | San Antonio Caltrain Station | 29 | 646 | Subscriber | 94040 | |
260841 | 487 | 4/25/14 8:15 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 8:23 | Embarcadero at Sansome | 60 | 563 | Subscriber | 94111 | |
260840 | 329 | 4/25/14 8:14 | San Jose Diridon Caltrain Station | 2 | 4/25/14 8:20 | Santa Clara at Almaden | 4 | 149 | Subscriber | 94103 | |
260839 | 437 | 4/25/14 8:14 | San Jose Diridon Caltrain Station | 2 | 4/25/14 8:21 | Paseo de San Antonio | 7 | 257 | Subscriber | 94108 | |
260838 | 941 | 4/25/14 8:10 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:26 | Broadway St at Battery St | 82 | 636 | Customer | 94108 | |
260837 | 357 | 4/25/14 8:09 | Market at 4th | 76 | 4/25/14 8:15 | San Francisco Caltrain (Townsend at 4th) | 70 | 328 | Subscriber | 94611 | |
260835 | 415 | 4/25/14 8:05 | Embarcadero at Bryant | 54 | 4/25/14 8:12 | Embarcadero at Vallejo | 48 | 622 | Subscriber | 94105 | |
260834 | 1124 | 4/25/14 8:04 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:23 | Beale at Market | 56 | 260 | Subscriber | 94066 | |
260833 | 514 | 4/25/14 8:03 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 8:12 | 2nd at Townsend | 61 | 421 | Subscriber | 94558 | |
260832 | 284 | 4/25/14 8:01 | Spear at Folsom | 49 | 4/25/14 8:06 | Harry Bridges Plaza (Ferry Building) | 50 | 283 | Subscriber | 60091 | |
260831 | 305 | 4/25/14 8:01 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:06 | 5th at Howard | 57 | 513 | Subscriber | 94115 | |
260830 | 143 | 4/25/14 7:58 | Beale at Market | 56 | 4/25/14 8:01 | Temporary Transbay Terminal (Howard at Beale) | 55 | 628 | Subscriber | 94122 | |
260829 | 741 | 4/25/14 7:58 | Market at Sansome | 77 | 4/25/14 8:10 | Townsend at 7th | 65 | 558 | Subscriber | 94121 | |
260828 | 375 | 4/25/14 7:55 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 8:01 | 2nd at Townsend | 61 | 324 | Subscriber | 94606 | |
260827 | 450 | 4/25/14 7:54 | SJSU - San Salvador at 9th | 16 | 4/25/14 8:01 | San Jose Diridon Caltrain Station | 2 | 31 | Subscriber | 95112 | |
260826 | 345 | 4/25/14 7:54 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 7:59 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 390 | Subscriber | 94707 | |
260825 | 948 | 4/25/14 7:52 | Broadway St at Battery St | 82 | 4/25/14 8:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 431 | Subscriber | 94133 | |
260823 | 282 | 4/25/14 7:51 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 7:56 | Harry Bridges Plaza (Ferry Building) | 50 | 537 | Subscriber | 94501 | |
260822 | 501 | 4/25/14 7:51 | Steuart at Market | 74 | 4/25/14 7:59 | 2nd at Townsend | 61 | 502 | Subscriber | 94588 | |
260820 | 845 | 4/25/14 7:50 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 8:04 | Embarcadero at Vallejo | 48 | 505 | Subscriber | 95110 | |
260817 | 370 | 4/25/14 7:48 | Davis at Jackson | 42 | 4/25/14 7:54 | Howard at 2nd | 63 | 290 | Subscriber | 94133 | |
260815 | 702 | 4/25/14 7:39 | Rengstorff Avenue / California Street | 33 | 4/25/14 7:51 | Mountain View Caltrain Station | 28 | 120 | Subscriber | 94040 | |
260814 | 549 | 4/25/14 7:38 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 7:48 | Powell Street BART | 39 | 426 | Subscriber | 94107 | |
260813 | 843 | 4/25/14 7:32 | San Jose Diridon Caltrain Station | 2 | 4/25/14 7:46 | San Jose City Hall | 10 | 82 | Subscriber | 94502 | |
260812 | 931 | 4/25/14 7:32 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 7:47 | Townsend at 7th | 65 | 274 | Subscriber | 94611 | |
260811 | 297 | 4/25/14 7:31 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 7:36 | Market at Sansome | 77 | 377 | Subscriber | 94510 | |
260810 | 483 | 4/25/14 7:28 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 7:36 | Embarcadero at Folsom | 51 | 383 | Subscriber | 94133 | |
260809 | 606 | 4/25/14 7:26 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 7:36 | Powell Street BART | 39 | 503 | Subscriber | 94102 | |
260808 | 943 | 4/25/14 7:25 | Market at 10th | 67 | 4/25/14 7:41 | Steuart at Market | 74 | 429 | Subscriber | 94103 | |
260807 | 319 | 4/25/14 7:18 | Townsend at 7th | 65 | 4/25/14 7:23 | San Francisco Caltrain (Townsend at 4th) | 70 | 621 | Subscriber | 94107 | |
260806 | 979 | 4/25/14 7:16 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 7:32 | San Francisco Caltrain (Townsend at 4th) | 70 | 513 | Subscriber | 94133 | |
260802 | 658 | 4/25/14 7:09 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 7:20 | Davis at Jackson | 42 | 290 | Subscriber | 94030 | |
260799 | 853 | 4/25/14 7:08 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 7:23 | South Van Ness at Market | 66 | 484 | Subscriber | 94061 | |
260798 | 410 | 4/25/14 7:08 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/25/14 7:15 | Powell Street BART | 39 | 580 | Subscriber | 94085 | |
260795 | 534 | 4/25/14 7:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 7:16 | Market at Sansome | 77 | 583 | Subscriber | 94010 | |
260792 | 366 | 4/25/14 7:05 | 5th at Howard | 57 | 4/25/14 7:11 | San Francisco Caltrain (Townsend at 4th) | 70 | 406 | Subscriber | 94103 | |
260791 | 465 | 4/25/14 7:03 | Powell at Post (Union Square) | 71 | 4/25/14 7:11 | San Francisco Caltrain (Townsend at 4th) | 70 | 505 | Subscriber | 94108 | |
260787 | 440 | 4/25/14 6:56 | Embarcadero at Sansome | 60 | 4/25/14 7:03 | Temporary Transbay Terminal (Howard at Beale) | 55 | 537 | Subscriber | 94111 | |
260784 | 153 | 4/25/14 6:54 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/25/14 6:57 | 5th at Howard | 57 | 430 | Subscriber | 94107 | |
260782 | 611 | 4/25/14 6:52 | Spear at Folsom | 49 | 4/25/14 7:03 | 5th at Howard | 57 | 564 | Subscriber | 94105 | |
260781 | 230 | 4/25/14 6:52 | Davis at Jackson | 42 | 4/25/14 6:56 | Commercial at Montgomery | 45 | 559 | Subscriber | 94111 | |
260780 | 428 | 4/25/14 6:51 | St James Park | 13 | 4/25/14 6:58 | San Jose Diridon Caltrain Station | 2 | 159 | Subscriber | 95112 | |
260779 | 925 | 4/25/14 6:49 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 7:05 | Clay at Battery | 41 | 347 | Subscriber | 94158 | |
260778 | 430 | 4/25/14 6:44 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 6:51 | Embarcadero at Folsom | 51 | 357 | Subscriber | 94025 | |
260777 | 758 | 4/25/14 6:44 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 6:57 | Embarcadero at Sansome | 60 | 289 | Subscriber | 99403 | |
260775 | 558 | 4/25/14 6:43 | Embarcadero at Sansome | 60 | 4/25/14 6:53 | 2nd at Townsend | 61 | 287 | Subscriber | 94111 | |
260774 | 3889 | 4/25/14 6:41 | Powell at Post (Union Square) | 71 | 4/25/14 7:46 | Powell at Post (Union Square) | 71 | 380 | Customer | nil | |
260773 | 194 | 4/25/14 6:39 | Civic Center BART (7th at Market) | 72 | 4/25/14 6:43 | Golden Gate at Polk | 59 | 501 | Subscriber | 94530 | |
260772 | 898 | 4/25/14 6:39 | Japantown | 9 | 4/25/14 6:54 | San Jose Diridon Caltrain Station | 2 | 191 | Subscriber | 95112 | |
260771 | 690 | 4/25/14 6:37 | Steuart at Market | 74 | 4/25/14 6:48 | San Francisco Caltrain (Townsend at 4th) | 70 | 371 | Subscriber | 94610 | |
260770 | 324 | 4/25/14 6:31 | Santa Clara at Almaden | 4 | 4/25/14 6:36 | San Jose Diridon Caltrain Station | 2 | 77 | Subscriber | 95110 | |
260769 | 401 | 4/25/14 6:34 | Golden Gate at Polk | 59 | 4/25/14 6:41 | 5th at Howard | 57 | 545 | Subscriber | 94109 | |
260768 | 203 | 4/25/14 6:33 | Evelyn Park and Ride | 30 | 4/25/14 6:37 | Mountain View Caltrain Station | 28 | 672 | Subscriber | 94041 | |
260767 | 557 | 4/25/14 6:28 | Civic Center BART (7th at Market) | 72 | 4/25/14 6:38 | San Francisco Caltrain (Townsend at 4th) | 70 | 289 | Subscriber | 94103 | |
260766 | 345 | 4/25/14 6:28 | Beale at Market | 56 | 4/25/14 6:34 | Spear at Folsom | 49 | 511 | Subscriber | 94111 | |
260765 | 241 | 4/25/14 6:27 | Steuart at Market | 74 | 4/25/14 6:31 | Embarcadero at Bryant | 54 | 594 | Subscriber | 94109 | |
260764 | 599 | 4/25/14 6:26 | Market at 4th | 76 | 4/25/14 6:36 | Townsend at 7th | 65 | 422 | Subscriber | 94108 | |
260763 | 587 | 4/25/14 6:23 | Steuart at Market | 74 | 4/25/14 6:33 | San Francisco Caltrain 2 (330 Townsend) | 69 | 556 | Subscriber | 94107 | |
260762 | 289 | 4/25/14 6:20 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 6:25 | Market at Sansome | 77 | 555 | Subscriber | 94133 | |
260761 | 471 | 4/25/14 6:20 | Harry Bridges Plaza (Ferry Building) | 50 | 4/25/14 6:28 | 2nd at Townsend | 61 | 557 | Subscriber | 94945 | |
260760 | 282 | 4/25/14 6:09 | 2nd at South Park | 64 | 4/25/14 6:14 | Market at Sansome | 77 | 383 | Subscriber | 94107 | |
260759 | 1579 | 4/25/14 6:04 | Howard at 2nd | 63 | 4/25/14 6:31 | Howard at 2nd | 63 | 398 | Subscriber | 94107 | |
260758 | 1114 | 4/25/14 6:00 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/25/14 6:18 | Embarcadero at Sansome | 60 | 537 | Subscriber | 95111 | |
260757 | 666 | 4/25/14 5:57 | Davis at Jackson | 42 | 4/25/14 6:08 | San Francisco Caltrain (Townsend at 4th) | 70 | 434 | Subscriber | 94111 | |
260756 | 378 | 4/25/14 5:56 | Mechanics Plaza (Market at Battery) | 75 | 4/25/14 6:02 | Powell Street BART | 39 | 602 | Subscriber | 94903 | |
260755 | 299 | 4/25/14 5:43 | 2nd at South Park | 64 | 4/25/14 5:48 | Market at Sansome | 77 | 387 | Subscriber | 94107 | |
260754 | 630 | 4/25/14 5:30 | Embarcadero at Bryant | 54 | 4/25/14 5:41 | Embarcadero at Sansome | 60 | 287 | Subscriber | 94105 | |
260753 | 292 | 4/25/14 5:30 | Grant Avenue at Columbus Avenue | 73 | 4/25/14 5:35 | Market at Sansome | 77 | 271 | Subscriber | 94133 | |
260752 | 200 | 4/25/14 5:27 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/25/14 5:30 | Steuart at Market | 74 | 414 | Subscriber | 94112 | |
260751 | 582 | 4/25/14 1:35 | San Jose Diridon Caltrain Station | 2 | 4/25/14 1:44 | Japantown | 9 | 131 | Subscriber | 95112 | |
260750 | 2628 | 4/25/14 1:25 | Powell Street BART | 39 | 4/25/14 2:08 | Powell Street BART | 39 | 521 | Customer | 94501 | |
260749 | 443 | 4/25/14 0:48 | 2nd at South Park | 64 | 4/25/14 0:55 | Spear at Folsom | 49 | 404 | Subscriber | 94107 | |
260748 | 618 | 4/25/14 0:41 | Embarcadero at Sansome | 60 | 4/25/14 0:51 | Market at 4th | 76 | 495 | Subscriber | 94108 | |
260747 | 1352 | 4/25/14 0:20 | San Salvador at 1st | 8 | 4/25/14 0:43 | Japantown | 9 | 182 | Customer | 94002 | |
260746 | 425 | 4/25/14 0:12 | Market at 4th | 76 | 4/25/14 0:19 | Howard at 2nd | 63 | 452 | Subscriber | 94107 | |
260745 | 470 | 4/24/14 23:49 | Market at Sansome | 77 | 4/24/14 23:57 | Grant Avenue at Columbus Avenue | 73 | 555 | Subscriber | 94102 | |
260744 | 460 | 4/24/14 23:37 | 2nd at Folsom | 62 | 4/24/14 23:45 | 5th at Howard | 57 | 406 | Customer | nil | |
260743 | 492 | 4/24/14 23:37 | 2nd at Folsom | 62 | 4/24/14 23:45 | 5th at Howard | 57 | 378 | Customer | nil | |
260742 | 520 | 4/24/14 23:28 | Grant Avenue at Columbus Avenue | 73 | 4/24/14 23:37 | Temporary Transbay Terminal (Howard at Beale) | 55 | 269 | Subscriber | 94977 | |
260741 | 169 | 4/24/14 23:25 | Commercial at Montgomery | 45 | 4/24/14 23:28 | Market at Sansome | 77 | 504 | Subscriber | 94112 | |
260740 | 383 | 4/24/14 23:17 | Powell at Post (Union Square) | 71 | 4/24/14 23:23 | Grant Avenue at Columbus Avenue | 73 | 271 | Subscriber | 94133 | |
260739 | 3822 | 4/24/14 23:13 | SJSU - San Salvador at 9th | 16 | 4/25/14 0:17 | SJSU - San Salvador at 9th | 16 | 178 | Customer | nil | |
260738 | 391 | 4/24/14 23:13 | Powell Street BART | 39 | 4/24/14 23:20 | South Van Ness at Market | 66 | 592 | Subscriber | 94404 | |
260737 | 228 | 4/24/14 23:12 | San Jose Diridon Caltrain Station | 2 | 4/24/14 23:16 | Santa Clara at Almaden | 4 | 242 | Subscriber | 95110 | |
260736 | 3927 | 4/24/14 23:11 | SJSU - San Salvador at 9th | 16 | 4/25/14 0:17 | SJSU - San Salvador at 9th | 16 | 10 | Customer | 95023 | |
260735 | 246 | 4/24/14 23:10 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 23:14 | Howard at 2nd | 63 | 400 | Customer | nil | |
260734 | 258 | 4/24/14 23:10 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 23:14 | Howard at 2nd | 63 | 376 | Customer | nil | |
260733 | 4150 | 4/24/14 23:09 | SJSU - San Salvador at 9th | 16 | 4/25/14 0:18 | SJSU - San Salvador at 9th | 16 | 141 | Customer | 95112 | |
260732 | 423 | 4/24/14 22:25 | 5th at Howard | 57 | 4/24/14 22:32 | San Francisco Caltrain (Townsend at 4th) | 70 | 282 | Subscriber | 94107 | |
260731 | 623 | 4/24/14 22:23 | Market at 10th | 67 | 4/24/14 22:33 | Washington at Kearny | 46 | 222 | Subscriber | 94133 | |
260730 | 873 | 4/24/14 22:17 | Broadway St at Battery St | 82 | 4/24/14 22:31 | Market at 10th | 67 | 532 | Subscriber | 94111 | |
260729 | 562 | 4/24/14 22:12 | South Van Ness at Market | 66 | 4/24/14 22:21 | Beale at Market | 56 | 395 | Subscriber | 94105 | |
260728 | 373 | 4/24/14 22:10 | 5th at Howard | 57 | 4/24/14 22:16 | San Francisco Caltrain 2 (330 Townsend) | 69 | 598 | Subscriber | 94107 | |
260727 | 217 | 4/24/14 22:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 22:10 | 2nd at Townsend | 61 | 549 | Subscriber | 94107 | |
260726 | 189 | 4/24/14 22:04 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 22:08 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 430 | Subscriber | 94158 | |
260725 | 282 | 4/24/14 21:55 | Townsend at 7th | 65 | 4/24/14 21:59 | San Francisco Caltrain (Townsend at 4th) | 70 | 484 | Subscriber | 94158 | |
260709 | 397 | 4/24/14 21:38 | 2nd at Folsom | 62 | 4/24/14 21:45 | Davis at Jackson | 42 | 559 | Subscriber | 94133 | |
260706 | 806 | 4/24/14 21:36 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 21:49 | 2nd at Townsend | 61 | 626 | Subscriber | 94107 | |
260704 | 629 | 4/24/14 21:34 | Market at Sansome | 77 | 4/24/14 21:45 | Market at 10th | 67 | 336 | Subscriber | 94117 | |
260701 | 316 | 4/24/14 21:32 | San Jose Civic Center | 3 | 4/24/14 21:38 | San Jose Diridon Caltrain Station | 2 | 257 | Subscriber | 95126 | |
260700 | 262 | 4/24/14 21:31 | Market at 4th | 76 | 4/24/14 21:35 | Beale at Market | 56 | 561 | Subscriber | 95113 | |
260699 | 450 | 4/24/14 21:26 | 2nd at Townsend | 61 | 4/24/14 21:33 | Market at Sansome | 77 | 392 | Customer | 94579 | |
260698 | 379 | 4/24/14 21:23 | 5th at Howard | 57 | 4/24/14 21:29 | San Francisco Caltrain 2 (330 Townsend) | 69 | 464 | Subscriber | 95110 | |
260697 | 357 | 4/24/14 21:23 | 5th at Howard | 57 | 4/24/14 21:29 | San Francisco Caltrain (Townsend at 4th) | 70 | 470 | Subscriber | 94303 | |
260696 | 719 | 4/24/14 21:22 | Market at 4th | 76 | 4/24/14 21:34 | South Van Ness at Market | 66 | 596 | Subscriber | 94122 | |
260694 | 352 | 4/24/14 21:18 | San Jose City Hall | 10 | 4/24/14 21:24 | Japantown | 9 | 190 | Subscriber | 95112 | |
260693 | 207 | 4/24/14 21:15 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 21:18 | Embarcadero at Bryant | 54 | 622 | Subscriber | 94102 | |
260692 | 550 | 4/24/14 21:13 | Clay at Battery | 41 | 4/24/14 21:22 | 2nd at Townsend | 61 | 449 | Subscriber | 94107 | |
260691 | 545 | 4/24/14 21:12 | San Jose Diridon Caltrain Station | 2 | 4/24/14 21:21 | SJSU - San Salvador at 9th | 16 | 31 | Subscriber | 95112 | |
260690 | 519 | 4/24/14 21:10 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 21:19 | Powell Street BART | 39 | 64 | Subscriber | 94109 | |
260689 | 271 | 4/24/14 21:07 | Townsend at 7th | 65 | 4/24/14 21:12 | San Francisco Caltrain (Townsend at 4th) | 70 | 374 | Subscriber | 94107 | |
260685 | 882 | 4/24/14 20:44 | Market at 10th | 67 | 4/24/14 20:59 | Washington at Kearny | 46 | 281 | Subscriber | 94133 | |
260684 | 320 | 4/24/14 20:43 | Mountain View Caltrain Station | 28 | 4/24/14 20:48 | Evelyn Park and Ride | 30 | 245 | Subscriber | 95129 | |
260683 | 371 | 4/24/14 20:42 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 20:48 | Powell Street BART | 39 | 445 | Subscriber | 94114 | |
260682 | 424 | 4/24/14 20:41 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 20:48 | Market at 4th | 76 | 333 | Subscriber | 94109 | |
260677 | 292 | 4/24/14 20:32 | Castro Street and El Camino Real | 32 | 4/24/14 20:37 | Mountain View Caltrain Station | 28 | 148 | Subscriber | 94040 | |
260675 | 724 | 4/24/14 20:32 | Market at 4th | 76 | 4/24/14 20:44 | Davis at Jackson | 42 | 481 | Subscriber | 94111 | |
260674 | 266 | 4/24/14 20:30 | San Salvador at 1st | 8 | 4/24/14 20:34 | San Pedro Square | 6 | 702 | Subscriber | 95112 | |
260673 | 247 | 4/24/14 20:23 | San Jose Diridon Caltrain Station | 2 | 4/24/14 20:27 | Santa Clara at Almaden | 4 | 142 | Subscriber | 95126 | |
260669 | 748 | 4/24/14 20:17 | San Pedro Square | 6 | 4/24/14 20:30 | San Salvador at 1st | 8 | 694 | Subscriber | 95112 | |
260668 | 735 | 4/24/14 20:15 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 20:27 | San Francisco Caltrain (Townsend at 4th) | 70 | 531 | Subscriber | 94107 | |
260667 | 218 | 4/24/14 20:14 | Howard at 2nd | 63 | 4/24/14 20:18 | 2nd at Townsend | 61 | 413 | Subscriber | 94107 | |
260666 | 703 | 4/24/14 20:12 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 20:24 | San Francisco Caltrain (Townsend at 4th) | 70 | 568 | Subscriber | 94401 | |
260665 | 295 | 4/24/14 20:11 | Market at Sansome | 77 | 4/24/14 20:15 | Market at 4th | 76 | 422 | Subscriber | 94122 | |
260664 | 322 | 4/24/14 20:07 | Mechanics Plaza (Market at Battery) | 75 | 4/24/14 20:13 | Davis at Jackson | 42 | 434 | Subscriber | 94123 | |
260663 | 192 | 4/24/14 20:08 | Townsend at 7th | 65 | 4/24/14 20:11 | San Francisco Caltrain (Townsend at 4th) | 70 | 347 | Subscriber | 94122 | |
260662 | 563 | 4/24/14 20:06 | Powell Street BART | 39 | 4/24/14 20:15 | Temporary Transbay Terminal (Howard at Beale) | 55 | 333 | Subscriber | 94602 | |
260661 | 400 | 4/24/14 20:05 | Powell Street BART | 39 | 4/24/14 20:11 | San Francisco Caltrain 2 (330 Townsend) | 69 | 526 | Subscriber | 94107 | |
260659 | 509 | 4/24/14 20:04 | Beale at Market | 56 | 4/24/14 20:13 | 2nd at South Park | 64 | 345 | Subscriber | 94107 | |
260658 | 482 | 4/24/14 20:02 | Beale at Market | 56 | 4/24/14 20:10 | 2nd at South Park | 64 | 387 | Subscriber | 94107 | |
260657 | 289 | 4/24/14 20:02 | San Jose Diridon Caltrain Station | 2 | 4/24/14 20:07 | San Pedro Square | 6 | 694 | Subscriber | 95126 | |
260656 | 235 | 4/24/14 20:02 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 20:06 | Townsend at 7th | 65 | 408 | Subscriber | 94107 | |
260655 | 657 | 4/24/14 20:02 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 20:13 | Civic Center BART (7th at Market) | 72 | 289 | Subscriber | 94103 | |
260654 | 412 | 4/24/14 19:57 | Davis at Jackson | 42 | 4/24/14 20:04 | Embarcadero at Sansome | 60 | 597 | Subscriber | 94111 | |
260653 | 303 | 4/24/14 19:54 | Post at Kearny | 47 | 4/24/14 19:59 | Steuart at Market | 74 | 458 | Subscriber | 94103 | |
260648 | 422 | 4/24/14 19:45 | San Antonio Caltrain Station | 29 | 4/24/14 19:52 | Rengstorff Avenue / California Street | 33 | 51 | Subscriber | 94040 | |
260647 | 376 | 4/24/14 19:45 | Broadway St at Battery St | 82 | 4/24/14 19:51 | Mechanics Plaza (Market at Battery) | 75 | 362 | Subscriber | 94123 | |
260646 | 409 | 4/24/14 19:44 | Clay at Battery | 41 | 4/24/14 19:50 | 2nd at Folsom | 62 | 559 | Subscriber | 94107 | |
260644 | 672 | 4/24/14 19:43 | 5th at Howard | 57 | 4/24/14 19:54 | Spear at Folsom | 49 | 519 | Subscriber | 94105 | |
260643 | 166 | 4/24/14 19:40 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 19:43 | 5th at Howard | 57 | 507 | Subscriber | 94103 | |
260642 | 377 | 4/24/14 19:40 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:46 | Post at Kearny | 47 | 544 | Subscriber | 94116 | |
260641 | 561 | 4/24/14 19:39 | Howard at 2nd | 63 | 4/24/14 19:49 | South Van Ness at Market | 66 | 367 | Subscriber | 94103 | |
260640 | 745 | 4/24/14 19:36 | Beale at Market | 56 | 4/24/14 19:49 | South Van Ness at Market | 66 | 637 | Subscriber | 94105 | |
260639 | 474 | 4/24/14 19:36 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 19:44 | 5th at Howard | 57 | 282 | Subscriber | 94108 | |
260638 | 421 | 4/24/14 19:36 | San Jose Diridon Caltrain Station | 2 | 4/24/14 19:43 | St James Park | 13 | 159 | Subscriber | 95112 | |
260637 | 254 | 4/24/14 19:35 | Castro Street and El Camino Real | 32 | 4/24/14 19:39 | Mountain View Caltrain Station | 28 | 21 | Subscriber | 94110 | |
260635 | 709 | 4/24/14 19:34 | Powell at Post (Union Square) | 71 | 4/24/14 19:45 | 2nd at Townsend | 61 | 607 | Subscriber | 94107 | |
260634 | 641 | 4/24/14 19:31 | Powell Street BART | 39 | 4/24/14 19:41 | Townsend at 7th | 65 | 347 | Subscriber | 94107 | |
260633 | 436 | 4/24/14 19:30 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:37 | Howard at 2nd | 63 | 410 | Subscriber | 94105 | |
260631 | 384 | 4/24/14 19:29 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:36 | Embarcadero at Bryant | 54 | 522 | Subscriber | 94105 | |
260630 | 945 | 4/24/14 19:28 | Townsend at 7th | 65 | 4/24/14 19:44 | Harry Bridges Plaza (Ferry Building) | 50 | 568 | Subscriber | 94553 | |
260629 | 647 | 4/24/14 19:28 | Palo Alto Caltrain Station | 34 | 4/24/14 19:38 | California Ave Caltrain Station | 36 | 703 | Subscriber | 94303 | |
260628 | 514 | 4/24/14 19:27 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:36 | Market at 4th | 76 | 452 | Subscriber | 95113 | |
260627 | 343 | 4/24/14 19:27 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 19:33 | 2nd at Townsend | 61 | 424 | Subscriber | 94109 | |
260626 | 511 | 4/24/14 19:27 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 19:35 | 2nd at Townsend | 61 | 524 | Subscriber | 94158 | |
260625 | 184 | 4/24/14 19:25 | 2nd at Folsom | 62 | 4/24/14 19:28 | Market at Sansome | 77 | 336 | Subscriber | 94118 | |
260624 | 301 | 4/24/14 19:23 | Powell Street BART | 39 | 4/24/14 19:28 | Market at 10th | 67 | 281 | Subscriber | 94103 | |
260623 | 410 | 4/24/14 19:23 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 19:30 | Powell Street BART | 39 | 338 | Subscriber | 94107 | |
260620 | 244 | 4/24/14 19:22 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:26 | Townsend at 7th | 65 | 621 | Subscriber | 94107 | |
260619 | 74 | 4/24/14 19:21 | Powell Street BART | 39 | 4/24/14 19:23 | Powell Street BART | 39 | 310 | Subscriber | 94103 | |
260618 | 507 | 4/24/14 19:20 | Spear at Folsom | 49 | 4/24/14 19:28 | San Francisco Caltrain 2 (330 Townsend) | 69 | 408 | Subscriber | 94105 | |
260617 | 401 | 4/24/14 19:18 | Townsend at 7th | 65 | 4/24/14 19:25 | Civic Center BART (7th at Market) | 72 | 512 | Subscriber | 94925 | |
260616 | 214 | 4/24/14 19:18 | Broadway St at Battery St | 82 | 4/24/14 19:22 | Beale at Market | 56 | 382 | Subscriber | 94609 | |
260615 | 401 | 4/24/14 19:16 | 2nd at South Park | 64 | 4/24/14 19:22 | Market at Sansome | 77 | 431 | Subscriber | 94103 | |
260614 | 284 | 4/24/14 19:14 | Mechanics Plaza (Market at Battery) | 75 | 4/24/14 19:19 | Spear at Folsom | 49 | 349 | Subscriber | 94105 | |
260613 | 844 | 4/24/14 19:14 | Davis at Jackson | 42 | 4/24/14 19:28 | San Francisco Caltrain (Townsend at 4th) | 70 | 260 | Subscriber | 94025 | |
260612 | 289 | 4/24/14 19:14 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:19 | 2nd at South Park | 64 | 404 | Subscriber | 94107 | |
260611 | 397 | 4/24/14 19:14 | 2nd at South Park | 64 | 4/24/14 19:20 | 5th at Howard | 57 | 574 | Subscriber | 94103 | |
260610 | 739 | 4/24/14 19:12 | Market at Sansome | 77 | 4/24/14 19:24 | San Francisco Caltrain (Townsend at 4th) | 70 | 376 | Subscriber | 95014 | |
260609 | 246 | 4/24/14 19:10 | Townsend at 7th | 65 | 4/24/14 19:14 | San Francisco Caltrain (Townsend at 4th) | 70 | 452 | Subscriber | 94108 | |
260608 | 285 | 4/24/14 19:10 | Mechanics Plaza (Market at Battery) | 75 | 4/24/14 19:15 | Market at 4th | 76 | 596 | Subscriber | 94109 | |
260607 | 661 | 4/24/14 19:10 | Embarcadero at Folsom | 51 | 4/24/14 19:21 | San Francisco Caltrain (Townsend at 4th) | 70 | 631 | Subscriber | 95129 | |
260606 | 828 | 4/24/14 19:10 | San Francisco City Hall | 58 | 4/24/14 19:24 | 2nd at Folsom | 62 | 336 | Subscriber | 94107 | |
260605 | 401 | 4/24/14 19:09 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 19:16 | 2nd at Townsend | 61 | 606 | Subscriber | 94158 | |
260604 | 424 | 4/24/14 19:09 | Market at 10th | 67 | 4/24/14 19:16 | Post at Kearny | 47 | 458 | Subscriber | 94108 | |
260603 | 332 | 4/24/14 19:09 | Commercial at Montgomery | 45 | 4/24/14 19:14 | Temporary Transbay Terminal (Howard at Beale) | 55 | 324 | Subscriber | 94611 | |
260602 | 251 | 4/24/14 19:06 | Mechanics Plaza (Market at Battery) | 75 | 4/24/14 19:10 | Harry Bridges Plaza (Ferry Building) | 50 | 626 | Subscriber | 94960 | |
260601 | 414 | 4/24/14 19:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:13 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 493 | Subscriber | 94105 | |
260600 | 360 | 4/24/14 19:06 | Powell Street BART | 39 | 4/24/14 19:12 | Market at 10th | 67 | 599 | Subscriber | 94103 | |
260599 | 376 | 4/24/14 19:05 | Powell Street BART | 39 | 4/24/14 19:12 | Market at 10th | 67 | 429 | Subscriber | 94103 | |
260598 | 393 | 4/24/14 19:03 | Market at 10th | 67 | 4/24/14 19:09 | Townsend at 7th | 65 | 374 | Subscriber | 94112 | |
260597 | 302 | 4/24/14 19:02 | 2nd at Folsom | 62 | 4/24/14 19:07 | Temporary Transbay Terminal (Howard at Beale) | 55 | 524 | Subscriber | 90291 | |
260596 | 217 | 4/24/14 19:02 | Embarcadero at Vallejo | 48 | 4/24/14 19:06 | Embarcadero at Sansome | 60 | 495 | Subscriber | 94111 | |
260595 | 311 | 4/24/14 19:02 | Market at 4th | 76 | 4/24/14 19:07 | Washington at Kearny | 46 | 358 | Subscriber | 94133 | |
260594 | 197 | 4/24/14 19:01 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 19:04 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 400 | Subscriber | 94105 | |
260593 | 291 | 4/24/14 18:59 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 19:04 | 5th at Howard | 57 | 470 | Subscriber | 94107 | |
260592 | 1110 | 4/24/14 18:59 | Clay at Battery | 41 | 4/24/14 19:18 | San Francisco Caltrain 2 (330 Townsend) | 69 | 64 | Subscriber | 94158 | |
260591 | 143 | 4/24/14 18:58 | Embarcadero at Vallejo | 48 | 4/24/14 19:00 | Harry Bridges Plaza (Ferry Building) | 50 | 300 | Subscriber | 94107 | |
260589 | 714 | 4/24/14 18:58 | Powell Street BART | 39 | 4/24/14 19:09 | Spear at Folsom | 49 | 582 | Subscriber | 94105 | |
260588 | 606 | 4/24/14 18:57 | 2nd at Folsom | 62 | 4/24/14 19:07 | Civic Center BART (7th at Market) | 72 | 391 | Subscriber | 94107 | |
260587 | 406 | 4/24/14 18:57 | Embarcadero at Vallejo | 48 | 4/24/14 19:04 | Embarcadero at Bryant | 54 | 611 | Subscriber | 94105 | |
260586 | 141 | 4/24/14 18:56 | Spear at Folsom | 49 | 4/24/14 18:58 | Temporary Transbay Terminal (Howard at Beale) | 55 | 606 | Subscriber | 94105 | |
260584 | 502 | 4/24/14 18:54 | MLK Library | 11 | 4/24/14 19:03 | Ryland Park | 84 | 710 | Customer | 95139 | |
260583 | 500 | 4/24/14 18:54 | MLK Library | 11 | 4/24/14 19:03 | Ryland Park | 84 | 144 | Customer | 95120 | |
260581 | 583 | 4/24/14 18:53 | 2nd at Folsom | 62 | 4/24/14 19:03 | Davis at Jackson | 42 | 260 | Subscriber | 94133 | |
260580 | 229 | 4/24/14 18:52 | 2nd at Folsom | 62 | 4/24/14 18:56 | Embarcadero at Bryant | 54 | 577 | Subscriber | 94117 | |
260579 | 702 | 4/24/14 18:52 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:03 | Powell at Post (Union Square) | 71 | 505 | Subscriber | 94108 | |
260578 | 274 | 4/24/14 18:50 | 2nd at South Park | 64 | 4/24/14 18:55 | San Francisco Caltrain 2 (330 Townsend) | 69 | 277 | Subscriber | 94301 | |
260576 | 626 | 4/24/14 18:48 | Market at 10th | 67 | 4/24/14 18:58 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 424 | Subscriber | 94107 | |
260575 | 288 | 4/24/14 18:48 | Grant Avenue at Columbus Avenue | 73 | 4/24/14 18:52 | Powell at Post (Union Square) | 71 | 271 | Subscriber | 94133 | |
260574 | 786 | 4/24/14 18:47 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 19:00 | Mechanics Plaza (Market at Battery) | 75 | 596 | Subscriber | 94111 | |
260573 | 253 | 4/24/14 18:47 | San Antonio Caltrain Station | 29 | 4/24/14 18:51 | San Antonio Shopping Center | 31 | 646 | Subscriber | 94040 | |
260572 | 328 | 4/24/14 18:46 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 18:51 | Embarcadero at Bryant | 54 | 490 | Subscriber | 94105 | |
260570 | 373 | 4/24/14 18:46 | 2nd at Townsend | 61 | 4/24/14 18:52 | Harry Bridges Plaza (Ferry Building) | 50 | 309 | Subscriber | 94612 | |
260569 | 415 | 4/24/14 18:44 | Howard at 2nd | 63 | 4/24/14 18:50 | San Francisco Caltrain (Townsend at 4th) | 70 | 544 | Subscriber | 95112 | |
260568 | 697 | 4/24/14 18:43 | San Jose Diridon Caltrain Station | 2 | 4/24/14 18:54 | Ryland Park | 84 | 294 | Subscriber | 95110 | |
260566 | 443 | 4/24/14 18:42 | Powell Street BART | 39 | 4/24/14 18:49 | 2nd at Folsom | 62 | 260 | Subscriber | 94133 | |
260565 | 418 | 4/24/14 18:41 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 18:48 | 5th at Howard | 57 | 598 | Subscriber | 94107 | |
260564 | 359 | 4/24/14 18:40 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 18:46 | San Francisco Caltrain (Townsend at 4th) | 70 | 583 | Subscriber | 94087 | |
260560 | 62 | 4/24/14 18:36 | Market at Sansome | 77 | 4/24/14 18:37 | Market at Sansome | 77 | 376 | Subscriber | 91405 | |
260557 | 706 | 4/24/14 18:36 | Embarcadero at Vallejo | 48 | 4/24/14 18:48 | San Francisco Caltrain (Townsend at 4th) | 70 | 549 | Subscriber | 94404 | |
260556 | 581 | 4/24/14 18:35 | Spear at Folsom | 49 | 4/24/14 18:45 | 5th at Howard | 57 | 519 | Subscriber | 94103 | |
260554 | 366 | 4/24/14 18:35 | 5th at Howard | 57 | 4/24/14 18:41 | San Francisco Caltrain (Townsend at 4th) | 70 | 636 | Subscriber | 94303 | |
260552 | 543 | 4/24/14 18:35 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 18:44 | 5th at Howard | 57 | 337 | Subscriber | 94122 | |
260551 | 245 | 4/24/14 18:35 | Mountain View City Hall | 27 | 4/24/14 18:39 | Mountain View Caltrain Station | 28 | 219 | Subscriber | 94158 | |
260550 | 716 | 4/24/14 18:34 | Clay at Battery | 41 | 4/24/14 18:46 | 2nd at Townsend | 61 | 525 | Subscriber | 94107 | |
260549 | 738 | 4/24/14 18:33 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:45 | Market at Sansome | 77 | 343 | Subscriber | 94123 | |
260547 | 445 | 4/24/14 18:32 | Embarcadero at Bryant | 54 | 4/24/14 18:39 | San Francisco Caltrain 2 (330 Townsend) | 69 | 573 | Subscriber | 94107 | |
260546 | 319 | 4/24/14 18:32 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:37 | Townsend at 7th | 65 | 512 | Subscriber | 94103 | |
260545 | 678 | 4/24/14 18:32 | Mountain View Caltrain Station | 28 | 4/24/14 18:43 | Rengstorff Avenue / California Street | 33 | 686 | Subscriber | 94040 | |
260544 | 744 | 4/24/14 18:31 | Embarcadero at Sansome | 60 | 4/24/14 18:44 | Embarcadero at Bryant | 54 | 497 | Subscriber | 94107 | |
260543 | 697 | 4/24/14 18:31 | Arena Green / SAP Center | 14 | 4/24/14 18:42 | Japantown | 9 | 14 | Subscriber | 95112 | |
260542 | 748 | 4/24/14 18:30 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:43 | Harry Bridges Plaza (Ferry Building) | 50 | 624 | Subscriber | 94610 | |
260541 | 497 | 4/24/14 18:29 | Commercial at Montgomery | 45 | 4/24/14 18:37 | Embarcadero at Bryant | 54 | 443 | Subscriber | 94107 | |
260539 | 554 | 4/24/14 18:28 | Market at 4th | 76 | 4/24/14 18:38 | Howard at 2nd | 63 | 367 | Customer | 6853 | |
260538 | 526 | 4/24/14 18:27 | Davis at Jackson | 42 | 4/24/14 18:36 | Powell at Post (Union Square) | 71 | 412 | Subscriber | 94109 | |
260537 | 401 | 4/24/14 18:27 | Embarcadero at Folsom | 51 | 4/24/14 18:34 | San Francisco Caltrain (Townsend at 4th) | 70 | 596 | Customer | 94402 | |
260536 | 2000 | 4/24/14 18:26 | Embarcadero at Sansome | 60 | 4/24/14 19:00 | Powell at Post (Union Square) | 71 | 399 | Customer | 52 | |
260535 | 449 | 4/24/14 18:25 | Steuart at Market | 74 | 4/24/14 18:32 | Market at 4th | 76 | 420 | Subscriber | 94105 | |
260534 | 778 | 4/24/14 18:23 | Post at Kearny | 47 | 4/24/14 18:36 | Townsend at 7th | 65 | 452 | Subscriber | 94610 | |
260533 | 605 | 4/24/14 18:23 | Powell Street BART | 39 | 4/24/14 18:33 | South Van Ness at Market | 66 | 585 | Subscriber | 94103 | |
260532 | 308 | 4/24/14 18:22 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 18:27 | Townsend at 7th | 65 | 568 | Subscriber | 94107 | |
260531 | 272 | 4/24/14 18:21 | Market at Sansome | 77 | 4/24/14 18:26 | Steuart at Market | 74 | 270 | Subscriber | 94108 | |
260530 | 575 | 4/24/14 18:21 | Market at 10th | 67 | 4/24/14 18:30 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 591 | Subscriber | 94402 | |
260529 | 402 | 4/24/14 18:20 | 5th at Howard | 57 | 4/24/14 18:27 | Temporary Transbay Terminal (Howard at Beale) | 55 | 337 | Subscriber | 94710 | |
260528 | 243 | 4/24/14 18:19 | 2nd at South Park | 64 | 4/24/14 18:23 | Market at Sansome | 77 | 386 | Subscriber | 94709 | |
260526 | 351 | 4/24/14 18:19 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 18:24 | San Francisco Caltrain (Townsend at 4th) | 70 | 522 | Subscriber | 94062 | |
260525 | 336 | 4/24/14 18:19 | Davis at Jackson | 42 | 4/24/14 18:24 | Spear at Folsom | 49 | 276 | Subscriber | 94105 | |
260524 | 573 | 4/24/14 18:18 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 18:27 | Powell Street BART | 39 | 268 | Subscriber | 94107 | |
260523 | 626 | 4/24/14 18:18 | 2nd at Townsend | 61 | 4/24/14 18:28 | Davis at Jackson | 42 | 383 | Subscriber | 94111 | |
260522 | 892 | 4/24/14 18:17 | 2nd at South Park | 64 | 4/24/14 18:32 | Market at 10th | 67 | 458 | Subscriber | 94102 | |
260521 | 514 | 4/24/14 18:17 | San Jose Diridon Caltrain Station | 2 | 4/24/14 18:25 | Paseo de San Antonio | 7 | 130 | Subscriber | 95112 | |
260520 | 681 | 4/24/14 18:17 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 18:28 | Steuart at Market | 74 | 222 | Subscriber | 94577 | |
260519 | 880 | 4/24/14 18:17 | Steuart at Market | 74 | 4/24/14 18:31 | San Francisco Caltrain (Townsend at 4th) | 70 | 493 | Subscriber | 94158 | |
260518 | 803 | 4/24/14 18:15 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:29 | South Van Ness at Market | 66 | 350 | Subscriber | 94111 | |
260517 | 162 | 4/24/14 18:14 | Davis at Jackson | 42 | 4/24/14 18:17 | Embarcadero at Vallejo | 48 | 300 | Subscriber | 94040 | |
260516 | 228 | 4/24/14 18:14 | Santa Clara at Almaden | 4 | 4/24/14 18:18 | San Jose Diridon Caltrain Station | 2 | 694 | Subscriber | 95113 | |
260515 | 741 | 4/24/14 18:14 | Market at 10th | 67 | 4/24/14 18:26 | San Francisco Caltrain (Townsend at 4th) | 70 | 407 | Subscriber | 94607 | |
260514 | 362 | 4/24/14 18:13 | Embarcadero at Sansome | 60 | 4/24/14 18:19 | Steuart at Market | 74 | 384 | Subscriber | 94597 | |
260513 | 559 | 4/24/14 18:13 | 2nd at Townsend | 61 | 4/24/14 18:22 | Steuart at Market | 74 | 581 | Subscriber | 94579 | |
260512 | 887 | 4/24/14 18:13 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:27 | Embarcadero at Sansome | 60 | 497 | Subscriber | 94133 | |
260511 | 474 | 4/24/14 18:12 | 2nd at Folsom | 62 | 4/24/14 18:20 | Powell Street BART | 39 | 585 | Subscriber | 94133 | |
260510 | 810 | 4/24/14 18:12 | Davis at Jackson | 42 | 4/24/14 18:25 | San Francisco Caltrain (Townsend at 4th) | 70 | 290 | Subscriber | 95130 | |
260509 | 440 | 4/24/14 18:12 | Embarcadero at Sansome | 60 | 4/24/14 18:19 | Steuart at Market | 74 | 494 | Subscriber | 94066 | |
260508 | 266 | 4/24/14 18:11 | Mountain View Caltrain Station | 28 | 4/24/14 18:16 | Mountain View City Hall | 27 | 662 | Subscriber | 94041 | |
260507 | 578 | 4/24/14 18:11 | Beale at Market | 56 | 4/24/14 18:21 | 5th at Howard | 57 | 394 | Subscriber | 94134 | |
260506 | 392 | 4/24/14 18:11 | Howard at 2nd | 63 | 4/24/14 18:17 | 2nd at South Park | 64 | 574 | Customer | 94579 | |
260505 | 528 | 4/24/14 18:11 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 18:19 | San Francisco Caltrain 2 (330 Townsend) | 69 | 470 | Subscriber | 94404 | |
260504 | 300 | 4/24/14 18:10 | Powell Street BART | 39 | 4/24/14 18:15 | Market at 10th | 67 | 374 | Subscriber | 94102 | |
260503 | 247 | 4/24/14 18:10 | 2nd at Folsom | 62 | 4/24/14 18:14 | Market at Sansome | 77 | 327 | Subscriber | 94568 | |
260502 | 617 | 4/24/14 18:10 | Howard at 2nd | 63 | 4/24/14 18:20 | San Francisco Caltrain (Townsend at 4th) | 70 | 621 | Subscriber | 94158 | |
260499 | 727 | 4/24/14 18:04 | Townsend at 7th | 65 | 4/24/14 18:16 | Temporary Transbay Terminal (Howard at Beale) | 55 | 400 | Subscriber | 94611 | |
260498 | 425 | 4/24/14 18:08 | Howard at 2nd | 63 | 4/24/14 18:15 | Steuart at Market | 74 | 560 | Subscriber | 94941 | |
260497 | 566 | 4/24/14 18:07 | Market at Sansome | 77 | 4/24/14 18:16 | San Francisco Caltrain (Townsend at 4th) | 70 | 343 | Subscriber | 95051 | |
260495 | 544 | 4/24/14 18:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:16 | Spear at Folsom | 49 | 575 | Subscriber | 94501 | |
260494 | 535 | 4/24/14 18:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:15 | Civic Center BART (7th at Market) | 72 | 569 | Customer | 94118 | |
260493 | 257 | 4/24/14 18:06 | 2nd at Townsend | 61 | 4/24/14 18:10 | San Francisco Caltrain 2 (330 Townsend) | 69 | 279 | Subscriber | 94109 | |
260492 | 604 | 4/24/14 18:05 | Market at 4th | 76 | 4/24/14 18:15 | San Francisco Caltrain (Townsend at 4th) | 70 | 624 | Subscriber | 94070 | |
260491 | 166 | 4/24/14 18:05 | 2nd at Folsom | 62 | 4/24/14 18:08 | Market at Sansome | 77 | 422 | Subscriber | 94702 | |
260489 | 841 | 4/24/14 18:05 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:19 | Embarcadero at Vallejo | 48 | 453 | Subscriber | 94107 | |
260488 | 734 | 4/24/14 18:04 | South Van Ness at Market | 66 | 4/24/14 18:16 | San Francisco Caltrain (Townsend at 4th) | 70 | 289 | Customer | 94070 | |
260486 | 412 | 4/24/14 18:03 | Embarcadero at Bryant | 54 | 4/24/14 18:10 | San Francisco Caltrain 2 (330 Townsend) | 69 | 368 | Subscriber | 94107 | |
260485 | 518 | 4/24/14 18:03 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 18:12 | San Francisco Caltrain 2 (330 Townsend) | 69 | 568 | Subscriber | 94301 | |
260484 | 621 | 4/24/14 18:03 | 2nd at Townsend | 61 | 4/24/14 18:13 | Steuart at Market | 74 | 590 | Subscriber | 94960 | |
260483 | 1459 | 4/24/14 18:02 | Beale at Market | 56 | 4/24/14 18:27 | San Francisco Caltrain 2 (330 Townsend) | 69 | 503 | Subscriber | 94107 | |
260482 | 749 | 4/24/14 18:00 | Clay at Battery | 41 | 4/24/14 18:13 | San Francisco Caltrain (Townsend at 4th) | 70 | 505 | Subscriber | 94043 | |
260481 | 1433 | 4/24/14 18:00 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 18:24 | Embarcadero at Sansome | 60 | 399 | Customer | 52 | |
260480 | 493 | 4/24/14 18:00 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 18:08 | San Francisco Caltrain 2 (330 Townsend) | 69 | 222 | Subscriber | 94040 | |
260477 | 639 | 4/24/14 17:58 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:09 | Harry Bridges Plaza (Ferry Building) | 50 | 351 | Subscriber | 94901 | |
260476 | 663 | 4/24/14 17:59 | Mountain View City Hall | 27 | 4/24/14 18:10 | Rengstorff Avenue / California Street | 33 | 649 | Subscriber | 94114 | |
260475 | 398 | 4/24/14 17:59 | Market at 10th | 67 | 4/24/14 18:05 | Market at 4th | 76 | 561 | Subscriber | 94103 | |
260474 | 412 | 4/24/14 17:59 | Market at 10th | 67 | 4/24/14 18:06 | Market at 4th | 76 | 328 | Subscriber | 94103 | |
260473 | 515 | 4/24/14 17:57 | San Francisco City Hall | 58 | 4/24/14 18:06 | 5th at Howard | 57 | 589 | Subscriber | 94103 | |
260471 | 1112 | 4/24/14 17:56 | Powell Street BART | 39 | 4/24/14 18:15 | Davis at Jackson | 42 | 562 | Customer | 1900 | |
260469 | 685 | 4/24/14 17:56 | Embarcadero at Folsom | 51 | 4/24/14 18:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 497 | Subscriber | 95014 | |
260468 | 703 | 4/24/14 17:55 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 18:07 | Powell at Post (Union Square) | 71 | 607 | Subscriber | 94109 | |
260466 | 815 | 4/24/14 17:55 | 2nd at South Park | 64 | 4/24/14 18:08 | Market at Sansome | 77 | 630 | Subscriber | 94804 | |
260465 | 222 | 4/24/14 17:54 | Arena Green / SAP Center | 14 | 4/24/14 17:58 | Santa Clara at Almaden | 4 | 77 | Subscriber | 95113 | |
260464 | 388 | 4/24/14 17:54 | Market at 4th | 76 | 4/24/14 18:00 | Market at 10th | 67 | 591 | Subscriber | 94103 | |
260463 | 608 | 4/24/14 17:54 | Beale at Market | 56 | 4/24/14 18:04 | San Francisco Caltrain (Townsend at 4th) | 70 | 357 | Subscriber | 94303 | |
260460 | 600 | 4/24/14 17:53 | South Van Ness at Market | 66 | 4/24/14 18:03 | San Francisco Caltrain (Townsend at 4th) | 70 | 453 | Subscriber | 94010 | |
260459 | 681 | 4/24/14 17:52 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 18:04 | Townsend at 7th | 65 | 484 | Subscriber | 94107 | |
260458 | 759 | 4/24/14 17:52 | Spear at Folsom | 49 | 4/24/14 18:05 | Golden Gate at Polk | 59 | 439 | Subscriber | 94707 | |
260457 | 514 | 4/24/14 17:51 | 2nd at Townsend | 61 | 4/24/14 18:00 | Steuart at Market | 74 | 420 | Subscriber | 94526 | |
260456 | 540 | 4/24/14 17:51 | Townsend at 7th | 65 | 4/24/14 18:00 | Market at 4th | 76 | 358 | Subscriber | 94117 | |
260455 | 219 | 4/24/14 17:51 | Spear at Folsom | 49 | 4/24/14 17:55 | Steuart at Market | 74 | 517 | Subscriber | 94542 | |
260453 | 851 | 4/24/14 17:51 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:05 | Market at 4th | 76 | 367 | Subscriber | 94107 | |
260451 | 957 | 4/24/14 17:51 | Embarcadero at Sansome | 60 | 4/24/14 18:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 512 | Subscriber | 99403 | |
260450 | 881 | 4/24/14 17:50 | Broadway St at Battery St | 82 | 4/24/14 18:04 | San Francisco Caltrain (Townsend at 4th) | 70 | 404 | Subscriber | 94025 | |
260449 | 281 | 4/24/14 17:49 | San Antonio Caltrain Station | 29 | 4/24/14 17:54 | San Antonio Shopping Center | 31 | 296 | Subscriber | 94040 | |
260447 | 935 | 4/24/14 17:48 | Market at Sansome | 77 | 4/24/14 18:04 | Clay at Battery | 41 | 559 | Subscriber | 94534 | |
260443 | 600 | 4/24/14 17:47 | Market at Sansome | 77 | 4/24/14 17:57 | Grant Avenue at Columbus Avenue | 73 | 516 | Subscriber | 94117 | |
260442 | 371 | 4/24/14 17:47 | Market at Sansome | 77 | 4/24/14 17:53 | Steuart at Market | 74 | 291 | Subscriber | 94510 | |
260441 | 295 | 4/24/14 17:47 | Davis at Jackson | 42 | 4/24/14 17:52 | Temporary Transbay Terminal (Howard at Beale) | 55 | 568 | Subscriber | 94501 | |
260440 | 923 | 4/24/14 17:46 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 18:01 | Davis at Jackson | 42 | 300 | Subscriber | 94401 | |
260439 | 969 | 4/24/14 17:46 | Clay at Battery | 41 | 4/24/14 18:02 | San Francisco Caltrain (Townsend at 4th) | 70 | 410 | Subscriber | 94404 | |
260438 | 469 | 4/24/14 17:45 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 17:53 | Embarcadero at Folsom | 51 | 546 | Subscriber | 94111 | |
260437 | 1021 | 4/24/14 17:45 | Clay at Battery | 41 | 4/24/14 18:02 | San Francisco Caltrain 2 (330 Townsend) | 69 | 580 | Customer | 94022 | |
260436 | 428 | 4/24/14 17:45 | Howard at 2nd | 63 | 4/24/14 17:52 | San Francisco Caltrain (Townsend at 4th) | 70 | 350 | Subscriber | 94025 | |
260435 | 182 | 4/24/14 17:45 | 2nd at Folsom | 62 | 4/24/14 17:48 | Market at Sansome | 77 | 576 | Subscriber | 94588 | |
260434 | 546 | 4/24/14 17:44 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 17:54 | Market at 4th | 76 | 624 | Subscriber | 94080 | |
260433 | 615 | 4/24/14 17:40 | Mechanics Plaza (Market at Battery) | 75 | 4/24/14 17:50 | San Francisco Caltrain (Townsend at 4th) | 70 | 367 | Subscriber | 94403 | |
260432 | 806 | 4/24/14 17:44 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 17:57 | San Francisco Caltrain (Townsend at 4th) | 70 | 537 | Subscriber | 95032 | |
260431 | 480 | 4/24/14 17:43 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 17:51 | Steuart at Market | 74 | 359 | Subscriber | 94132 | |
260430 | 512 | 4/24/14 17:42 | Powell at Post (Union Square) | 71 | 4/24/14 17:51 | Market at 10th | 67 | 328 | Subscriber | 94103 | |
260429 | 337 | 4/24/14 17:42 | Clay at Battery | 41 | 4/24/14 17:48 | Temporary Transbay Terminal (Howard at Beale) | 55 | 484 | Subscriber | 94105 | |
260428 | 382 | 4/24/14 17:42 | Howard at 2nd | 63 | 4/24/14 17:48 | San Francisco Caltrain 2 (330 Townsend) | 69 | 381 | Subscriber | 94062 | |
260427 | 330 | 4/24/14 17:41 | Commercial at Montgomery | 45 | 4/24/14 17:46 | Beale at Market | 56 | 637 | Subscriber | 94703 | |
260426 | 496 | 4/24/14 17:40 | Post at Kearny | 47 | 4/24/14 17:48 | 2nd at South Park | 64 | 630 | Subscriber | 94115 | |
260425 | 472 | 4/24/14 17:40 | Embarcadero at Folsom | 51 | 4/24/14 17:48 | Clay at Battery | 41 | 435 | Subscriber | 94124 | |
260424 | 152 | 4/24/14 17:39 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 17:42 | Howard at 2nd | 63 | 413 | Subscriber | 94070 | |
260423 | 571 | 4/24/14 17:39 | Broadway St at Battery St | 82 | 4/24/14 17:48 | Embarcadero at Bryant | 54 | 538 | Subscriber | 94105 | |
260422 | 305 | 4/24/14 17:37 | Clay at Battery | 41 | 4/24/14 17:42 | Grant Avenue at Columbus Avenue | 73 | 342 | Subscriber | 94133 | |
260421 | 620 | 4/24/14 17:37 | 2nd at Townsend | 61 | 4/24/14 17:48 | Beale at Market | 56 | 340 | Subscriber | 94709 | |
260419 | 489 | 4/24/14 17:36 | San Jose Diridon Caltrain Station | 2 | 4/24/14 17:44 | Paseo de San Antonio | 7 | 95 | Subscriber | 95113 | |
260418 | 811 | 4/24/14 17:35 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 17:49 | South Van Ness at Market | 66 | 453 | Subscriber | 94117 | |
260417 | 255 | 4/24/14 17:35 | South Van Ness at Market | 66 | 4/24/14 17:39 | Civic Center BART (7th at Market) | 72 | 567 | Subscriber | 94803 | |
260416 | 557 | 4/24/14 17:35 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 17:44 | Embarcadero at Folsom | 51 | 596 | Subscriber | 94104 | |
260415 | 299 | 4/24/14 17:34 | Townsend at 7th | 65 | 4/24/14 17:39 | San Francisco Caltrain 2 (330 Townsend) | 69 | 338 | Subscriber | 94523 | |
260414 | 422 | 4/24/14 17:34 | St James Park | 13 | 4/24/14 17:41 | San Jose Diridon Caltrain Station | 2 | 242 | Subscriber | 94108 | |
260413 | 551 | 4/24/14 17:34 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 17:43 | Spear at Folsom | 49 | 283 | Subscriber | 60091 | |
260412 | 685 | 4/24/14 17:34 | Market at 4th | 76 | 4/24/14 17:45 | San Francisco Caltrain 2 (330 Townsend) | 69 | 598 | Subscriber | 94102 | |
260411 | 730 | 4/24/14 17:33 | Townsend at 7th | 65 | 4/24/14 17:45 | Steuart at Market | 74 | 278 | Subscriber | 94925 | |
260410 | 507 | 4/24/14 17:33 | Embarcadero at Sansome | 60 | 4/24/14 17:41 | Harry Bridges Plaza (Ferry Building) | 50 | 531 | Subscriber | 94901 | |
260409 | 300 | 4/24/14 17:32 | Commercial at Montgomery | 45 | 4/24/14 17:37 | Davis at Jackson | 42 | 568 | Subscriber | 94111 | |
260408 | 673 | 4/24/14 17:32 | Davis at Jackson | 42 | 4/24/14 17:43 | San Francisco Caltrain (Townsend at 4th) | 70 | 348 | Subscriber | 94030 | |
260407 | 258 | 4/24/14 17:31 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 17:36 | Townsend at 7th | 65 | 400 | Subscriber | 94014 | |
260406 | 581 | 4/24/14 17:31 | 2nd at Townsend | 61 | 4/24/14 17:40 | Temporary Transbay Terminal (Howard at Beale) | 55 | 274 | Subscriber | 94706 | |
260405 | 321 | 4/24/14 17:30 | Embarcadero at Sansome | 60 | 4/24/14 17:36 | Steuart at Market | 74 | 332 | Subscriber | 94565 | |
260404 | 199 | 4/24/14 17:30 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 17:33 | Townsend at 7th | 65 | 358 | Subscriber | 94107 | |
260403 | 1326 | 4/24/14 17:29 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 17:51 | Grant Avenue at Columbus Avenue | 73 | 271 | Customer | 6853 | |
260402 | 387 | 4/24/14 17:29 | Powell Street BART | 39 | 4/24/14 17:35 | 2nd at Folsom | 62 | 327 | Subscriber | 94107 | |
260401 | 555 | 4/24/14 17:28 | Grant Avenue at Columbus Avenue | 73 | 4/24/14 17:38 | Temporary Transbay Terminal (Howard at Beale) | 55 | 470 | Subscriber | 94611 | |
260400 | 185 | 4/24/14 17:28 | 2nd at Folsom | 62 | 4/24/14 17:31 | Market at Sansome | 77 | 373 | Subscriber | 94080 | |
260399 | 402 | 4/24/14 17:28 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 17:34 | Embarcadero at Sansome | 60 | 339 | Subscriber | 94111 | |
260398 | 394 | 4/24/14 17:27 | 2nd at Townsend | 61 | 4/24/14 17:34 | Steuart at Market | 74 | 389 | Subscriber | 94044 | |
260397 | 546 | 4/24/14 17:27 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 17:36 | San Francisco Caltrain (Townsend at 4th) | 70 | 434 | Subscriber | 94403 | |
260396 | 599 | 4/24/14 17:26 | 2nd at Townsend | 61 | 4/24/14 17:36 | Harry Bridges Plaza (Ferry Building) | 50 | 421 | Subscriber | 94558 | |
260395 | 366 | 4/24/14 17:25 | Market at Sansome | 77 | 4/24/14 17:31 | Davis at Jackson | 42 | 276 | Subscriber | 94111 | |
260394 | 481 | 4/24/14 17:25 | Market at 4th | 76 | 4/24/14 17:33 | Market at 10th | 67 | 424 | Subscriber | 94102 | |
260393 | 888 | 4/24/14 17:24 | Market at 10th | 67 | 4/24/14 17:39 | Howard at 2nd | 63 | 350 | Customer | nil | |
260392 | 991 | 4/24/14 17:24 | Market at 10th | 67 | 4/24/14 17:40 | Howard at 2nd | 63 | 621 | Customer | nil | |
260389 | 205 | 4/24/14 17:23 | Arena Green / SAP Center | 14 | 4/24/14 17:27 | Santa Clara at Almaden | 4 | 658 | Subscriber | 95113 | |
260387 | 296 | 4/24/14 17:23 | 2nd at South Park | 64 | 4/24/14 17:28 | Market at Sansome | 77 | 419 | Subscriber | 94606 | |
260386 | 469 | 4/24/14 17:23 | Market at 4th | 76 | 4/24/14 17:30 | South Van Ness at Market | 66 | 567 | Subscriber | 94107 | |
260385 | 558 | 4/24/14 17:21 | Mechanics Plaza (Market at Battery) | 75 | 4/24/14 17:31 | 2nd at Townsend | 61 | 540 | Subscriber | 94501 | |
260384 | 521 | 4/24/14 17:21 | Mechanics Plaza (Market at Battery) | 75 | 4/24/14 17:30 | 2nd at Townsend | 61 | 581 | Subscriber | 94117 | |
260383 | 304 | 4/24/14 17:21 | 2nd at Townsend | 61 | 4/24/14 17:26 | Temporary Transbay Terminal (Howard at Beale) | 55 | 413 | Subscriber | 94606 | |
260382 | 211 | 4/24/14 17:21 | University and Emerson | 35 | 4/24/14 17:24 | Cowper at University | 37 | 28 | Customer | 94025 | |
260381 | 359 | 4/24/14 17:21 | Embarcadero at Vallejo | 48 | 4/24/14 17:27 | Steuart at Market | 74 | 603 | Subscriber | 94611 | |
260380 | 437 | 4/24/14 17:18 | San Pedro Square | 6 | 4/24/14 17:25 | San Jose Diridon Caltrain Station | 2 | 130 | Subscriber | 95377 | |
260379 | 379 | 4/24/14 17:16 | 2nd at Townsend | 61 | 4/24/14 17:23 | Steuart at Market | 74 | 456 | Subscriber | 94588 | |
260378 | 351 | 4/24/14 17:16 | Castro Street and El Camino Real | 32 | 4/24/14 17:22 | Mountain View Caltrain Station | 28 | 89 | Subscriber | 94123 | |
260377 | 618 | 4/24/14 17:15 | Beale at Market | 56 | 4/24/14 17:26 | San Francisco Caltrain 2 (330 Townsend) | 69 | 607 | Subscriber | 94403 | |
260376 | 273 | 4/24/14 17:15 | Santa Clara at Almaden | 4 | 4/24/14 17:20 | San Jose Diridon Caltrain Station | 2 | 142 | Subscriber | 94103 | |
260375 | 267 | 4/24/14 17:15 | 2nd at South Park | 64 | 4/24/14 17:19 | Temporary Transbay Terminal (Howard at Beale) | 55 | 222 | Subscriber | 94602 | |
260374 | 1020 | 4/24/14 17:14 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 17:31 | Powell Street BART | 39 | 455 | Customer | 1900 | |
260372 | 219 | 4/24/14 17:13 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 17:17 | San Francisco Caltrain (Townsend at 4th) | 70 | 618 | Subscriber | 94402 | |
260371 | 932 | 4/24/14 17:13 | Market at Sansome | 77 | 4/24/14 17:28 | San Francisco Caltrain 2 (330 Townsend) | 69 | 268 | Subscriber | 95051 | |
260370 | 902 | 4/24/14 17:13 | Townsend at 7th | 65 | 4/24/14 17:28 | Golden Gate at Polk | 59 | 326 | Subscriber | 94118 | |
260369 | 417 | 4/24/14 17:12 | Powell Street BART | 39 | 4/24/14 17:19 | San Francisco Caltrain 2 (330 Townsend) | 69 | 445 | Subscriber | 94085 | |
260368 | 599 | 4/24/14 17:11 | Santa Clara County Civic Center | 80 | 4/24/14 17:21 | Japantown | 9 | 39 | Subscriber | 95112 | |
260366 | 401 | 4/24/14 17:09 | San Francisco City Hall | 58 | 4/24/14 17:16 | Powell Street BART | 39 | 599 | Subscriber | 94707 | |
260363 | 1044 | 4/24/14 17:08 | Embarcadero at Vallejo | 48 | 4/24/14 17:26 | San Francisco Caltrain (Townsend at 4th) | 70 | 569 | Subscriber | 95060 | |
260362 | 637 | 4/24/14 17:06 | Townsend at 7th | 65 | 4/24/14 17:16 | 2nd at Folsom | 62 | 422 | Subscriber | 94903 | |
260361 | 918 | 4/24/14 17:08 | San Jose Diridon Caltrain Station | 2 | 4/24/14 17:23 | Japantown | 9 | 191 | Subscriber | 95112 | |
260360 | 228 | 4/24/14 17:08 | Post at Kearny | 47 | 4/24/14 17:11 | Harry Bridges Plaza (Ferry Building) | 50 | 553 | Subscriber | 94558 | |
260359 | 812 | 4/24/14 17:07 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 17:21 | Steuart at Market | 74 | 502 | Subscriber | 95608 | |
260358 | 346 | 4/24/14 17:07 | Market at Sansome | 77 | 4/24/14 17:13 | Steuart at Market | 74 | 572 | Subscriber | 94920 | |
260357 | 984 | 4/24/14 17:07 | San Jose Diridon Caltrain Station | 2 | 4/24/14 17:23 | Santa Clara at Almaden | 4 | 694 | Subscriber | 95110 | |
260356 | 201 | 4/24/14 17:07 | South Van Ness at Market | 66 | 4/24/14 17:10 | Civic Center BART (7th at Market) | 72 | 501 | Subscriber | 94703 | |
260355 | 687 | 4/24/14 17:07 | Howard at 2nd | 63 | 4/24/14 17:18 | San Francisco Caltrain (Townsend at 4th) | 70 | 277 | Subscriber | 60091 | |
260354 | 480 | 4/24/14 17:06 | 2nd at Townsend | 61 | 4/24/14 17:14 | Steuart at Market | 74 | 284 | Subscriber | 94901 | |
260353 | 847 | 4/24/14 17:06 | San Jose Diridon Caltrain Station | 2 | 4/24/14 17:20 | Japantown | 9 | 23 | Subscriber | 95112 | |
260352 | 580 | 4/24/14 17:06 | Embarcadero at Folsom | 51 | 4/24/14 17:16 | San Francisco Caltrain (Townsend at 4th) | 70 | 492 | Subscriber | 94404 | |
260351 | 276 | 4/24/14 17:06 | 2nd at South Park | 64 | 4/24/14 17:10 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 405 | Subscriber | 94602 | |
260350 | 271 | 4/24/14 17:06 | Post at Kearny | 47 | 4/24/14 17:10 | Harry Bridges Plaza (Ferry Building) | 50 | 498 | Subscriber | 94102 | |
260349 | 250 | 4/24/14 17:05 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 17:10 | San Francisco Caltrain 2 (330 Townsend) | 69 | 447 | Subscriber | 94087 | |
260348 | 643 | 4/24/14 17:05 | Beale at Market | 56 | 4/24/14 17:16 | San Francisco Caltrain (Townsend at 4th) | 70 | 300 | Subscriber | 94041 | |
260347 | 276 | 4/24/14 17:04 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 17:09 | San Francisco Caltrain 2 (330 Townsend) | 69 | 473 | Subscriber | 94086 | |
260346 | 156 | 4/24/14 17:04 | Davis at Jackson | 42 | 4/24/14 17:06 | Harry Bridges Plaza (Ferry Building) | 50 | 557 | Subscriber | 94105 | |
260345 | 334 | 4/24/14 17:03 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 17:09 | San Francisco Caltrain (Townsend at 4th) | 70 | 575 | Subscriber | 94002 | |
260344 | 483 | 4/24/14 17:03 | Howard at 2nd | 63 | 4/24/14 17:11 | Harry Bridges Plaza (Ferry Building) | 50 | 563 | Subscriber | 94920 | |
260343 | 605 | 4/24/14 17:02 | 2nd at Townsend | 61 | 4/24/14 17:13 | Steuart at Market | 74 | 371 | Subscriber | 94605 | |
260342 | 484 | 4/24/14 17:01 | Beale at Market | 56 | 4/24/14 17:09 | Embarcadero at Sansome | 60 | 332 | Subscriber | 94111 | |
260340 | 482 | 4/24/14 17:00 | Market at 4th | 76 | 4/24/14 17:08 | Harry Bridges Plaza (Ferry Building) | 50 | 625 | Subscriber | 94952 | |
260339 | 510 | 4/24/14 17:00 | 5th at Howard | 57 | 4/24/14 17:08 | Harry Bridges Plaza (Ferry Building) | 50 | 510 | Subscriber | 94925 | |
260338 | 250 | 4/24/14 17:00 | Golden Gate at Polk | 59 | 4/24/14 17:04 | Powell Street BART | 39 | 333 | Subscriber | 94109 | |
260337 | 531 | 4/24/14 17:00 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 17:09 | Harry Bridges Plaza (Ferry Building) | 50 | 490 | Subscriber | 94107 | |
260336 | 748 | 4/24/14 16:58 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 4/24/14 17:10 | South Van Ness at Market | 66 | 463 | Subscriber | 94112 | |
260335 | 536 | 4/24/14 16:57 | 5th at Howard | 57 | 4/24/14 17:06 | Harry Bridges Plaza (Ferry Building) | 50 | 385 | Subscriber | 94503 | |
260334 | 198 | 4/24/14 16:57 | San Francisco Caltrain 2 (330 Townsend) | 69 | 4/24/14 17:00 | Townsend at 7th | 65 | 278 | Subscriber | 94044 | |
260333 | 646 | 4/24/14 16:57 | Embarcadero at Vallejo | 48 | 4/24/14 17:07 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 453 | Subscriber | 94602 | |
260332 | 284 | 4/24/14 16:56 | Commercial at Montgomery | 45 | 4/24/14 17:00 | Beale at Market | 56 | 332 | Subscriber | 94133 | |
260331 | 513 | 4/24/14 16:55 | Embarcadero at Folsom | 51 | 4/24/14 17:04 | 5th at Howard | 57 | 337 | Subscriber | 94103 | |
260330 | 922 | 4/24/14 16:55 | Townsend at 7th | 65 | 4/24/14 17:11 | Market at Sansome | 77 | 558 | Subscriber | 94121 | |
260329 | 674 | 4/24/14 16:55 | Howard at 2nd | 63 | 4/24/14 17:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 386 | Subscriber | 95014 | |
260328 | 664 | 4/24/14 16:55 | Howard at 2nd | 63 | 4/24/14 17:06 | San Francisco Caltrain (Townsend at 4th) | 70 | 626 | Subscriber | 95014 | |
260327 | 837 | 4/24/14 16:55 | Commercial at Montgomery | 45 | 4/24/14 17:09 | San Francisco Caltrain (Townsend at 4th) | 70 | 602 | Subscriber | 94010 | |
260326 | 912 | 4/24/14 16:55 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 17:10 | Commercial at Montgomery | 45 | 568 | Subscriber | 94110 | |
260325 | 290 | 4/24/14 16:54 | San Antonio Shopping Center | 31 | 4/24/14 16:59 | San Antonio Caltrain Station | 29 | 646 | Subscriber | 94010 | |
260324 | 121 | 4/24/14 16:54 | Broadway St at Battery St | 82 | 4/24/14 16:56 | Clay at Battery | 41 | 505 | Subscriber | 94133 | |
260319 | 810 | 4/24/14 16:53 | MLK Library | 11 | 4/24/14 17:06 | MLK Library | 11 | 717 | Subscriber | 95035 | |
260318 | 917 | 4/24/14 16:52 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 17:08 | San Francisco Caltrain (Townsend at 4th) | 70 | 596 | Subscriber | 94403 | |
260317 | 921 | 4/24/14 16:52 | Harry Bridges Plaza (Ferry Building) | 50 | 4/24/14 17:08 | San Francisco Caltrain (Townsend at 4th) | 70 | 283 | Subscriber | 94070 | |
260316 | 449 | 4/24/14 16:52 | South Van Ness at Market | 66 | 4/24/14 16:59 | Townsend at 7th | 65 | 326 | Subscriber | 94107 | |
260315 | 576 | 4/24/14 16:51 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 17:01 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 507 | Subscriber | 94134 | |
260314 | 321 | 4/24/14 16:51 | Commercial at Montgomery | 45 | 4/24/14 16:56 | Temporary Transbay Terminal (Howard at Beale) | 55 | 359 | Subscriber | 94610 | |
260311 | 196 | 4/24/14 16:50 | Mountain View City Hall | 27 | 4/24/14 16:53 | Mountain View Caltrain Station | 28 | 304 | Subscriber | 94107 | |
260307 | 76 | 4/24/14 16:48 | Beale at Market | 56 | 4/24/14 16:49 | Temporary Transbay Terminal (Howard at Beale) | 55 | 434 | Subscriber | 94602 | |
260306 | 362 | 4/24/14 16:48 | San Pedro Square | 6 | 4/24/14 16:54 | San Jose Diridon Caltrain Station | 2 | 31 | Subscriber | 94002 | |
260305 | 784 | 4/24/14 16:48 | Embarcadero at Sansome | 60 | 4/24/14 17:01 | Steuart at Market | 74 | 444 | Customer | 94043 | |
260303 | 364 | 4/24/14 16:47 | Spear at Folsom | 49 | 4/24/14 16:53 | Howard at 2nd | 63 | 277 | Subscriber | 60091 | |
260302 | 194 | 4/24/14 16:47 | San Francisco Caltrain (Townsend at 4th) | 70 | 4/24/14 16:50 | 2nd at Townsend | 61 | 137 | Subscriber | 94107 | |
260301 | 160 | 4/24/14 16:47 | Townsend at 7th | 65 | 4/24/14 16:49 | San Francisco Caltrain (Townsend at 4th) | 70 | 455 | Subscriber | 94109 | |
260300 | 13537 | 4/24/14 16:46 | Steuart at Market | 74 | 4/24/14 20:31 | Steuart at Market | 74 | 556 | Customer | 94611 | |
260299 | 487 | 4/24/14 16:46 | Embarcadero at Folsom | 51 | 4/24/14 16:54 | Washington at Kearny | 46 | 467 | Subscriber | 94133 | |
260292 | 2133 | 4/24/14 16:40 | 2nd at South Park | 64 | 4/24/14 17:16 | 2nd at South Park | 64 | 419 | Subscriber | 95126 | |
260291 | 500 | 4/24/14 16:40 | Market at Sansome | 77 | 4/24/14 16:48 | San Francisco Caltrain (Townsend at 4th) | 70 | 458 | Subscriber | 94040 | |
260290 | 528 | 4/24/14 16:39 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 16:48 | San Francisco Caltrain 2 (330 Townsend) | 69 | 358 | Subscriber | 94025 | |
260289 | 912 | 4/24/14 16:38 | Embarcadero at Vallejo | 48 | 4/24/14 16:53 | San Francisco Caltrain (Townsend at 4th) | 70 | 546 | Subscriber | 94404 | |
260287 | 792 | 4/24/14 16:38 | Temporary Transbay Terminal (Howard at Beale) | 55 | 4/24/14 16:51 | San Francisco Caltrain (Townsend at 4th) | 70 | 502 | Subscriber | 94025 | |
260285 | 828 | 4/24/14 16:37 | Beale at Market | 56 | 4/24/14 16:51 | San Francisco Caltrain (Townsend at 4th) | 70 | 431 | Subscriber | 94401 | |
260284 | 622 | 4/24/14 16:35 | Golden Gate at Polk | 59 | 4/24/14 16:46 | Yerba Buena Center of the Arts (3rd @ Howard) | 68 | 583 | Subscriber | 94117 | |
260282 | 359 | 4/24/14 16:35 | Embarcadero at Vallejo | 48 | 4/24/14 16:41 | Steuart at Market | 74 | 493 | Subscriber | 94556 | |
260280 | 172 | 4/24/14 16:34 | Market at Sansome | 77 | 4/24/14 16:37 | Commercial at Montgomery | 45 | 324 | Subscriber | 94112 | |
260278 | 582 | 4/24/14 16:33 | Steuart at Market | 74 | 4/24/14 16:42 | San Francisco Caltrain 2 (330 Townsend) | 69 | 278 | Subscriber | 94403 |
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
table { | |
border-collapse: collapse; | |
} | |
th, td { | |
border: 1px solid black; | |
padding: 2px 4px; | |
} | |
th { | |
font-weight: bold; | |
background-color: #0A0A0A; | |
color: #ffffff; | |
} | |
tr.alt { | |
color: #000000; | |
background-color: #D6D6D6; | |
} | |
tr.selected { | |
background-color: brown; | |
color: #ffffff; | |
} | |
.left { | |
float: left; | |
} | |
.right { | |
float: right; | |
} | |
blockquote { | |
font: 12px/18px normal "Courier New", sans-serif; | |
padding-left: 70px; | |
padding-top: 2px; | |
padding-bottom: 2px; | |
background-color: #D6D6D6; | |
color: #000000; | |
border-top: 1px solid #ccc; | |
border-bottom: 1px solid #ccc; | |
margin: 5px; | |
background-position: middle left; | |
background-repeat: no-repeat; | |
} | |
blockquote div { | |
padding-right: 50px; | |
display: block; | |
background-repeat: no-repeat; | |
background-position: bottom right; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment