citibike_trips 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +38 -0
- data/Rakefile +9 -0
- data/citibike_trips.gemspec +26 -0
- data/lib/citibike_trips/station.rb +37 -0
- data/lib/citibike_trips/stations.rb +21 -0
- data/lib/citibike_trips/trip.rb +12 -0
- data/lib/citibike_trips/trips.rb +33 -0
- data/lib/citibike_trips/version.rb +3 -0
- data/lib/citibike_trips.rb +18 -0
- data/test/samples/stations.json +1 -0
- data/test/samples/trips1.html +749 -0
- data/test/samples/trips15.html +419 -0
- data/test/samples/trips2.html +659 -0
- data/test/test_station.rb +41 -0
- data/test/test_stations.rb +25 -0
- data/test/test_trip.rb +20 -0
- data/test/test_trips.rb +38 -0
- metadata +143 -0
@@ -0,0 +1,419 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
|
3
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
4
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
|
5
|
+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
6
|
+
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
7
|
+
<head>
|
8
|
+
<meta charset="utf-8" />
|
9
|
+
|
10
|
+
<!-- Set the viewport width to device width for mobile -->
|
11
|
+
<meta name="viewport" content="width=device-width" />
|
12
|
+
|
13
|
+
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
|
14
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
15
|
+
|
16
|
+
<title>Trips | Citi Bike</title>
|
17
|
+
|
18
|
+
<meta name="title" content="Citi Bike">
|
19
|
+
<meta name="description" content="Your bike sharing system in New York City">
|
20
|
+
|
21
|
+
<!-- Included CSS Files (Compressed) -->
|
22
|
+
<link href="/assets/css/foundation3/foundation.min.css?c=-62169966000" media="all" rel="stylesheet"/>
|
23
|
+
<link href="/assets/css/foundation3/app.css?c=-62169966000" media="all" rel="stylesheet"/>
|
24
|
+
<link href="/assets/css/fancybox/jquery.fancybox.css?c=-62169966000" media="all" rel="stylesheet"/>
|
25
|
+
<link href="/assets/css/fancybox/jquery.fancybox-buttons.css?c=-62169966000" media="all" rel="stylesheet"/>
|
26
|
+
<link href="/assets/css/fancybox/jquery.fancybox-thumbs.css?c=-62169966000" media="all" rel="stylesheet"/>
|
27
|
+
|
28
|
+
<!-- Bikeshare CSS Files -->
|
29
|
+
<link href="/assets/css/nyc/fonts.css?c=-62169966000" media="all" rel="stylesheet"/>
|
30
|
+
<link href="/assets/css/nyc/nyc.css?c=-62169966000" media="all" rel="stylesheet"/>
|
31
|
+
|
32
|
+
<!-- Font Awesome Icon set -->
|
33
|
+
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
|
34
|
+
|
35
|
+
<!-- Modernizr -->
|
36
|
+
<script src="/assets/js/foundation3/modernizr.foundation.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
37
|
+
|
38
|
+
<!-- Print -->
|
39
|
+
<link rel="stylesheet" href="/assets/css/nyc/print.css" type="text/css" media="print" />
|
40
|
+
|
41
|
+
|
42
|
+
<!-- IE Fix for HTML5 Tags -->
|
43
|
+
<!--[if lt IE 9]>
|
44
|
+
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
45
|
+
<![endif]-->
|
46
|
+
|
47
|
+
<!--[if gte IE 9]>
|
48
|
+
<style type="text/css"> .gradient { filter: none; } </style>
|
49
|
+
<![endif]-->
|
50
|
+
|
51
|
+
<!--[if IE]>
|
52
|
+
<style type="text/css">
|
53
|
+
.timer { display: none !important; }
|
54
|
+
div.caption { background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);zoom: 1; }
|
55
|
+
</style>
|
56
|
+
<![endif]-->
|
57
|
+
|
58
|
+
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
59
|
+
|
60
|
+
<!-- Fuel Blog -->
|
61
|
+
|
62
|
+
<!-- This style block and the following script block prevent Cross Frame Scripting -->
|
63
|
+
<style>
|
64
|
+
html{
|
65
|
+
display : none ;
|
66
|
+
visibility : hidden ;
|
67
|
+
}
|
68
|
+
</style>
|
69
|
+
<script>
|
70
|
+
if ( self == top ) {
|
71
|
+
document.documentElement.style.display = 'block' ;
|
72
|
+
document.documentElement.style.visibility = 'visible' ;
|
73
|
+
} else {
|
74
|
+
top.location=self.location;
|
75
|
+
}
|
76
|
+
</script>
|
77
|
+
|
78
|
+
</head>
|
79
|
+
|
80
|
+
<body class="<!--__FUEL_MARKER__0-->Body Class">
|
81
|
+
|
82
|
+
<!-- Header -->
|
83
|
+
<header id="header" class="gradient hide-for-small">
|
84
|
+
|
85
|
+
<div id="header-bg-right" class="gradient-header-blue gradient"></div>
|
86
|
+
|
87
|
+
<section id="header-content" class="row gradient">
|
88
|
+
|
89
|
+
<div class="two columns">
|
90
|
+
|
91
|
+
<!-- Logo -->
|
92
|
+
<a id="logo" href="https://www.citibikenyc.com/">
|
93
|
+
<img src="/assets/images/header-logo.png" alt="Citi Bike - Operated by NYC Bike Share" />
|
94
|
+
</a>
|
95
|
+
|
96
|
+
</div>
|
97
|
+
|
98
|
+
<div class="ten columns">
|
99
|
+
|
100
|
+
<div class="row">
|
101
|
+
<div class="twelve columns">
|
102
|
+
|
103
|
+
<!-- Secondary Navigation -->
|
104
|
+
<div id="subnav">
|
105
|
+
|
106
|
+
<nav id="secondary" class="horizontal">
|
107
|
+
|
108
|
+
<ul>
|
109
|
+
<li class="first"><a href="https://www.citibikenyc.com/store" title="Gift Store">Gift Store</a></li>
|
110
|
+
<li><a href="https://www.citibikenyc.com/about" title="About">About</a></li>
|
111
|
+
<li><a href="https://www.citibikenyc.com/faq" title="FAQ">FAQ</a></li>
|
112
|
+
<li><a href="https://www.citibikenyc.com/get-the-app" title="Get The App">Get The App</a></li>
|
113
|
+
<li><a href="https://www.citibikenyc.com/meet-the-bike" title="Meet The Bike">Meet The Bike</a></li>
|
114
|
+
<li><a href="http://citibikeblog.tumblr.com/"target="_blank" title="Blog">Blog</a></li>
|
115
|
+
<li><a href="https://www.citibikenyc.com/events" title="Events">Events</a></li>
|
116
|
+
<li><a href="https://www.citibikenyc.com/jobs" title="Jobs">Jobs</a></li>
|
117
|
+
<li><a href="https://www.citibikenyc.com/system-data" title="System Data">System Data</a></li>
|
118
|
+
<li class="last"><a href="https://www.citibikenyc.com/contact" title="Contact">Contact</a></li>
|
119
|
+
</ul>
|
120
|
+
|
121
|
+
</nav>
|
122
|
+
|
123
|
+
<nav id="signup-member" class="horizontal">
|
124
|
+
<ul>
|
125
|
+
<li class="active"><a href="https://www.citibikenyc.com/member/profile">Profile</a></li>
|
126
|
+
<li><a href="https://www.citibikenyc.com/login/logout">Logout</a></li>
|
127
|
+
|
128
|
+
</ul>
|
129
|
+
</nav>
|
130
|
+
|
131
|
+
</div>
|
132
|
+
|
133
|
+
</div>
|
134
|
+
</div>
|
135
|
+
|
136
|
+
<div class="row">
|
137
|
+
<div class="twelve columns">
|
138
|
+
|
139
|
+
<!-- Main Navigation -->
|
140
|
+
<div id="mainnav">
|
141
|
+
|
142
|
+
<nav id="primary" class="horizontal margin-right--4 margin-top--1">
|
143
|
+
|
144
|
+
<ul>
|
145
|
+
<li class="first"><a href="https://www.citibikenyc.com/how-it-works" title="How It Works">How It Works</a></li>
|
146
|
+
<li><a href="https://www.citibikenyc.com/stations" title="Station Map">Station Map</a></li>
|
147
|
+
<li><a href="https://www.citibikenyc.com/pricing" title="Pricing">Pricing</a></li>
|
148
|
+
<li><a href="https://www.citibikenyc.com/riding-tips" title="Riding Tips">Riding Tips</a></li>
|
149
|
+
<li class="last"><a href="https://www.citibikenyc.com/resources" title="Resources">Resources</a></li>
|
150
|
+
</ul>
|
151
|
+
|
152
|
+
</nav>
|
153
|
+
|
154
|
+
<!-- Social Media -->
|
155
|
+
<nav id="social" class="horizontal">
|
156
|
+
<ul>
|
157
|
+
<li>
|
158
|
+
<a id="facebook" href="http://facebook.com/CitiBikeNYC" target="_blank" title="Find Us on Facebook"></a>
|
159
|
+
</li>
|
160
|
+
<li>
|
161
|
+
<a id="twitter" href="http://twitter.com/#!/CitiBikeNYC" target="_blank" title="Follow Us On Twitter!"></a>
|
162
|
+
</li>
|
163
|
+
</ul>
|
164
|
+
</nav>
|
165
|
+
|
166
|
+
</div>
|
167
|
+
|
168
|
+
</div>
|
169
|
+
</div>
|
170
|
+
|
171
|
+
</div>
|
172
|
+
|
173
|
+
</section>
|
174
|
+
|
175
|
+
</header>
|
176
|
+
|
177
|
+
<!-- Header (Small) -->
|
178
|
+
<header id="header-small" class="show-for-small padding-10" style="background: #005DAB; ">
|
179
|
+
<div class="row margin-bottom-10">
|
180
|
+
<div class="gutter-5">
|
181
|
+
<div class="mobile-one column">
|
182
|
+
<div class="gutter">
|
183
|
+
<a href="https://www.citibikenyc.com/">
|
184
|
+
<img src="/assets/images/citibike-logo.png" alt="Citi Bike - Operated by NYC Bike Share" />
|
185
|
+
</a>
|
186
|
+
<ul class="inline" style="position:relative; top:5px; left:15px; ">
|
187
|
+
<li>
|
188
|
+
<a id="facebook" href="http://facebook.com/CitiBikeNYC" target="_blank" title="Find Us on Facebook">
|
189
|
+
<img src="/assets/images/apps/facebook.png" />
|
190
|
+
</a>
|
191
|
+
</li>
|
192
|
+
<li>
|
193
|
+
<a id="twitter" href="http://twitter.com/#!/CitiBikeNYC" target="_blank" title="Follow Us On Twitter!">
|
194
|
+
<img src="/assets/images/apps/twitter.png" />
|
195
|
+
</a>
|
196
|
+
</li>
|
197
|
+
</ul>
|
198
|
+
</div>
|
199
|
+
</div>
|
200
|
+
<div class="mobile-three column">
|
201
|
+
<div class="gutter">
|
202
|
+
<nav>
|
203
|
+
<ul class="button-group right">
|
204
|
+
<li class="active"><a class="tiny button radius" href="https://www.citibikenyc.com/member/profile">Profile</a></li>
|
205
|
+
<li><a class="tiny button" href="https://www.citibikenyc.com/login/logout">Logout</a></li>
|
206
|
+
|
207
|
+
<li id="join" ><a data-click-tracker="nav-mobile-signup" class="tiny button radius" href="https://www.citibikenyc.com/signup">Sign Up</a></li>
|
208
|
+
</ul>
|
209
|
+
</nav>
|
210
|
+
</div>
|
211
|
+
</div>
|
212
|
+
</div>
|
213
|
+
</div>
|
214
|
+
<div class="row">
|
215
|
+
<div class="gutter-10">
|
216
|
+
<div class="mobile-two columns">
|
217
|
+
<div class="gutter">
|
218
|
+
<nav id="primary-small">
|
219
|
+
|
220
|
+
<ul>
|
221
|
+
<li class="first medium button"><a href="https://www.citibikenyc.com/how-it-works" title="How It Works">How It Works</a></li>
|
222
|
+
<li class="medium button"><a href="https://www.citibikenyc.com/stations" title="Station Map">Station Map</a></li>
|
223
|
+
<li class="medium button"><a href="https://www.citibikenyc.com/pricing" title="Pricing">Pricing</a></li>
|
224
|
+
<li class="medium button"><a href="https://www.citibikenyc.com/riding-tips" title="Riding Tips">Riding Tips</a></li>
|
225
|
+
<li class="last medium button"><a href="https://www.citibikenyc.com/resources" title="Resources">Resources</a></li>
|
226
|
+
</ul>
|
227
|
+
|
228
|
+
</nav>
|
229
|
+
</div>
|
230
|
+
</div>
|
231
|
+
<div class="mobile-two columns">
|
232
|
+
<div class="gutter">
|
233
|
+
<nav id="secondary-small">
|
234
|
+
|
235
|
+
<ul>
|
236
|
+
<li class="first tiny button"><a href="https://www.citibikenyc.com/store" title="Gift Store">Gift Store</a></li>
|
237
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/about" title="About">About</a></li>
|
238
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/faq" title="FAQ">FAQ</a></li>
|
239
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/get-the-app" title="Get The App">Get The App</a></li>
|
240
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/meet-the-bike" title="Meet The Bike">Meet The Bike</a></li>
|
241
|
+
<li class="tiny button"><a href="http://citibikeblog.tumblr.com/"target="_blank" title="Blog">Blog</a></li>
|
242
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/events" title="Events">Events</a></li>
|
243
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/jobs" title="Jobs">Jobs</a></li>
|
244
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/system-data" title="System Data">System Data</a></li>
|
245
|
+
<li class="last tiny button"><a href="https://www.citibikenyc.com/contact" title="Contact">Contact</a></li>
|
246
|
+
</ul>
|
247
|
+
|
248
|
+
</nav>
|
249
|
+
</div>
|
250
|
+
</div>
|
251
|
+
</div>
|
252
|
+
</div>
|
253
|
+
</header> <section class="row padding-top-20">
|
254
|
+
<div class="twelve columns centered text-center">
|
255
|
+
<nav id="member" class="horizontal margin-bottom-20">
|
256
|
+
<ul class="button-group">
|
257
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/profile">Profile</a></li>
|
258
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/billing">Billing</a></li>
|
259
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/payments">Payments</a></li>
|
260
|
+
<li class="active"><a class="button" href="https://www.citibikenyc.com/member/trips">Trips</a></li>
|
261
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/activate_bike_key">Bike Key</a></li>
|
262
|
+
</ul>
|
263
|
+
</nav>
|
264
|
+
</div>
|
265
|
+
</section>
|
266
|
+
<section id="content" class="row margin-bottom-30">
|
267
|
+
<div class="twelve columns centered">
|
268
|
+
|
269
|
+
|
270
|
+
<!-- Initialize Pagination -->
|
271
|
+
|
272
|
+
<div class="row">
|
273
|
+
<div class="seven mobile-two columns"><h2>May 28, 2013 - May 31, 2013</h2></div>
|
274
|
+
<div class="five mobile-two columns text-right"><h2>Trips: 4 (306 Total)</h1></div>
|
275
|
+
</div>
|
276
|
+
|
277
|
+
<!-- Trips Table -->
|
278
|
+
<table id="tripTable">
|
279
|
+
<thead>
|
280
|
+
<tr>
|
281
|
+
<th>Trip ID</th>
|
282
|
+
<th>Start Station</th>
|
283
|
+
<th>Start Time</th>
|
284
|
+
<th>End Station</th>
|
285
|
+
<th>End Time</th>
|
286
|
+
<th>Duration</th>
|
287
|
+
</tr>
|
288
|
+
</thead>
|
289
|
+
|
290
|
+
<tbody>
|
291
|
+
<!-- To use the data attributes below, check out the pages below.
|
292
|
+
Also please note that the hyphenated attribute name becomes camel-cased: data-start-station-id to startStationId:
|
293
|
+
- http://api.jquery.com/data/#data-html5
|
294
|
+
- http://ejohn.org/blog/html-5-data-attributes/
|
295
|
+
- http://www.w3.org/html/wg/drafts/html/master/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes
|
296
|
+
-->
|
297
|
+
|
298
|
+
|
299
|
+
<tr class="trip" id="trip-93749"
|
300
|
+
data-start-station-id="366"
|
301
|
+
data-start-timestamp="1370040435"
|
302
|
+
data-end-station-id="357"
|
303
|
+
data-end-timestamp="1370109802"
|
304
|
+
data-duration-seconds="69367" >
|
305
|
+
<td>93749</td>
|
306
|
+
<td><i>Trip Completed</i></td>
|
307
|
+
<td>5/31/13 6:47:15 PM</td>
|
308
|
+
<td>E 11 St & Broadway</td>
|
309
|
+
<td>6/1/13 2:03:22 PM</td>
|
310
|
+
<td>19h 16m 7s</td>
|
311
|
+
</tr>
|
312
|
+
|
313
|
+
|
314
|
+
<tr class="trip" id="trip-85475"
|
315
|
+
data-start-station-id="279"
|
316
|
+
data-start-timestamp="1370021724"
|
317
|
+
data-end-station-id="457"
|
318
|
+
data-end-timestamp="1370021940"
|
319
|
+
data-duration-seconds="216" >
|
320
|
+
<td>85475</td>
|
321
|
+
<td><i>Trip Completed</i></td>
|
322
|
+
<td>5/31/13 1:35:24 PM</td>
|
323
|
+
<td>6 Ave & Canal St</td>
|
324
|
+
<td>5/31/13 1:39:00 PM</td>
|
325
|
+
<td>3m 36s</td>
|
326
|
+
</tr>
|
327
|
+
|
328
|
+
|
329
|
+
<tr class="trip" id="trip-81952"
|
330
|
+
data-start-station-id="318"
|
331
|
+
data-start-timestamp="1370003292"
|
332
|
+
data-end-station-id="318"
|
333
|
+
data-end-timestamp=""
|
334
|
+
data-duration-seconds="1" >
|
335
|
+
<td>81952</td>
|
336
|
+
<td>E 43 St & Vanderbilt Ave</td>
|
337
|
+
<td>5/31/13 8:28:12 AM</td>
|
338
|
+
<td><i>Trip Completed</i></td>
|
339
|
+
<td><i>Trip Completed</i></td>
|
340
|
+
<td></td>
|
341
|
+
</tr>
|
342
|
+
|
343
|
+
|
344
|
+
<tr class="trip" id="trip-62652"
|
345
|
+
data-start-station-id="457"
|
346
|
+
data-start-timestamp="1369869537"
|
347
|
+
data-end-station-id="508"
|
348
|
+
data-end-timestamp="1369871289"
|
349
|
+
data-duration-seconds="1752" >
|
350
|
+
<td>62652</td>
|
351
|
+
<td>6 Ave & Canal St</td>
|
352
|
+
<td>5/29/13 7:18:57 PM</td>
|
353
|
+
<td>W 46 St & 11 Ave</td>
|
354
|
+
<td>5/29/13 7:48:09 PM</td>
|
355
|
+
<td>29m 12s</td>
|
356
|
+
</tr>
|
357
|
+
|
358
|
+
|
359
|
+
</tbody>
|
360
|
+
</table>
|
361
|
+
<!-- Pagination -->
|
362
|
+
<nav class="pagination">Page: <a href="https://www.citibikenyc.com/member/trips" data-ci-pagination-page="1">‹ First</a> <a href="https://www.citibikenyc.com/member/trips/14" data-ci-pagination-page="14"><</a> <a href="https://www.citibikenyc.com/member/trips/13" data-ci-pagination-page="13">13</a> <a href="https://www.citibikenyc.com/member/trips/14" data-ci-pagination-page="14">14</a> <strong>15</strong></nav>
|
363
|
+
|
364
|
+
|
365
|
+
|
366
|
+
</div>
|
367
|
+
</section>
|
368
|
+
|
369
|
+
<!-- Footer -->
|
370
|
+
<footer id="footer" class="row">
|
371
|
+
|
372
|
+
<hr id="divider" />
|
373
|
+
|
374
|
+
<section id="copyright" class="eight columns centered">
|
375
|
+
<!--__FUEL_MARKER__1--><p>Use of this Website constitutes acceptance of the website <a href="/assets/pdf/terms-of-use.pdf">Terms of Use Agreement</a> and <a href="https://www.citibikenyc.com/privacy">Privacy Policy</a>.
|
376
|
+
<p>
|
377
|
+
© Copyright 2013 - 2014 NYC Bike Share, LLC. All rights reserved.<br />
|
378
|
+
Citi, Citi with Arc Design and Citi Bike are registered service marks of Citigroup, Inc
|
379
|
+
</p>
|
380
|
+
</section>
|
381
|
+
|
382
|
+
</footer>
|
383
|
+
|
384
|
+
<!-- Miscellanous content like modal dialogs -->
|
385
|
+
|
386
|
+
<!-- Current Environment: production -->
|
387
|
+
|
388
|
+
<!-- Grab Google CDN's jQuery. fall back to local if necessary -->
|
389
|
+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
|
390
|
+
<script>window.jQuery || document.write("<script src='/assets/js/foundation3/jquery.js'>\x3C/script>")</script>
|
391
|
+
|
392
|
+
<!-- Foundation Javascript -->
|
393
|
+
<script src="/assets/js/foundation3/foundation.min.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
394
|
+
<script src="/assets/js/foundation3/app.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
395
|
+
|
396
|
+
<!-- jQuery Plugins that only load where appropriate -->
|
397
|
+
|
398
|
+
<!-- Auto-Load any Javascript specific to a page by its URL only if it exists -->
|
399
|
+
|
400
|
+
<!-- Load the signup JS if we're on the renewal page -->
|
401
|
+
|
402
|
+
|
403
|
+
<!-- Final custom JS Calls (keep this below all other javascript files) -->
|
404
|
+
<script src="/assets/js/css_browser_selector.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
405
|
+
<script src="/assets/js/jquery.cookie.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
406
|
+
<script src="/assets/js/jquery.scrollTo.min.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
407
|
+
<script src="/assets/js/jquery.localScroll.min.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
408
|
+
<script src="/assets/js/nyc.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
409
|
+
<script src="/assets/js/fancybox/jquery.fancybox.pack.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
410
|
+
<script src="/assets/js/fancybox/helpers/jquery.fancybox-buttons.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
411
|
+
<script src="/assets/js/fancybox/helpers/jquery.fancybox-media.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
412
|
+
<script src="/assets/js/fancybox/helpers/jquery.fancybox-thumbs.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
413
|
+
|
414
|
+
<!-- Analytics -->
|
415
|
+
<script src="/assets/js/google-analytics.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
416
|
+
|
417
|
+
|
418
|
+
</body>
|
419
|
+
</html>
|
@@ -0,0 +1,659 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
|
3
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
4
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
|
5
|
+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
6
|
+
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
7
|
+
<head>
|
8
|
+
<meta charset="utf-8" />
|
9
|
+
|
10
|
+
<!-- Set the viewport width to device width for mobile -->
|
11
|
+
<meta name="viewport" content="width=device-width" />
|
12
|
+
|
13
|
+
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
|
14
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
15
|
+
|
16
|
+
<title>Trips | Citi Bike</title>
|
17
|
+
|
18
|
+
<meta name="title" content="Citi Bike">
|
19
|
+
<meta name="description" content="Your bike sharing system in New York City">
|
20
|
+
|
21
|
+
<!-- Included CSS Files (Compressed) -->
|
22
|
+
<link href="/assets/css/foundation3/foundation.min.css?c=-62169966000" media="all" rel="stylesheet"/>
|
23
|
+
<link href="/assets/css/foundation3/app.css?c=-62169966000" media="all" rel="stylesheet"/>
|
24
|
+
<link href="/assets/css/fancybox/jquery.fancybox.css?c=-62169966000" media="all" rel="stylesheet"/>
|
25
|
+
<link href="/assets/css/fancybox/jquery.fancybox-buttons.css?c=-62169966000" media="all" rel="stylesheet"/>
|
26
|
+
<link href="/assets/css/fancybox/jquery.fancybox-thumbs.css?c=-62169966000" media="all" rel="stylesheet"/>
|
27
|
+
|
28
|
+
<!-- Bikeshare CSS Files -->
|
29
|
+
<link href="/assets/css/nyc/fonts.css?c=-62169966000" media="all" rel="stylesheet"/>
|
30
|
+
<link href="/assets/css/nyc/nyc.css?c=-62169966000" media="all" rel="stylesheet"/>
|
31
|
+
|
32
|
+
<!-- Font Awesome Icon set -->
|
33
|
+
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
|
34
|
+
|
35
|
+
<!-- Modernizr -->
|
36
|
+
<script src="/assets/js/foundation3/modernizr.foundation.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
37
|
+
|
38
|
+
<!-- Print -->
|
39
|
+
<link rel="stylesheet" href="/assets/css/nyc/print.css" type="text/css" media="print" />
|
40
|
+
|
41
|
+
|
42
|
+
<!-- IE Fix for HTML5 Tags -->
|
43
|
+
<!--[if lt IE 9]>
|
44
|
+
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
45
|
+
<![endif]-->
|
46
|
+
|
47
|
+
<!--[if gte IE 9]>
|
48
|
+
<style type="text/css"> .gradient { filter: none; } </style>
|
49
|
+
<![endif]-->
|
50
|
+
|
51
|
+
<!--[if IE]>
|
52
|
+
<style type="text/css">
|
53
|
+
.timer { display: none !important; }
|
54
|
+
div.caption { background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);zoom: 1; }
|
55
|
+
</style>
|
56
|
+
<![endif]-->
|
57
|
+
|
58
|
+
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
59
|
+
|
60
|
+
<!-- Fuel Blog -->
|
61
|
+
|
62
|
+
<!-- This style block and the following script block prevent Cross Frame Scripting -->
|
63
|
+
<style>
|
64
|
+
html{
|
65
|
+
display : none ;
|
66
|
+
visibility : hidden ;
|
67
|
+
}
|
68
|
+
</style>
|
69
|
+
<script>
|
70
|
+
if ( self == top ) {
|
71
|
+
document.documentElement.style.display = 'block' ;
|
72
|
+
document.documentElement.style.visibility = 'visible' ;
|
73
|
+
} else {
|
74
|
+
top.location=self.location;
|
75
|
+
}
|
76
|
+
</script>
|
77
|
+
|
78
|
+
</head>
|
79
|
+
|
80
|
+
<body class="<!--__FUEL_MARKER__0-->Body Class">
|
81
|
+
|
82
|
+
<!-- Header -->
|
83
|
+
<header id="header" class="gradient hide-for-small">
|
84
|
+
|
85
|
+
<div id="header-bg-right" class="gradient-header-blue gradient"></div>
|
86
|
+
|
87
|
+
<section id="header-content" class="row gradient">
|
88
|
+
|
89
|
+
<div class="two columns">
|
90
|
+
|
91
|
+
<!-- Logo -->
|
92
|
+
<a id="logo" href="https://www.citibikenyc.com/">
|
93
|
+
<img src="/assets/images/header-logo.png" alt="Citi Bike - Operated by NYC Bike Share" />
|
94
|
+
</a>
|
95
|
+
|
96
|
+
</div>
|
97
|
+
|
98
|
+
<div class="ten columns">
|
99
|
+
|
100
|
+
<div class="row">
|
101
|
+
<div class="twelve columns">
|
102
|
+
|
103
|
+
<!-- Secondary Navigation -->
|
104
|
+
<div id="subnav">
|
105
|
+
|
106
|
+
<nav id="secondary" class="horizontal">
|
107
|
+
|
108
|
+
<ul>
|
109
|
+
<li class="first"><a href="https://www.citibikenyc.com/store" title="Gift Store">Gift Store</a></li>
|
110
|
+
<li><a href="https://www.citibikenyc.com/about" title="About">About</a></li>
|
111
|
+
<li><a href="https://www.citibikenyc.com/faq" title="FAQ">FAQ</a></li>
|
112
|
+
<li><a href="https://www.citibikenyc.com/get-the-app" title="Get The App">Get The App</a></li>
|
113
|
+
<li><a href="https://www.citibikenyc.com/meet-the-bike" title="Meet The Bike">Meet The Bike</a></li>
|
114
|
+
<li><a href="http://citibikeblog.tumblr.com/"target="_blank" title="Blog">Blog</a></li>
|
115
|
+
<li><a href="https://www.citibikenyc.com/events" title="Events">Events</a></li>
|
116
|
+
<li><a href="https://www.citibikenyc.com/jobs" title="Jobs">Jobs</a></li>
|
117
|
+
<li><a href="https://www.citibikenyc.com/system-data" title="System Data">System Data</a></li>
|
118
|
+
<li class="last"><a href="https://www.citibikenyc.com/contact" title="Contact">Contact</a></li>
|
119
|
+
</ul>
|
120
|
+
|
121
|
+
</nav>
|
122
|
+
|
123
|
+
<nav id="signup-member" class="horizontal">
|
124
|
+
<ul>
|
125
|
+
<li class="active"><a href="https://www.citibikenyc.com/member/profile">Profile</a></li>
|
126
|
+
<li><a href="https://www.citibikenyc.com/login/logout">Logout</a></li>
|
127
|
+
|
128
|
+
</ul>
|
129
|
+
</nav>
|
130
|
+
|
131
|
+
</div>
|
132
|
+
|
133
|
+
</div>
|
134
|
+
</div>
|
135
|
+
|
136
|
+
<div class="row">
|
137
|
+
<div class="twelve columns">
|
138
|
+
|
139
|
+
<!-- Main Navigation -->
|
140
|
+
<div id="mainnav">
|
141
|
+
|
142
|
+
<nav id="primary" class="horizontal margin-right--4 margin-top--1">
|
143
|
+
|
144
|
+
<ul>
|
145
|
+
<li class="first"><a href="https://www.citibikenyc.com/how-it-works" title="How It Works">How It Works</a></li>
|
146
|
+
<li><a href="https://www.citibikenyc.com/stations" title="Station Map">Station Map</a></li>
|
147
|
+
<li><a href="https://www.citibikenyc.com/pricing" title="Pricing">Pricing</a></li>
|
148
|
+
<li><a href="https://www.citibikenyc.com/riding-tips" title="Riding Tips">Riding Tips</a></li>
|
149
|
+
<li class="last"><a href="https://www.citibikenyc.com/resources" title="Resources">Resources</a></li>
|
150
|
+
</ul>
|
151
|
+
|
152
|
+
</nav>
|
153
|
+
|
154
|
+
<!-- Social Media -->
|
155
|
+
<nav id="social" class="horizontal">
|
156
|
+
<ul>
|
157
|
+
<li>
|
158
|
+
<a id="facebook" href="http://facebook.com/CitiBikeNYC" target="_blank" title="Find Us on Facebook"></a>
|
159
|
+
</li>
|
160
|
+
<li>
|
161
|
+
<a id="twitter" href="http://twitter.com/#!/CitiBikeNYC" target="_blank" title="Follow Us On Twitter!"></a>
|
162
|
+
</li>
|
163
|
+
</ul>
|
164
|
+
</nav>
|
165
|
+
|
166
|
+
</div>
|
167
|
+
|
168
|
+
</div>
|
169
|
+
</div>
|
170
|
+
|
171
|
+
</div>
|
172
|
+
|
173
|
+
</section>
|
174
|
+
|
175
|
+
</header>
|
176
|
+
|
177
|
+
<!-- Header (Small) -->
|
178
|
+
<header id="header-small" class="show-for-small padding-10" style="background: #005DAB; ">
|
179
|
+
<div class="row margin-bottom-10">
|
180
|
+
<div class="gutter-5">
|
181
|
+
<div class="mobile-one column">
|
182
|
+
<div class="gutter">
|
183
|
+
<a href="https://www.citibikenyc.com/">
|
184
|
+
<img src="/assets/images/citibike-logo.png" alt="Citi Bike - Operated by NYC Bike Share" />
|
185
|
+
</a>
|
186
|
+
<ul class="inline" style="position:relative; top:5px; left:15px; ">
|
187
|
+
<li>
|
188
|
+
<a id="facebook" href="http://facebook.com/CitiBikeNYC" target="_blank" title="Find Us on Facebook">
|
189
|
+
<img src="/assets/images/apps/facebook.png" />
|
190
|
+
</a>
|
191
|
+
</li>
|
192
|
+
<li>
|
193
|
+
<a id="twitter" href="http://twitter.com/#!/CitiBikeNYC" target="_blank" title="Follow Us On Twitter!">
|
194
|
+
<img src="/assets/images/apps/twitter.png" />
|
195
|
+
</a>
|
196
|
+
</li>
|
197
|
+
</ul>
|
198
|
+
</div>
|
199
|
+
</div>
|
200
|
+
<div class="mobile-three column">
|
201
|
+
<div class="gutter">
|
202
|
+
<nav>
|
203
|
+
<ul class="button-group right">
|
204
|
+
<li class="active"><a class="tiny button radius" href="https://www.citibikenyc.com/member/profile">Profile</a></li>
|
205
|
+
<li><a class="tiny button" href="https://www.citibikenyc.com/login/logout">Logout</a></li>
|
206
|
+
|
207
|
+
<li id="join" ><a data-click-tracker="nav-mobile-signup" class="tiny button radius" href="https://www.citibikenyc.com/signup">Sign Up</a></li>
|
208
|
+
</ul>
|
209
|
+
</nav>
|
210
|
+
</div>
|
211
|
+
</div>
|
212
|
+
</div>
|
213
|
+
</div>
|
214
|
+
<div class="row">
|
215
|
+
<div class="gutter-10">
|
216
|
+
<div class="mobile-two columns">
|
217
|
+
<div class="gutter">
|
218
|
+
<nav id="primary-small">
|
219
|
+
|
220
|
+
<ul>
|
221
|
+
<li class="first medium button"><a href="https://www.citibikenyc.com/how-it-works" title="How It Works">How It Works</a></li>
|
222
|
+
<li class="medium button"><a href="https://www.citibikenyc.com/stations" title="Station Map">Station Map</a></li>
|
223
|
+
<li class="medium button"><a href="https://www.citibikenyc.com/pricing" title="Pricing">Pricing</a></li>
|
224
|
+
<li class="medium button"><a href="https://www.citibikenyc.com/riding-tips" title="Riding Tips">Riding Tips</a></li>
|
225
|
+
<li class="last medium button"><a href="https://www.citibikenyc.com/resources" title="Resources">Resources</a></li>
|
226
|
+
</ul>
|
227
|
+
|
228
|
+
</nav>
|
229
|
+
</div>
|
230
|
+
</div>
|
231
|
+
<div class="mobile-two columns">
|
232
|
+
<div class="gutter">
|
233
|
+
<nav id="secondary-small">
|
234
|
+
|
235
|
+
<ul>
|
236
|
+
<li class="first tiny button"><a href="https://www.citibikenyc.com/store" title="Gift Store">Gift Store</a></li>
|
237
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/about" title="About">About</a></li>
|
238
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/faq" title="FAQ">FAQ</a></li>
|
239
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/get-the-app" title="Get The App">Get The App</a></li>
|
240
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/meet-the-bike" title="Meet The Bike">Meet The Bike</a></li>
|
241
|
+
<li class="tiny button"><a href="http://citibikeblog.tumblr.com/"target="_blank" title="Blog">Blog</a></li>
|
242
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/events" title="Events">Events</a></li>
|
243
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/jobs" title="Jobs">Jobs</a></li>
|
244
|
+
<li class="tiny button"><a href="https://www.citibikenyc.com/system-data" title="System Data">System Data</a></li>
|
245
|
+
<li class="last tiny button"><a href="https://www.citibikenyc.com/contact" title="Contact">Contact</a></li>
|
246
|
+
</ul>
|
247
|
+
|
248
|
+
</nav>
|
249
|
+
</div>
|
250
|
+
</div>
|
251
|
+
</div>
|
252
|
+
</div>
|
253
|
+
</header> <section class="row padding-top-20">
|
254
|
+
<div class="twelve columns centered text-center">
|
255
|
+
<nav id="member" class="horizontal margin-bottom-20">
|
256
|
+
<ul class="button-group">
|
257
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/profile">Profile</a></li>
|
258
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/billing">Billing</a></li>
|
259
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/payments">Payments</a></li>
|
260
|
+
<li class="active"><a class="button" href="https://www.citibikenyc.com/member/trips">Trips</a></li>
|
261
|
+
<li ><a class="button" href="https://www.citibikenyc.com/member/activate_bike_key">Bike Key</a></li>
|
262
|
+
</ul>
|
263
|
+
</nav>
|
264
|
+
</div>
|
265
|
+
</section>
|
266
|
+
<section id="content" class="row margin-bottom-30">
|
267
|
+
<div class="twelve columns centered">
|
268
|
+
|
269
|
+
|
270
|
+
<!-- Initialize Pagination -->
|
271
|
+
|
272
|
+
<div class="row">
|
273
|
+
<div class="seven mobile-two columns"><h2>June 01, 2014 - June 30, 2014</h2></div>
|
274
|
+
<div class="five mobile-two columns text-right"><h2>Trips: 20 (306 Total)</h1></div>
|
275
|
+
</div>
|
276
|
+
|
277
|
+
<!-- Trips Table -->
|
278
|
+
<table id="tripTable">
|
279
|
+
<thead>
|
280
|
+
<tr>
|
281
|
+
<th>Trip ID</th>
|
282
|
+
<th>Start Station</th>
|
283
|
+
<th>Start Time</th>
|
284
|
+
<th>End Station</th>
|
285
|
+
<th>End Time</th>
|
286
|
+
<th>Duration</th>
|
287
|
+
</tr>
|
288
|
+
</thead>
|
289
|
+
|
290
|
+
<tbody>
|
291
|
+
<!-- To use the data attributes below, check out the pages below.
|
292
|
+
Also please note that the hyphenated attribute name becomes camel-cased: data-start-station-id to startStationId:
|
293
|
+
- http://api.jquery.com/data/#data-html5
|
294
|
+
- http://ejohn.org/blog/html-5-data-attributes/
|
295
|
+
- http://www.w3.org/html/wg/drafts/html/master/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes
|
296
|
+
-->
|
297
|
+
|
298
|
+
|
299
|
+
<tr class="trip" id="trip-11884918"
|
300
|
+
data-start-station-id="517"
|
301
|
+
data-start-timestamp="1404129991"
|
302
|
+
data-end-station-id="377"
|
303
|
+
data-end-timestamp="1404131057"
|
304
|
+
data-duration-seconds="1066" >
|
305
|
+
<td>11884918</td>
|
306
|
+
<td>E 41 St & Madison Ave</td>
|
307
|
+
<td>6/30/14 8:06:31 AM</td>
|
308
|
+
<td>6 Ave & Canal St</td>
|
309
|
+
<td>6/30/14 8:24:17 AM</td>
|
310
|
+
<td>17m 46s</td>
|
311
|
+
</tr>
|
312
|
+
|
313
|
+
|
314
|
+
<tr class="trip" id="trip-11793749"
|
315
|
+
data-start-station-id="128"
|
316
|
+
data-start-timestamp="1403905784"
|
317
|
+
data-end-station-id="517"
|
318
|
+
data-end-timestamp="1403906783"
|
319
|
+
data-duration-seconds="999" >
|
320
|
+
<td>11793749</td>
|
321
|
+
<td>MacDougal St & Prince St</td>
|
322
|
+
<td>6/27/14 5:49:44 PM</td>
|
323
|
+
<td>E 41 St & Madison Ave</td>
|
324
|
+
<td>6/27/14 6:06:23 PM</td>
|
325
|
+
<td>16m 39s</td>
|
326
|
+
</tr>
|
327
|
+
|
328
|
+
|
329
|
+
<tr class="trip" id="trip-11762768"
|
330
|
+
data-start-station-id="517"
|
331
|
+
data-start-timestamp="1403867648"
|
332
|
+
data-end-station-id="377"
|
333
|
+
data-end-timestamp="1403868611"
|
334
|
+
data-duration-seconds="963" >
|
335
|
+
<td>11762768</td>
|
336
|
+
<td>E 41 St & Madison Ave</td>
|
337
|
+
<td>6/27/14 7:14:08 AM</td>
|
338
|
+
<td>6 Ave & Canal St</td>
|
339
|
+
<td>6/27/14 7:30:11 AM</td>
|
340
|
+
<td>16m 3s</td>
|
341
|
+
</tr>
|
342
|
+
|
343
|
+
|
344
|
+
<tr class="trip" id="trip-11718276"
|
345
|
+
data-start-station-id="517"
|
346
|
+
data-start-timestamp="1403784907"
|
347
|
+
data-end-station-id="377"
|
348
|
+
data-end-timestamp="1403786008"
|
349
|
+
data-duration-seconds="1101" >
|
350
|
+
<td>11718276</td>
|
351
|
+
<td>E 41 St & Madison Ave</td>
|
352
|
+
<td>6/26/14 8:15:07 AM</td>
|
353
|
+
<td>6 Ave & Canal St</td>
|
354
|
+
<td>6/26/14 8:33:28 AM</td>
|
355
|
+
<td>18m 21s</td>
|
356
|
+
</tr>
|
357
|
+
|
358
|
+
|
359
|
+
<tr class="trip" id="trip-11695456"
|
360
|
+
data-start-station-id="2004"
|
361
|
+
data-start-timestamp="1403731145"
|
362
|
+
data-end-station-id="517"
|
363
|
+
data-end-timestamp="1403732266"
|
364
|
+
data-duration-seconds="1121" >
|
365
|
+
<td>11695456</td>
|
366
|
+
<td>6 Ave & Broome St</td>
|
367
|
+
<td>6/25/14 5:19:05 PM</td>
|
368
|
+
<td>E 41 St & Madison Ave</td>
|
369
|
+
<td>6/25/14 5:37:46 PM</td>
|
370
|
+
<td>18m 41s</td>
|
371
|
+
</tr>
|
372
|
+
|
373
|
+
|
374
|
+
<tr class="trip" id="trip-11673677"
|
375
|
+
data-start-station-id="517"
|
376
|
+
data-start-timestamp="1403699399"
|
377
|
+
data-end-station-id="377"
|
378
|
+
data-end-timestamp="1403700627"
|
379
|
+
data-duration-seconds="1228" >
|
380
|
+
<td>11673677</td>
|
381
|
+
<td>E 41 St & Madison Ave</td>
|
382
|
+
<td>6/25/14 8:29:59 AM</td>
|
383
|
+
<td>6 Ave & Canal St</td>
|
384
|
+
<td>6/25/14 8:50:27 AM</td>
|
385
|
+
<td>20m 28s</td>
|
386
|
+
</tr>
|
387
|
+
|
388
|
+
|
389
|
+
<tr class="trip" id="trip-11606200"
|
390
|
+
data-start-station-id="2004"
|
391
|
+
data-start-timestamp="1403562174"
|
392
|
+
data-end-station-id="517"
|
393
|
+
data-end-timestamp="1403563331"
|
394
|
+
data-duration-seconds="1157" >
|
395
|
+
<td>11606200</td>
|
396
|
+
<td>6 Ave & Broome St</td>
|
397
|
+
<td>6/23/14 6:22:54 PM</td>
|
398
|
+
<td>E 41 St & Madison Ave</td>
|
399
|
+
<td>6/23/14 6:42:11 PM</td>
|
400
|
+
<td>19m 17s</td>
|
401
|
+
</tr>
|
402
|
+
|
403
|
+
|
404
|
+
<tr class="trip" id="trip-11580117"
|
405
|
+
data-start-station-id="517"
|
406
|
+
data-start-timestamp="1403526645"
|
407
|
+
data-end-station-id="377"
|
408
|
+
data-end-timestamp="1403527728"
|
409
|
+
data-duration-seconds="1083" >
|
410
|
+
<td>11580117</td>
|
411
|
+
<td>E 41 St & Madison Ave</td>
|
412
|
+
<td>6/23/14 8:30:45 AM</td>
|
413
|
+
<td>6 Ave & Canal St</td>
|
414
|
+
<td>6/23/14 8:48:48 AM</td>
|
415
|
+
<td>18m 3s</td>
|
416
|
+
</tr>
|
417
|
+
|
418
|
+
|
419
|
+
<tr class="trip" id="trip-11478930"
|
420
|
+
data-start-station-id="2004"
|
421
|
+
data-start-timestamp="1403296601"
|
422
|
+
data-end-station-id="2004"
|
423
|
+
data-end-timestamp=""
|
424
|
+
data-duration-seconds="2" >
|
425
|
+
<td>11478930</td>
|
426
|
+
<td>6 Ave & Broome St</td>
|
427
|
+
<td>6/20/14 4:36:41 PM</td>
|
428
|
+
<td><i>Trip Completed</i></td>
|
429
|
+
<td><i>Trip Completed</i></td>
|
430
|
+
<td></td>
|
431
|
+
</tr>
|
432
|
+
|
433
|
+
|
434
|
+
<tr class="trip" id="trip-11456117"
|
435
|
+
data-start-station-id="517"
|
436
|
+
data-start-timestamp="1403265597"
|
437
|
+
data-end-station-id="377"
|
438
|
+
data-end-timestamp="1403266700"
|
439
|
+
data-duration-seconds="1103" >
|
440
|
+
<td>11456117</td>
|
441
|
+
<td>E 41 St & Madison Ave</td>
|
442
|
+
<td>6/20/14 7:59:57 AM</td>
|
443
|
+
<td>6 Ave & Canal St</td>
|
444
|
+
<td>6/20/14 8:18:20 AM</td>
|
445
|
+
<td>18m 23s</td>
|
446
|
+
</tr>
|
447
|
+
|
448
|
+
|
449
|
+
<tr class="trip" id="trip-11340058"
|
450
|
+
data-start-station-id="2004"
|
451
|
+
data-start-timestamp="1403037453"
|
452
|
+
data-end-station-id="517"
|
453
|
+
data-end-timestamp="1403038612"
|
454
|
+
data-duration-seconds="1159" >
|
455
|
+
<td>11340058</td>
|
456
|
+
<td>6 Ave & Broome St</td>
|
457
|
+
<td>6/17/14 4:37:33 PM</td>
|
458
|
+
<td>E 41 St & Madison Ave</td>
|
459
|
+
<td>6/17/14 4:56:52 PM</td>
|
460
|
+
<td>19m 19s</td>
|
461
|
+
</tr>
|
462
|
+
|
463
|
+
|
464
|
+
<tr class="trip" id="trip-11319957"
|
465
|
+
data-start-station-id="517"
|
466
|
+
data-start-timestamp="1403006824"
|
467
|
+
data-end-station-id="377"
|
468
|
+
data-end-timestamp="1403007941"
|
469
|
+
data-duration-seconds="1117" >
|
470
|
+
<td>11319957</td>
|
471
|
+
<td>E 41 St & Madison Ave</td>
|
472
|
+
<td>6/17/14 8:07:04 AM</td>
|
473
|
+
<td>6 Ave & Canal St</td>
|
474
|
+
<td>6/17/14 8:25:41 AM</td>
|
475
|
+
<td>18m 37s</td>
|
476
|
+
</tr>
|
477
|
+
|
478
|
+
|
479
|
+
<tr class="trip" id="trip-10934352"
|
480
|
+
data-start-station-id="377"
|
481
|
+
data-start-timestamp="1402093822"
|
482
|
+
data-end-station-id="517"
|
483
|
+
data-end-timestamp="1402094863"
|
484
|
+
data-duration-seconds="1041" >
|
485
|
+
<td>10934352</td>
|
486
|
+
<td>6 Ave & Canal St</td>
|
487
|
+
<td>6/6/14 6:30:22 PM</td>
|
488
|
+
<td>E 41 St & Madison Ave</td>
|
489
|
+
<td>6/6/14 6:47:43 PM</td>
|
490
|
+
<td>17m 21s</td>
|
491
|
+
</tr>
|
492
|
+
|
493
|
+
|
494
|
+
<tr class="trip" id="trip-10902804"
|
495
|
+
data-start-station-id="517"
|
496
|
+
data-start-timestamp="1402057813"
|
497
|
+
data-end-station-id="377"
|
498
|
+
data-end-timestamp="1402058888"
|
499
|
+
data-duration-seconds="1075" >
|
500
|
+
<td>10902804</td>
|
501
|
+
<td>E 41 St & Madison Ave</td>
|
502
|
+
<td>6/6/14 8:30:13 AM</td>
|
503
|
+
<td>6 Ave & Canal St</td>
|
504
|
+
<td>6/6/14 8:48:08 AM</td>
|
505
|
+
<td>17m 55s</td>
|
506
|
+
</tr>
|
507
|
+
|
508
|
+
|
509
|
+
<tr class="trip" id="trip-10878140"
|
510
|
+
data-start-station-id="128"
|
511
|
+
data-start-timestamp="1402002746"
|
512
|
+
data-end-station-id="517"
|
513
|
+
data-end-timestamp="1402003801"
|
514
|
+
data-duration-seconds="1055" >
|
515
|
+
<td>10878140</td>
|
516
|
+
<td>MacDougal St & Prince St</td>
|
517
|
+
<td>6/5/14 5:12:26 PM</td>
|
518
|
+
<td>E 41 St & Madison Ave</td>
|
519
|
+
<td>6/5/14 5:30:01 PM</td>
|
520
|
+
<td>17m 35s</td>
|
521
|
+
</tr>
|
522
|
+
|
523
|
+
|
524
|
+
<tr class="trip" id="trip-10820041"
|
525
|
+
data-start-station-id="517"
|
526
|
+
data-start-timestamp="1401883013"
|
527
|
+
data-end-station-id="377"
|
528
|
+
data-end-timestamp="1401883960"
|
529
|
+
data-duration-seconds="947" >
|
530
|
+
<td>10820041</td>
|
531
|
+
<td>E 41 St & Madison Ave</td>
|
532
|
+
<td>6/4/14 7:56:53 AM</td>
|
533
|
+
<td>6 Ave & Canal St</td>
|
534
|
+
<td>6/4/14 8:12:40 AM</td>
|
535
|
+
<td>15m 47s</td>
|
536
|
+
</tr>
|
537
|
+
|
538
|
+
|
539
|
+
<tr class="trip" id="trip-10802565"
|
540
|
+
data-start-station-id="2004"
|
541
|
+
data-start-timestamp="1401827723"
|
542
|
+
data-end-station-id="517"
|
543
|
+
data-end-timestamp="1401828770"
|
544
|
+
data-duration-seconds="1047" >
|
545
|
+
<td>10802565</td>
|
546
|
+
<td>6 Ave & Broome St</td>
|
547
|
+
<td>6/3/14 4:35:23 PM</td>
|
548
|
+
<td>E 41 St & Madison Ave</td>
|
549
|
+
<td>6/3/14 4:52:50 PM</td>
|
550
|
+
<td>17m 27s</td>
|
551
|
+
</tr>
|
552
|
+
|
553
|
+
|
554
|
+
<tr class="trip" id="trip-10781496"
|
555
|
+
data-start-station-id="517"
|
556
|
+
data-start-timestamp="1401797067"
|
557
|
+
data-end-station-id="377"
|
558
|
+
data-end-timestamp="1401798086"
|
559
|
+
data-duration-seconds="1019" >
|
560
|
+
<td>10781496</td>
|
561
|
+
<td>E 41 St & Madison Ave</td>
|
562
|
+
<td>6/3/14 8:04:27 AM</td>
|
563
|
+
<td>6 Ave & Canal St</td>
|
564
|
+
<td>6/3/14 8:21:26 AM</td>
|
565
|
+
<td>16m 59s</td>
|
566
|
+
</tr>
|
567
|
+
|
568
|
+
|
569
|
+
<tr class="trip" id="trip-10759616"
|
570
|
+
data-start-station-id="2004"
|
571
|
+
data-start-timestamp="1401745247"
|
572
|
+
data-end-station-id="517"
|
573
|
+
data-end-timestamp="1401746322"
|
574
|
+
data-duration-seconds="1075" >
|
575
|
+
<td>10759616</td>
|
576
|
+
<td>6 Ave & Broome St</td>
|
577
|
+
<td>6/2/14 5:40:47 PM</td>
|
578
|
+
<td>E 41 St & Madison Ave</td>
|
579
|
+
<td>6/2/14 5:58:42 PM</td>
|
580
|
+
<td>17m 55s</td>
|
581
|
+
</tr>
|
582
|
+
|
583
|
+
|
584
|
+
<tr class="trip" id="trip-10735474"
|
585
|
+
data-start-station-id="517"
|
586
|
+
data-start-timestamp="1401710581"
|
587
|
+
data-end-station-id="377"
|
588
|
+
data-end-timestamp="1401711611"
|
589
|
+
data-duration-seconds="1030" >
|
590
|
+
<td>10735474</td>
|
591
|
+
<td>E 41 St & Madison Ave</td>
|
592
|
+
<td>6/2/14 8:03:01 AM</td>
|
593
|
+
<td>6 Ave & Canal St</td>
|
594
|
+
<td>6/2/14 8:20:11 AM</td>
|
595
|
+
<td>17m 10s</td>
|
596
|
+
</tr>
|
597
|
+
|
598
|
+
|
599
|
+
</tbody>
|
600
|
+
</table>
|
601
|
+
<!-- Pagination -->
|
602
|
+
<nav class="pagination">Page: <a href="https://www.citibikenyc.com/member/trips" data-ci-pagination-page="1"><</a> <a href="https://www.citibikenyc.com/member/trips" data-ci-pagination-page="1">1</a> <strong>2</strong> <a href="https://www.citibikenyc.com/member/trips/3" data-ci-pagination-page="3">3</a> <a href="https://www.citibikenyc.com/member/trips/4" data-ci-pagination-page="4">4</a> <a href="https://www.citibikenyc.com/member/trips/15" data-ci-pagination-page="3">></a> <a href="https://www.citibikenyc.com/member/trips/15" data-ci-pagination-page="15">Last ›</a></nav>
|
603
|
+
|
604
|
+
|
605
|
+
|
606
|
+
</div>
|
607
|
+
</section>
|
608
|
+
|
609
|
+
<!-- Footer -->
|
610
|
+
<footer id="footer" class="row">
|
611
|
+
|
612
|
+
<hr id="divider" />
|
613
|
+
|
614
|
+
<section id="copyright" class="eight columns centered">
|
615
|
+
<!--__FUEL_MARKER__1--><p>Use of this Website constitutes acceptance of the website <a href="/assets/pdf/terms-of-use.pdf">Terms of Use Agreement</a> and <a href="https://www.citibikenyc.com/privacy">Privacy Policy</a>.
|
616
|
+
<p>
|
617
|
+
© Copyright 2013 - 2014 NYC Bike Share, LLC. All rights reserved.<br />
|
618
|
+
Citi, Citi with Arc Design and Citi Bike are registered service marks of Citigroup, Inc
|
619
|
+
</p>
|
620
|
+
</section>
|
621
|
+
|
622
|
+
</footer>
|
623
|
+
|
624
|
+
<!-- Miscellanous content like modal dialogs -->
|
625
|
+
|
626
|
+
<!-- Current Environment: production -->
|
627
|
+
|
628
|
+
<!-- Grab Google CDN's jQuery. fall back to local if necessary -->
|
629
|
+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
|
630
|
+
<script>window.jQuery || document.write("<script src='/assets/js/foundation3/jquery.js'>\x3C/script>")</script>
|
631
|
+
|
632
|
+
<!-- Foundation Javascript -->
|
633
|
+
<script src="/assets/js/foundation3/foundation.min.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
634
|
+
<script src="/assets/js/foundation3/app.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
635
|
+
|
636
|
+
<!-- jQuery Plugins that only load where appropriate -->
|
637
|
+
|
638
|
+
<!-- Auto-Load any Javascript specific to a page by its URL only if it exists -->
|
639
|
+
|
640
|
+
<!-- Load the signup JS if we're on the renewal page -->
|
641
|
+
|
642
|
+
|
643
|
+
<!-- Final custom JS Calls (keep this below all other javascript files) -->
|
644
|
+
<script src="/assets/js/css_browser_selector.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
645
|
+
<script src="/assets/js/jquery.cookie.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
646
|
+
<script src="/assets/js/jquery.scrollTo.min.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
647
|
+
<script src="/assets/js/jquery.localScroll.min.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
648
|
+
<script src="/assets/js/nyc.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
649
|
+
<script src="/assets/js/fancybox/jquery.fancybox.pack.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
650
|
+
<script src="/assets/js/fancybox/helpers/jquery.fancybox-buttons.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
651
|
+
<script src="/assets/js/fancybox/helpers/jquery.fancybox-media.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
652
|
+
<script src="/assets/js/fancybox/helpers/jquery.fancybox-thumbs.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
653
|
+
|
654
|
+
<!-- Analytics -->
|
655
|
+
<script src="/assets/js/google-analytics.js?c=-62169966000" type="text/javascript" charset="utf-8"></script>
|
656
|
+
|
657
|
+
|
658
|
+
</body>
|
659
|
+
</html>
|