ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
propertyvalue
2
titleLondon bicycle hires in 2017
3
descriptionNumbers of trips between the stations of London's Santander Cycle Hire Scheme in 2017. This dataset represents around 1.5 million trips. These are about 34% of all trips made in 2017 retaining the top ten thousand origin-destination pairs with the highest numbers of trips.
-- These queries are here just for reference.
-- They were used to extract the data from Google BigQuery.
-- The tables with these data can be found there in the
-- public datasets database.

-- flows
SELECT
start_station_id as origin,
end_station_id as dest,
COUNT(*) as count
FROM
`bigquery-public-data.london_bicycles.cycle_hire`
WHERE
EXTRACT(year from start_date)=2017 AND
EXISTS(
SELECT id
FROM `bigquery-public-data.london_bicycles.cycle_stations`
WHERE id = start_station_id
)
AND EXISTS(
SELECT id
FROM `bigquery-public-data.london_bicycles.cycle_stations`
WHERE id = end_station_id
)
GROUP BY
start_station_id, end_station_id
ORDER BY count DESC
LIMIT 10000

-- locations
SELECT
id, name, latitude as lat, longitude as lon
FROM `bigquery-public-data.london_bicycles.cycle_stations`
ORDER BY id
4
source.nameGreater London Authority
5
source.urlhttps://data.london.gov.uk/
6
createdBy.nameIlya Boyandin
7
createdBy.urlhttps://twitter.com/ilyabo
8
colors.darkModeyes
9
colors.schemeSunsetDark
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100