Spaces:
Sleeping
Sleeping
AxelFritz1
commited on
Commit
·
3b184f4
1
Parent(s):
a5869cd
first
Browse files- .DS_Store +0 -0
- .gitattributes +1 -0
- Visualisation.py +235 -0
- data/circuits.csv +77 -0
- data/constructor_results.csv +0 -0
- data/constructor_standings.csv +0 -0
- data/constructors.csv +212 -0
- data/driver_standings.csv +0 -0
- data/drivers.csv +856 -0
- data/lap_times.csv +3 -0
- data/pit_stops.csv +0 -0
- data/qualifying.csv +0 -0
- data/races.csv +0 -0
- data/results.csv +0 -0
- data/seasons.csv +74 -0
- data/sprint_results.csv +121 -0
- data/status.csv +140 -0
- data/weather.csv +0 -0
- requirements.txt +180 -0
.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
data/lap_times.csv filter=lfs diff=lfs merge=lfs -text
|
Visualisation.py
ADDED
@@ -0,0 +1,235 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import pandas as pd
|
3 |
+
import plotly.express as px
|
4 |
+
|
5 |
+
# Import des données
|
6 |
+
|
7 |
+
results = pd.read_csv(r"./data/results.csv", sep=',')
|
8 |
+
races = pd.read_csv(r"./data/races.csv", sep=',')
|
9 |
+
circuits = pd.read_csv(r"./data/circuits.csv", sep=',')
|
10 |
+
constructors_st = pd.read_csv(r"./data/constructor_standings.csv", sep=',')
|
11 |
+
constructors = pd.read_csv(r"./data/constructors.csv", sep=',')
|
12 |
+
drivers = pd.read_csv(r"./data/drivers.csv", sep=',')
|
13 |
+
drivers_st = pd.read_csv(r"./data/driver_standings.csv", sep=',')
|
14 |
+
|
15 |
+
df1 = pd.merge(results[['driverId', 'constructorId', 'raceId', 'grid', 'positionOrder']], races[['raceId', 'year', 'circuitId']], on = 'raceId')
|
16 |
+
df3 = pd.merge(df1, circuits[['circuitId','country', 'name']], on = 'circuitId')
|
17 |
+
|
18 |
+
|
19 |
+
infos_pilotes = pd.merge(drivers_st, drivers, on=["driverId"])
|
20 |
+
#%%
|
21 |
+
infos_pilotes = infos_pilotes.rename(columns={'points' : 'points_pilotes',
|
22 |
+
'position' : 'position_pilotes',
|
23 |
+
'nationality' : 'nationality_pilotes',
|
24 |
+
'wins': 'wins_pilotes'})
|
25 |
+
#%%
|
26 |
+
col_pilotes = ["raceId", "driverId", "points_pilotes", "position_pilotes", "wins_pilotes", 'forename', 'surname']
|
27 |
+
#%%
|
28 |
+
infos_pilotes = pd.merge(infos_pilotes, races[["year", "name", "raceId"]], on=["raceId"])
|
29 |
+
|
30 |
+
infos_constructors = pd.merge(constructors_st, constructors, on=["constructorId"])
|
31 |
+
#%%
|
32 |
+
col_cons = ['raceId', 'constructorId', 'points_constructor',
|
33 |
+
'position_constructor', 'wins_constructor', 'name_cons']
|
34 |
+
#%%
|
35 |
+
infos_constructors = infos_constructors.rename(columns={'points' : 'points_constructor',
|
36 |
+
'position' : 'position_constructor',
|
37 |
+
'nationality' : 'nationality_constructor',
|
38 |
+
'wins': 'wins_constructor',
|
39 |
+
'name' : 'name_cons'})
|
40 |
+
#%%
|
41 |
+
infos_constructors = pd.merge(infos_constructors[col_cons], races[["year", "name", "raceId"]], on=["raceId"])
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
st.set_page_config(
|
46 |
+
page_title="Data visualisation F1",
|
47 |
+
)
|
48 |
+
|
49 |
+
st.sidebar.title("Mais qui gagnera !")
|
50 |
+
|
51 |
+
with st.sidebar:
|
52 |
+
add_radio = st.radio(
|
53 |
+
"Chapitres",
|
54 |
+
("Chapitre 1 : Histoire de la F1", "Chapitre 2 : 2020 une année importante", "Chapitre 3 : 2021 !")
|
55 |
+
)
|
56 |
+
|
57 |
+
if add_radio == "Chapitre 1 : Histoire de la F1":
|
58 |
+
|
59 |
+
st.markdown(
|
60 |
+
"""
|
61 |
+
# Chapitre 1 : Histoire de la F1
|
62 |
+
|
63 |
+
## Les débuts
|
64 |
+
La Formule 1 trouve ses racines dans les années 1950, lorsque la Fédération Internationale de l'Automobile (FIA) établit un championnat du monde de courses automobiles. La première saison officielle de la Formule 1 a lieu en 1950, avec le Grand Prix de Grande-Bretagne comme événement inaugural.
|
65 |
+
"""
|
66 |
+
)
|
67 |
+
|
68 |
+
intro_image_url = "https://static-images.lpnt.fr/cd-cw1618/images/2019/04/13/18392932lpw-18392936-article-silverstone-gp-histoire-jpg_6132152_660x287.jpg"
|
69 |
+
st.image(intro_image_url,
|
70 |
+
caption="Juan Manuel Fangio au volant de son Alfa Romeo à Silverstone, lors du premier Grand Prix de l'histoire de la Formule 1.",
|
71 |
+
use_column_width=True)
|
72 |
+
|
73 |
+
st.markdown(
|
74 |
+
"""
|
75 |
+
## L'ère des légendes
|
76 |
+
Dans les années 1950 et 1960, la Formule 1 voit émerger des pilotes légendaires tels que Juan Manuel Fangio, Alberto Ascari et Stirling Moss. Ces années sont marquées par des rivalités intenses entre écuries et des courses épiques sur des circuits légendaires comme Monza, Monaco et Spa-Francorchamps.
|
77 |
+
|
78 |
+
Les années 1990 et 2000 sont dominées par des écuries comme Williams, Ferrari et McLaren, et des pilotes emblématiques tels que Ayrton Senna, Alain Prost, Michael Schumacher et Lewis Hamilton. Ferrari en particulier connaît une période de domination avec Michael Schumacher, remportant de nombreux championnats constructeurs et pilotes.
|
79 |
+
"""
|
80 |
+
)
|
81 |
+
|
82 |
+
col1, col2 = st.columns(2)
|
83 |
+
with col1:
|
84 |
+
intro_image_url = "https://cdn.ferrari.com/cms/network/media/img/resize/5e3ac213e015050ac0c4f12a-ferrari-hero-fangio-career-full-focus-1?"
|
85 |
+
st.image(intro_image_url, caption="Juan Manuel Fangio", use_column_width=True)
|
86 |
+
with col2:
|
87 |
+
intro_image_url = "https://static1.purepeople.com/people/1/95/1/@/128138-michael-schumacher-200x200-2.jpg"
|
88 |
+
st.image(intro_image_url, caption="michael schumacher", use_column_width=True)
|
89 |
+
|
90 |
+
st.markdown(
|
91 |
+
"""
|
92 |
+
## Aujourd'hui !
|
93 |
+
Aujourd'hui, la Formule 1 reste l'une des compétitions sportives les plus regardées au monde, attirant des millions de fans passionnés chaque année. C'est une discipline qui incarne la vitesse, la technologie et le glamour, tout en conservant un héritage riche et une histoire fascinante qui continue de captiver les esprits à travers le monde.
|
94 |
+
"""
|
95 |
+
)
|
96 |
+
elif add_radio == "Chapitre 2 : 2020 une année importante":
|
97 |
+
st.markdown(
|
98 |
+
"""
|
99 |
+
# Chapitre 2 : 2020 une année importante
|
100 |
+
""")
|
101 |
+
|
102 |
+
lineup = "https://www.lsp-pilotage.com/wp-content/uploads/2020/03/3y1ipq61yh141.jpg"
|
103 |
+
st.image(lineup,
|
104 |
+
caption="Line Up des Pilotes 2020",
|
105 |
+
use_column_width=True)
|
106 |
+
st.markdown(
|
107 |
+
"""
|
108 |
+
## Présentation des Grand Prix""")
|
109 |
+
|
110 |
+
#### MAP PAR ANNÉE ####
|
111 |
+
|
112 |
+
years = list(df3['year'].unique())
|
113 |
+
years = sorted(years, reverse=True)
|
114 |
+
years = years[2:]
|
115 |
+
|
116 |
+
year_choice = st.selectbox("Sélectionnez l'année des circuits à afficher :",
|
117 |
+
options=years,
|
118 |
+
)
|
119 |
+
|
120 |
+
list_circuits = list(df3[df3['year'] == year_choice]["name"].unique())
|
121 |
+
circuits_filtered = circuits[circuits['name'].isin(list_circuits)]
|
122 |
+
|
123 |
+
# Création du graphique scatter_mapbox avec Plotly Express
|
124 |
+
fig_new = px.scatter_mapbox(circuits_filtered, lat="lat", lon="lng", hover_name="name",
|
125 |
+
color_discrete_sequence=["red"], zoom=2,
|
126 |
+
title=f"Emplacements des Grands Prix de Formule 1 - {year_choice}")
|
127 |
+
fig_new.update_layout(mapbox_style="open-street-map")
|
128 |
+
fig_new.update_layout(margin={"r": 0, "t": 0, "l": 0, "b": 0})
|
129 |
+
|
130 |
+
# Affichage du graphique dans Streamlit
|
131 |
+
st.plotly_chart(fig_new, use_container_width=True)
|
132 |
+
|
133 |
+
st.markdown("""
|
134 |
+
#### On a donc 22 grand prix réparti dans une dizaines de pays à travers le monde !
|
135 |
+
"""
|
136 |
+
)
|
137 |
+
|
138 |
+
st.markdown("""
|
139 |
+
## Résultats par pilotes et par constructeurs
|
140 |
+
"""
|
141 |
+
)
|
142 |
+
|
143 |
+
last_GP = infos_pilotes.groupby("year")["name"].last()
|
144 |
+
|
145 |
+
temp_pilotes = infos_pilotes[infos_pilotes["year"] == year_choice][
|
146 |
+
infos_pilotes["name"] == last_GP.loc[year_choice]]
|
147 |
+
|
148 |
+
fig = px.bar(temp_pilotes.sort_values(by='points_pilotes', ascending=False), x='surname', y='points_pilotes',
|
149 |
+
hover_data=['surname', 'position_pilotes', 'name'],
|
150 |
+
color='points_pilotes',
|
151 |
+
labels={'points_pilotes': 'Nombre de Points', 'surname': 'Nom'},
|
152 |
+
title='Classement des Pilotes par Nombre de Points')
|
153 |
+
|
154 |
+
st.plotly_chart(fig, use_container_width=True)
|
155 |
+
|
156 |
+
st.markdown("""
|
157 |
+
#### On remarque ici une nette domination de Lewis Hamilton. Cette domination n'est pas nouvelle, il remporte cette année la son 7ème titre de champion du monde. Son coéquipier Valtteri Bottas le suit à la deuxième position étant très proche de Max Verstappen.
|
158 |
+
"""
|
159 |
+
)
|
160 |
+
|
161 |
+
temp_ecurie = infos_constructors[infos_constructors["year"] == year_choice][
|
162 |
+
infos_constructors["name"] == last_GP.loc[year_choice]]
|
163 |
+
|
164 |
+
# %%
|
165 |
+
fig_ecurie = px.bar(temp_ecurie.sort_values(by='points_constructor', ascending=False), x='name_cons',
|
166 |
+
y='points_constructor',
|
167 |
+
hover_data=['name_cons', 'position_constructor', 'name'],
|
168 |
+
color='points_constructor',
|
169 |
+
labels={'points_constructor': 'Nombre de Points', 'name_cons': 'Nom'},
|
170 |
+
title='Classement des Constructeurs par Nombre de Points')
|
171 |
+
|
172 |
+
st.plotly_chart(fig_ecurie, use_container_width=True)
|
173 |
+
|
174 |
+
st.markdown("""
|
175 |
+
#### On voit donc la domination claire de Mercedes au classement des constructeurs, suivi de RedBull avec près de deux fois moins de points.
|
176 |
+
"""
|
177 |
+
)
|
178 |
+
|
179 |
+
|
180 |
+
st.markdown("""
|
181 |
+
## Gagnants de chaque course de la saison
|
182 |
+
"""
|
183 |
+
)
|
184 |
+
|
185 |
+
temp_courses = infos_pilotes[infos_pilotes["year"] == year_choice][infos_pilotes["position_pilotes"] == 1]
|
186 |
+
temp_courses["nom_complet"] = temp_courses["forename"] + ' ' + temp_courses["surname"]
|
187 |
+
temp_courses = temp_courses[["name", "nom_complet"]]
|
188 |
+
temp_courses = temp_courses.rename(columns={"name" : "Grand Prix", "nom_complet" : "Gagnant"})
|
189 |
+
|
190 |
+
st.dataframe(temp_courses)
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
elif add_radio == "Chapitre 3 : 2021 !":
|
195 |
+
st.markdown(
|
196 |
+
"""
|
197 |
+
# Chapitre 3 : 2021 !
|
198 |
+
|
199 |
+
##### Hamilton vient de remporter son 7ème titre de Champion du Monde, égalisant le record historique de la discipline détenu par Michaël Schumacher. Il va donc tenter cette année de battre un nouveau record : le premier coureur çà être 8 fois champion du monde !
|
200 |
+
|
201 |
+
##### Cependant, un pilote fait beaucoup parler de lui cette année : Max Verstappen. De part sa performance et ses capacités, il est l'un des favoris pour le titre de 2021.
|
202 |
+
"""
|
203 |
+
)
|
204 |
+
MV = "https://cdn-2.motorsport.com/images/mgl/6D1XbeV0/s800/max-verstappen-red-bull-racing.jpg"
|
205 |
+
st.image(MV,
|
206 |
+
caption="Max Verstappen",
|
207 |
+
use_column_width=True)
|
208 |
+
st.markdown("""
|
209 |
+
**Max Verstappen** :
|
210 |
+
|
211 |
+
Victoires en Grand Prix : 21
|
212 |
+
|
213 |
+
Podiums : 61
|
214 |
+
|
215 |
+
Pole positions : 10
|
216 |
+
""")
|
217 |
+
LH = "https://cdn-7.motorsport.com/images/mgl/YEQ1pGwY/s8/lewis-hamilton-mercedes.jpg"
|
218 |
+
st.image(LH,
|
219 |
+
caption="Lewis Hamilton",
|
220 |
+
use_column_width=True)
|
221 |
+
st.markdown("""
|
222 |
+
**Lewis Hamilton** :
|
223 |
+
|
224 |
+
Victoires en Grand Prix : 103 (record)
|
225 |
+
|
226 |
+
Podiums : 181
|
227 |
+
|
228 |
+
Pole positions : 103 (record)
|
229 |
+
|
230 |
+
Sept fois champion du monde de Formule 1 (2008, 2014, 2015, 2017, 2018, 2019, 2020)
|
231 |
+
|
232 |
+
Le pilote ayant remporté le plus de victoires, de pole positions et de podiums de l'histoire de la Formule 1
|
233 |
+
|
234 |
+
#### Max Verstappen va t-il mettre un terme au règne de Lewis Hamilton . Lewis Hamilton va t-il détenir le record absolu en gagnant la saison 2021 ? Pour répondre à ces questions, nous allons construire un modèle prédictif afin de déterminer qui gagnera chaque Grand Prix et donc le titre de champion de monde de Formule 1 2021.
|
235 |
+
""")
|
data/circuits.csv
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
circuitId,circuitRef,name,location,country,lat,lng,alt,url
|
2 |
+
1,"albert_park","Albert Park Grand Prix Circuit","Melbourne","Australia",-37.8497,144.968,10,"http://en.wikipedia.org/wiki/Melbourne_Grand_Prix_Circuit"
|
3 |
+
2,"sepang","Sepang International Circuit","Kuala Lumpur","Malaysia",2.76083,101.738,18,"http://en.wikipedia.org/wiki/Sepang_International_Circuit"
|
4 |
+
3,"bahrain","Bahrain International Circuit","Sakhir","Bahrain",26.0325,50.5106,7,"http://en.wikipedia.org/wiki/Bahrain_International_Circuit"
|
5 |
+
4,"catalunya","Circuit de Barcelona-Catalunya","Montmeló","Spain",41.57,2.26111,109,"http://en.wikipedia.org/wiki/Circuit_de_Barcelona-Catalunya"
|
6 |
+
5,"istanbul","Istanbul Park","Istanbul","Turkey",40.9517,29.405,130,"http://en.wikipedia.org/wiki/Istanbul_Park"
|
7 |
+
6,"monaco","Circuit de Monaco","Monte-Carlo","Monaco",43.7347,7.42056,7,"http://en.wikipedia.org/wiki/Circuit_de_Monaco"
|
8 |
+
7,"villeneuve","Circuit Gilles Villeneuve","Montreal","Canada",45.5,-73.5228,13,"http://en.wikipedia.org/wiki/Circuit_Gilles_Villeneuve"
|
9 |
+
8,"magny_cours","Circuit de Nevers Magny-Cours","Magny Cours","France",46.8642,3.16361,228,"http://en.wikipedia.org/wiki/Circuit_de_Nevers_Magny-Cours"
|
10 |
+
9,"silverstone","Silverstone Circuit","Silverstone","UK",52.0786,-1.01694,153,"http://en.wikipedia.org/wiki/Silverstone_Circuit"
|
11 |
+
10,"hockenheimring","Hockenheimring","Hockenheim","Germany",49.3278,8.56583,103,"http://en.wikipedia.org/wiki/Hockenheimring"
|
12 |
+
11,"hungaroring","Hungaroring","Budapest","Hungary",47.5789,19.2486,264,"http://en.wikipedia.org/wiki/Hungaroring"
|
13 |
+
12,"valencia","Valencia Street Circuit","Valencia","Spain",39.4589,-0.331667,4,"http://en.wikipedia.org/wiki/Valencia_Street_Circuit"
|
14 |
+
13,"spa","Circuit de Spa-Francorchamps","Spa","Belgium",50.4372,5.97139,401,"http://en.wikipedia.org/wiki/Circuit_de_Spa-Francorchamps"
|
15 |
+
14,"monza","Autodromo Nazionale di Monza","Monza","Italy",45.6156,9.28111,162,"http://en.wikipedia.org/wiki/Autodromo_Nazionale_Monza"
|
16 |
+
15,"marina_bay","Marina Bay Street Circuit","Marina Bay","Singapore",1.2914,103.864,18,"http://en.wikipedia.org/wiki/Marina_Bay_Street_Circuit"
|
17 |
+
16,"fuji","Fuji Speedway","Oyama","Japan",35.3717,138.927,583,"http://en.wikipedia.org/wiki/Fuji_Speedway"
|
18 |
+
17,"shanghai","Shanghai International Circuit","Shanghai","China",31.3389,121.22,5,"http://en.wikipedia.org/wiki/Shanghai_International_Circuit"
|
19 |
+
18,"interlagos","Autódromo José Carlos Pace","São Paulo","Brazil",-23.7036,-46.6997,785,"http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Jos%C3%A9_Carlos_Pace"
|
20 |
+
19,"indianapolis","Indianapolis Motor Speedway","Indianapolis","USA",39.795,-86.2347,223,"http://en.wikipedia.org/wiki/Indianapolis_Motor_Speedway"
|
21 |
+
20,"nurburgring","Nürburgring","Nürburg","Germany",50.3356,6.9475,578,"http://en.wikipedia.org/wiki/N%C3%BCrburgring"
|
22 |
+
21,"imola","Autodromo Enzo e Dino Ferrari","Imola","Italy",44.3439,11.7167,37,"http://en.wikipedia.org/wiki/Autodromo_Enzo_e_Dino_Ferrari"
|
23 |
+
22,"suzuka","Suzuka Circuit","Suzuka","Japan",34.8431,136.541,45,"http://en.wikipedia.org/wiki/Suzuka_Circuit"
|
24 |
+
24,"yas_marina","Yas Marina Circuit","Abu Dhabi","UAE",24.4672,54.6031,3,"http://en.wikipedia.org/wiki/Yas_Marina_Circuit"
|
25 |
+
25,"galvez","Autódromo Juan y Oscar Gálvez","Buenos Aires","Argentina",-34.6943,-58.4593,8,"http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Oscar_Alfredo_G%C3%A1lvez"
|
26 |
+
26,"jerez","Circuito de Jerez","Jerez de la Frontera","Spain",36.7083,-6.03417,37,"http://en.wikipedia.org/wiki/Circuito_Permanente_de_Jerez"
|
27 |
+
27,"estoril","Autódromo do Estoril","Estoril","Portugal",38.7506,-9.39417,130,"http://en.wikipedia.org/wiki/Aut%C3%B3dromo_do_Estoril"
|
28 |
+
28,"okayama","Okayama International Circuit","Okayama","Japan",34.915,134.221,266,"http://en.wikipedia.org/wiki/TI_Circuit"
|
29 |
+
29,"adelaide","Adelaide Street Circuit","Adelaide","Australia",-34.9272,138.617,58,"http://en.wikipedia.org/wiki/Adelaide_Street_Circuit"
|
30 |
+
30,"kyalami","Kyalami","Midrand","South Africa",-25.9894,28.0767,1460,"http://en.wikipedia.org/wiki/Kyalami"
|
31 |
+
31,"donington","Donington Park","Castle Donington","UK",52.8306,-1.37528,88,"http://en.wikipedia.org/wiki/Donington_Park"
|
32 |
+
32,"rodriguez","Autódromo Hermanos Rodríguez","Mexico City","Mexico",19.4042,-99.0907,2227,"http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Hermanos_Rodr%C3%ADguez"
|
33 |
+
33,"phoenix","Phoenix street circuit","Phoenix","USA",33.4479,-112.075,345,"http://en.wikipedia.org/wiki/Phoenix_street_circuit"
|
34 |
+
34,"ricard","Circuit Paul Ricard","Le Castellet","France",43.2506,5.79167,432,"http://en.wikipedia.org/wiki/Paul_Ricard_Circuit"
|
35 |
+
35,"yeongam","Korean International Circuit","Yeongam County","Korea",34.7333,126.417,0,"http://en.wikipedia.org/wiki/Korean_International_Circuit"
|
36 |
+
36,"jacarepagua","Autódromo Internacional Nelson Piquet","Rio de Janeiro","Brazil",-22.9756,-43.395,1126,"http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Internacional_Nelson_Piquet"
|
37 |
+
37,"detroit","Detroit Street Circuit","Detroit","USA",42.3298,-83.0401,177,"http://en.wikipedia.org/wiki/Detroit_street_circuit"
|
38 |
+
38,"brands_hatch","Brands Hatch","Kent","UK",51.3569,0.263056,145,"http://en.wikipedia.org/wiki/Brands_Hatch"
|
39 |
+
39,"zandvoort","Circuit Park Zandvoort","Zandvoort","Netherlands",52.3888,4.54092,6,"http://en.wikipedia.org/wiki/Circuit_Zandvoort"
|
40 |
+
40,"zolder","Zolder","Heusden-Zolder","Belgium",50.9894,5.25694,36,"http://en.wikipedia.org/wiki/Zolder"
|
41 |
+
41,"dijon","Dijon-Prenois","Dijon","France",47.3625,4.89913,484,"http://en.wikipedia.org/wiki/Dijon-Prenois"
|
42 |
+
42,"dallas","Fair Park","Dallas","USA",32.7774,-96.7587,139,"http://en.wikipedia.org/wiki/Fair_Park"
|
43 |
+
43,"long_beach","Long Beach","California","USA",33.7651,-118.189,12,"http://en.wikipedia.org/wiki/Long_Beach,_California"
|
44 |
+
44,"las_vegas","Las Vegas Street Circuit","Nevada","USA",36.1162,-115.174,639,"http://en.wikipedia.org/wiki/Las_Vegas,_Nevada"
|
45 |
+
45,"jarama","Jarama","Madrid","Spain",40.6171,-3.58558,609,"http://en.wikipedia.org/wiki/Circuito_Permanente_Del_Jarama"
|
46 |
+
46,"watkins_glen","Watkins Glen","New York State","USA",42.3369,-76.9272,485,"http://en.wikipedia.org/wiki/Watkins_Glen_International"
|
47 |
+
47,"anderstorp","Scandinavian Raceway","Anderstorp","Sweden",57.2653,13.6042,153,"http://en.wikipedia.org/wiki/Scandinavian_Raceway"
|
48 |
+
48,"mosport","Mosport International Raceway","Ontario","Canada",44.0481,-78.6756,332,"http://en.wikipedia.org/wiki/Mosport"
|
49 |
+
49,"montjuic","Montjuïc","Barcelona","Spain",41.3664,2.15167,79,"http://en.wikipedia.org/wiki/Montju%C3%AFc_circuit"
|
50 |
+
50,"nivelles","Nivelles-Baulers","Brussels","Belgium",50.6211,4.32694,139,"http://en.wikipedia.org/wiki/Nivelles-Baulers"
|
51 |
+
51,"charade","Charade Circuit","Clermont-Ferrand","France",45.7472,3.03889,790,"http://en.wikipedia.org/wiki/Charade_Circuit"
|
52 |
+
52,"tremblant","Circuit Mont-Tremblant","Quebec","Canada",46.1877,-74.6099,214,"http://en.wikipedia.org/wiki/Circuit_Mont-Tremblant"
|
53 |
+
53,"essarts","Rouen-Les-Essarts","Rouen","France",49.3306,1.00458,81,"http://en.wikipedia.org/wiki/Rouen-Les-Essarts"
|
54 |
+
54,"lemans","Le Mans","Le Mans","France",47.95,0.224231,67,"http://en.wikipedia.org/wiki/Circuit_de_la_Sarthe#Bugatti_Circuit"
|
55 |
+
55,"reims","Reims-Gueux","Reims","France",49.2542,3.93083,88,"http://en.wikipedia.org/wiki/Reims-Gueux"
|
56 |
+
56,"george","Prince George Circuit","Eastern Cape Province","South Africa",-33.0486,27.8736,15,"http://en.wikipedia.org/wiki/Prince_George_Circuit"
|
57 |
+
57,"zeltweg","Zeltweg","Styria","Austria",47.2039,14.7478,676,"http://en.wikipedia.org/wiki/Zeltweg_Airfield"
|
58 |
+
58,"aintree","Aintree","Liverpool","UK",53.4769,-2.94056,20,"http://en.wikipedia.org/wiki/Aintree_Motor_Racing_Circuit"
|
59 |
+
59,"boavista","Circuito da Boavista","Oporto","Portugal",41.1705,-8.67325,28,"http://en.wikipedia.org/wiki/Circuito_da_Boavista"
|
60 |
+
60,"riverside","Riverside International Raceway","California","USA",33.937,-117.273,470,"http://en.wikipedia.org/wiki/Riverside_International_Raceway"
|
61 |
+
61,"avus","AVUS","Berlin","Germany",52.4806,13.2514,53,"http://en.wikipedia.org/wiki/AVUS"
|
62 |
+
62,"monsanto","Monsanto Park Circuit","Lisbon","Portugal",38.7197,-9.20306,158,"http://en.wikipedia.org/wiki/Monsanto_Park_Circuit"
|
63 |
+
63,"sebring","Sebring International Raceway","Florida","USA",27.4547,-81.3483,18,"http://en.wikipedia.org/wiki/Sebring_Raceway"
|
64 |
+
64,"ain-diab","Ain Diab","Casablanca","Morocco",33.5786,-7.6875,19,"http://en.wikipedia.org/wiki/Ain-Diab_Circuit"
|
65 |
+
65,"pescara","Pescara Circuit","Pescara","Italy",42.475,14.1508,129,"http://en.wikipedia.org/wiki/Pescara_Circuit"
|
66 |
+
66,"bremgarten","Circuit Bremgarten","Bern","Switzerland",46.9589,7.40194,551,"http://en.wikipedia.org/wiki/Circuit_Bremgarten"
|
67 |
+
67,"pedralbes","Circuit de Pedralbes","Barcelona","Spain",41.3903,2.11667,85,"http://en.wikipedia.org/wiki/Pedralbes_Circuit"
|
68 |
+
68,"buddh","Buddh International Circuit","Uttar Pradesh","India",28.3487,77.5331,194,"http://en.wikipedia.org/wiki/Buddh_International_Circuit"
|
69 |
+
69,"americas","Circuit of the Americas","Austin","USA",30.1328,-97.6411,161,"http://en.wikipedia.org/wiki/Circuit_of_the_Americas"
|
70 |
+
70,"red_bull_ring","Red Bull Ring","Spielberg","Austria",47.2197,14.7647,678,"http://en.wikipedia.org/wiki/Red_Bull_Ring"
|
71 |
+
71,"sochi","Sochi Autodrom","Sochi","Russia",43.4057,39.9578,2,"http://en.wikipedia.org/wiki/Sochi_Autodrom"
|
72 |
+
73,"baku","Baku City Circuit","Baku","Azerbaijan",40.3725,49.8533,-7,"http://en.wikipedia.org/wiki/Baku_City_Circuit"
|
73 |
+
75,"portimao","Autódromo Internacional do Algarve","Portimão","Portugal",37.227,-8.6267,108,"http://en.wikipedia.org/wiki/Algarve_International_Circuit"
|
74 |
+
76,"mugello","Autodromo Internazionale del Mugello","Mugello","Italy",43.9975,11.3719,255,"http://en.wikipedia.org/wiki/Mugello_Circuit"
|
75 |
+
77,"jeddah","Jeddah Corniche Circuit","Jeddah","Saudi Arabia",21.6319,39.1044,15,"http://en.wikipedia.org/wiki/Jeddah_Street_Circuit"
|
76 |
+
78,"losail","Losail International Circuit","Al Daayen","Qatar",25.49,51.4542,\N,"http://en.wikipedia.org/wiki/Losail_International_Circuit"
|
77 |
+
79,"miami","Miami International Autodrome","Miami","USA",25.9581,-80.2389,\N,"http://en.wikipedia.org/wiki/Miami_International_Autodrome"
|
data/constructor_results.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/constructor_standings.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/constructors.csv
ADDED
@@ -0,0 +1,212 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
constructorId,constructorRef,name,nationality,url
|
2 |
+
1,"mclaren","McLaren","British","http://en.wikipedia.org/wiki/McLaren"
|
3 |
+
2,"bmw_sauber","BMW Sauber","German","http://en.wikipedia.org/wiki/BMW_Sauber"
|
4 |
+
3,"williams","Williams","British","http://en.wikipedia.org/wiki/Williams_Grand_Prix_Engineering"
|
5 |
+
4,"renault","Renault","French","http://en.wikipedia.org/wiki/Renault_in_Formula_One"
|
6 |
+
5,"toro_rosso","Toro Rosso","Italian","http://en.wikipedia.org/wiki/Scuderia_Toro_Rosso"
|
7 |
+
6,"ferrari","Ferrari","Italian","http://en.wikipedia.org/wiki/Scuderia_Ferrari"
|
8 |
+
7,"toyota","Toyota","Japanese","http://en.wikipedia.org/wiki/Toyota_Racing"
|
9 |
+
8,"super_aguri","Super Aguri","Japanese","http://en.wikipedia.org/wiki/Super_Aguri_F1"
|
10 |
+
9,"red_bull","Red Bull","Austrian","http://en.wikipedia.org/wiki/Red_Bull_Racing"
|
11 |
+
10,"force_india","Force India","Indian","http://en.wikipedia.org/wiki/Racing_Point_Force_India"
|
12 |
+
11,"honda","Honda","Japanese","http://en.wikipedia.org/wiki/Honda_Racing_F1"
|
13 |
+
12,"spyker","Spyker","Dutch","http://en.wikipedia.org/wiki/Spyker_F1"
|
14 |
+
13,"mf1","MF1","Russian","http://en.wikipedia.org/wiki/Midland_F1_Racing"
|
15 |
+
14,"spyker_mf1","Spyker MF1","Dutch","http://en.wikipedia.org/wiki/Midland_F1_Racing"
|
16 |
+
15,"sauber","Sauber","Swiss","http://en.wikipedia.org/wiki/Sauber"
|
17 |
+
16,"bar","BAR","British","http://en.wikipedia.org/wiki/British_American_Racing"
|
18 |
+
17,"jordan","Jordan","Irish","http://en.wikipedia.org/wiki/Jordan_Grand_Prix"
|
19 |
+
18,"minardi","Minardi","Italian","http://en.wikipedia.org/wiki/Minardi"
|
20 |
+
19,"jaguar","Jaguar","British","http://en.wikipedia.org/wiki/Jaguar_Racing"
|
21 |
+
20,"prost","Prost","French","http://en.wikipedia.org/wiki/Prost_Grand_Prix"
|
22 |
+
21,"arrows","Arrows","British","http://en.wikipedia.org/wiki/Arrows_Grand_Prix_International"
|
23 |
+
22,"benetton","Benetton","Italian","http://en.wikipedia.org/wiki/Benetton_Formula"
|
24 |
+
23,"brawn","Brawn","British","http://en.wikipedia.org/wiki/Brawn_GP"
|
25 |
+
24,"stewart","Stewart","British","http://en.wikipedia.org/wiki/Stewart_Grand_Prix"
|
26 |
+
25,"tyrrell","Tyrrell","British","http://en.wikipedia.org/wiki/Tyrrell_Racing"
|
27 |
+
26,"lola","Lola","British","http://en.wikipedia.org/wiki/MasterCard_Lola"
|
28 |
+
27,"ligier","Ligier","French","http://en.wikipedia.org/wiki/Ligier"
|
29 |
+
28,"forti","Forti","Italian","http://en.wikipedia.org/wiki/Forti"
|
30 |
+
29,"footwork","Footwork","British","http://en.wikipedia.org/wiki/Footwork_Arrows"
|
31 |
+
30,"pacific","Pacific","British","http://en.wikipedia.org/wiki/Pacific_Racing"
|
32 |
+
31,"simtek","Simtek","British","http://en.wikipedia.org/wiki/Simtek"
|
33 |
+
32,"team_lotus","Team Lotus","British","http://en.wikipedia.org/wiki/Team_Lotus"
|
34 |
+
33,"larrousse","Larrousse","French","http://en.wikipedia.org/wiki/Larrousse"
|
35 |
+
34,"brabham","Brabham","British","http://en.wikipedia.org/wiki/Brabham"
|
36 |
+
35,"dallara","Dallara","Italian","http://en.wikipedia.org/wiki/Dallara"
|
37 |
+
36,"fondmetal","Fondmetal","Italian","http://en.wikipedia.org/wiki/Fondmetal"
|
38 |
+
37,"march","March","British","http://en.wikipedia.org/wiki/March_Engineering"
|
39 |
+
38,"moda","Andrea Moda","Italian","http://en.wikipedia.org/wiki/Andrea_Moda_Formula"
|
40 |
+
39,"ags","AGS","French","http://en.wikipedia.org/wiki/Automobiles_Gonfaronnaises_Sportives"
|
41 |
+
40,"lambo","Lambo","Italian","http://en.wikipedia.org/wiki/Modena_(racing_team)"
|
42 |
+
41,"leyton","Leyton House","British","http://en.wikipedia.org/wiki/Leyton_House"
|
43 |
+
42,"coloni","Coloni","Italian","http://en.wikipedia.org/wiki/Enzo_Coloni_Racing_Car_Systems"
|
44 |
+
44,"eurobrun","Euro Brun","Italian","http://en.wikipedia.org/wiki/Euro_Brun"
|
45 |
+
45,"osella","Osella","Italian","http://en.wikipedia.org/wiki/Osella"
|
46 |
+
46,"onyx","Onyx","British","http://en.wikipedia.org/wiki/Onyx_(racing_team)"
|
47 |
+
47,"life","Life","Italian","http://en.wikipedia.org/wiki/Life_(Racing_Team)"
|
48 |
+
48,"rial","Rial","German","http://en.wikipedia.org/wiki/Rial_%28racing_team%29"
|
49 |
+
49,"zakspeed","Zakspeed","German","http://en.wikipedia.org/wiki/Zakspeed"
|
50 |
+
50,"ram","RAM","British","http://en.wikipedia.org/wiki/RAM_Racing"
|
51 |
+
51,"alfa","Alfa Romeo","Swiss","http://en.wikipedia.org/wiki/Alfa_Romeo_in_Formula_One"
|
52 |
+
52,"spirit","Spirit","British","http://en.wikipedia.org/wiki/Spirit_(racing_team)"
|
53 |
+
53,"toleman","Toleman","British","http://en.wikipedia.org/wiki/Toleman"
|
54 |
+
54,"ats","ATS","Italian","http://en.wikipedia.org/wiki/ATS_(wheels)"
|
55 |
+
55,"theodore","Theodore","Hong Kong","http://en.wikipedia.org/wiki/Theodore_Racing"
|
56 |
+
56,"fittipaldi","Fittipaldi","Brazilian","http://en.wikipedia.org/wiki/Fittipaldi_%28constructor%29"
|
57 |
+
57,"ensign","Ensign","British","http://en.wikipedia.org/wiki/Ensign_%28racing_team%29"
|
58 |
+
58,"shadow","Shadow","British","http://en.wikipedia.org/wiki/Shadow_Racing_Cars"
|
59 |
+
59,"wolf","Wolf","Canadian","http://en.wikipedia.org/wiki/Walter_Wolf_Racing"
|
60 |
+
60,"merzario","Merzario","Italian","http://en.wikipedia.org/wiki/Merzario"
|
61 |
+
61,"kauhsen","Kauhsen","German","http://en.wikipedia.org/wiki/Kauhsen"
|
62 |
+
62,"rebaque","Rebaque","Mexican","http://en.wikipedia.org/wiki/Rebaque"
|
63 |
+
63,"surtees","Surtees","British","http://en.wikipedia.org/wiki/Surtees"
|
64 |
+
64,"hesketh","Hesketh","British","http://en.wikipedia.org/wiki/Hesketh_Racing"
|
65 |
+
65,"martini","Martini","French","http://en.wikipedia.org/wiki/Martini_(cars)"
|
66 |
+
66,"brm","BRM","British","http://en.wikipedia.org/wiki/BRM"
|
67 |
+
67,"penske","Penske","American","http://en.wikipedia.org/wiki/Penske_Racing"
|
68 |
+
68,"lec","LEC","British","http://en.wikipedia.org/wiki/LEC_(Formula_One)"
|
69 |
+
69,"mcguire","McGuire","Australian","http://en.wikipedia.org/wiki/McGuire_(Formula_One)"
|
70 |
+
70,"boro","Boro","Dutch","http://en.wikipedia.org/wiki/Boro_(Formula_One)"
|
71 |
+
71,"apollon","Apollon","Swiss","http://en.wikipedia.org/wiki/Apollon_(Formula_One)"
|
72 |
+
72,"kojima","Kojima","Japanese","http://en.wikipedia.org/wiki/Kojima_Engineering"
|
73 |
+
73,"parnelli","Parnelli","American","http://en.wikipedia.org/wiki/Parnelli"
|
74 |
+
74,"maki","Maki","Japanese","http://en.wikipedia.org/wiki/Maki_(cars)"
|
75 |
+
75,"hill","Embassy Hill","British","http://en.wikipedia.org/wiki/Hill_(constructor)"
|
76 |
+
76,"lyncar","Lyncar","British","http://en.wikipedia.org/wiki/Lyncar"
|
77 |
+
77,"trojan","Trojan","British","http://en.wikipedia.org/wiki/Trojan_(Racing_team)"
|
78 |
+
78,"amon","Amon","New Zealander","http://en.wikipedia.org/wiki/Amon_(Formula_One_team)"
|
79 |
+
79,"token","Token","British","http://en.wikipedia.org/wiki/Token_(Racing_team)"
|
80 |
+
80,"iso_marlboro","Iso Marlboro","British","http://en.wikipedia.org/wiki/Iso_Marlboro"
|
81 |
+
81,"tecno","Tecno","Italian","http://en.wikipedia.org/wiki/Tecno"
|
82 |
+
82,"matra","Matra","French","http://en.wikipedia.org/wiki/Matra"
|
83 |
+
83,"politoys","Politoys","British","http://en.wikipedia.org/wiki/Frank_Williams_Racing_Cars"
|
84 |
+
84,"connew","Connew","British","http://en.wikipedia.org/wiki/Connew"
|
85 |
+
85,"bellasi","Bellasi","Swiss","http://en.wikipedia.org/wiki/Bellasi"
|
86 |
+
86,"tomaso","De Tomaso","Italian","http://en.wikipedia.org/wiki/De_Tomaso"
|
87 |
+
87,"cooper","Cooper","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
88 |
+
88,"eagle","Eagle","American","http://en.wikipedia.org/wiki/Anglo_American_Racers"
|
89 |
+
89,"lds","LDS","South African","http://en.wikipedia.org/wiki/LDS_(automobile)"
|
90 |
+
90,"protos","Protos","British","http://en.wikipedia.org/wiki/Protos_(constructor)"
|
91 |
+
91,"shannon","Shannon","British","http://en.wikipedia.org/wiki/Shannon_(Formula_One)"
|
92 |
+
92,"scirocco","Scirocco","British","http://en.wikipedia.org/wiki/Scirocco-Powell"
|
93 |
+
93,"re","RE","Rhodesian","http://en.wikipedia.org/wiki/RE_%28automobile%29"
|
94 |
+
94,"brp","BRP","British","http://en.wikipedia.org/wiki/British_Racing_Partnership"
|
95 |
+
95,"porsche","Porsche","German","http://en.wikipedia.org/wiki/Porsche_in_Formula_One"
|
96 |
+
96,"derrington","Derrington","British","http://en.wikipedia.org/wiki/Derrington-Francis"
|
97 |
+
97,"gilby","Gilby","British","http://en.wikipedia.org/wiki/Gilby"
|
98 |
+
98,"stebro","Stebro","Canadian","http://en.wikipedia.org/wiki/Stebro"
|
99 |
+
99,"emeryson","Emeryson","British","http://en.wikipedia.org/wiki/Emeryson"
|
100 |
+
100,"enb","ENB","Belgian","http://en.wikipedia.org/wiki/Ecurie_Nationale_Belge"
|
101 |
+
101,"jbw","JBW","British","http://en.wikipedia.org/wiki/JBW"
|
102 |
+
102,"ferguson","Ferguson","British","http://en.wikipedia.org/wiki/Ferguson_Research_Ltd."
|
103 |
+
103,"mbm","MBM","Swiss","http://en.wikipedia.org/wiki/Monteverdi_Basel_Motors"
|
104 |
+
104,"behra-porsche","Behra-Porsche","Italian","http://en.wikipedia.org/wiki/Behra-Porsche"
|
105 |
+
105,"maserati","Maserati","Italian","http://en.wikipedia.org/wiki/Maserati"
|
106 |
+
106,"scarab","Scarab","American","http://en.wikipedia.org/wiki/Scarab_(constructor)"
|
107 |
+
107,"watson","Watson","American","http://en.wikipedia.org/wiki/A.J._Watson"
|
108 |
+
108,"epperly","Epperly","American","http://en.wikipedia.org/wiki/Epperly"
|
109 |
+
109,"phillips","Phillips","American","http://en.wikipedia.org/wiki/Phillips_(constructor)"
|
110 |
+
110,"lesovsky","Lesovsky","American","http://en.wikipedia.org/wiki/Lesovsky"
|
111 |
+
111,"trevis","Trevis","American","http://en.wikipedia.org/wiki/Trevis"
|
112 |
+
112,"meskowski","Meskowski","American","http://en.wikipedia.org/wiki/Meskowski"
|
113 |
+
113,"kurtis_kraft","Kurtis Kraft","American","http://en.wikipedia.org/wiki/Kurtis_Kraft"
|
114 |
+
114,"kuzma","Kuzma","American","http://en.wikipedia.org/wiki/Kuzma_(constructor)"
|
115 |
+
115,"vhristensen","Christensen","American","http://en.wikipedia.org/wiki/Christensen_(constructor)"
|
116 |
+
116,"ewing","Ewing","American","http://en.wikipedia.org/wiki/Ewing_(constructor)"
|
117 |
+
117,"aston_martin","Aston Martin","British","http://en.wikipedia.org/wiki/Aston_Martin_in_Formula_One"
|
118 |
+
118,"vanwall","Vanwall","British","http://en.wikipedia.org/wiki/Vanwall"
|
119 |
+
119,"moore","Moore","American","http://en.wikipedia.org/wiki/Moore_(constructor)"
|
120 |
+
120,"dunn","Dunn","American","http://en.wikipedia.org/wiki/Dunn_Engineering"
|
121 |
+
121,"elder","Elder","American","http://en.wikipedia.org/wiki/Elder_(constructor)"
|
122 |
+
122,"sutton","Sutton","American","http://en.wikipedia.org/wiki/Sutton_(constructor)"
|
123 |
+
123,"fry","Fry","British","http://en.wikipedia.org/wiki/Fry_(racing_team)"
|
124 |
+
124,"tec-mec","Tec-Mec","Italian","http://en.wikipedia.org/wiki/Tec-Mec"
|
125 |
+
125,"connaught","Connaught","British","http://en.wikipedia.org/wiki/Connaught_Engineering"
|
126 |
+
126,"alta","Alta","British","http://en.wikipedia.org/wiki/Alta_auto_racing_team"
|
127 |
+
127,"osca","OSCA","Italian","http://en.wikipedia.org/wiki/Officine_Specializate_Costruzione_Automobili"
|
128 |
+
128,"gordini","Gordini","French","http://en.wikipedia.org/wiki/Gordini"
|
129 |
+
129,"stevens","Stevens","American","http://en.wikipedia.org/wiki/Stevens_(constructor)"
|
130 |
+
130,"bugatti","Bugatti","French","http://en.wikipedia.org/wiki/Bugatti"
|
131 |
+
131,"mercedes","Mercedes","German","http://en.wikipedia.org/wiki/Mercedes-Benz_in_Formula_One"
|
132 |
+
132,"lancia","Lancia","Italian","http://en.wikipedia.org/wiki/Lancia_in_Formula_One"
|
133 |
+
133,"hwm","HWM","British","http://en.wikipedia.org/wiki/Hersham_and_Walton_Motors"
|
134 |
+
134,"schroeder","Schroeder","American","http://en.wikipedia.org/wiki/Schroeder_(constructor)"
|
135 |
+
135,"pawl","Pawl","American","http://en.wikipedia.org/wiki/Pawl_(constructor)"
|
136 |
+
136,"pankratz","Pankratz","American","http://en.wikipedia.org/wiki/Pankratz"
|
137 |
+
137,"arzani-volpini","Arzani-Volpini","Italian","http://en.wikipedia.org/wiki/Arzani-Volpini"
|
138 |
+
138,"nichels","Nichels","American","http://en.wikipedia.org/wiki/Nichels"
|
139 |
+
139,"bromme","Bromme","American","http://en.wikipedia.org/wiki/Bromme"
|
140 |
+
140,"klenk","Klenk","German","http://en.wikipedia.org/wiki/Klenk"
|
141 |
+
141,"simca","Simca","French","http://en.wikipedia.org/wiki/Simca"
|
142 |
+
142,"turner","Turner","American","http://en.wikipedia.org/wiki/Turner_(constructor)"
|
143 |
+
143,"del_roy","Del Roy","American","http://en.wikipedia.org/wiki/Del_Roy"
|
144 |
+
144,"veritas","Veritas","German","http://en.wikipedia.org/wiki/Veritas_(constructor)"
|
145 |
+
145,"bmw","BMW","German","http://en.wikipedia.org/wiki/BMW"
|
146 |
+
146,"emw","EMW","East German","http://en.wikipedia.org/wiki/Eisenacher_Motorenwerk"
|
147 |
+
147,"afm","AFM","German","http://en.wikipedia.org/wiki/Alex_von_Falkenhausen_Motorenbau"
|
148 |
+
148,"frazer_nash","Frazer Nash","British","http://en.wikipedia.org/wiki/Frazer_Nash"
|
149 |
+
149,"sherman","Sherman","American","http://en.wikipedia.org/wiki/Sherman_(constructor)"
|
150 |
+
150,"deidt","Deidt","American","http://en.wikipedia.org/wiki/Deidt"
|
151 |
+
151,"era","ERA","British","http://en.wikipedia.org/wiki/English_Racing_Automobiles"
|
152 |
+
152,"butterworth","Aston Butterworth","British","http://en.wikipedia.org/wiki/Aston_Butterworth"
|
153 |
+
153,"cisitalia","Cisitalia","Italian","http://en.wikipedia.org/wiki/Cisitalia"
|
154 |
+
154,"lago","Talbot-Lago","French","http://en.wikipedia.org/wiki/Talbot-Lago"
|
155 |
+
155,"hall","Hall","American","http://en.wikipedia.org/wiki/Hall_(constructor)"
|
156 |
+
156,"marchese","Marchese","American","http://en.wikipedia.org/wiki/Marchese_(constructor)"
|
157 |
+
157,"langley","Langley","American","http://en.wikipedia.org/wiki/Langley_(constructor)"
|
158 |
+
158,"rae","Rae","American","http://en.wikipedia.org/wiki/Rae_(motorsport)"
|
159 |
+
159,"olson","Olson","American","http://en.wikipedia.org/wiki/Olson_(constructor)"
|
160 |
+
160,"wetteroth","Wetteroth","American","http://en.wikipedia.org/wiki/Wetteroth"
|
161 |
+
161,"adams","Adams","American","http://en.wikipedia.org/wiki/Adams_(constructor)"
|
162 |
+
162,"snowberger","Snowberger","American","http://en.wikipedia.org/wiki/Snowberger"
|
163 |
+
163,"milano","Milano","Italian","http://en.wikipedia.org/wiki/Scuderia_Milano"
|
164 |
+
164,"hrt","HRT","Spanish","http://en.wikipedia.org/wiki/Hispania_Racing"
|
165 |
+
167,"cooper-maserati","Cooper-Maserati","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
166 |
+
166,"virgin","Virgin","British","http://en.wikipedia.org/wiki/Virgin_Racing"
|
167 |
+
168,"cooper-osca","Cooper-OSCA","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
168 |
+
169,"cooper-borgward","Cooper-Borgward","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
169 |
+
170,"cooper-climax","Cooper-Climax","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
170 |
+
171,"cooper-castellotti","Cooper-Castellotti","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
171 |
+
172,"lotus-climax","Lotus-Climax","British","http://en.wikipedia.org/wiki/Team_Lotus"
|
172 |
+
173,"lotus-maserati","Lotus-Maserati","British","http://en.wikipedia.org/wiki/Team_Lotus"
|
173 |
+
174,"de_tomaso-osca","De Tomaso-Osca","Italian","http://en.wikipedia.org/wiki/De_Tomaso"
|
174 |
+
175,"de_tomaso-alfa_romeo","De Tomaso-Alfa Romeo","Italian","http://en.wikipedia.org/wiki/De_Tomaso"
|
175 |
+
176,"lotus-brm","Lotus-BRM","British","http://en.wikipedia.org/wiki/Team_Lotus"
|
176 |
+
177,"lotus-borgward","Lotus-Borgward","British","http://en.wikipedia.org/wiki/Team_Lotus"
|
177 |
+
178,"cooper-alfa_romeo","Cooper-Alfa Romeo","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
178 |
+
179,"de_tomaso-ferrari","De Tomaso-Ferrari","Italian","http://en.wikipedia.org/wiki/De_Tomaso"
|
179 |
+
180,"lotus-ford","Lotus-Ford","British","http://en.wikipedia.org/wiki/Team_Lotus"
|
180 |
+
181,"brabham-brm","Brabham-BRM","British","http://en.wikipedia.org/wiki/Brabham"
|
181 |
+
182,"brabham-ford","Brabham-Ford","British","http://en.wikipedia.org/wiki/Brabham"
|
182 |
+
183,"brabham-climax","Brabham-Climax","British","http://en.wikipedia.org/wiki/Brabham"
|
183 |
+
184,"lds-climax","LDS-Climax","South African","http://en.wikipedia.org/wiki/LDS_(automobile)"
|
184 |
+
185,"lds-alfa_romeo","LDS-Alfa Romeo","South African","http://en.wikipedia.org/wiki/LDS_(automobile)"
|
185 |
+
186,"cooper-ford","Cooper-Ford","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
186 |
+
187,"mclaren-ford","McLaren-Ford","British","http://en.wikipedia.org/wiki/Team_McLaren"
|
187 |
+
188,"mclaren-seren","McLaren-Serenissima","British","http://en.wikipedia.org/wiki/Team_McLaren"
|
188 |
+
189,"eagle-climax","Eagle-Climax","American","http://en.wikipedia.org/wiki/Anglo_American_Racers"
|
189 |
+
190,"eagle-weslake","Eagle-Weslake","American","http://en.wikipedia.org/wiki/Anglo_American_Racers"
|
190 |
+
191,"brabham-repco","Brabham-Repco","British","http://en.wikipedia.org/wiki/Brabham"
|
191 |
+
192,"cooper-ferrari","Cooper-Ferrari","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
192 |
+
193,"cooper-ats","Cooper-ATS","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
193 |
+
194,"mclaren-brm","McLaren-BRM","British","http://en.wikipedia.org/wiki/McLaren_(racing)"
|
194 |
+
195,"cooper-brm","Cooper-BRM","British","http://en.wikipedia.org/wiki/Cooper_Car_Company"
|
195 |
+
196,"matra-ford","Matra-Ford","French","http://en.wikipedia.org/wiki/Matra"
|
196 |
+
197,"brm-ford","BRM-Ford","British","http://en.wikipedia.org/wiki/BRM"
|
197 |
+
198,"mclaren-alfa_romeo","McLaren-Alfa Romeo","British","http://en.wikipedia.org/wiki/McLaren_(racing)"
|
198 |
+
199,"march-alfa_romeo","March-Alfa Romeo","British","http://en.wikipedia.org/wiki/March_Engineering"
|
199 |
+
200,"march-ford","March-Ford","British","http://en.wikipedia.org/wiki/March_Engineering"
|
200 |
+
201,"lotus-pw","Lotus-Pratt & Whitney","British","http://en.wikipedia.org/wiki/Team_Lotus"
|
201 |
+
202,"shadow-ford","Shadow-Ford","British","http://en.wikipedia.org/wiki/Shadow_Racing_Cars"
|
202 |
+
203,"shadow-matra","Shadow-Matra","British","http://en.wikipedia.org/wiki/Shadow_Racing_Cars"
|
203 |
+
204,"brabham-alfa_romeo","Brabham-Alfa Romeo","British","http://en.wikipedia.org/wiki/Brabham"
|
204 |
+
205,"lotus_racing","Lotus","Malaysian","http://en.wikipedia.org/wiki/Lotus_Racing"
|
205 |
+
206,"marussia","Marussia","Russian","http://en.wikipedia.org/wiki/Marussia_F1"
|
206 |
+
207,"caterham","Caterham","Malaysian","http://en.wikipedia.org/wiki/Caterham_F1"
|
207 |
+
208,"lotus_f1","Lotus F1","British","http://en.wikipedia.org/wiki/Lotus_F1"
|
208 |
+
209,"manor","Manor Marussia","British","http://en.wikipedia.org/wiki/Manor_Motorsport"
|
209 |
+
210,"haas","Haas F1 Team","American","http://en.wikipedia.org/wiki/Haas_F1_Team"
|
210 |
+
211,"racing_point","Racing Point","British","http://en.wikipedia.org/wiki/Racing_Point_F1_Team"
|
211 |
+
213,"alphatauri","AlphaTauri","Italian","http://en.wikipedia.org/wiki/Scuderia_AlphaTauri"
|
212 |
+
214,"alpine","Alpine F1 Team","French","http://en.wikipedia.org/wiki/Alpine_F1_Team"
|
data/driver_standings.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/drivers.csv
ADDED
@@ -0,0 +1,856 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
driverId,driverRef,number,code,forename,surname,dob,nationality,url
|
2 |
+
1,"hamilton",44,"HAM","Lewis","Hamilton","1985-01-07","British","http://en.wikipedia.org/wiki/Lewis_Hamilton"
|
3 |
+
2,"heidfeld",\N,"HEI","Nick","Heidfeld","1977-05-10","German","http://en.wikipedia.org/wiki/Nick_Heidfeld"
|
4 |
+
3,"rosberg",6,"ROS","Nico","Rosberg","1985-06-27","German","http://en.wikipedia.org/wiki/Nico_Rosberg"
|
5 |
+
4,"alonso",14,"ALO","Fernando","Alonso","1981-07-29","Spanish","http://en.wikipedia.org/wiki/Fernando_Alonso"
|
6 |
+
5,"kovalainen",\N,"KOV","Heikki","Kovalainen","1981-10-19","Finnish","http://en.wikipedia.org/wiki/Heikki_Kovalainen"
|
7 |
+
6,"nakajima",\N,"NAK","Kazuki","Nakajima","1985-01-11","Japanese","http://en.wikipedia.org/wiki/Kazuki_Nakajima"
|
8 |
+
7,"bourdais",\N,"BOU","Sébastien","Bourdais","1979-02-28","French","http://en.wikipedia.org/wiki/S%C3%A9bastien_Bourdais"
|
9 |
+
8,"raikkonen",7,"RAI","Kimi","Räikkönen","1979-10-17","Finnish","http://en.wikipedia.org/wiki/Kimi_R%C3%A4ikk%C3%B6nen"
|
10 |
+
9,"kubica",88,"KUB","Robert","Kubica","1984-12-07","Polish","http://en.wikipedia.org/wiki/Robert_Kubica"
|
11 |
+
10,"glock",\N,"GLO","Timo","Glock","1982-03-18","German","http://en.wikipedia.org/wiki/Timo_Glock"
|
12 |
+
11,"sato",\N,"SAT","Takuma","Sato","1977-01-28","Japanese","http://en.wikipedia.org/wiki/Takuma_Sato"
|
13 |
+
12,"piquet_jr",\N,"PIQ","Nelson","Piquet Jr.","1985-07-25","Brazilian","http://en.wikipedia.org/wiki/Nelson_Piquet,_Jr."
|
14 |
+
13,"massa",19,"MAS","Felipe","Massa","1981-04-25","Brazilian","http://en.wikipedia.org/wiki/Felipe_Massa"
|
15 |
+
14,"coulthard",\N,"COU","David","Coulthard","1971-03-27","British","http://en.wikipedia.org/wiki/David_Coulthard"
|
16 |
+
15,"trulli",\N,"TRU","Jarno","Trulli","1974-07-13","Italian","http://en.wikipedia.org/wiki/Jarno_Trulli"
|
17 |
+
16,"sutil",99,"SUT","Adrian","Sutil","1983-01-11","German","http://en.wikipedia.org/wiki/Adrian_Sutil"
|
18 |
+
17,"webber",\N,"WEB","Mark","Webber","1976-08-27","Australian","http://en.wikipedia.org/wiki/Mark_Webber_(racing_driver)"
|
19 |
+
18,"button",22,"BUT","Jenson","Button","1980-01-19","British","http://en.wikipedia.org/wiki/Jenson_Button"
|
20 |
+
19,"davidson",\N,"DAV","Anthony","Davidson","1979-04-18","British","http://en.wikipedia.org/wiki/Anthony_Davidson"
|
21 |
+
20,"vettel",5,"VET","Sebastian","Vettel","1987-07-03","German","http://en.wikipedia.org/wiki/Sebastian_Vettel"
|
22 |
+
21,"fisichella",\N,"FIS","Giancarlo","Fisichella","1973-01-14","Italian","http://en.wikipedia.org/wiki/Giancarlo_Fisichella"
|
23 |
+
22,"barrichello",\N,"BAR","Rubens","Barrichello","1972-05-23","Brazilian","http://en.wikipedia.org/wiki/Rubens_Barrichello"
|
24 |
+
23,"ralf_schumacher",\N,"SCH","Ralf","Schumacher","1975-06-30","German","http://en.wikipedia.org/wiki/Ralf_Schumacher"
|
25 |
+
24,"liuzzi",\N,"LIU","Vitantonio","Liuzzi","1980-08-06","Italian","http://en.wikipedia.org/wiki/Vitantonio_Liuzzi"
|
26 |
+
25,"wurz",\N,"WUR","Alexander","Wurz","1974-02-15","Austrian","http://en.wikipedia.org/wiki/Alexander_Wurz"
|
27 |
+
26,"speed",\N,"SPE","Scott","Speed","1983-01-24","American","http://en.wikipedia.org/wiki/Scott_Speed"
|
28 |
+
27,"albers",\N,"ALB","Christijan","Albers","1979-04-16","Dutch","http://en.wikipedia.org/wiki/Christijan_Albers"
|
29 |
+
28,"markus_winkelhock",\N,"WIN","Markus","Winkelhock","1980-06-13","German","http://en.wikipedia.org/wiki/Markus_Winkelhock"
|
30 |
+
29,"yamamoto",\N,"YAM","Sakon","Yamamoto","1982-07-09","Japanese","http://en.wikipedia.org/wiki/Sakon_Yamamoto"
|
31 |
+
30,"michael_schumacher",\N,"MSC","Michael","Schumacher","1969-01-03","German","http://en.wikipedia.org/wiki/Michael_Schumacher"
|
32 |
+
31,"montoya",\N,"MON","Juan","Pablo Montoya","1975-09-20","Colombian","http://en.wikipedia.org/wiki/Juan_Pablo_Montoya"
|
33 |
+
32,"klien",\N,"KLI","Christian","Klien","1983-02-07","Austrian","http://en.wikipedia.org/wiki/Christian_Klien"
|
34 |
+
33,"monteiro",\N,"TMO","Tiago","Monteiro","1976-07-24","Portuguese","http://en.wikipedia.org/wiki/Tiago_Monteiro"
|
35 |
+
34,"ide",\N,"IDE","Yuji","Ide","1975-01-21","Japanese","http://en.wikipedia.org/wiki/Yuji_Ide"
|
36 |
+
35,"villeneuve",\N,"VIL","Jacques","Villeneuve","1971-04-09","Canadian","http://en.wikipedia.org/wiki/Jacques_Villeneuve"
|
37 |
+
36,"montagny",\N,"FMO","Franck","Montagny","1978-01-05","French","http://en.wikipedia.org/wiki/Franck_Montagny"
|
38 |
+
37,"rosa",\N,"DLR","Pedro","de la Rosa","1971-02-24","Spanish","http://en.wikipedia.org/wiki/Pedro_de_la_Rosa"
|
39 |
+
38,"doornbos",\N,"DOO","Robert","Doornbos","1981-09-23","Dutch","http://en.wikipedia.org/wiki/Robert_Doornbos"
|
40 |
+
39,"karthikeyan",\N,"KAR","Narain","Karthikeyan","1977-01-14","Indian","http://en.wikipedia.org/wiki/Narain_Karthikeyan"
|
41 |
+
40,"friesacher",\N,"FRI","Patrick","Friesacher","1980-09-26","Austrian","http://en.wikipedia.org/wiki/Patrick_Friesacher"
|
42 |
+
41,"zonta",\N,"ZON","Ricardo","Zonta","1976-03-23","Brazilian","http://en.wikipedia.org/wiki/Ricardo_Zonta"
|
43 |
+
42,"pizzonia",\N,"PIZ","Antônio","Pizzonia","1980-09-11","Brazilian","http://en.wikipedia.org/wiki/Ant%C3%B4nio_Pizzonia"
|
44 |
+
43,"matta",\N,\N,"Cristiano","da Matta","1973-09-19","Brazilian","http://en.wikipedia.org/wiki/Cristiano_da_Matta"
|
45 |
+
44,"panis",\N,\N,"Olivier","Panis","1966-09-02","French","http://en.wikipedia.org/wiki/Olivier_Panis"
|
46 |
+
45,"pantano",\N,\N,"Giorgio","Pantano","1979-02-04","Italian","http://en.wikipedia.org/wiki/Giorgio_Pantano"
|
47 |
+
46,"bruni",\N,\N,"Gianmaria","Bruni","1981-05-30","Italian","http://en.wikipedia.org/wiki/Gianmaria_Bruni"
|
48 |
+
47,"baumgartner",\N,\N,"Zsolt","Baumgartner","1981-01-01","Hungarian","http://en.wikipedia.org/wiki/Zsolt_Baumgartner"
|
49 |
+
48,"gene",\N,\N,"Marc","Gené","1974-03-29","Spanish","http://en.wikipedia.org/wiki/Marc_Gen%C3%A9"
|
50 |
+
49,"frentzen",\N,\N,"Heinz-Harald","Frentzen","1967-05-18","German","http://en.wikipedia.org/wiki/Heinz-Harald_Frentzen"
|
51 |
+
50,"verstappen",\N,\N,"Jos","Verstappen","1972-03-04","Dutch","http://en.wikipedia.org/wiki/Jos_Verstappen"
|
52 |
+
51,"wilson",\N,\N,"Justin","Wilson","1978-07-31","British","http://en.wikipedia.org/wiki/Justin_Wilson_(racing_driver)"
|
53 |
+
52,"firman",\N,\N,"Ralph","Firman","1975-05-20","Irish","http://en.wikipedia.org/wiki/Ralph_Firman"
|
54 |
+
53,"kiesa",\N,\N,"Nicolas","Kiesa","1978-03-03","Danish","http://en.wikipedia.org/wiki/Nicolas_Kiesa"
|
55 |
+
54,"burti",\N,\N,"Luciano","Burti","1975-03-05","Brazilian","http://en.wikipedia.org/wiki/Luciano_Burti"
|
56 |
+
55,"alesi",\N,\N,"Jean","Alesi","1964-06-11","French","http://en.wikipedia.org/wiki/Jean_Alesi"
|
57 |
+
56,"irvine",\N,\N,"Eddie","Irvine","1965-11-10","British","http://en.wikipedia.org/wiki/Eddie_Irvine"
|
58 |
+
57,"hakkinen",\N,\N,"Mika","Häkkinen","1968-09-28","Finnish","http://en.wikipedia.org/wiki/Mika_H%C3%A4kkinen"
|
59 |
+
58,"marques",\N,\N,"Tarso","Marques","1976-01-19","Brazilian","http://en.wikipedia.org/wiki/Tarso_Marques"
|
60 |
+
59,"bernoldi",\N,\N,"Enrique","Bernoldi","1978-10-19","Brazilian","http://en.wikipedia.org/wiki/Enrique_Bernoldi"
|
61 |
+
60,"mazzacane",\N,\N,"Gastón","Mazzacane","1975-05-08","Argentine","http://en.wikipedia.org/wiki/Gast%C3%B3n_Mazzacane"
|
62 |
+
61,"enge",\N,\N,"Tomáš","Enge","1976-09-11","Czech","http://en.wikipedia.org/wiki/Tom%C3%A1%C5%A1_Enge"
|
63 |
+
62,"yoong",\N,\N,"Alex","Yoong","1976-07-20","Malaysian","http://en.wikipedia.org/wiki/Alex_Yoong"
|
64 |
+
63,"salo",\N,\N,"Mika","Salo","1966-11-30","Finnish","http://en.wikipedia.org/wiki/Mika_Salo"
|
65 |
+
64,"diniz",\N,\N,"Pedro","Diniz","1970-05-22","Brazilian","http://en.wikipedia.org/wiki/Pedro_Diniz"
|
66 |
+
65,"herbert",\N,\N,"Johnny","Herbert","1964-06-25","British","http://en.wikipedia.org/wiki/Johnny_Herbert"
|
67 |
+
66,"mcnish",\N,\N,"Allan","McNish","1969-12-29","British","http://en.wikipedia.org/wiki/Allan_McNish"
|
68 |
+
67,"buemi",\N,"BUE","Sébastien","Buemi","1988-10-31","Swiss","http://en.wikipedia.org/wiki/S%C3%A9bastien_Buemi"
|
69 |
+
68,"takagi",\N,\N,"Toranosuke","Takagi","1974-02-12","Japanese","http://en.wikipedia.org/wiki/Toranosuke_Takagi"
|
70 |
+
69,"badoer",\N,"BAD","Luca","Badoer","1971-01-25","Italian","http://en.wikipedia.org/wiki/Luca_Badoer"
|
71 |
+
70,"zanardi",\N,\N,"Alessandro","Zanardi","1966-10-23","Italian","http://en.wikipedia.org/wiki/Alex_Zanardi"
|
72 |
+
71,"damon_hill",\N,\N,"Damon","Hill","1960-09-17","British","http://en.wikipedia.org/wiki/Damon_Hill"
|
73 |
+
72,"sarrazin",\N,\N,"Stéphane","Sarrazin","1975-11-02","French","http://en.wikipedia.org/wiki/St%C3%A9phane_Sarrazin"
|
74 |
+
73,"rosset",\N,\N,"Ricardo","Rosset","1968-07-27","Brazilian","http://en.wikipedia.org/wiki/Ricardo_Rosset"
|
75 |
+
74,"tuero",\N,\N,"Esteban","Tuero","1978-04-22","Argentine","http://en.wikipedia.org/wiki/Esteban_Tuero"
|
76 |
+
75,"nakano",\N,\N,"Shinji","Nakano","1971-04-01","Japanese","http://en.wikipedia.org/wiki/Shinji_Nakano"
|
77 |
+
76,"magnussen",\N,"MAG","Jan","Magnussen","1973-07-04","Danish","http://en.wikipedia.org/wiki/Jan_Magnussen"
|
78 |
+
77,"berger",\N,\N,"Gerhard","Berger","1959-08-27","Austrian","http://en.wikipedia.org/wiki/Gerhard_Berger"
|
79 |
+
78,"larini",\N,\N,"Nicola","Larini","1964-03-19","Italian","http://en.wikipedia.org/wiki/Nicola_Larini"
|
80 |
+
79,"katayama",\N,\N,"Ukyo","Katayama","1963-05-29","Japanese","http://en.wikipedia.org/wiki/Ukyo_Katayama"
|
81 |
+
80,"sospiri",\N,\N,"Vincenzo","Sospiri","1966-10-07","Italian","http://en.wikipedia.org/wiki/Vincenzo_Sospiri"
|
82 |
+
81,"morbidelli",\N,\N,"Gianni","Morbidelli","1968-01-13","Italian","http://en.wikipedia.org/wiki/Gianni_Morbidelli"
|
83 |
+
82,"fontana",\N,\N,"Norberto","Fontana","1975-01-20","Argentine","http://en.wikipedia.org/wiki/Norberto_Fontana"
|
84 |
+
83,"lamy",\N,\N,"Pedro","Lamy","1972-03-20","Portuguese","http://en.wikipedia.org/wiki/Pedro_Lamy"
|
85 |
+
84,"brundle",\N,\N,"Martin","Brundle","1959-06-01","British","http://en.wikipedia.org/wiki/Martin_Brundle"
|
86 |
+
85,"montermini",\N,\N,"Andrea","Montermini","1964-05-30","Italian","http://en.wikipedia.org/wiki/Andrea_Montermini"
|
87 |
+
86,"lavaggi",\N,\N,"Giovanni","Lavaggi","1958-02-18","Italian","http://en.wikipedia.org/wiki/Giovanni_Lavaggi"
|
88 |
+
87,"blundell",\N,\N,"Mark","Blundell","1966-04-08","British","http://en.wikipedia.org/wiki/Mark_Blundell"
|
89 |
+
88,"suzuki",\N,\N,"Aguri","Suzuki","1960-09-08","Japanese","http://en.wikipedia.org/wiki/Aguri_Suzuki"
|
90 |
+
89,"inoue",\N,\N,"Taki","Inoue","1963-09-05","Japanese","http://en.wikipedia.org/wiki/Taki_Inoue"
|
91 |
+
90,"moreno",\N,\N,"Roberto","Moreno","1959-02-11","Brazilian","http://en.wikipedia.org/wiki/Roberto_Moreno"
|
92 |
+
91,"wendlinger",\N,\N,"Karl","Wendlinger","1968-12-20","Austrian","http://en.wikipedia.org/wiki/Karl_Wendlinger"
|
93 |
+
92,"gachot",\N,\N,"Bertrand","Gachot","1962-12-23","Belgian","http://en.wikipedia.org/wiki/Bertrand_Gachot"
|
94 |
+
93,"schiattarella",\N,\N,"Domenico","Schiattarella","1967-11-17","Italian","http://en.wikipedia.org/wiki/Domenico_Schiattarella"
|
95 |
+
94,"martini",\N,\N,"Pierluigi","Martini","1961-04-23","Italian","http://en.wikipedia.org/wiki/Pierluigi_Martini"
|
96 |
+
95,"mansell",\N,\N,"Nigel","Mansell","1953-08-08","British","http://en.wikipedia.org/wiki/Nigel_Mansell"
|
97 |
+
96,"boullion",\N,\N,"Jean-Christophe","Boullion","1969-12-27","French","http://en.wikipedia.org/wiki/Jean-Christophe_Boullion"
|
98 |
+
97,"papis",\N,\N,"Massimiliano","Papis","1969-10-03","Italian","http://en.wikipedia.org/wiki/Massimiliano_Papis"
|
99 |
+
98,"deletraz",\N,\N,"Jean-Denis","Délétraz","1963-10-01","Swiss","http://en.wikipedia.org/wiki/Jean-Denis_Deletraz"
|
100 |
+
99,"tarquini",\N,\N,"Gabriele","Tarquini","1962-03-02","Italian","http://en.wikipedia.org/wiki/Gabriele_Tarquini"
|
101 |
+
100,"comas",\N,\N,"Érik","Comas","1963-09-28","French","http://en.wikipedia.org/wiki/%C3%89rik_Comas"
|
102 |
+
101,"brabham",\N,\N,"David","Brabham","1965-09-05","Australian","http://en.wikipedia.org/wiki/David_Brabham"
|
103 |
+
102,"senna",\N,\N,"Ayrton","Senna","1960-03-21","Brazilian","http://en.wikipedia.org/wiki/Ayrton_Senna"
|
104 |
+
103,"bernard",\N,\N,"Éric","Bernard","1964-08-24","French","http://en.wikipedia.org/wiki/%C3%89ric_Bernard"
|
105 |
+
104,"fittipaldi",\N,\N,"Christian","Fittipaldi","1971-01-18","Brazilian","http://en.wikipedia.org/wiki/Christian_Fittipaldi"
|
106 |
+
105,"alboreto",\N,\N,"Michele","Alboreto","1956-12-23","Italian","http://en.wikipedia.org/wiki/Michele_Alboreto"
|
107 |
+
106,"beretta",\N,\N,"Olivier","Beretta","1969-11-23","Monegasque","http://en.wikipedia.org/wiki/Olivier_Beretta"
|
108 |
+
107,"ratzenberger",\N,\N,"Roland","Ratzenberger","1960-07-04","Austrian","http://en.wikipedia.org/wiki/Roland_Ratzenberger"
|
109 |
+
108,"belmondo",\N,\N,"Paul","Belmondo","1963-04-23","French","http://en.wikipedia.org/wiki/Paul_Belmondo"
|
110 |
+
109,"lehto",\N,\N,"Jyrki","Järvilehto","1966-01-31","Finnish","http://en.wikipedia.org/wiki/Jyrki_J%C3%A4rvilehto"
|
111 |
+
110,"cesaris",\N,\N,"Andrea","de Cesaris","1959-05-31","Italian","http://en.wikipedia.org/wiki/Andrea_de_Cesaris"
|
112 |
+
111,"gounon",\N,\N,"Jean-Marc","Gounon","1963-01-01","French","http://en.wikipedia.org/wiki/Jean-Marc_Gounon"
|
113 |
+
112,"alliot",\N,\N,"Philippe","Alliot","1954-07-27","French","http://en.wikipedia.org/wiki/Philippe_Alliot"
|
114 |
+
113,"adams",\N,\N,"Philippe","Adams","1969-11-19","Belgian","http://en.wikipedia.org/wiki/Philippe_Adams"
|
115 |
+
114,"dalmas",\N,\N,"Yannick","Dalmas","1961-07-28","French","http://en.wikipedia.org/wiki/Yannick_Dalmas"
|
116 |
+
115,"noda",\N,\N,"Hideki","Noda","1969-03-07","Japanese","http://en.wikipedia.org/wiki/Hideki_Noda"
|
117 |
+
116,"lagorce",\N,\N,"Franck","Lagorce","1968-09-01","French","http://en.wikipedia.org/wiki/Franck_Lagorce"
|
118 |
+
117,"prost",\N,\N,"Alain","Prost","1955-02-24","French","http://en.wikipedia.org/wiki/Alain_Prost"
|
119 |
+
118,"warwick",\N,\N,"Derek","Warwick","1954-08-27","British","http://en.wikipedia.org/wiki/Derek_Warwick"
|
120 |
+
119,"patrese",\N,\N,"Riccardo","Patrese","1954-04-17","Italian","http://en.wikipedia.org/wiki/Riccardo_Patrese"
|
121 |
+
120,"barbazza",\N,\N,"Fabrizio","Barbazza","1963-04-02","Italian","http://en.wikipedia.org/wiki/Fabrizio_Barbazza"
|
122 |
+
121,"andretti",\N,\N,"Michael","Andretti","1962-10-05","American","http://en.wikipedia.org/wiki/Michael_Andretti"
|
123 |
+
122,"capelli",\N,\N,"Ivan","Capelli","1963-05-24","Italian","http://en.wikipedia.org/wiki/Ivan_Capelli"
|
124 |
+
123,"boutsen",\N,\N,"Thierry","Boutsen","1957-07-13","Belgian","http://en.wikipedia.org/wiki/Thierry_Boutsen"
|
125 |
+
124,"apicella",\N,\N,"Marco","Apicella","1965-10-07","Italian","http://en.wikipedia.org/wiki/Marco_Apicella"
|
126 |
+
125,"naspetti",\N,\N,"Emanuele","Naspetti","1968-02-24","Italian","http://en.wikipedia.org/wiki/Emanuele_Naspetti"
|
127 |
+
126,"toshio_suzuki",\N,\N,"Toshio","Suzuki","1955-03-10","Japanese","http://en.wikipedia.org/wiki/Toshio_Suzuki_(driver)"
|
128 |
+
127,"gugelmin",\N,\N,"Maurício","Gugelmin","1963-04-20","Brazilian","http://en.wikipedia.org/wiki/Maur%C3%ADcio_Gugelmin"
|
129 |
+
128,"poele",\N,\N,"Eric","van de Poele","1961-09-30","Belgian","http://en.wikipedia.org/wiki/Eric_van_de_Poele"
|
130 |
+
129,"grouillard",\N,\N,"Olivier","Grouillard","1958-09-02","French","http://en.wikipedia.org/wiki/Olivier_Grouillard"
|
131 |
+
130,"chiesa",\N,\N,"Andrea","Chiesa","1964-05-06","Swiss","http://en.wikipedia.org/wiki/Andrea_Chiesa"
|
132 |
+
131,"modena",\N,\N,"Stefano","Modena","1963-05-12","Italian","http://en.wikipedia.org/wiki/Stefano_Modena"
|
133 |
+
132,"amati",\N,\N,"Giovanna","Amati","1959-07-20","Italian","http://en.wikipedia.org/wiki/Giovanna_Amati"
|
134 |
+
133,"caffi",\N,\N,"Alex","Caffi","1964-03-18","Italian","http://en.wikipedia.org/wiki/Alex_Caffi"
|
135 |
+
134,"bertaggia",\N,\N,"Enrico","Bertaggia","1964-09-19","Italian","http://en.wikipedia.org/wiki/Enrico_Bertaggia"
|
136 |
+
135,"mccarthy",\N,\N,"Perry","McCarthy","1961-03-03","British","http://en.wikipedia.org/wiki/Perry_McCarthy"
|
137 |
+
136,"lammers",\N,\N,"Jan","Lammers","1956-06-02","Dutch","http://en.wikipedia.org/wiki/Jan_Lammers"
|
138 |
+
137,"piquet",\N,\N,"Nelson","Piquet","1952-08-17","Brazilian","http://en.wikipedia.org/wiki/Nelson_Piquet"
|
139 |
+
138,"satoru_nakajima",\N,\N,"Satoru","Nakajima","1953-02-23","Japanese","http://en.wikipedia.org/wiki/Satoru_Nakajima"
|
140 |
+
139,"pirro",\N,\N,"Emanuele","Pirro","1962-01-12","Italian","http://en.wikipedia.org/wiki/Emanuele_Pirro"
|
141 |
+
140,"johansson",\N,\N,"Stefan","Johansson","1956-09-08","Swedish","http://en.wikipedia.org/wiki/Stefan_Johansson"
|
142 |
+
141,"bailey",\N,\N,"Julian","Bailey","1961-10-09","British","http://en.wikipedia.org/wiki/Julian_Bailey"
|
143 |
+
142,"chaves",\N,\N,"Pedro","Chaves","1965-02-27","Portuguese","http://en.wikipedia.org/wiki/Pedro_Chaves"
|
144 |
+
143,"bartels",\N,\N,"Michael","Bartels","1968-03-08","German","http://en.wikipedia.org/wiki/Michael_Bartels"
|
145 |
+
144,"hattori",\N,\N,"Naoki","Hattori","1966-06-13","Japanese","http://en.wikipedia.org/wiki/Naoki_Hattori"
|
146 |
+
145,"nannini",\N,\N,"Alessandro","Nannini","1959-07-07","Italian","http://en.wikipedia.org/wiki/Alessandro_Nannini"
|
147 |
+
146,"schneider",\N,\N,"Bernd","Schneider","1964-07-20","German","http://en.wikipedia.org/wiki/Bernd_Schneider_(racecar_driver)"
|
148 |
+
147,"barilla",\N,\N,"Paolo","Barilla","1961-04-20","Italian","http://en.wikipedia.org/wiki/Paolo_Barilla"
|
149 |
+
148,"foitek",\N,\N,"Gregor","Foitek","1965-03-27","Swiss","http://en.wikipedia.org/wiki/Gregor_Foitek"
|
150 |
+
149,"langes",\N,\N,"Claudio","Langes","1960-07-20","Italian","http://en.wikipedia.org/wiki/Claudio_Langes"
|
151 |
+
150,"gary_brabham",\N,\N,"Gary","Brabham","1961-03-29","Australian","http://en.wikipedia.org/wiki/Gary_Brabham"
|
152 |
+
151,"donnelly",\N,\N,"Martin","Donnelly","1964-03-26","British","http://en.wikipedia.org/wiki/Martin_Donnelly_(racing_driver)"
|
153 |
+
152,"giacomelli",\N,\N,"Bruno","Giacomelli","1952-09-10","Italian","http://en.wikipedia.org/wiki/Bruno_Giacomelli"
|
154 |
+
153,"alguersuari",\N,"ALG","Jaime","Alguersuari","1990-03-23","Spanish","http://en.wikipedia.org/wiki/Jaime_Alguersuari"
|
155 |
+
154,"grosjean",8,"GRO","Romain","Grosjean","1986-04-17","French","http://en.wikipedia.org/wiki/Romain_Grosjean"
|
156 |
+
155,"kobayashi",10,"KOB","Kamui","Kobayashi","1986-09-13","Japanese","http://en.wikipedia.org/wiki/Kamui_Kobayashi"
|
157 |
+
156,"palmer",\N,\N,"Jonathan","Palmer","1956-11-07","British","http://en.wikipedia.org/wiki/Jonathan_Palmer"
|
158 |
+
157,"danner",\N,\N,"Christian","Danner","1958-04-04","German","http://en.wikipedia.org/wiki/Christian_Danner"
|
159 |
+
158,"cheever",\N,\N,"Eddie","Cheever","1958-01-10","American","http://en.wikipedia.org/wiki/Eddie_Cheever"
|
160 |
+
159,"sala",\N,\N,"Luis","Pérez-Sala","1959-05-15","Spanish","http://en.wikipedia.org/wiki/Luis_Perez-Sala"
|
161 |
+
160,"ghinzani",\N,\N,"Piercarlo","Ghinzani","1952-01-16","Italian","http://en.wikipedia.org/wiki/Piercarlo_Ghinzani"
|
162 |
+
161,"weidler",\N,\N,"Volker","Weidler","1962-03-18","German","http://en.wikipedia.org/wiki/Volker_Weidler"
|
163 |
+
162,"raphanel",\N,\N,"Pierre-Henri","Raphanel","1961-05-27","French","http://en.wikipedia.org/wiki/Pierre-Henri_Raphanel"
|
164 |
+
163,"arnoux",\N,\N,"René","Arnoux","1948-07-04","French","http://en.wikipedia.org/wiki/Ren%C3%A9_Arnoux"
|
165 |
+
164,"joachim_winkelhock",\N,\N,"Joachim","Winkelhock","1960-10-24","German","http://en.wikipedia.org/wiki/Joachim_Winkelhock"
|
166 |
+
165,"larrauri",\N,\N,"Oscar","Larrauri","1954-08-19","Argentine","http://en.wikipedia.org/wiki/Oscar_Larrauri"
|
167 |
+
166,"streiff",\N,\N,"Philippe","Streiff","1955-06-26","French","http://en.wikipedia.org/wiki/Philippe_Streiff"
|
168 |
+
167,"campos",\N,\N,"Adrián","Campos","1960-06-17","Spanish","http://en.wikipedia.org/wiki/Adri%C3%A1n_Campos"
|
169 |
+
168,"schlesser",\N,\N,"Jean-Louis","Schlesser","1948-09-12","French","http://en.wikipedia.org/wiki/Jean-Louis_Schlesser"
|
170 |
+
169,"fabre",\N,\N,"Pascal","Fabre","1960-01-09","French","http://en.wikipedia.org/wiki/Pascal_Fabre"
|
171 |
+
170,"fabi",\N,\N,"Teo","Fabi","1955-03-09","Italian","http://en.wikipedia.org/wiki/Teo_Fabi"
|
172 |
+
171,"forini",\N,\N,"Franco","Forini","1958-09-22","Swiss","http://en.wikipedia.org/wiki/Franco_Forini"
|
173 |
+
172,"laffite",\N,\N,"Jacques","Laffite","1943-11-21","French","http://en.wikipedia.org/wiki/Jacques_Laffite"
|
174 |
+
173,"angelis",\N,\N,"Elio","de Angelis","1958-03-26","Italian","http://en.wikipedia.org/wiki/Elio_de_Angelis"
|
175 |
+
174,"dumfries",\N,\N,"Johnny","Dumfries","1958-04-26","British","http://en.wikipedia.org/wiki/Johnny_Dumfries"
|
176 |
+
175,"tambay",\N,\N,"Patrick","Tambay","1949-06-25","French","http://en.wikipedia.org/wiki/Patrick_Tambay"
|
177 |
+
176,"surer",\N,\N,"Marc","Surer","1951-09-18","Swiss","http://en.wikipedia.org/wiki/Marc_Surer"
|
178 |
+
177,"keke_rosberg",\N,\N,"Keke","Rosberg","1948-12-06","Finnish","http://en.wikipedia.org/wiki/Keke_Rosberg"
|
179 |
+
178,"jones",\N,\N,"Alan","Jones","1946-11-02","Australian","http://en.wikipedia.org/wiki/Alan_Jones_(Formula_1)"
|
180 |
+
179,"rothengatter",\N,\N,"Huub","Rothengatter","1954-10-08","Dutch","http://en.wikipedia.org/wiki/Huub_Rothengatter"
|
181 |
+
180,"berg",\N,\N,"Allen","Berg","1961-08-01","Canadian","http://en.wikipedia.org/wiki/Allen_Berg"
|
182 |
+
181,"manfred_winkelhock",\N,\N,"Manfred","Winkelhock","1951-10-06","German","http://en.wikipedia.org/wiki/Manfred_Winkelhock"
|
183 |
+
182,"lauda",\N,\N,"Niki","Lauda","1949-02-22","Austrian","http://en.wikipedia.org/wiki/Niki_Lauda"
|
184 |
+
183,"hesnault",\N,\N,"François","Hesnault","1956-12-30","French","http://en.wikipedia.org/wiki/Fran%C3%A7ois_Hesnault"
|
185 |
+
184,"baldi",\N,\N,"Mauro","Baldi","1954-01-31","Italian","http://en.wikipedia.org/wiki/Mauro_Baldi"
|
186 |
+
185,"bellof",\N,\N,"Stefan","Bellof","1957-11-20","German","http://en.wikipedia.org/wiki/Stefan_Bellof"
|
187 |
+
186,"acheson",\N,\N,"Kenny","Acheson","1957-11-27","British","http://en.wikipedia.org/wiki/Kenny_Acheson"
|
188 |
+
187,"watson",\N,\N,"John","Watson","1946-05-04","British","http://en.wikipedia.org/wiki/John_Watson_(racing_driver)"
|
189 |
+
188,"cecotto",\N,\N,"Johnny","Cecotto","1956-01-25","Venezuelan","http://en.wikipedia.org/wiki/Johnny_Cecotto"
|
190 |
+
189,"gartner",\N,\N,"Jo","Gartner","1954-01-24","Austrian","http://en.wikipedia.org/wiki/Jo_Gartner"
|
191 |
+
190,"corrado_fabi",\N,\N,"Corrado","Fabi","1961-04-12","Italian","http://en.wikipedia.org/wiki/Corrado_Fabi"
|
192 |
+
191,"thackwell",\N,\N,"Mike","Thackwell","1961-03-30","New Zealander","http://en.wikipedia.org/wiki/Mike_Thackwell"
|
193 |
+
192,"serra",\N,\N,"Chico","Serra","1957-02-03","Brazilian","http://en.wikipedia.org/wiki/Chico_Serra"
|
194 |
+
193,"sullivan",\N,\N,"Danny","Sullivan","1950-03-09","American","http://en.wikipedia.org/wiki/Danny_Sullivan"
|
195 |
+
194,"salazar",\N,\N,"Eliseo","Salazar","1954-11-14","Chilean","http://en.wikipedia.org/wiki/Eliseo_Salazar"
|
196 |
+
195,"guerrero",\N,\N,"Roberto","Guerrero","1958-11-16","Colombian","http://en.wikipedia.org/wiki/Roberto_Guerrero"
|
197 |
+
196,"boesel",\N,\N,"Raul","Boesel","1957-12-04","Brazilian","http://en.wikipedia.org/wiki/Raul_Boesel"
|
198 |
+
197,"jarier",\N,\N,"Jean-Pierre","Jarier","1946-07-10","French","http://en.wikipedia.org/wiki/Jean-Pierre_Jarier"
|
199 |
+
198,"villeneuve_sr",\N,\N,"Jacques","Villeneuve Sr.","1953-11-04","Canadian","http://en.wikipedia.org/wiki/Jacques_Villeneuve_(elder)"
|
200 |
+
199,"reutemann",\N,\N,"Carlos","Reutemann","1942-04-12","Argentine","http://en.wikipedia.org/wiki/Carlos_Reutemann"
|
201 |
+
200,"mass",\N,\N,"Jochen","Mass","1946-09-30","German","http://en.wikipedia.org/wiki/Jochen_Mass"
|
202 |
+
201,"borgudd",\N,\N,"Slim","Borgudd","1946-11-25","Swedish","http://en.wikipedia.org/wiki/Slim_Borgudd"
|
203 |
+
202,"pironi",\N,\N,"Didier","Pironi","1952-03-26","French","http://en.wikipedia.org/wiki/Didier_Pironi"
|
204 |
+
203,"gilles_villeneuve",\N,\N,"Gilles","Villeneuve","1950-01-18","Canadian","http://en.wikipedia.org/wiki/Gilles_Villeneuve"
|
205 |
+
204,"paletti",\N,\N,"Riccardo","Paletti","1958-06-15","Italian","http://en.wikipedia.org/wiki/Riccardo_Paletti"
|
206 |
+
205,"henton",\N,\N,"Brian","Henton","1946-09-19","British","http://en.wikipedia.org/wiki/Brian_Henton"
|
207 |
+
206,"daly",\N,\N,"Derek","Daly","1953-03-11","Irish","http://en.wikipedia.org/wiki/Derek_Daly"
|
208 |
+
207,"mario_andretti",\N,\N,"Mario","Andretti","1940-02-28","American","http://en.wikipedia.org/wiki/Mario_Andretti"
|
209 |
+
208,"villota",\N,\N,"Emilio","de Villota","1946-07-26","Spanish","http://en.wikipedia.org/wiki/Emilio_de_Villota"
|
210 |
+
209,"lees",\N,\N,"Geoff","Lees","1951-05-01","British","http://en.wikipedia.org/wiki/Geoff_Lees"
|
211 |
+
210,"byrne",\N,\N,"Tommy","Byrne","1958-05-06","Irish","http://en.wikipedia.org/wiki/Tommy_Byrne_%28racing_driver%29"
|
212 |
+
211,"keegan",\N,\N,"Rupert","Keegan","1955-02-26","British","http://en.wikipedia.org/wiki/Rupert_Keegan"
|
213 |
+
212,"rebaque",\N,\N,"Hector","Rebaque","1956-02-05","Mexican","http://en.wikipedia.org/wiki/Hector_Rebaque"
|
214 |
+
213,"gabbiani",\N,\N,"Beppe","Gabbiani","1957-01-02","Italian","http://en.wikipedia.org/wiki/Beppe_Gabbiani"
|
215 |
+
214,"cogan",\N,\N,"Kevin","Cogan","1956-03-31","American","http://en.wikipedia.org/wiki/Kevin_Cogan"
|
216 |
+
215,"guerra",\N,\N,"Miguel Ángel","Guerra","1953-08-31","Argentine","http://en.wikipedia.org/wiki/Miguel_Angel_Guerra"
|
217 |
+
216,"stohr",\N,\N,"Siegfried","Stohr","1952-10-10","Italian","http://en.wikipedia.org/wiki/Siegfried_Stohr"
|
218 |
+
217,"zunino",\N,\N,"Ricardo","Zunino","1949-04-13","Argentine","http://en.wikipedia.org/wiki/Ricardo_Zunino"
|
219 |
+
218,"londono",\N,\N,"Ricardo","Londoño","1949-08-08","Colombian","http://en.wikipedia.org/wiki/Ricardo_Londo%C3%B1o"
|
220 |
+
219,"jabouille",\N,\N,"Jean-Pierre","Jabouille","1942-10-01","French","http://en.wikipedia.org/wiki/Jean-Pierre_Jabouille"
|
221 |
+
220,"francia",\N,\N,"Giorgio","Francia","1947-11-08","Italian","http://en.wikipedia.org/wiki/Giorgio_Francia"
|
222 |
+
221,"depailler",\N,\N,"Patrick","Depailler","1944-08-09","French","http://en.wikipedia.org/wiki/Patrick_Depailler"
|
223 |
+
222,"scheckter",\N,\N,"Jody","Scheckter","1950-01-29","South African","http://en.wikipedia.org/wiki/Jody_Scheckter"
|
224 |
+
223,"regazzoni",\N,\N,"Clay","Regazzoni","1939-09-05","Swiss","http://en.wikipedia.org/wiki/Clay_Regazzoni"
|
225 |
+
224,"emerson_fittipaldi",\N,\N,"Emerson","Fittipaldi","1946-12-12","Brazilian","http://en.wikipedia.org/wiki/Emerson_Fittipaldi"
|
226 |
+
225,"kennedy",\N,\N,"Dave","Kennedy","1953-01-15","Irish","http://en.wikipedia.org/wiki/David_Kennedy_(racing_driver)"
|
227 |
+
226,"south",\N,\N,"Stephen","South","1952-02-19","British","http://en.wikipedia.org/wiki/Stephen_South"
|
228 |
+
227,"needell",\N,\N,"Tiff","Needell","1951-10-29","British","http://en.wikipedia.org/wiki/Tiff_Needell"
|
229 |
+
228,"desire_wilson",\N,\N,"Desiré","Wilson","1953-11-26","South African","http://en.wikipedia.org/wiki/Desir%C3%A9_Wilson"
|
230 |
+
229,"ertl",\N,\N,"Harald","Ertl","1948-08-31","Austrian","http://en.wikipedia.org/wiki/Harald_Ertl"
|
231 |
+
230,"brambilla",\N,\N,"Vittorio","Brambilla","1937-11-11","Italian","http://en.wikipedia.org/wiki/Vittorio_Brambilla"
|
232 |
+
231,"hunt",\N,\N,"James","Hunt","1947-08-29","British","http://en.wikipedia.org/wiki/James_Hunt"
|
233 |
+
232,"merzario",\N,\N,"Arturo","Merzario","1943-03-11","Italian","http://en.wikipedia.org/wiki/Arturo_Merzario"
|
234 |
+
233,"stuck",\N,\N,"Hans-Joachim","Stuck","1951-01-01","German","http://en.wikipedia.org/wiki/Hans_Joachim_Stuck"
|
235 |
+
234,"brancatelli",\N,\N,"Gianfranco","Brancatelli","1950-01-18","Italian","http://en.wikipedia.org/wiki/Gianfranco_Brancatelli"
|
236 |
+
235,"ickx",\N,\N,"Jacky","Ickx","1945-01-01","Belgian","http://en.wikipedia.org/wiki/Jacky_Ickx"
|
237 |
+
236,"gaillard",\N,\N,"Patrick","Gaillard","1952-02-12","French","http://en.wikipedia.org/wiki/Patrick_Gaillard"
|
238 |
+
237,"ribeiro",\N,\N,"Alex","Ribeiro","1948-11-07","Brazilian","http://en.wikipedia.org/wiki/Alex_Ribeiro"
|
239 |
+
238,"peterson",\N,\N,"Ronnie","Peterson","1944-02-14","Swedish","http://en.wikipedia.org/wiki/Ronnie_Peterson"
|
240 |
+
239,"lunger",\N,\N,"Brett","Lunger","1945-11-14","American","http://en.wikipedia.org/wiki/Brett_Lunger"
|
241 |
+
240,"ongais",\N,\N,"Danny","Ongais","1942-05-21","American","http://en.wikipedia.org/wiki/Danny_Ongais"
|
242 |
+
241,"leoni",\N,\N,"Lamberto","Leoni","1953-05-24","Italian","http://en.wikipedia.org/wiki/Lamberto_Leoni"
|
243 |
+
242,"galica",\N,\N,"Divina","Galica","1944-08-13","British","http://en.wikipedia.org/wiki/Divina_Galica"
|
244 |
+
243,"stommelen",\N,\N,"Rolf","Stommelen","1943-07-11","German","http://en.wikipedia.org/wiki/Rolf_Stommelen"
|
245 |
+
244,"colombo",\N,\N,"Alberto","Colombo","1946-02-23","Italian","http://en.wikipedia.org/wiki/Alberto_Colombo"
|
246 |
+
245,"trimmer",\N,\N,"Tony","Trimmer","1943-01-24","British","http://en.wikipedia.org/wiki/Tony_Trimmer"
|
247 |
+
246,"binder",\N,\N,"Hans","Binder","1948-06-12","Austrian","http://en.wikipedia.org/wiki/Hans_Binder"
|
248 |
+
247,"bleekemolen",\N,\N,"Michael","Bleekemolen","1949-10-02","Dutch","http://en.wikipedia.org/wiki/Michael_Bleekemolen"
|
249 |
+
248,"gimax",\N,\N,"Carlo","Franchi","1938-01-01","Italian","http://en.wikipedia.org/wiki/Gimax"
|
250 |
+
249,"rahal",\N,\N,"Bobby","Rahal","1953-01-10","American","http://en.wikipedia.org/wiki/Bobby_Rahal"
|
251 |
+
250,"pace",\N,\N,"Carlos","Pace","1944-10-06","Brazilian","http://en.wikipedia.org/wiki/Carlos_Pace"
|
252 |
+
251,"ian_scheckter",\N,\N,"Ian","Scheckter","1947-08-22","South African","http://en.wikipedia.org/wiki/Ian_Scheckter"
|
253 |
+
252,"pryce",\N,\N,"Tom","Pryce","1949-06-11","British","http://en.wikipedia.org/wiki/Tom_Pryce"
|
254 |
+
253,"hoffmann",\N,\N,"Ingo","Hoffmann","1953-02-28","Brazilian","http://en.wikipedia.org/wiki/Ingo_Hoffmann"
|
255 |
+
254,"zorzi",\N,\N,"Renzo","Zorzi","1946-12-12","Italian","http://en.wikipedia.org/wiki/Renzo_Zorzi"
|
256 |
+
255,"nilsson",\N,\N,"Gunnar","Nilsson","1948-11-20","Swedish","http://en.wikipedia.org/wiki/Gunnar_Nilsson"
|
257 |
+
256,"perkins",\N,\N,"Larry","Perkins","1950-03-18","Australian","http://en.wikipedia.org/wiki/Larry_Perkins"
|
258 |
+
257,"hayje",\N,\N,"Boy","Lunger","1949-05-03","Dutch","http://en.wikipedia.org/wiki/Boy_Hayje"
|
259 |
+
258,"neve",\N,\N,"Patrick","Nève","1949-10-13","Belgian","http://en.wikipedia.org/wiki/Patrick_Neve"
|
260 |
+
259,"purley",\N,\N,"David","Purley","1945-01-26","British","http://en.wikipedia.org/wiki/David_Purley"
|
261 |
+
260,"andersson",\N,\N,"Conny","Andersson","1939-12-28","Swedish","http://en.wikipedia.org/wiki/Conny_Andersson_(racing_driver)"
|
262 |
+
261,"dryver",\N,\N,"Bernard","de Dryver","1952-09-19","Belgian","http://en.wikipedia.org/wiki/Bernard_de_Dryver"
|
263 |
+
262,"oliver",\N,\N,"Jackie","Oliver","1942-08-14","British","http://en.wikipedia.org/wiki/Jackie_Oliver"
|
264 |
+
263,"kozarowitzky",\N,\N,"Mikko","Kozarowitzky","1948-05-17","Finnish","http://en.wikipedia.org/wiki/Mikko_Kozarowitzky"
|
265 |
+
264,"sutcliffe",\N,\N,"Andy","Sutcliffe","1947-05-09","British","http://en.wikipedia.org/wiki/Andy_Sutcliffe"
|
266 |
+
265,"edwards",\N,\N,"Guy","Edwards","1942-12-30","British","http://en.wikipedia.org/wiki/Guy_Edwards"
|
267 |
+
266,"mcguire",\N,\N,"Brian","McGuire","1945-12-13","Australian","http://en.wikipedia.org/wiki/Brian_McGuire"
|
268 |
+
267,"schuppan",\N,\N,"Vern","Schuppan","1943-03-19","Australian","http://en.wikipedia.org/wiki/Vern_Schuppan"
|
269 |
+
268,"heyer",\N,\N,"Hans","Heyer","1943-03-16","German","http://en.wikipedia.org/wiki/Hans_Heyer"
|
270 |
+
269,"pilette",\N,\N,"Teddy","Pilette","1942-07-26","Belgian","http://en.wikipedia.org/wiki/Teddy_Pilette"
|
271 |
+
270,"ashley",\N,\N,"Ian","Ashley","1947-10-26","British","http://en.wikipedia.org/wiki/Ian_Ashley"
|
272 |
+
271,"kessel",\N,\N,"Loris","Kessel","1950-04-01","Swiss","http://en.wikipedia.org/wiki/Loris_Kessel"
|
273 |
+
272,"takahashi",\N,\N,"Kunimitsu","Takahashi","1940-01-29","Japanese","http://en.wikipedia.org/wiki/Kunimitsu_Takahashi"
|
274 |
+
273,"hoshino",\N,\N,"Kazuyoshi","Hoshino","1947-07-01","Japanese","http://en.wikipedia.org/wiki/Kazuyoshi_Hoshino"
|
275 |
+
274,"takahara",\N,\N,"Noritake","Takahara","1951-06-06","Japanese","http://en.wikipedia.org/wiki/Noritake_Takahara"
|
276 |
+
275,"lombardi",\N,\N,"Lella","Lombardi","1941-03-26","Italian","http://en.wikipedia.org/wiki/Lella_Lombardi"
|
277 |
+
276,"evans",\N,\N,"Bob","Evans","1947-06-11","British","http://en.wikipedia.org/wiki/Bob_Evans_(race_driver)"
|
278 |
+
277,"leclere",\N,\N,"Michel","Leclère","1946-03-18","French","http://en.wikipedia.org/wiki/Michel_Lecl%C3%A8re"
|
279 |
+
278,"amon",\N,\N,"Chris","Amon","1943-07-20","New Zealander","http://en.wikipedia.org/wiki/Chris_Amon"
|
280 |
+
279,"zapico",\N,\N,"Emilio","Zapico","1944-05-27","Spanish","http://en.wikipedia.org/wiki/Emilio_Zapico"
|
281 |
+
280,"pescarolo",\N,\N,"Henri","Pescarolo","1942-09-25","French","http://en.wikipedia.org/wiki/Henri_Pescarolo"
|
282 |
+
281,"nelleman",\N,\N,"Jac","Nelleman","1944-04-19","Danish","http://en.wikipedia.org/wiki/Jac_Nelleman"
|
283 |
+
282,"magee",\N,\N,"Damien","Magee","1945-11-17","British","http://en.wikipedia.org/wiki/Damien_Magee"
|
284 |
+
283,"wilds",\N,\N,"Mike","Wilds","1946-01-07","British","http://en.wikipedia.org/wiki/Mike_Wilds"
|
285 |
+
284,"pesenti_rossi",\N,\N,"Alessandro","Pesenti-Rossi","1942-08-31","Italian","http://en.wikipedia.org/wiki/Alessandro_Pesenti-Rossi"
|
286 |
+
285,"stuppacher",\N,\N,"Otto","Stuppacher","1947-03-03","Austrian","http://en.wikipedia.org/wiki/Otto_Stuppacher"
|
287 |
+
286,"brown",\N,\N,"Warwick","Brown","1949-12-24","Australian","http://en.wikipedia.org/wiki/Warwick_Brown"
|
288 |
+
287,"hasemi",\N,\N,"Masahiro","Hasemi","1945-11-13","Japanese","http://en.wikipedia.org/wiki/Masahiro_Hasemi"
|
289 |
+
288,"donohue",\N,\N,"Mark","Donohue","1937-03-18","American","http://en.wikipedia.org/wiki/Mark_Donohue"
|
290 |
+
289,"hill",\N,\N,"Graham","Hill","1929-02-15","British","http://en.wikipedia.org/wiki/Graham_Hill"
|
291 |
+
290,"wilson_fittipaldi",\N,\N,"Wilson","Fittipaldi","1943-12-25","Brazilian","http://en.wikipedia.org/wiki/Wilson_Fittipaldi"
|
292 |
+
291,"tunmer",\N,\N,"Guy","Tunmer","1948-12-01","South African","http://en.wikipedia.org/wiki/Guy_Tunmer"
|
293 |
+
292,"keizan",\N,\N,"Eddie","Keizan","1944-09-12","South African","http://en.wikipedia.org/wiki/Eddie_Keizan"
|
294 |
+
293,"charlton",\N,\N,"Dave","Charlton","1936-10-27","South African","http://en.wikipedia.org/wiki/Dave_Charlton"
|
295 |
+
294,"brise",\N,\N,"Tony","Brise","1952-03-28","British","http://en.wikipedia.org/wiki/Tony_Brise"
|
296 |
+
295,"wunderink",\N,\N,"Roelof","Wunderink","1948-12-12","Dutch","http://en.wikipedia.org/wiki/Roelof_Wunderink"
|
297 |
+
296,"migault",\N,\N,"François","Migault","1944-12-04","French","http://en.wikipedia.org/wiki/Fran%C3%A7ois_Migault"
|
298 |
+
297,"palm",\N,\N,"Torsten","Palm","1947-07-23","Swedish","http://en.wikipedia.org/wiki/Torsten_Palm"
|
299 |
+
298,"lennep",\N,\N,"Gijs","van Lennep","1942-03-16","Dutch","http://en.wikipedia.org/wiki/Gijs_Van_Lennep"
|
300 |
+
299,"fushida",\N,\N,"Hiroshi","Fushida","1946-03-10","Japanese","http://en.wikipedia.org/wiki/Hiroshi_Fushida"
|
301 |
+
300,"nicholson",\N,\N,"John","Nicholson","1941-10-06","New Zealander","http://en.wikipedia.org/wiki/John_Nicholson_(racing_driver)"
|
302 |
+
301,"morgan",\N,\N,"Dave","Morgan","1944-08-07","British","http://en.wikipedia.org/wiki/Dave_Morgan_(racing_driver)"
|
303 |
+
302,"crawford",\N,\N,"Jim","Crawford","1948-02-13","British","http://en.wikipedia.org/wiki/Jim_Crawford_(driver)"
|
304 |
+
303,"vonlanthen",\N,\N,"Jo","Vonlanthen","1942-05-31","Swiss","http://en.wikipedia.org/wiki/Jo_Vonlanthen"
|
305 |
+
304,"hulme",\N,\N,"Denny","Hulme","1936-06-18","New Zealander","http://en.wikipedia.org/wiki/Denny_Hulme"
|
306 |
+
305,"hailwood",\N,\N,"Mike","Hailwood","1940-04-02","British","http://en.wikipedia.org/wiki/Mike_Hailwood"
|
307 |
+
306,"beltoise",\N,\N,"Jean-Pierre","Beltoise","1937-04-26","French","http://en.wikipedia.org/wiki/Jean-Pierre_Beltoise"
|
308 |
+
307,"ganley",\N,\N,"Howden","Ganley","1941-12-24","New Zealander","http://en.wikipedia.org/wiki/Howden_Ganley"
|
309 |
+
308,"robarts",\N,\N,"Richard","Robarts","1944-09-22","British","http://en.wikipedia.org/wiki/Richard_Robarts"
|
310 |
+
309,"revson",\N,\N,"Peter","Revson","1939-02-27","American","http://en.wikipedia.org/wiki/Peter_Revson"
|
311 |
+
310,"driver",\N,\N,"Paddy","Driver","1934-05-13","South African","http://en.wikipedia.org/wiki/Paddy_Driver"
|
312 |
+
311,"belso",\N,\N,"Tom","Belsø","1942-08-27","Danish","http://en.wikipedia.org/wiki/Tom_Bels%C3%B8"
|
313 |
+
312,"redman",\N,\N,"Brian","Redman","1937-03-09","British","http://en.wikipedia.org/wiki/Brian_Redman"
|
314 |
+
313,"opel",\N,\N,"Rikky","von Opel","1947-10-14","Liechtensteiner","http://en.wikipedia.org/wiki/Rikky_von_Opel"
|
315 |
+
314,"schenken",\N,\N,"Tim","Schenken","1943-09-26","Australian","http://en.wikipedia.org/wiki/Tim_Schenken"
|
316 |
+
315,"larrousse",\N,\N,"Gérard","Larrousse","1940-05-23","French","http://en.wikipedia.org/wiki/G%C3%A9rard_Larrousse"
|
317 |
+
316,"kinnunen",\N,\N,"Leo","Kinnunen","1943-08-05","Finnish","http://en.wikipedia.org/wiki/Leo_Kinnunen"
|
318 |
+
317,"wisell",\N,\N,"Reine","Wisell","1941-09-30","Swedish","http://en.wikipedia.org/wiki/Reine_Wisell"
|
319 |
+
318,"roos",\N,\N,"Bertil","Roos","1943-10-12","Swedish","http://en.wikipedia.org/wiki/Bertil_Roos"
|
320 |
+
319,"dolhem",\N,\N,"José","Dolhem","1944-04-26","French","http://en.wikipedia.org/wiki/Jos%C3%A9_Dolhem"
|
321 |
+
320,"gethin",\N,\N,"Peter","Gethin","1940-02-21","British","http://en.wikipedia.org/wiki/Peter_Gethin"
|
322 |
+
321,"bell",\N,\N,"Derek","Bell","1941-10-31","British","http://en.wikipedia.org/wiki/Derek_Bell_(auto_racer)"
|
323 |
+
322,"hobbs",\N,\N,"David","Hobbs","1939-06-09","British","http://en.wikipedia.org/wiki/David_Hobbs_(racing_driver)"
|
324 |
+
323,"quester",\N,\N,"Dieter","Quester","1939-05-30","Austrian","http://en.wikipedia.org/wiki/Dieter_Quester"
|
325 |
+
324,"koinigg",\N,\N,"Helmuth","Koinigg","1948-11-03","Austrian","http://en.wikipedia.org/wiki/Helmuth_Koinigg"
|
326 |
+
325,"facetti",\N,\N,"Carlo","Facetti","1935-06-26","Italian","http://en.wikipedia.org/wiki/Carlo_Facetti"
|
327 |
+
326,"wietzes",\N,\N,"Eppie","Wietzes","1938-05-28","Canadian","http://en.wikipedia.org/wiki/Eppie_Wietzes"
|
328 |
+
327,"cevert",\N,\N,"François","Cevert","1944-02-25","French","http://en.wikipedia.org/wiki/Fran%C3%A7ois_Cevert"
|
329 |
+
328,"stewart",\N,\N,"Jackie","Stewart","1939-06-11","British","http://en.wikipedia.org/wiki/Jackie_Stewart"
|
330 |
+
329,"beuttler",\N,\N,"Mike","Beuttler","1940-04-13","British","http://en.wikipedia.org/wiki/Mike_Beuttler"
|
331 |
+
330,"galli",\N,\N,"Nanni","Galli","1940-10-02","Italian","http://en.wikipedia.org/wiki/Nanni_Galli"
|
332 |
+
331,"bueno",\N,\N,"Luiz","Bueno","1937-01-16","Brazilian","http://en.wikipedia.org/wiki/Luiz_Bueno"
|
333 |
+
332,"follmer",\N,\N,"George","Follmer","1934-01-27","American","http://en.wikipedia.org/wiki/George_Follmer"
|
334 |
+
333,"adamich",\N,\N,"Andrea","de Adamich","1941-10-03","Italian","http://en.wikipedia.org/wiki/Andrea_de_Adamich"
|
335 |
+
334,"pretorius",\N,\N,"Jackie","Pretorius","1934-11-22","South African","http://en.wikipedia.org/wiki/Jackie_Pretorius"
|
336 |
+
335,"williamson",\N,\N,"Roger","Williamson","1948-02-02","British","http://en.wikipedia.org/wiki/Roger_Williamson"
|
337 |
+
336,"mcrae",\N,\N,"Graham","McRae","1940-03-05","New Zealander","http://en.wikipedia.org/wiki/Graham_McRae"
|
338 |
+
337,"marko",\N,\N,"Helmut","Marko","1943-04-27","Austrian","http://en.wikipedia.org/wiki/Helmut_Marko"
|
339 |
+
338,"walker",\N,\N,"David","Walker","1941-06-10","Australian","http://en.wikipedia.org/wiki/David_Walker_(racing_driver)"
|
340 |
+
339,"roig",\N,\N,"Alex","Soler-Roig","1932-10-29","Spanish","http://en.wikipedia.org/wiki/Alex_Soler-Roig"
|
341 |
+
340,"love",\N,\N,"John","Love","1924-12-07","Rhodesian","http://en.wikipedia.org/wiki/John_Love_(racing_driver)"
|
342 |
+
341,"surtees",\N,\N,"John","Surtees","1934-02-11","British","http://en.wikipedia.org/wiki/John_Surtees"
|
343 |
+
342,"barber",\N,\N,"Skip","Barber","1936-11-16","American","http://en.wikipedia.org/wiki/Skip_Barber"
|
344 |
+
343,"brack",\N,\N,"Bill","Brack","1935-12-26","Canadian","http://en.wikipedia.org/wiki/Bill_Brack"
|
345 |
+
344,"posey",\N,\N,"Sam","Posey","1944-05-26","American","http://en.wikipedia.org/wiki/Sam_Posey"
|
346 |
+
345,"rodriguez",\N,\N,"Pedro","Rodríguez","1940-01-18","Mexican","http://en.wikipedia.org/wiki/Pedro_Rodr%C3%ADguez_(racing_driver)"
|
347 |
+
346,"siffert",\N,\N,"Jo","Siffert","1936-07-07","Swiss","http://en.wikipedia.org/wiki/Jo_Siffert"
|
348 |
+
347,"bonnier",\N,\N,"Jo","Bonnier","1930-01-31","Swedish","http://en.wikipedia.org/wiki/Joakim_Bonnier"
|
349 |
+
348,"mazet",\N,\N,"François","Mazet","1943-02-24","French","http://en.wikipedia.org/wiki/Fran%C3%A7ois_Mazet"
|
350 |
+
349,"jean",\N,\N,"Max","Jean","1943-07-27","French","http://en.wikipedia.org/wiki/Max_Jean"
|
351 |
+
350,"elford",\N,\N,"Vic","Elford","1935-06-10","British","http://en.wikipedia.org/wiki/Vic_Elford"
|
352 |
+
351,"moser",\N,\N,"Silvio","Moser","1941-04-24","Swiss","http://en.wikipedia.org/wiki/Silvio_Moser"
|
353 |
+
352,"eaton",\N,\N,"George","Eaton","1945-11-12","Canadian","http://en.wikipedia.org/wiki/George_Eaton"
|
354 |
+
353,"lovely",\N,\N,"Pete","Lovely","1926-04-11","American","http://en.wikipedia.org/wiki/Pete_Lovely"
|
355 |
+
354,"craft",\N,\N,"Chris","Craft","1939-11-17","British","http://en.wikipedia.org/wiki/Chris_Craft_(racing_driver)"
|
356 |
+
355,"Cannoc",\N,\N,"John","Cannon","1933-06-21","Canadian","http://en.wikipedia.org/wiki/John_Cannon_(auto_racer)"
|
357 |
+
356,"jack_brabham",\N,\N,"Jack","Brabham","1926-04-02","Australian","http://en.wikipedia.org/wiki/Jack_Brabham"
|
358 |
+
357,"miles",\N,\N,"John","Miles","1943-06-14","British","http://en.wikipedia.org/wiki/John_Miles_(auto_racer)"
|
359 |
+
358,"rindt",\N,\N,"Jochen","Rindt","1942-04-18","Austrian","http://en.wikipedia.org/wiki/Jochen_Rindt"
|
360 |
+
359,"gavin",\N,\N,"Johnny","Servoz-Gavin","1942-01-18","French","http://en.wikipedia.org/wiki/Johnny_Servoz-Gavin"
|
361 |
+
360,"mclaren",\N,\N,"Bruce","McLaren","1937-08-30","New Zealander","http://en.wikipedia.org/wiki/Bruce_McLaren"
|
362 |
+
361,"courage",\N,\N,"Piers","Courage","1942-05-27","British","http://en.wikipedia.org/wiki/Piers_Courage"
|
363 |
+
362,"klerk",\N,\N,"Peter","de Klerk","1935-03-16","South African","http://en.wikipedia.org/wiki/Peter_de_Klerk"
|
364 |
+
363,"giunti",\N,\N,"Ignazio","Giunti","1941-08-30","Italian","http://en.wikipedia.org/wiki/Ignazio_Giunti"
|
365 |
+
364,"gurney",\N,\N,"Dan","Gurney","1931-04-13","American","http://en.wikipedia.org/wiki/Dan_Gurney"
|
366 |
+
365,"hahne",\N,\N,"Hubert","Hahne","1935-03-28","German","http://en.wikipedia.org/wiki/Hubert_Hahne"
|
367 |
+
366,"hutchison",\N,\N,"Gus","Hutchison","1937-04-26","American","http://en.wikipedia.org/wiki/Gus_Hutchison"
|
368 |
+
367,"westbury",\N,\N,"Peter","Westbury","1938-05-26","British","http://en.wikipedia.org/wiki/Peter_Westbury"
|
369 |
+
368,"tingle",\N,\N,"Sam","Tingle","1921-08-24","Rhodesian","http://en.wikipedia.org/wiki/Sam_Tingle"
|
370 |
+
369,"rooyen",\N,\N,"Basil","van Rooyen","1939-04-19","South African","http://en.wikipedia.org/wiki/Basil_van_Rooyen"
|
371 |
+
370,"attwood",\N,\N,"Richard","Attwood","1940-04-04","British","http://en.wikipedia.org/wiki/Richard_Attwood"
|
372 |
+
371,"pease",\N,\N,"Al","Pease","1921-10-15","Canadian","http://en.wikipedia.org/wiki/Al_Pease"
|
373 |
+
372,"cordts",\N,\N,"John","Cordts","1935-07-23","Canadian","http://en.wikipedia.org/wiki/John_Cordts"
|
374 |
+
373,"clark",\N,\N,"Jim","Clark","1936-03-04","British","http://en.wikipedia.org/wiki/Jim_Clark"
|
375 |
+
374,"spence",\N,\N,"Mike","Spence","1936-12-30","British","http://en.wikipedia.org/wiki/Mike_Spence"
|
376 |
+
375,"scarfiotti",\N,\N,"Ludovico","Scarfiotti","1933-10-18","Italian","http://en.wikipedia.org/wiki/Ludovico_Scarfiotti"
|
377 |
+
376,"bianchi",\N,"BIA","Lucien","Bianchi","1934-11-10","Belgian","http://en.wikipedia.org/wiki/Lucien_Bianchi"
|
378 |
+
377,"jo_schlesser",\N,\N,"Jo","Schlesser","1928-05-18","French","http://en.wikipedia.org/wiki/Jo_Schlesser"
|
379 |
+
378,"widdows",\N,\N,"Robin","Widdows","1942-05-27","British","http://en.wikipedia.org/wiki/Robin_Widdows"
|
380 |
+
379,"ahrens",\N,\N,"Kurt","Ahrens","1940-04-19","German","http://en.wikipedia.org/wiki/Kurt_Ahrens,_Jr."
|
381 |
+
380,"gardner",\N,\N,"Frank","Gardner","1930-10-01","Australian","http://en.wikipedia.org/wiki/Frank_Gardner_(driver)"
|
382 |
+
381,"unser",\N,\N,"Bobby","Unser","1934-02-20","American","http://en.wikipedia.org/wiki/Bobby_Unser"
|
383 |
+
382,"solana",\N,\N,"Moisés","Solana","1935-12-26","Mexican","http://en.wikipedia.org/wiki/Mois%C3%A9s_Solana"
|
384 |
+
383,"anderson",\N,\N,"Bob","Anderson","1931-05-19","British","http://en.wikipedia.org/wiki/Bob_Anderson_(racing_driver)"
|
385 |
+
384,"botha",\N,\N,"Luki","Botha","1930-01-16","South African","http://en.wikipedia.org/wiki/Luki_Botha"
|
386 |
+
385,"bandini",\N,\N,"Lorenzo","Bandini","1935-12-21","Italian","http://en.wikipedia.org/wiki/Lorenzo_Bandini"
|
387 |
+
386,"ginther",\N,\N,"Richie","Ginther","1930-08-05","American","http://en.wikipedia.org/wiki/Richie_Ginther"
|
388 |
+
387,"parkes",\N,\N,"Mike","Parkes","1931-09-24","British","http://en.wikipedia.org/wiki/Mike_Parkes"
|
389 |
+
388,"irwin",\N,\N,"Chris","Irwin","1942-06-27","British","http://en.wikipedia.org/wiki/Chris_Irwin"
|
390 |
+
389,"ligier",\N,\N,"Guy","Ligier","1930-07-12","French","http://en.wikipedia.org/wiki/Guy_Ligier"
|
391 |
+
390,"rees",\N,\N,"Alan","Rees","1938-01-12","British","http://en.wikipedia.org/wiki/Alan_Rees_(racing_driver)"
|
392 |
+
391,"hart",\N,\N,"Brian","Hart","1936-09-07","British","http://en.wikipedia.org/wiki/Brian_Hart"
|
393 |
+
392,"fisher",\N,\N,"Mike","Fisher","1943-03-13","American","http://en.wikipedia.org/wiki/Mike_Fisher_(driver)"
|
394 |
+
393,"tom_jones",\N,\N,"Tom","Jones","1943-04-26","American","http://en.wikipedia.org/wiki/Tom_Jones_(auto_racer)"
|
395 |
+
394,"baghetti",\N,\N,"Giancarlo","Baghetti","1934-12-25","Italian","http://en.wikipedia.org/wiki/Giancarlo_Baghetti"
|
396 |
+
395,"williams",\N,\N,"Jonathan","Williams","1942-10-26","British","http://en.wikipedia.org/wiki/Jonathan_Williams_(racing_driver)"
|
397 |
+
396,"bondurant",\N,\N,"Bob","Bondurant","1933-04-27","American","http://en.wikipedia.org/wiki/Bob_Bondurant"
|
398 |
+
397,"arundell",\N,\N,"Peter","Arundell","1933-11-08","British","http://en.wikipedia.org/wiki/Peter_Arundell"
|
399 |
+
398,"vic_wilson",\N,\N,"Vic","Wilson","1931-04-14","British","http://en.wikipedia.org/wiki/Vic_Wilson_(motor_racing_driver)"
|
400 |
+
399,"taylor",\N,\N,"John","Taylor","1933-03-23","British","http://en.wikipedia.org/wiki/John_Taylor_(racer)"
|
401 |
+
400,"lawrence",\N,\N,"Chris","Lawrence","1933-07-27","British","http://en.wikipedia.org/wiki/Chris_Lawrence_(racing_driver)"
|
402 |
+
401,"trevor_taylor",\N,\N,"Trevor","Taylor","1936-12-26","British","http://en.wikipedia.org/wiki/Trevor_Taylor"
|
403 |
+
402,"geki",\N,\N,"Giacomo","Russo","1937-10-23","Italian","http://en.wikipedia.org/wiki/Geki_(driver)"
|
404 |
+
403,"phil_hill",\N,\N,"Phil","Hill","1927-04-20","American","http://en.wikipedia.org/wiki/Phil_Hill"
|
405 |
+
404,"ireland",\N,\N,"Innes","Ireland","1930-06-12","British","http://en.wikipedia.org/wiki/Innes_Ireland"
|
406 |
+
405,"bucknum",\N,\N,"Ronnie","Bucknum","1936-04-05","American","http://en.wikipedia.org/wiki/Ronnie_Bucknum"
|
407 |
+
406,"hawkins",\N,\N,"Paul","Hawkins","1937-10-12","Australian","http://en.wikipedia.org/wiki/Paul_Hawkins_(racing_driver)"
|
408 |
+
407,"prophet",\N,\N,"David","Prophet","1937-10-09","British","http://en.wikipedia.org/wiki/David_Prophet"
|
409 |
+
408,"maggs",\N,\N,"Tony","Maggs","1937-02-09","South African","http://en.wikipedia.org/wiki/Tony_Maggs"
|
410 |
+
409,"blokdyk",\N,\N,"Trevor","Blokdyk","1935-11-30","South African","http://en.wikipedia.org/wiki/Trevor_Blokdyk"
|
411 |
+
410,"lederle",\N,\N,"Neville","Lederle","1938-09-25","South African","http://en.wikipedia.org/wiki/Neville_Lederle"
|
412 |
+
411,"serrurier",\N,\N,"Doug","Serrurier","1920-12-09","South African","http://en.wikipedia.org/wiki/Doug_Serrurier"
|
413 |
+
412,"niemann",\N,\N,"Brausch","Niemann","1939-01-07","South African","http://en.wikipedia.org/wiki/Brausch_Niemann"
|
414 |
+
413,"pieterse",\N,\N,"Ernie","Pieterse","1938-07-04","South African","http://en.wikipedia.org/wiki/Ernie_Pieterse"
|
415 |
+
414,"puzey",\N,\N,"Clive","Puzey","1941-07-11","Rhodesian","http://en.wikipedia.org/wiki/Clive_Puzey"
|
416 |
+
415,"reed",\N,\N,"Ray","Reed","1932-04-30","South African","http://en.wikipedia.org/wiki/Ray_Reed"
|
417 |
+
416,"clapham",\N,\N,"David","Clapham","1931-05-18","South African","http://en.wikipedia.org/wiki/David_Clapham"
|
418 |
+
417,"blignaut",\N,\N,"Alex","Blignaut","1932-11-30","South African","http://en.wikipedia.org/wiki/Alex_Blignaut"
|
419 |
+
418,"gregory",\N,\N,"Masten","Gregory","1932-02-29","American","http://en.wikipedia.org/wiki/Masten_Gregory"
|
420 |
+
419,"rhodes",\N,\N,"John","Rhodes","1927-08-18","British","http://en.wikipedia.org/wiki/John_Rhodes_(driver)"
|
421 |
+
420,"raby",\N,\N,"Ian","Raby","1921-09-22","British","http://en.wikipedia.org/wiki/Ian_Raby"
|
422 |
+
421,"rollinson",\N,\N,"Alan","Rollinson","1943-05-15","British","http://en.wikipedia.org/wiki/Alan_Rollinson"
|
423 |
+
422,"gubby",\N,\N,"Brian","Gubby","1934-04-17","British","http://en.wikipedia.org/wiki/Brian_Gubby"
|
424 |
+
423,"mitter",\N,\N,"Gerhard","Mitter","1935-08-30","German","http://en.wikipedia.org/wiki/Gerhard_Mitter"
|
425 |
+
424,"bussinello",\N,\N,"Roberto","Bussinello","1927-10-04","Italian","http://en.wikipedia.org/wiki/Roberto_Bussinello"
|
426 |
+
425,"vaccarella",\N,\N,"Nino","Vaccarella","1933-03-04","Italian","http://en.wikipedia.org/wiki/Nino_Vaccarella"
|
427 |
+
426,"bassi",\N,\N,"Giorgio","Bassi","1934-01-20","Italian","http://en.wikipedia.org/wiki/Giorgio_Bassi"
|
428 |
+
427,"trintignant",\N,\N,"Maurice","Trintignant","1917-10-30","French","http://en.wikipedia.org/wiki/Maurice_Trintignant"
|
429 |
+
428,"collomb",\N,\N,"Bernard","Collomb","1930-10-07","French","http://en.wikipedia.org/wiki/Bernard_Collomb"
|
430 |
+
429,"andre_pilette",\N,\N,"André","Pilette","1918-10-06","Belgian","http://en.wikipedia.org/wiki/Andr%C3%A9_Pilette"
|
431 |
+
430,"beaufort",\N,\N,"Carel Godin","de Beaufort","1934-04-10","Dutch","http://en.wikipedia.org/wiki/Carel_Godin_de_Beaufort"
|
432 |
+
431,"barth",\N,\N,"Edgar","Barth","1917-01-26","German","http://en.wikipedia.org/wiki/Edgar_Barth"
|
433 |
+
432,"cabral",\N,\N,"Mário de Araújo","Cabral","1934-01-15","Portuguese","http://en.wikipedia.org/wiki/Mario_de_Araujo_Cabral"
|
434 |
+
433,"hansgen",\N,\N,"Walt","Hansgen","1919-10-28","American","http://en.wikipedia.org/wiki/Walt_Hansgen"
|
435 |
+
434,"sharp",\N,\N,"Hap","Sharp","1928-01-01","American","http://en.wikipedia.org/wiki/Hap_Sharp"
|
436 |
+
435,"mairesse",\N,\N,"Willy","Mairesse","1928-10-01","Belgian","http://en.wikipedia.org/wiki/Willy_Mairesse"
|
437 |
+
436,"campbell-jones",\N,\N,"John","Campbell-Jones","1930-01-21","British","http://en.wikipedia.org/wiki/John_Campbell-Jones"
|
438 |
+
437,"burgess",\N,\N,"Ian","Burgess","1930-07-06","British","http://en.wikipedia.org/wiki/Ian_Burgess"
|
439 |
+
438,"settember",\N,\N,"Tony","Settember","1926-07-10","American","http://en.wikipedia.org/wiki/Tony_Settember"
|
440 |
+
439,"estefano",\N,\N,"Nasif","Estéfano","1932-11-18","Argentine","http://en.wikipedia.org/wiki/Nasif_Est%C3%A9fano"
|
441 |
+
440,"hall",\N,\N,"Jim","Hall","1935-07-23","American","http://en.wikipedia.org/wiki/Jim_Hall_(race_car_driver)"
|
442 |
+
441,"parnell",\N,\N,"Tim","Parnell","1932-06-25","British","http://en.wikipedia.org/wiki/Tim_Parnell"
|
443 |
+
442,"kuhnke",\N,\N,"Kurt","Kuhnke","1910-04-30","German","http://en.wikipedia.org/wiki/Kurt_Kuhnke"
|
444 |
+
443,"ernesto_brambilla",\N,\N,"Ernesto","Brambilla","1934-01-31","Italian","http://en.wikipedia.org/wiki/Ernesto_Brambilla"
|
445 |
+
444,"lippi",\N,\N,"Roberto","Lippi","1926-10-17","Italian","http://en.wikipedia.org/wiki/Roberto_Lippi"
|
446 |
+
445,"seiffert",\N,\N,"Günther","Seiffert","1937-10-18","German","http://en.wikipedia.org/wiki/G%C3%BCnther_Seiffert"
|
447 |
+
446,"abate",\N,\N,"Carlo","Abate","1932-07-10","Italian","http://en.wikipedia.org/wiki/Carlo_Mario_Abate"
|
448 |
+
447,"starrabba",\N,\N,"Gaetano","Starrabba","1932-12-03","Italian","http://en.wikipedia.org/wiki/Gaetano_Starrabba"
|
449 |
+
448,"broeker",\N,\N,"Peter","Broeker","1926-05-15","Canadian","http://en.wikipedia.org/wiki/Peter_Broeker"
|
450 |
+
449,"ward",\N,\N,"Rodger","Ward","1921-01-10","American","http://en.wikipedia.org/wiki/Rodger_Ward"
|
451 |
+
450,"vos",\N,\N,"Ernie","de Vos","1941-07-01","Dutch","http://en.wikipedia.org/wiki/Ernie_de_Vos"
|
452 |
+
451,"dochnal",\N,\N,"Frank","Dochnal","1920-10-08","American","http://en.wikipedia.org/wiki/Frank_Dochnal"
|
453 |
+
452,"monarch",\N,\N,"Thomas","Monarch","1945-09-03","American","http://en.wikipedia.org/wiki/Talk:1963_Mexican_Grand_Prix#Who_was_Thomas_Monarch.3F"
|
454 |
+
842,"gasly",10,"GAS","Pierre","Gasly","1996-02-07","French","http://en.wikipedia.org/wiki/Pierre_Gasly"
|
455 |
+
453,"lewis",\N,\N,"Jackie","Lewis","1936-11-01","British","http://en.wikipedia.org/wiki/Jackie_Lewis"
|
456 |
+
454,"ricardo_rodriguez",\N,\N,"Ricardo","Rodríguez","1942-02-14","Mexican","http://en.wikipedia.org/wiki/Ricardo_Rodr%C3%ADguez_(Formula_One)"
|
457 |
+
455,"seidel",\N,\N,"Wolfgang","Seidel","1926-07-04","German","http://en.wikipedia.org/wiki/Wolfgang_Seidel"
|
458 |
+
456,"salvadori",\N,\N,"Roy","Salvadori","1922-05-12","British","http://en.wikipedia.org/wiki/Roy_Salvadori"
|
459 |
+
457,"pon",\N,\N,"Ben","Pon","1936-12-09","Dutch","http://en.wikipedia.org/wiki/Ben_Pon"
|
460 |
+
458,"slotemaker",\N,\N,"Rob","Slotemaker","1929-06-13","Dutch","http://en.wikipedia.org/wiki/Rob_Slotemaker"
|
461 |
+
459,"marsh",\N,\N,"Tony","Marsh","1931-07-20","British","http://en.wikipedia.org/wiki/Tony_Marsh_(racing_driver)"
|
462 |
+
460,"ashmore",\N,\N,"Gerry","Ashmore","1936-07-25","British","http://en.wikipedia.org/wiki/Gerry_Ashmore"
|
463 |
+
461,"schiller",\N,\N,"Heinz","Schiller","1930-01-25","Swiss","http://en.wikipedia.org/wiki/Heinz_Schiller"
|
464 |
+
462,"davis",\N,\N,"Colin","Davis","1933-07-29","British","http://en.wikipedia.org/wiki/Colin_Davis_(driver)"
|
465 |
+
463,"chamberlain",\N,\N,"Jay","Chamberlain","1925-12-29","American","http://en.wikipedia.org/wiki/Jay_Chamberlain"
|
466 |
+
464,"shelly",\N,\N,"Tony","Shelly","1937-02-02","New Zealander","http://en.wikipedia.org/wiki/Tony_Shelly"
|
467 |
+
465,"greene",\N,\N,"Keith","Greene","1938-01-05","British","http://en.wikipedia.org/wiki/Keith_Greene"
|
468 |
+
466,"walter",\N,\N,"Heini","Walter","1927-07-28","Swiss","http://en.wikipedia.org/wiki/Heini_Walter"
|
469 |
+
467,"prinoth",\N,\N,"Ernesto","Prinoth","1923-04-15","Italian","http://en.wikipedia.org/wiki/Ernesto_Prinoth"
|
470 |
+
468,"penske",\N,\N,"Roger","Penske","1937-02-20","American","http://en.wikipedia.org/wiki/Roger_Penske"
|
471 |
+
469,"schroeder",\N,\N,"Rob","Schroeder","1926-05-11","British","http://en.wikipedia.org/wiki/Rob_Schroeder"
|
472 |
+
470,"mayer",\N,\N,"Timmy","Mayer","1938-02-22","American","http://en.wikipedia.org/wiki/Timmy_Mayer"
|
473 |
+
471,"johnstone",\N,\N,"Bruce","Johnstone","1937-01-30","South African","http://en.wikipedia.org/wiki/Bruce_Johnstone_(racing_driver)"
|
474 |
+
472,"harris",\N,\N,"Mike","Harris","1939-05-25","South African","http://en.wikipedia.org/wiki/Mike_Harris_(race_car_driver)"
|
475 |
+
473,"hocking",\N,\N,"Gary","Hocking","1937-09-30","Rhodesian","http://en.wikipedia.org/wiki/Gary_Hocking"
|
476 |
+
474,"vyver",\N,\N,"Syd","van der Vyver","1920-06-01","South African","http://en.wikipedia.org/wiki/Syd_van_der_Vyver"
|
477 |
+
475,"moss",\N,\N,"Stirling","Moss","1929-09-17","British","http://en.wikipedia.org/wiki/Stirling_Moss"
|
478 |
+
476,"trips",\N,\N,"Wolfgang","von Trips","1928-05-04","German","http://en.wikipedia.org/wiki/Wolfgang_Graf_Berghe_von_Trips"
|
479 |
+
477,"allison",\N,\N,"Cliff","Allison","1932-02-08","British","http://en.wikipedia.org/wiki/Cliff_Allison"
|
480 |
+
478,"herrmann",\N,\N,"Hans","Herrmann","1928-02-23","German","http://en.wikipedia.org/wiki/Hans_Herrmann"
|
481 |
+
479,"brooks",\N,\N,"Tony","Brooks","1932-02-25","British","http://en.wikipedia.org/wiki/Tony_Brooks"
|
482 |
+
480,"may",\N,\N,"Michael","May","1934-08-18","Swiss","http://en.wikipedia.org/wiki/Michael_May_(racing_driver)"
|
483 |
+
481,"henry_taylor",\N,\N,"Henry","Taylor","1932-12-16","British","http://en.wikipedia.org/wiki/Henry_Taylor_(racing_driver)"
|
484 |
+
482,"gendebien",\N,\N,"Olivier","Gendebien","1924-01-12","Belgian","http://en.wikipedia.org/wiki/Olivier_Gendebien"
|
485 |
+
483,"scarlatti",\N,\N,"Giorgio","Scarlatti","1921-10-02","Italian","http://en.wikipedia.org/wiki/Giorgio_Scarlatti"
|
486 |
+
484,"naylor",\N,\N,"Brian","Naylor","1923-03-24","British","http://en.wikipedia.org/wiki/Brian_Naylor"
|
487 |
+
485,"bordeu",\N,\N,"Juan Manuel","Bordeu","1934-01-28","Argentine","http://en.wikipedia.org/wiki/Juan_Manuel_Bordeu"
|
488 |
+
486,"fairman",\N,\N,"Jack","Fairman","1913-03-15","British","http://en.wikipedia.org/wiki/Jack_Fairman"
|
489 |
+
487,"natili",\N,\N,"Massimo","Natili","1935-07-28","Italian","http://en.wikipedia.org/wiki/Massimo_Natili"
|
490 |
+
488,"monteverdi",\N,\N,"Peter","Monteverdi","1934-06-07","Swiss","http://en.wikipedia.org/wiki/Peter_Monteverdi"
|
491 |
+
489,"pirocchi",\N,\N,"Renato","Pirocchi","1933-03-26","Italian","http://en.wikipedia.org/wiki/Renato_Pirocchi"
|
492 |
+
490,"duke",\N,\N,"Geoff","Duke","1923-03-29","British","http://en.wikipedia.org/wiki/Geoff_Duke"
|
493 |
+
491,"thiele",\N,\N,"Alfonso","Thiele","1920-04-05","American-Italian","http://en.wikipedia.org/wiki/Alfonso_Thiele"
|
494 |
+
492,"boffa",\N,\N,"Menato","Boffa","1930-01-04","Italian","http://en.wikipedia.org/wiki/Menato_Boffa"
|
495 |
+
493,"ryan",\N,\N,"Peter","Ryan","1940-06-10","Canadian","http://en.wikipedia.org/wiki/Peter_Ryan_(driver)"
|
496 |
+
494,"ruby",\N,\N,"Lloyd","Ruby","1928-01-12","American","http://en.wikipedia.org/wiki/Lloyd_Ruby"
|
497 |
+
495,"ken_miles",\N,\N,"Ken","Miles","1918-11-01","British","http://en.wikipedia.org/wiki/Ken_Miles"
|
498 |
+
496,"menditeguy",\N,\N,"Carlos","Menditeguy","1914-08-10","Argentine","http://en.wikipedia.org/wiki/Carlos_Menditeguy"
|
499 |
+
497,"larreta",\N,\N,"Alberto Rodriguez","Larreta","1934-01-14","Argentine","http://en.wikipedia.org/wiki/Alberto_Rodriguez_Larreta"
|
500 |
+
498,"gonzalez",\N,\N,"José Froilán","González","1922-10-05","Argentine","http://en.wikipedia.org/wiki/Jos%C3%A9_Froil%C3%A1n_Gonz%C3%A1lez"
|
501 |
+
499,"bonomi",\N,\N,"Roberto","Bonomi","1919-09-30","Argentine","http://en.wikipedia.org/wiki/Roberto_Bonomi"
|
502 |
+
500,"munaron",\N,\N,"Gino","Munaron","1928-04-02","Italian","http://en.wikipedia.org/wiki/Gino_Munaron"
|
503 |
+
501,"schell",\N,\N,"Harry","Schell","1921-06-29","American","http://en.wikipedia.org/wiki/Harry_Schell"
|
504 |
+
502,"stacey",\N,\N,"Alan","Stacey","1933-08-29","British","http://en.wikipedia.org/wiki/Alan_Stacey"
|
505 |
+
503,"chimeri",\N,\N,"Ettore","Chimeri","1921-06-04","Venezuelan","http://en.wikipedia.org/wiki/Ettore_Chimeri"
|
506 |
+
504,"creus",\N,\N,"Antonio","Creus","1924-10-28","Spanish","http://en.wikipedia.org/wiki/Antonio_Creus"
|
507 |
+
505,"bristow",\N,\N,"Chris","Bristow","1937-12-02","British","http://en.wikipedia.org/wiki/Chris_Bristow"
|
508 |
+
506,"halford",\N,\N,"Bruce","Halford","1931-05-18","British","http://en.wikipedia.org/wiki/Bruce_Halford"
|
509 |
+
507,"daigh",\N,\N,"Chuck","Daigh","1923-11-29","American","http://en.wikipedia.org/wiki/Chuck_Daigh"
|
510 |
+
508,"reventlow",\N,\N,"Lance","Reventlow","1936-02-24","American","http://en.wikipedia.org/wiki/Lance_Reventlow"
|
511 |
+
509,"rathmann",\N,\N,"Jim","Rathmann","1928-07-16","American","http://en.wikipedia.org/wiki/Jim_Rathmann"
|
512 |
+
510,"goldsmith",\N,\N,"Paul","Goldsmith","1925-10-02","American","http://en.wikipedia.org/wiki/Paul_Goldsmith"
|
513 |
+
511,"branson",\N,\N,"Don","Branson","1920-06-02","American","http://en.wikipedia.org/wiki/Don_Branson"
|
514 |
+
512,"thomson",\N,\N,"Johnny","Thomson","1922-04-09","American","http://en.wikipedia.org/wiki/Johnny_Thomson"
|
515 |
+
513,"johnson",\N,\N,"Eddie","Johnson","1919-02-10","American","http://en.wikipedia.org/wiki/Eddie_Johnson_(auto_racer)"
|
516 |
+
514,"veith",\N,\N,"Bob","Veith","1926-11-01","American","http://en.wikipedia.org/wiki/Bob_Veith"
|
517 |
+
515,"tingelstad",\N,\N,"Bud","Tingelstad","1928-04-04","American","http://en.wikipedia.org/wiki/Bud_Tingelstad"
|
518 |
+
516,"christie",\N,\N,"Bob","Christie","1924-04-04","American","http://en.wikipedia.org/wiki/Bob_Christie_(racing_driver)"
|
519 |
+
517,"amick",\N,\N,"Red","Amick","1929-01-19","American","http://en.wikipedia.org/wiki/Red_Amick"
|
520 |
+
518,"darter",\N,\N,"Duane","Carter","1913-05-05","American","http://en.wikipedia.org/wiki/Duane_Carter"
|
521 |
+
519,"homeier",\N,\N,"Bill","Homeier","1918-08-31","American","http://en.wikipedia.org/wiki/Bill_Homeier"
|
522 |
+
520,"hartley",\N,\N,"Gene","Hartley","1926-01-28","American","http://en.wikipedia.org/wiki/Gene_Hartley"
|
523 |
+
521,"stevenson",\N,\N,"Chuck","Stevenson","1919-10-15","American","http://en.wikipedia.org/wiki/Chuck_Stevenson"
|
524 |
+
522,"grim",\N,\N,"Bobby","Grim","1924-09-04","American","http://en.wikipedia.org/wiki/Bobby_Grim"
|
525 |
+
523,"templeman",\N,\N,"Shorty","Templeman","1919-08-12","American","http://en.wikipedia.org/wiki/Shorty_Templeman"
|
526 |
+
524,"hurtubise",\N,\N,"Jim","Hurtubise","1932-12-05","American","http://en.wikipedia.org/wiki/Jim_Hurtubise"
|
527 |
+
525,"bryan",\N,\N,"Jimmy","Bryan","1926-01-28","American","http://en.wikipedia.org/wiki/Jimmy_Bryan"
|
528 |
+
526,"ruttman",\N,\N,"Troy","Ruttman","1930-03-11","American","http://en.wikipedia.org/wiki/Troy_Ruttman"
|
529 |
+
527,"sachs",\N,\N,"Eddie","Sachs","1927-05-28","American","http://en.wikipedia.org/wiki/Eddie_Sachs"
|
530 |
+
528,"freeland",\N,\N,"Don","Freeland","1925-03-25","American","http://en.wikipedia.org/wiki/Don_Freeland"
|
531 |
+
529,"bettenhausen",\N,\N,"Tony","Bettenhausen","1916-09-12","American","http://en.wikipedia.org/wiki/Tony_Bettenhausen"
|
532 |
+
530,"weiler",\N,\N,"Wayne","Weiler","1934-12-09","American","http://en.wikipedia.org/wiki/Wayne_Weiler"
|
533 |
+
531,"foyt",\N,\N,"Anthony","Foyt","1935-01-16","American","http://en.wikipedia.org/wiki/A.J._Foyt"
|
534 |
+
532,"russo",\N,\N,"Eddie","Russo","1925-11-19","American","http://en.wikipedia.org/wiki/Eddie_Russo"
|
535 |
+
533,"boyd",\N,\N,"Johnny","Boyd","1926-08-19","American","http://en.wikipedia.org/wiki/Johnny_Boyd"
|
536 |
+
534,"force",\N,\N,"Gene","Force","1916-06-15","American","http://en.wikipedia.org/wiki/Gene_Force"
|
537 |
+
535,"mcwithey",\N,\N,"Jim","McWithey","1927-07-04","American","http://en.wikipedia.org/wiki/Jim_McWithey"
|
538 |
+
536,"sutton",\N,\N,"Len","Sutton","1925-08-09","American","http://en.wikipedia.org/wiki/Len_Sutton"
|
539 |
+
537,"dick_rathmann",\N,\N,"Dick","Rathmann","1924-01-06","American","http://en.wikipedia.org/wiki/Dick_Rathmann"
|
540 |
+
538,"herman",\N,\N,"Al","Herman","1927-03-15","American","http://en.wikipedia.org/wiki/Al_Herman"
|
541 |
+
539,"dempsey_wilson",\N,\N,"Dempsey","Wilson","1927-03-11","American","http://en.wikipedia.org/wiki/Dempsey_Wilson"
|
542 |
+
540,"mike_taylor",\N,\N,"Mike","Taylor","1934-04-24","British","http://en.wikipedia.org/wiki/Mike_Taylor_(driver)"
|
543 |
+
541,"flockhart",\N,\N,"Ron","Flockhart","1923-06-16","British","http://en.wikipedia.org/wiki/Ron_Flockhart_(auto_racing)"
|
544 |
+
542,"piper",\N,\N,"David","Piper","1930-12-02","British","http://en.wikipedia.org/wiki/David_Piper"
|
545 |
+
543,"cabianca",\N,\N,"Giulio","Cabianca","1923-02-19","Italian","http://en.wikipedia.org/wiki/Giulio_Cabianca"
|
546 |
+
544,"drogo",\N,\N,"Piero","Drogo","1926-08-08","Italian","http://en.wikipedia.org/wiki/Piero_Drogo"
|
547 |
+
545,"gamble",\N,\N,"Fred","Gamble","1932-03-17","American","http://en.wikipedia.org/wiki/Fred_Gamble_(racing_driver)"
|
548 |
+
546,"owen",\N,\N,"Arthur","Owen","1915-03-23","British","http://en.wikipedia.org/wiki/Arthur_Owen"
|
549 |
+
547,"gould",\N,\N,"Horace","Gould","1918-09-20","British","http://en.wikipedia.org/wiki/Horace_Gould"
|
550 |
+
548,"drake",\N,\N,"Bob","Drake","1919-12-14","American","http://en.wikipedia.org/wiki/Bob_Drake_(Formula_One)"
|
551 |
+
549,"bueb",\N,\N,"Ivor","Bueb","1923-06-06","British","http://en.wikipedia.org/wiki/Ivor_Bueb"
|
552 |
+
550,"Changy",\N,\N,"Alain","de Changy","1922-02-05","Belgian","http://en.wikipedia.org/wiki/Alain_de_Changy"
|
553 |
+
551,"filippis",\N,\N,"Maria","de Filippis","1926-11-11","Italian","http://en.wikipedia.org/wiki/Maria_Teresa_de_Filippis"
|
554 |
+
552,"lucienbonnet",\N,\N,"Jean","Lucienbonnet","1923-01-07","French","http://en.wikipedia.org/wiki/Jean_Lucienbonnet"
|
555 |
+
553,"testut",\N,\N,"André","Testut","1926-04-13","Monegasque","http://en.wikipedia.org/wiki/Andr%C3%A9_Testut"
|
556 |
+
554,"behra",\N,\N,"Jean","Behra","1921-02-16","French","http://en.wikipedia.org/wiki/Jean_Behra"
|
557 |
+
555,"paul_russo",\N,\N,"Paul","Russo","1914-04-10","American","http://en.wikipedia.org/wiki/Paul_Russo"
|
558 |
+
556,"daywalt",\N,\N,"Jimmy","Daywalt","1924-08-28","American","http://en.wikipedia.org/wiki/Jimmy_Daywalt"
|
559 |
+
557,"arnold",\N,\N,"Chuck","Arnold","1926-05-30","American","http://en.wikipedia.org/wiki/Chuck_Arnold"
|
560 |
+
558,"keller",\N,\N,"Al","Keller","1920-04-11","American","http://en.wikipedia.org/wiki/Al_Keller"
|
561 |
+
559,"flaherty",\N,\N,"Pat","Flaherty","1926-01-06","American","http://en.wikipedia.org/wiki/Pat_Flaherty_(racing_driver)"
|
562 |
+
560,"cheesbourg",\N,\N,"Bill","Cheesbourg","1927-06-12","American","http://en.wikipedia.org/wiki/Bill_Cheesbourg"
|
563 |
+
561,"ray_crawford",\N,\N,"Ray","Crawford","1915-10-26","American","http://en.wikipedia.org/wiki/Ray_Crawford"
|
564 |
+
562,"turner",\N,\N,"Jack","Turner","1920-02-12","American","http://en.wikipedia.org/wiki/Jack_Turner_(driver)"
|
565 |
+
563,"weyant",\N,\N,"Chuck","Weyant","1923-04-03","American","http://en.wikipedia.org/wiki/Chuck_Weyant"
|
566 |
+
564,"larson",\N,\N,"Jud","Larson","1923-01-21","American","http://en.wikipedia.org/wiki/Jud_Larson"
|
567 |
+
565,"magill",\N,\N,"Mike","Magill","1920-02-08","American","http://en.wikipedia.org/wiki/Mike_Magill"
|
568 |
+
566,"shelby",\N,\N,"Carroll","Shelby","1923-01-11","American","http://en.wikipedia.org/wiki/Carroll_Shelby"
|
569 |
+
567,"orey",\N,\N,"Fritz","d'Orey","1938-03-25","Brazilian","http://en.wikipedia.org/wiki/Fritz_d%27Orey"
|
570 |
+
568,"fontes",\N,\N,"Azdrubal","Fontes","1922-12-26","Uruguayan","http://en.wikipedia.org/wiki/Azdrubal_Fontes"
|
571 |
+
569,"ashdown",\N,\N,"Peter","Ashdown","1934-10-16","British","http://en.wikipedia.org/wiki/Peter_Ashdown"
|
572 |
+
570,"bill_moss",\N,\N,"Bill","Moss","1933-09-04","British","http://en.wikipedia.org/wiki/Bill_Moss_(racing_driver)"
|
573 |
+
571,"dennis_taylor",\N,\N,"Dennis","Taylor","1921-06-12","British","http://en.wikipedia.org/wiki/Dennis_Taylor_(racing_driver)"
|
574 |
+
572,"blanchard",\N,\N,"Harry","Blanchard","1929-06-13","American","http://en.wikipedia.org/wiki/Harry_Blanchard"
|
575 |
+
573,"tomaso",\N,\N,"Alessandro","de Tomaso","1928-07-10","Argentine-Italian","http://en.wikipedia.org/wiki/Alessandro_de_Tomaso"
|
576 |
+
574,"constantine",\N,\N,"George","Constantine","1918-02-22","American","http://en.wikipedia.org/wiki/George_Constantine"
|
577 |
+
575,"said",\N,\N,"Bob","Said","1932-05-05","American","http://en.wikipedia.org/wiki/Bob_Said"
|
578 |
+
576,"cade",\N,\N,"Phil","Cade","1916-06-12","American","http://en.wikipedia.org/wiki/Phil_Cade"
|
579 |
+
577,"musso",\N,\N,"Luigi","Musso","1924-07-28","Italian","http://en.wikipedia.org/wiki/Luigi_Musso"
|
580 |
+
578,"hawthorn",\N,\N,"Mike","Hawthorn","1929-04-10","British","http://en.wikipedia.org/wiki/Mike_Hawthorn"
|
581 |
+
579,"fangio",\N,\N,"Juan","Fangio","1911-06-24","Argentine","http://en.wikipedia.org/wiki/Juan_Manuel_Fangio"
|
582 |
+
580,"godia",\N,\N,"Paco","Godia","1921-03-21","Spanish","http://en.wikipedia.org/wiki/Paco_Godia"
|
583 |
+
581,"collins",\N,\N,"Peter","Collins","1931-11-06","British","http://en.wikipedia.org/wiki/Peter_Collins_(racing_driver)"
|
584 |
+
582,"kavanagh",\N,\N,"Ken","Kavanagh","1923-12-12","Australian","http://en.wikipedia.org/wiki/Ken_Kavanagh"
|
585 |
+
583,"gerini",\N,\N,"Gerino","Gerini","1928-08-10","Italian","http://en.wikipedia.org/wiki/Gerino_Gerini_(racing_driver)"
|
586 |
+
584,"kessler",\N,\N,"Bruce","Kessler","1936-03-23","American","http://en.wikipedia.org/wiki/Bruce_Kessler"
|
587 |
+
585,"emery",\N,\N,"Paul","Emery","1916-11-12","British","http://en.wikipedia.org/wiki/Paul_Emery"
|
588 |
+
586,"piotti",\N,\N,"Luigi","Piotti","1913-10-27","Italian","http://en.wikipedia.org/wiki/Luigi_Piotti"
|
589 |
+
587,"ecclestone",\N,\N,"Bernie","Ecclestone","1930-10-28","British","http://en.wikipedia.org/wiki/Bernie_Ecclestone"
|
590 |
+
588,"taramazzo",\N,\N,"Luigi","Taramazzo","1932-05-05","Italian","http://en.wikipedia.org/wiki/Luigi_Taramazzo"
|
591 |
+
589,"chiron",\N,\N,"Louis","Chiron","1899-08-03","Monegasque","http://en.wikipedia.org/wiki/Louis_Chiron"
|
592 |
+
590,"lewis-evans",\N,\N,"Stuart","Lewis-Evans","1930-04-20","British","http://en.wikipedia.org/wiki/Stuart_Lewis-Evans"
|
593 |
+
591,"george_amick",\N,\N,"George","Amick","1924-10-24","American","http://en.wikipedia.org/wiki/George_Amick"
|
594 |
+
592,"reece",\N,\N,"Jimmy","Reece","1929-11-17","American","http://en.wikipedia.org/wiki/Jimmy_Reece"
|
595 |
+
593,"parsons",\N,\N,"Johnnie","Parsons","1918-07-04","American","http://en.wikipedia.org/wiki/Johnnie_Parsons"
|
596 |
+
594,"tolan",\N,\N,"Johnnie","Tolan","1917-10-22","American","http://en.wikipedia.org/wiki/Johnnie_Tolan"
|
597 |
+
595,"garrett",\N,\N,"Billy","Garrett","1933-04-24","American","http://en.wikipedia.org/wiki/Billy_Garrett"
|
598 |
+
596,"elisian",\N,\N,"Ed","Elisian","1926-12-09","American","http://en.wikipedia.org/wiki/Ed_Elisian"
|
599 |
+
597,"connor",\N,\N,"Pat","O'Connor","1928-10-09","American","http://en.wikipedia.org/wiki/Pat_O%27Connor_(auto_racer)"
|
600 |
+
598,"jerry_unser",\N,\N,"Jerry","Unser","1932-11-15","American","http://en.wikipedia.org/wiki/Jerry_Unser"
|
601 |
+
599,"bisch",\N,\N,"Art","Bisch","1926-11-10","American","http://en.wikipedia.org/wiki/Art_Bisch"
|
602 |
+
600,"goethals",\N,\N,"Christian","Goethals","1928-08-04","Belgian","http://en.wikipedia.org/wiki/Christian_Goethals"
|
603 |
+
601,"gibson",\N,\N,"Dick","Gibson","1918-04-16","British","http://en.wikipedia.org/wiki/Dick_Gibson"
|
604 |
+
602,"la_caze",\N,\N,"Robert","La Caze","1917-02-26","French","http://en.wikipedia.org/wiki/Robert_La_Caze"
|
605 |
+
603,"guelfi",\N,\N,"André","Guelfi","1919-05-06","French","http://en.wikipedia.org/wiki/Andr%C3%A9_Guelfi"
|
606 |
+
604,"picard",\N,\N,"François","Picard","1921-04-26","French","http://en.wikipedia.org/wiki/Fran%C3%A7ois_Picard"
|
607 |
+
605,"bridger",\N,\N,"Tom","Bridger","1934-06-24","British","http://en.wikipedia.org/wiki/Tom_Bridger"
|
608 |
+
606,"portago",\N,\N,"Alfonso","de Portago","1928-10-11","Spanish","http://en.wikipedia.org/wiki/Alfonso_de_Portago"
|
609 |
+
607,"perdisa",\N,\N,"Cesare","Perdisa","1932-10-21","Italian","http://en.wikipedia.org/wiki/Cesare_Perdisa"
|
610 |
+
608,"castellotti",\N,\N,"Eugenio","Castellotti","1930-10-10","Italian","http://en.wikipedia.org/wiki/Eugenio_Castellotti"
|
611 |
+
609,"simon",\N,\N,"André","Simon","1920-01-05","French","http://en.wikipedia.org/wiki/Andr%C3%A9_Simon_(racing_driver)"
|
612 |
+
610,"leston",\N,\N,"Les","Leston","1920-12-16","British","http://en.wikipedia.org/wiki/Les_Leston"
|
613 |
+
611,"hanks",\N,\N,"Sam","Hanks","1914-07-13","American","http://en.wikipedia.org/wiki/Sam_Hanks"
|
614 |
+
612,"linden",\N,\N,"Andy","Linden","1922-04-05","American","http://en.wikipedia.org/wiki/Andy_Linden_(racing_driver)"
|
615 |
+
613,"teague",\N,\N,"Marshall","Teague","1921-02-22","American","http://en.wikipedia.org/wiki/Marshall_Teague_(racing_driver)"
|
616 |
+
614,"edmunds",\N,\N,"Don","Edmunds","1930-09-23","American","http://en.wikipedia.org/wiki/Don_Edmunds"
|
617 |
+
615,"agabashian",\N,\N,"Fred","Agabashian","1913-08-21","American","http://en.wikipedia.org/wiki/Fred_Agabashian"
|
618 |
+
616,"george",\N,\N,"Elmer","George","1928-07-15","American","http://en.wikipedia.org/wiki/Elmer_George"
|
619 |
+
617,"macdowel",\N,\N,"Mike","MacDowel","1932-09-13","British","http://en.wikipedia.org/wiki/Mike_MacDowel"
|
620 |
+
618,"mackay-fraser",\N,\N,"Herbert","MacKay-Fraser","1927-06-23","American","http://en.wikipedia.org/wiki/Herbert_MacKay-Fraser"
|
621 |
+
619,"gerard",\N,\N,"Bob","Gerard","1914-01-19","British","http://en.wikipedia.org/wiki/Bob_Gerard"
|
622 |
+
620,"maglioli",\N,\N,"Umberto","Maglioli","1928-06-05","Italian","http://en.wikipedia.org/wiki/Umberto_Maglioli"
|
623 |
+
621,"england",\N,\N,"Paul","England","1929-03-28","Australian","http://en.wikipedia.org/wiki/Paul_England"
|
624 |
+
622,"landi",\N,\N,"Chico","Landi","1907-07-14","Brazilian","http://en.wikipedia.org/wiki/Chico_Landi"
|
625 |
+
623,"uria",\N,\N,"Alberto","Uria","1924-07-11","Uruguayan","http://en.wikipedia.org/wiki/Alberto_Uria"
|
626 |
+
624,"ramos",\N,\N,"Hernando","da Silva Ramos","1925-12-07","Brazilian","http://en.wikipedia.org/wiki/Hernando_da_Silva_Ramos"
|
627 |
+
625,"bayol",\N,\N,"Élie","Bayol","1914-02-28","French","http://en.wikipedia.org/wiki/%C3%89lie_Bayol"
|
628 |
+
626,"manzon",\N,\N,"Robert","Manzon","1917-04-12","French","http://en.wikipedia.org/wiki/Robert_Manzon"
|
629 |
+
627,"rosier",\N,\N,"Louis","Rosier","1905-11-05","French","http://en.wikipedia.org/wiki/Louis_Rosier"
|
630 |
+
628,"sweikert",\N,\N,"Bob","Sweikert","1926-05-20","American","http://en.wikipedia.org/wiki/Bob_Sweikert"
|
631 |
+
629,"griffith",\N,\N,"Cliff","Griffith","1916-02-06","American","http://en.wikipedia.org/wiki/Cliff_Griffith"
|
632 |
+
630,"dinsmore",\N,\N,"Duke","Dinsmore","1913-04-10","American","http://en.wikipedia.org/wiki/Duke_Dinsmore"
|
633 |
+
631,"andrews",\N,\N,"Keith","Andrews","1920-06-15","American","http://en.wikipedia.org/wiki/Keith_Andrews_(driver)"
|
634 |
+
632,"frere",\N,\N,"Paul","Frère","1917-01-30","Belgian","http://en.wikipedia.org/wiki/Paul_Fr%C3%A8re"
|
635 |
+
633,"villoresi",\N,\N,"Luigi","Villoresi","1909-05-16","Italian","http://en.wikipedia.org/wiki/Luigi_Villoresi"
|
636 |
+
634,"scotti",\N,\N,"Piero","Scotti","1909-11-11","Italian","http://en.wikipedia.org/wiki/Piero_Scotti"
|
637 |
+
635,"chapman",\N,\N,"Colin","Chapman","1928-05-19","British","http://en.wikipedia.org/wiki/Colin_Chapman"
|
638 |
+
636,"titterington",\N,\N,"Desmond","Titterington","1928-05-01","British","http://en.wikipedia.org/wiki/Desmond_Titterington"
|
639 |
+
637,"scott_Brown",\N,\N,"Archie","Scott Brown","1927-05-13","British","http://en.wikipedia.org/wiki/Archie_Scott_Brown"
|
640 |
+
638,"volonterio",\N,\N,"Ottorino","Volonterio","1917-12-07","Swiss","http://en.wikipedia.org/wiki/Ottorino_Volonterio"
|
641 |
+
639,"milhoux",\N,\N,"André","Milhoux","1928-12-09","Belgian","http://en.wikipedia.org/wiki/Andr%C3%A9_Milhoux"
|
642 |
+
640,"graffenried",\N,\N,"Toulo","de Graffenried","1914-05-18","Swiss","http://en.wikipedia.org/wiki/Toulo_de_Graffenried"
|
643 |
+
641,"taruffi",\N,\N,"Piero","Taruffi","1906-10-12","Italian","http://en.wikipedia.org/wiki/Piero_Taruffi"
|
644 |
+
642,"farina",\N,\N,"Nino","Farina","1906-10-30","Italian","http://en.wikipedia.org/wiki/Nino_Farina"
|
645 |
+
643,"mieres",\N,\N,"Roberto","Mieres","1924-12-03","Argentine","http://en.wikipedia.org/wiki/Roberto_Mieres"
|
646 |
+
644,"mantovani",\N,\N,"Sergio","Mantovani","1929-05-22","Italian","http://en.wikipedia.org/wiki/Sergio_Mantovani"
|
647 |
+
645,"bucci",\N,\N,"Clemar","Bucci","1920-09-04","Argentine","http://en.wikipedia.org/wiki/Clemar_Bucci"
|
648 |
+
646,"iglesias",\N,\N,"Jesús","Iglesias","1922-02-22","Argentine","http://en.wikipedia.org/wiki/Jes%C3%BAs_Iglesias"
|
649 |
+
647,"ascari",\N,\N,"Alberto","Ascari","1918-07-13","Italian","http://en.wikipedia.org/wiki/Alberto_Ascari"
|
650 |
+
648,"kling",\N,\N,"Karl","Kling","1910-09-16","German","http://en.wikipedia.org/wiki/Karl_Kling"
|
651 |
+
649,"birger",\N,\N,"Pablo","Birger","1924-01-07","Argentine","http://en.wikipedia.org/wiki/Pablo_Birger"
|
652 |
+
650,"pollet",\N,\N,"Jacques","Pollet","1922-07-02","French","http://en.wikipedia.org/wiki/Jacques_Pollet"
|
653 |
+
651,"macklin",\N,\N,"Lance","Macklin","1919-09-02","British","http://en.wikipedia.org/wiki/Lance_Macklin"
|
654 |
+
652,"whiteaway",\N,\N,"Ted","Whiteaway","1928-11-01","British","http://en.wikipedia.org/wiki/Ted_Whiteaway"
|
655 |
+
653,"davies",\N,\N,"Jimmy","Davies","1929-08-08","American","http://en.wikipedia.org/wiki/Jimmy_Davies"
|
656 |
+
654,"faulkner",\N,\N,"Walt","Faulkner","1920-02-16","American","http://en.wikipedia.org/wiki/Walt_Faulkner"
|
657 |
+
655,"niday",\N,\N,"Cal","Niday","1914-04-29","American","http://en.wikipedia.org/wiki/Cal_Niday"
|
658 |
+
656,"cross",\N,\N,"Art","Cross","1918-01-24","American","http://en.wikipedia.org/wiki/Art_Cross"
|
659 |
+
657,"vukovich",\N,\N,"Bill","Vukovich","1918-12-13","American","http://en.wikipedia.org/wiki/Bill_Vukovich"
|
660 |
+
658,"mcgrath",\N,\N,"Jack","McGrath","1919-10-08","American","http://en.wikipedia.org/wiki/Jack_McGrath_(racing_driver)"
|
661 |
+
659,"hoyt",\N,\N,"Jerry","Hoyt","1929-01-29","American","http://en.wikipedia.org/wiki/Jerry_Hoyt"
|
662 |
+
660,"claes",\N,\N,"Johnny","Claes","1916-08-11","Belgian","http://en.wikipedia.org/wiki/Johnny_Claes"
|
663 |
+
661,"peter_walker",\N,\N,"Peter","Walker","1912-10-07","British","http://en.wikipedia.org/wiki/Peter_Walker_(driver)"
|
664 |
+
662,"sparken",\N,\N,"Mike","Sparken","1930-06-16","French","http://en.wikipedia.org/wiki/Mike_Sparken"
|
665 |
+
663,"wharton",\N,\N,"Ken","Wharton","1916-03-21","British","http://en.wikipedia.org/wiki/Ken_Wharton"
|
666 |
+
664,"mcalpine",\N,\N,"Kenneth","McAlpine","1920-09-21","British","http://en.wikipedia.org/wiki/Kenneth_McAlpine"
|
667 |
+
665,"marr",\N,\N,"Leslie","Marr","1922-08-14","British","http://en.wikipedia.org/wiki/Leslie_Marr"
|
668 |
+
666,"rolt",\N,\N,"Tony","Rolt","1918-10-16","British","http://en.wikipedia.org/wiki/Tony_Rolt"
|
669 |
+
667,"fitch",\N,\N,"John","Fitch","1917-08-04","American","http://en.wikipedia.org/wiki/John_Fitch_(driver)"
|
670 |
+
668,"lucas",\N,\N,"Jean","Lucas","1917-04-25","French","http://en.wikipedia.org/wiki/Jean_Lucas"
|
671 |
+
669,"bira",\N,\N,"Prince","Bira","1914-07-15","Thai","http://en.wikipedia.org/wiki/Prince_Bira"
|
672 |
+
670,"marimon",\N,\N,"Onofre","Marimón","1923-12-19","Argentine","http://en.wikipedia.org/wiki/Onofre_Marim%C3%B3n"
|
673 |
+
671,"loyer",\N,\N,"Roger","Loyer","1907-08-05","French","http://en.wikipedia.org/wiki/Roger_Loyer"
|
674 |
+
672,"daponte",\N,\N,"Jorge","Daponte","1923-06-05","Argentine","http://en.wikipedia.org/wiki/Jorge_Daponte"
|
675 |
+
673,"nazaruk",\N,\N,"Mike","Nazaruk","1921-10-02","American","http://en.wikipedia.org/wiki/Mike_Nazaruk"
|
676 |
+
674,"crockett",\N,\N,"Larry","Crockett","1926-10-23","American","http://en.wikipedia.org/wiki/Larry_Crockett"
|
677 |
+
675,"ayulo",\N,\N,"Manny","Ayulo","1921-10-20","American","http://en.wikipedia.org/wiki/Manny_Ayulo"
|
678 |
+
676,"armi",\N,\N,"Frank","Armi","1918-10-12","American","http://en.wikipedia.org/wiki/Frank_Armi"
|
679 |
+
677,"webb",\N,\N,"Travis","Webb","1910-10-08","American","http://en.wikipedia.org/wiki/Travis_Webb"
|
680 |
+
678,"duncan",\N,\N,"Len","Duncan","1911-07-25","American","http://en.wikipedia.org/wiki/Len_Duncan"
|
681 |
+
679,"mccoy",\N,\N,"Ernie","McCoy","1921-02-19","American","http://en.wikipedia.org/wiki/Ernie_McCoy"
|
682 |
+
680,"swaters",\N,\N,"Jacques","Swaters","1926-10-30","American","http://en.wikipedia.org/wiki/Jacques_Swaters"
|
683 |
+
681,"georges_berger",\N,\N,"Georges","Berger","1918-09-14","Belgian","http://en.wikipedia.org/wiki/Georges_Berger"
|
684 |
+
682,"beauman",\N,\N,"Don","Beauman","1928-07-26","British","http://en.wikipedia.org/wiki/Don_Beauman"
|
685 |
+
683,"thorne",\N,\N,"Leslie","Thorne","1916-06-23","British","http://en.wikipedia.org/wiki/Leslie_Thorne"
|
686 |
+
684,"whitehouse",\N,\N,"Bill","Whitehouse","1909-04-01","British","http://en.wikipedia.org/wiki/Bill_Whitehouse"
|
687 |
+
685,"riseley_prichard",\N,\N,"John","Riseley-Prichard","1924-01-17","British","http://en.wikipedia.org/wiki/John_Riseley-Prichard"
|
688 |
+
686,"reg_parnell",\N,\N,"Reg","Parnell","1911-07-02","British","http://en.wikipedia.org/wiki/Reg_Parnell"
|
689 |
+
687,"whitehead",\N,\N,"Peter","Whitehead","1914-11-12","British","http://en.wikipedia.org/wiki/Peter_Whitehead_(racing_driver)"
|
690 |
+
688,"brandon",\N,\N,"Eric","Brandon","1920-07-18","British","http://en.wikipedia.org/wiki/Eric_Brandon"
|
691 |
+
689,"alan_brown",\N,\N,"Alan","Brown","1919-11-20","British","http://en.wikipedia.org/wiki/Alan_Brown_(racing_driver)"
|
692 |
+
690,"nuckey",\N,\N,"Rodney","Nuckey","1929-06-26","British","http://en.wikipedia.org/wiki/Rodney_Nuckey"
|
693 |
+
691,"lang",\N,\N,"Hermann","Lang","1909-04-06","German","http://en.wikipedia.org/wiki/Hermann_Lang"
|
694 |
+
692,"helfrich",\N,\N,"Theo","Helfrich","1913-05-13","German","http://en.wikipedia.org/wiki/Theo_Helfrich"
|
695 |
+
693,"wacker",\N,\N,"Fred","Wacker","1918-07-10","American","http://en.wikipedia.org/wiki/Fred_Wacker"
|
696 |
+
694,"riu",\N,\N,"Giovanni","de Riu","1925-03-10","Italian","http://en.wikipedia.org/wiki/Giovanni_de_Riu"
|
697 |
+
695,"galvez",\N,\N,"Oscar","Gálvez","1913-08-17","Argentine","http://en.wikipedia.org/wiki/%C3%93scar_Alfredo_G%C3%A1lvez"
|
698 |
+
696,"john_barber",\N,\N,"John","Barber","1929-07-22","British","http://en.wikipedia.org/wiki/John_Barber_(racing_driver)"
|
699 |
+
697,"bonetto",\N,\N,"Felice","Bonetto","1903-06-09","Italian","http://en.wikipedia.org/wiki/Felice_Bonetto"
|
700 |
+
698,"cruz",\N,\N,"Adolfo","Cruz","1923-06-28","Argentine","http://en.wikipedia.org/wiki/Adolfo_Schewelm_Cruz"
|
701 |
+
699,"nalon",\N,\N,"Duke","Nalon","1913-03-02","American","http://en.wikipedia.org/wiki/Duke_Nalon"
|
702 |
+
700,"scarborough",\N,\N,"Carl","Scarborough","1914-07-03","American","http://en.wikipedia.org/wiki/Carl_Scarborough"
|
703 |
+
701,"holland",\N,\N,"Bill","Holland","1907-12-18","American","http://en.wikipedia.org/wiki/Bill_Holland"
|
704 |
+
702,"bob_scott",\N,\N,"Bob","Scott","1928-10-04","American","http://en.wikipedia.org/wiki/Bob_Scott_(auto_racer)"
|
705 |
+
703,"legat",\N,\N,"Arthur","Legat","1898-11-01","Belgian","http://en.wikipedia.org/wiki/Arthur_Legat"
|
706 |
+
704,"cabantous",\N,\N,"Yves","Cabantous","1904-10-08","French","http://en.wikipedia.org/wiki/Yves_Giraud_Cabantous"
|
707 |
+
705,"crook",\N,\N,"Tony","Crook","1920-02-16","British","http://en.wikipedia.org/wiki/Tony_Crook"
|
708 |
+
706,"jimmy_stewart",\N,\N,"Jimmy","Stewart","1931-03-06","British","http://en.wikipedia.org/wiki/Jimmy_Stewart_(racing_driver)"
|
709 |
+
707,"ian_stewart",\N,\N,"Ian","Stewart","1929-07-15","British","http://en.wikipedia.org/wiki/Ian_Stewart_(racing_driver)"
|
710 |
+
708,"duncan_hamilton",\N,\N,"Duncan","Hamilton","1920-04-30","British","http://en.wikipedia.org/wiki/Duncan_Hamilton_(racing_driver)"
|
711 |
+
709,"klodwig",\N,\N,"Ernst","Klodwig","1903-05-23","East German","http://en.wikipedia.org/wiki/Ernst_Klodwig"
|
712 |
+
710,"krause",\N,\N,"Rudolf","Krause","1907-03-30","East German","http://en.wikipedia.org/wiki/Rudolf_Krause"
|
713 |
+
711,"karch",\N,\N,"Oswald","Karch","1917-03-06","German","http://en.wikipedia.org/wiki/Oswald_Karch"
|
714 |
+
712,"heeks",\N,\N,"Willi","Heeks","1922-02-13","German","http://en.wikipedia.org/wiki/Willi_Heeks"
|
715 |
+
713,"fitzau",\N,\N,"Theo","Fitzau","1923-02-10","East German","http://en.wikipedia.org/wiki/Theo_Fitzau"
|
716 |
+
714,"adolff",\N,\N,"Kurt","Adolff","1921-11-05","German","http://en.wikipedia.org/wiki/Kurt_Adolff"
|
717 |
+
715,"bechem",\N,\N,"Günther","Bechem","1921-12-21","German","http://en.wikipedia.org/wiki/G%C3%BCnther_Bechem"
|
718 |
+
716,"bauer",\N,\N,"Erwin","Bauer","1912-07-17","German","http://en.wikipedia.org/wiki/Erwin_Bauer"
|
719 |
+
717,"hans_stuck",\N,\N,"Hans","von Stuck","1900-12-27","German","http://en.wikipedia.org/wiki/Hans_Von_Stuck"
|
720 |
+
718,"loof",\N,\N,"Ernst","Loof","1907-07-04","German","http://en.wikipedia.org/wiki/Ernst_Loof"
|
721 |
+
719,"scherrer",\N,\N,"Albert","Scherrer","1908-02-28","Swiss","http://en.wikipedia.org/wiki/Albert_Scherrer"
|
722 |
+
720,"terra",\N,\N,"Max","de Terra","1918-10-06","Swiss","http://en.wikipedia.org/wiki/Max_de_Terra"
|
723 |
+
721,"hirt",\N,\N,"Peter","Hirt","1910-03-30","Swiss","http://en.wikipedia.org/wiki/Peter_Hirt"
|
724 |
+
722,"carini",\N,\N,"Piero","Carini","1921-03-06","Italian","http://en.wikipedia.org/wiki/Piero_Carini"
|
725 |
+
723,"fischer",\N,\N,"Rudi","Fischer","1912-04-19","Swiss","http://en.wikipedia.org/wiki/Rudi_Fischer"
|
726 |
+
724,"ulmen",\N,\N,"Toni","Ulmen","1906-01-25","German","http://en.wikipedia.org/wiki/Toni_Ulmen"
|
727 |
+
725,"abecassis",\N,\N,"George","Abecassis","1913-03-21","British","http://en.wikipedia.org/wiki/George_Abecassis"
|
728 |
+
726,"george_connor",\N,\N,"George","Connor","1906-08-16","American","http://en.wikipedia.org/wiki/George_Connor_(driver)"
|
729 |
+
727,"rigsby",\N,\N,"Jim","Rigsby","1923-06-06","American","http://en.wikipedia.org/wiki/Jim_Rigsby"
|
730 |
+
728,"james",\N,\N,"Joe","James","1925-05-23","American","http://en.wikipedia.org/wiki/Joe_James_(racing_driver)"
|
731 |
+
729,"schindler",\N,\N,"Bill","Schindler","1909-03-06","American","http://en.wikipedia.org/wiki/Bill_Schindler"
|
732 |
+
730,"fonder",\N,\N,"George","Fonder","1917-06-22","American","http://en.wikipedia.org/wiki/George_Fonder"
|
733 |
+
731,"banks",\N,\N,"Henry","Banks","1913-06-14","American","http://en.wikipedia.org/wiki/Henry_Banks"
|
734 |
+
732,"mcdowell",\N,\N,"Johnny","McDowell","1915-01-29","American","http://en.wikipedia.org/wiki/Johnny_McDowell"
|
735 |
+
733,"miller",\N,\N,"Chet","Miller","1902-07-19","American","http://en.wikipedia.org/wiki/Chet_Miller"
|
736 |
+
734,"ball",\N,\N,"Bobby","Ball","1925-08-26","American","http://en.wikipedia.org/wiki/Bobby_Ball_(auto_racer)"
|
737 |
+
735,"tornaco",\N,\N,"Charles","de Tornaco","1927-06-07","Belgian","http://en.wikipedia.org/wiki/Charles_de_Tornaco"
|
738 |
+
736,"laurent",\N,\N,"Roger","Laurent","1913-02-21","Belgian","http://en.wikipedia.org/wiki/Roger_Laurent"
|
739 |
+
737,"obrien",\N,\N,"Robert","O'Brien","1908-04-11","American","http://en.wikipedia.org/wiki/Robert_O%27Brien_(auto_racer)"
|
740 |
+
738,"gaze",\N,\N,"Tony","Gaze","1920-02-03","Australian","http://en.wikipedia.org/wiki/Tony_Gaze"
|
741 |
+
739,"charrington",\N,\N,"Robin","Montgomerie-Charrington","1915-06-23","British","http://en.wikipedia.org/wiki/Robin_Montgomerie-Charrington"
|
742 |
+
740,"comotti",\N,\N,"Franco","Comotti","1906-07-24","Italian","http://en.wikipedia.org/wiki/Franco_Comotti"
|
743 |
+
741,"etancelin",\N,\N,"Philippe","Étancelin","1896-12-28","French","http://en.wikipedia.org/wiki/Philippe_%C3%89tancelin"
|
744 |
+
742,"poore",\N,\N,"Dennis","Poore","1916-08-19","British","http://en.wikipedia.org/wiki/Dennis_Poore"
|
745 |
+
743,"thompson",\N,\N,"Eric","Thompson","1919-11-04","British","http://en.wikipedia.org/wiki/Eric_Thompson_(racing_driver)"
|
746 |
+
744,"downing",\N,\N,"Ken","Downing","1917-12-05","British","http://en.wikipedia.org/wiki/Ken_Downing"
|
747 |
+
745,"graham_whitehead",\N,\N,"Graham","Whitehead","1922-04-15","British","http://en.wikipedia.org/wiki/Graham_Whitehead"
|
748 |
+
746,"bianco",\N,\N,"Gino","Bianco","1916-07-22","Brazilian","http://en.wikipedia.org/wiki/Gino_Bianco"
|
749 |
+
747,"murray",\N,\N,"David","Murray","1909-12-28","British","http://en.wikipedia.org/wiki/David_Murray_(driver)"
|
750 |
+
748,"cantoni",\N,\N,"Eitel","Cantoni","1906-10-04","Uruguayan","http://en.wikipedia.org/wiki/Eitel_Cantoni"
|
751 |
+
749,"aston",\N,\N,"Bill","Aston","1900-03-29","British","http://en.wikipedia.org/wiki/Bill_Aston"
|
752 |
+
750,"brudes",\N,\N,"Adolf","Brudes","1899-10-15","German","http://en.wikipedia.org/wiki/Adolf_Brudes"
|
753 |
+
751,"riess",\N,\N,"Fritz","Riess","1922-07-11","German","http://en.wikipedia.org/wiki/Fritz_Riess"
|
754 |
+
752,"niedermayr",\N,\N,"Helmut","Niedermayr","1915-11-29","German","http://en.wikipedia.org/wiki/Helmut_Niedermayr"
|
755 |
+
753,"klenk",\N,\N,"Hans","Klenk","1919-10-28","German","http://en.wikipedia.org/wiki/Hans_Klenk"
|
756 |
+
754,"balsa",\N,\N,"Marcel","Balsa","1909-01-01","French","http://en.wikipedia.org/wiki/Marcel_Balsa"
|
757 |
+
755,"schoeller",\N,\N,"Rudolf","Schoeller","1902-04-27","Swiss","http://en.wikipedia.org/wiki/Rudolf_Schoeller"
|
758 |
+
756,"pietsch",\N,\N,"Paul","Pietsch","1911-06-20","German","http://en.wikipedia.org/wiki/Paul_Pietsch"
|
759 |
+
757,"peters",\N,\N,"Josef","Peters","1914-09-16","German","http://en.wikipedia.org/wiki/Josef_Peters_(driver)"
|
760 |
+
758,"lof",\N,\N,"Dries","van der Lof","1919-08-23","Dutch","http://en.wikipedia.org/wiki/Dries_van_der_Lof"
|
761 |
+
759,"flinterman",\N,\N,"Jan","Flinterman","1919-10-02","Dutch","http://en.wikipedia.org/wiki/Jan_Flinterman"
|
762 |
+
760,"dusio",\N,\N,"Piero","Dusio","1899-10-13","Italian","http://en.wikipedia.org/wiki/Piero_Dusio"
|
763 |
+
761,"crespo",\N,\N,"Alberto","Crespo","1920-01-16","Argentine","http://en.wikipedia.org/wiki/Alberto_Crespo"
|
764 |
+
762,"rol",\N,\N,"Franco","Rol","1908-06-05","Italian","http://en.wikipedia.org/wiki/Franco_Rol"
|
765 |
+
763,"sanesi",\N,\N,"Consalvo","Sanesi","1911-03-28","Italian","http://en.wikipedia.org/wiki/Consalvo_Sanesi"
|
766 |
+
764,"guy_mairesse",\N,\N,"Guy","Mairesse","1910-08-10","French","http://en.wikipedia.org/wiki/Guy_Mairesse"
|
767 |
+
765,"louveau",\N,\N,"Henri","Louveau","1910-01-25","French","http://en.wikipedia.org/wiki/Henri_Louveau"
|
768 |
+
766,"wallard",\N,\N,"Lee","Wallard","1910-09-07","American","http://en.wikipedia.org/wiki/Lee_Wallard"
|
769 |
+
767,"forberg",\N,\N,"Carl","Forberg","1911-03-04","American","http://en.wikipedia.org/wiki/Carl_Forberg"
|
770 |
+
768,"rose",\N,\N,"Mauri","Rose","1906-05-26","American","http://en.wikipedia.org/wiki/Mauri_Rose"
|
771 |
+
769,"mackey",\N,\N,"Bill","Mackey","1927-12-15","American","http://en.wikipedia.org/wiki/Bill_Mackey"
|
772 |
+
770,"green",\N,\N,"Cecil","Green","1919-09-30","American","http://en.wikipedia.org/wiki/Cecil_Green"
|
773 |
+
771,"walt_brown",\N,\N,"Walt","Brown","1911-12-30","American","http://en.wikipedia.org/wiki/Walt_Brown_(auto_racer)"
|
774 |
+
772,"hellings",\N,\N,"Mack","Hellings","1915-09-14","American","http://en.wikipedia.org/wiki/Mack_Hellings"
|
775 |
+
773,"levegh",\N,\N,"Pierre","Levegh","1905-12-22","French","http://en.wikipedia.org/wiki/Pierre_Levegh"
|
776 |
+
774,"chaboud",\N,\N,"Eugène","Chaboud","1907-04-12","French","http://en.wikipedia.org/wiki/Eug%C3%A8ne_Chaboud"
|
777 |
+
775,"gordini",\N,\N,"Aldo","Gordini","1921-05-20","French","http://en.wikipedia.org/wiki/Aldo_Gordini"
|
778 |
+
776,"kelly",\N,\N,"Joe","Kelly","1913-03-13","Irish","http://en.wikipedia.org/wiki/Joe_Kelly_(Formula_One)"
|
779 |
+
777,"parker",\N,\N,"Philip","Fotheringham-Parker","1907-09-22","British","http://en.wikipedia.org/wiki/Philip_Fotheringham-Parker"
|
780 |
+
778,"shawe_taylor",\N,\N,"Brian","Shawe Taylor","1915-01-28","British","http://en.wikipedia.org/wiki/Brian_Shawe_Taylor"
|
781 |
+
779,"john_james",\N,\N,"John","James","1914-05-10","British","http://en.wikipedia.org/wiki/John_James_(auto_racer)"
|
782 |
+
780,"branca",\N,\N,"Toni","Branca","1916-09-15","Swiss","http://en.wikipedia.org/wiki/Toni_Branca"
|
783 |
+
781,"richardson",\N,\N,"Ken","Richardson","1911-08-21","British","http://en.wikipedia.org/wiki/Ken_Richardson_(race_car_driver)"
|
784 |
+
782,"jover",\N,\N,"Juan","Jover","1903-11-23","Spanish","http://en.wikipedia.org/wiki/Juan_Jover"
|
785 |
+
783,"grignard",\N,\N,"Georges","Grignard","1905-07-25","French","http://en.wikipedia.org/wiki/Georges_Grignard"
|
786 |
+
784,"hampshire",\N,\N,"David","Hampshire","1917-12-29","British","http://en.wikipedia.org/wiki/David_Hampshire"
|
787 |
+
785,"crossley",\N,\N,"Geoff","Crossley","1921-05-11","British","http://en.wikipedia.org/wiki/Geoff_Crossley"
|
788 |
+
786,"fagioli",\N,\N,"Luigi","Fagioli","1898-06-09","Italian","http://en.wikipedia.org/wiki/Luigi_Fagioli"
|
789 |
+
787,"harrison",\N,\N,"Cuth","Harrison","1906-07-06","British","http://en.wikipedia.org/wiki/Cuth_Harrison"
|
790 |
+
788,"fry",\N,\N,"Joe","Fry","1915-10-26","British","http://en.wikipedia.org/wiki/Joe_Fry"
|
791 |
+
789,"martin",\N,\N,"Eugène","Martin","1915-03-24","French","http://en.wikipedia.org/wiki/Eug%C3%A8ne_Martin"
|
792 |
+
790,"leslie_johnson",\N,\N,"Leslie","Johnson","1912-03-22","British","http://en.wikipedia.org/wiki/Leslie_Johnson_(racing_driver)"
|
793 |
+
791,"biondetti",\N,\N,"Clemente","Biondetti","1898-08-18","Italian","http://en.wikipedia.org/wiki/Clemente_Biondetti"
|
794 |
+
792,"pian",\N,\N,"Alfredo","Pián","1912-10-21","Argentine","http://en.wikipedia.org/wiki/Alfredo_Pi%C3%A0n"
|
795 |
+
793,"sommer",\N,\N,"Raymond","Sommer","1906-08-31","French","http://en.wikipedia.org/wiki/Raymond_Sommer"
|
796 |
+
794,"chitwood",\N,\N,"Joie","Chitwood","1912-04-14","American","http://en.wikipedia.org/wiki/Joie_Chitwood"
|
797 |
+
795,"fohr",\N,\N,"Myron","Fohr","1912-06-17","American","http://en.wikipedia.org/wiki/Myron_Fohr"
|
798 |
+
796,"ader",\N,\N,"Walt","Ader","1913-12-15","American","http://en.wikipedia.org/wiki/Walt_Ader"
|
799 |
+
797,"holmes",\N,\N,"Jackie","Holmes","1920-09-04","American","http://en.wikipedia.org/wiki/Jackie_Holmes"
|
800 |
+
798,"levrett",\N,\N,"Bayliss","Levrett","1914-02-14","American","http://en.wikipedia.org/wiki/Bayliss_Levrett"
|
801 |
+
799,"jackson",\N,\N,"Jimmy","Jackson","1910-07-25","American","http://en.wikipedia.org/wiki/Jimmy_Jackson_(driver)"
|
802 |
+
800,"pagani",\N,\N,"Nello","Pagani","1911-10-11","Italian","http://en.wikipedia.org/wiki/Nello_Pagani"
|
803 |
+
801,"pozzi",\N,\N,"Charles","Pozzi","1909-08-27","French","http://en.wikipedia.org/wiki/Charles_Pozzi"
|
804 |
+
802,"serafini",\N,\N,"Dorino","Serafini","1909-07-22","Italian","http://en.wikipedia.org/wiki/Dorino_Serafini"
|
805 |
+
803,"cantrell",\N,\N,"Bill","Cantrell","1908-01-31","American","http://en.wikipedia.org/wiki/William_Cantrell"
|
806 |
+
804,"mantz",\N,\N,"Johnny","Mantz","1918-09-18","American","http://en.wikipedia.org/wiki/Johnny_Mantz"
|
807 |
+
805,"kladis",\N,\N,"Danny","Kladis","1917-02-10","American","http://en.wikipedia.org/wiki/Danny_Kladis"
|
808 |
+
806,"oscar_gonzalez",\N,\N,"Óscar","González","1923-11-10","Uruguayan","http://en.wikipedia.org/wiki/Oscar_Gonz%C3%A1lez_(racing_driver)"
|
809 |
+
807,"hulkenberg",27,"HUL","Nico","Hülkenberg","1987-08-19","German","http://en.wikipedia.org/wiki/Nico_H%C3%BClkenberg"
|
810 |
+
808,"petrov",\N,"PET","Vitaly","Petrov","1984-09-08","Russian","http://en.wikipedia.org/wiki/Vitaly_Petrov"
|
811 |
+
810,"grassi",\N,"DIG","Lucas","di Grassi","1984-08-11","Brazilian","http://en.wikipedia.org/wiki/Lucas_di_Grassi"
|
812 |
+
811,"bruno_senna",\N,"SEN","Bruno","Senna","1983-10-15","Brazilian","http://en.wikipedia.org/wiki/Bruno_Senna"
|
813 |
+
812,"chandhok",\N,"CHA","Karun","Chandhok","1984-01-19","Indian","http://en.wikipedia.org/wiki/Karun_Chandhok"
|
814 |
+
813,"maldonado",13,"MAL","Pastor","Maldonado","1985-03-09","Venezuelan","http://en.wikipedia.org/wiki/Pastor_Maldonado"
|
815 |
+
814,"resta",\N,"DIR","Paul","di Resta","1986-04-16","British","http://en.wikipedia.org/wiki/Paul_di_Resta"
|
816 |
+
815,"perez",11,"PER","Sergio","Pérez","1990-01-26","Mexican","http://en.wikipedia.org/wiki/Sergio_P%C3%A9rez"
|
817 |
+
816,"ambrosio",\N,"DAM","Jérôme","d'Ambrosio","1985-12-27","Belgian","http://en.wikipedia.org/wiki/J%C3%A9r%C3%B4me_d%27Ambrosio"
|
818 |
+
817,"ricciardo",3,"RIC","Daniel","Ricciardo","1989-07-01","Australian","http://en.wikipedia.org/wiki/Daniel_Ricciardo"
|
819 |
+
818,"vergne",25,"VER","Jean-Éric","Vergne","1990-04-25","French","http://en.wikipedia.org/wiki/Jean-%C3%89ric_Vergne"
|
820 |
+
819,"pic",\N,"PIC","Charles","Pic","1990-02-15","French","http://en.wikipedia.org/wiki/Charles_Pic"
|
821 |
+
820,"chilton",4,"CHI","Max","Chilton","1991-04-21","British","http://en.wikipedia.org/wiki/Max_Chilton"
|
822 |
+
821,"gutierrez",21,"GUT","Esteban","Gutiérrez","1991-08-05","Mexican","http://en.wikipedia.org/wiki/Esteban_Guti%C3%A9rrez"
|
823 |
+
822,"bottas",77,"BOT","Valtteri","Bottas","1989-08-28","Finnish","http://en.wikipedia.org/wiki/Valtteri_Bottas"
|
824 |
+
823,"garde",\N,"VDG","Giedo","van der Garde","1985-04-25","Dutch","http://en.wikipedia.org/wiki/Giedo_van_der_Garde"
|
825 |
+
824,"jules_bianchi",17,"BIA","Jules","Bianchi","1989-08-03","French","http://en.wikipedia.org/wiki/Jules_Bianchi"
|
826 |
+
825,"kevin_magnussen",20,"MAG","Kevin","Magnussen","1992-10-05","Danish","http://en.wikipedia.org/wiki/Kevin_Magnussen"
|
827 |
+
826,"kvyat",26,"KVY","Daniil","Kvyat","1994-04-26","Russian","http://en.wikipedia.org/wiki/Daniil_Kvyat"
|
828 |
+
827,"lotterer",45,"LOT","André","Lotterer","1981-11-19","German","http://en.wikipedia.org/wiki/Andr%C3%A9_Lotterer"
|
829 |
+
828,"ericsson",9,"ERI","Marcus","Ericsson","1990-09-02","Swedish","http://en.wikipedia.org/wiki/Marcus_Ericsson"
|
830 |
+
829,"stevens",28,"STE","Will","Stevens","1991-06-28","British","http://en.wikipedia.org/wiki/Will_Stevens"
|
831 |
+
830,"max_verstappen",33,"VER","Max","Verstappen","1997-09-30","Dutch","http://en.wikipedia.org/wiki/Max_Verstappen"
|
832 |
+
831,"nasr",12,"NAS","Felipe","Nasr","1992-08-21","Brazilian","http://en.wikipedia.org/wiki/Felipe_Nasr"
|
833 |
+
832,"sainz",55,"SAI","Carlos","Sainz","1994-09-01","Spanish","http://en.wikipedia.org/wiki/Carlos_Sainz_Jr."
|
834 |
+
833,"merhi",98,"MER","Roberto","Merhi","1991-03-22","Spanish","http://en.wikipedia.org/wiki/Roberto_Merhi"
|
835 |
+
834,"rossi",53,"RSS","Alexander","Rossi","1991-09-25","American","http://en.wikipedia.org/wiki/Alexander_Rossi_%28racing_driver%29"
|
836 |
+
835,"jolyon_palmer",30,"PAL","Jolyon","Palmer","1991-01-20","British","http://en.wikipedia.org/wiki/Jolyon_Palmer"
|
837 |
+
836,"wehrlein",94,"WEH","Pascal","Wehrlein","1994-10-18","German","http://en.wikipedia.org/wiki/Pascal_Wehrlein"
|
838 |
+
837,"haryanto",88,"HAR","Rio","Haryanto","1993-01-22","Indonesian","http://en.wikipedia.org/wiki/Rio_Haryanto"
|
839 |
+
838,"vandoorne",2,"VAN","Stoffel","Vandoorne","1992-03-26","Belgian","http://en.wikipedia.org/wiki/Stoffel_Vandoorne"
|
840 |
+
839,"ocon",31,"OCO","Esteban","Ocon","1996-09-17","French","http://en.wikipedia.org/wiki/Esteban_Ocon"
|
841 |
+
840,"stroll",18,"STR","Lance","Stroll","1998-10-29","Canadian","http://en.wikipedia.org/wiki/Lance_Stroll"
|
842 |
+
841,"giovinazzi",99,"GIO","Antonio","Giovinazzi","1993-12-14","Italian","http://en.wikipedia.org/wiki/Antonio_Giovinazzi"
|
843 |
+
843,"brendon_hartley",28,"HAR","Brendon","Hartley","1989-11-10","New Zealander","http://en.wikipedia.org/wiki/Brendon_Hartley"
|
844 |
+
844,"leclerc",16,"LEC","Charles","Leclerc","1997-10-16","Monegasque","http://en.wikipedia.org/wiki/Charles_Leclerc"
|
845 |
+
845,"sirotkin",35,"SIR","Sergey","Sirotkin","1995-08-27","Russian","http://en.wikipedia.org/wiki/Sergey_Sirotkin_(racing_driver)"
|
846 |
+
846,"norris",4,"NOR","Lando","Norris","1999-11-13","British","http://en.wikipedia.org/wiki/Lando_Norris"
|
847 |
+
847,"russell",63,"RUS","George","Russell","1998-02-15","British","http://en.wikipedia.org/wiki/George_Russell_%28racing_driver%29"
|
848 |
+
848,"albon",23,"ALB","Alexander","Albon","1996-03-23","Thai","http://en.wikipedia.org/wiki/Alexander_Albon"
|
849 |
+
849,"latifi",6,"LAT","Nicholas","Latifi","1995-06-29","Canadian","http://en.wikipedia.org/wiki/Nicholas_Latifi"
|
850 |
+
850,"pietro_fittipaldi",51,"FIT","Pietro","Fittipaldi","1996-06-25","Brazilian","http://en.wikipedia.org/wiki/Pietro_Fittipaldi"
|
851 |
+
851,"aitken",89,"AIT","Jack","Aitken","1995-09-23","British","http://en.wikipedia.org/wiki/Jack_Aitken"
|
852 |
+
852,"tsunoda",22,"TSU","Yuki","Tsunoda","2000-05-11","Japanese","http://en.wikipedia.org/wiki/Yuki_Tsunoda"
|
853 |
+
853,"mazepin",9,"MAZ","Nikita","Mazepin","1999-03-02","Russian","http://en.wikipedia.org/wiki/Nikita_Mazepin"
|
854 |
+
854,"mick_schumacher",47,"MSC","Mick","Schumacher","1999-03-22","German","http://en.wikipedia.org/wiki/Mick_Schumacher"
|
855 |
+
855,"zhou",24,"ZHO","Guanyu","Zhou","1999-05-30","Chinese","http://en.wikipedia.org/wiki/Guanyu_Zhou"
|
856 |
+
856,"de_vries",45,"DEV","Nyck","de Vries","1995-02-06","Dutch","http://en.wikipedia.org/wiki/Nyck_de_Vries"
|
data/lap_times.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e194797b23d1f95d3ab5c403187209f05e43bd6261303786e4168d5078843e8e
|
3 |
+
size 16561536
|
data/pit_stops.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/qualifying.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/races.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/results.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data/seasons.csv
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
year,url
|
2 |
+
2009,"http://en.wikipedia.org/wiki/2009_Formula_One_season"
|
3 |
+
2008,"http://en.wikipedia.org/wiki/2008_Formula_One_season"
|
4 |
+
2007,"http://en.wikipedia.org/wiki/2007_Formula_One_season"
|
5 |
+
2006,"http://en.wikipedia.org/wiki/2006_Formula_One_season"
|
6 |
+
2005,"http://en.wikipedia.org/wiki/2005_Formula_One_season"
|
7 |
+
2004,"http://en.wikipedia.org/wiki/2004_Formula_One_season"
|
8 |
+
2003,"http://en.wikipedia.org/wiki/2003_Formula_One_season"
|
9 |
+
2002,"http://en.wikipedia.org/wiki/2002_Formula_One_season"
|
10 |
+
2001,"http://en.wikipedia.org/wiki/2001_Formula_One_season"
|
11 |
+
2000,"http://en.wikipedia.org/wiki/2000_Formula_One_season"
|
12 |
+
1999,"http://en.wikipedia.org/wiki/1999_Formula_One_season"
|
13 |
+
1998,"http://en.wikipedia.org/wiki/1998_Formula_One_season"
|
14 |
+
1997,"http://en.wikipedia.org/wiki/1997_Formula_One_season"
|
15 |
+
1996,"http://en.wikipedia.org/wiki/1996_Formula_One_season"
|
16 |
+
1995,"http://en.wikipedia.org/wiki/1995_Formula_One_season"
|
17 |
+
1994,"http://en.wikipedia.org/wiki/1994_Formula_One_season"
|
18 |
+
1993,"http://en.wikipedia.org/wiki/1993_Formula_One_season"
|
19 |
+
1992,"http://en.wikipedia.org/wiki/1992_Formula_One_season"
|
20 |
+
1991,"http://en.wikipedia.org/wiki/1991_Formula_One_season"
|
21 |
+
1990,"http://en.wikipedia.org/wiki/1990_Formula_One_season"
|
22 |
+
2010,"http://en.wikipedia.org/wiki/2010_Formula_One_season"
|
23 |
+
1989,"http://en.wikipedia.org/wiki/1989_Formula_One_season"
|
24 |
+
1988,"http://en.wikipedia.org/wiki/1988_Formula_One_season"
|
25 |
+
1987,"http://en.wikipedia.org/wiki/1987_Formula_One_season"
|
26 |
+
1986,"http://en.wikipedia.org/wiki/1986_Formula_One_season"
|
27 |
+
1985,"http://en.wikipedia.org/wiki/1985_Formula_One_season"
|
28 |
+
1984,"http://en.wikipedia.org/wiki/1984_Formula_One_season"
|
29 |
+
1983,"http://en.wikipedia.org/wiki/1983_Formula_One_season"
|
30 |
+
1982,"http://en.wikipedia.org/wiki/1982_Formula_One_season"
|
31 |
+
1981,"http://en.wikipedia.org/wiki/1981_Formula_One_season"
|
32 |
+
1980,"http://en.wikipedia.org/wiki/1980_Formula_One_season"
|
33 |
+
1979,"http://en.wikipedia.org/wiki/1979_Formula_One_season"
|
34 |
+
1978,"http://en.wikipedia.org/wiki/1978_Formula_One_season"
|
35 |
+
1977,"http://en.wikipedia.org/wiki/1977_Formula_One_season"
|
36 |
+
1976,"http://en.wikipedia.org/wiki/1976_Formula_One_season"
|
37 |
+
1975,"http://en.wikipedia.org/wiki/1975_Formula_One_season"
|
38 |
+
1974,"http://en.wikipedia.org/wiki/1974_Formula_One_season"
|
39 |
+
1973,"http://en.wikipedia.org/wiki/1973_Formula_One_season"
|
40 |
+
1972,"http://en.wikipedia.org/wiki/1972_Formula_One_season"
|
41 |
+
1971,"http://en.wikipedia.org/wiki/1971_Formula_One_season"
|
42 |
+
1970,"http://en.wikipedia.org/wiki/1970_Formula_One_season"
|
43 |
+
1969,"http://en.wikipedia.org/wiki/1969_Formula_One_season"
|
44 |
+
1968,"http://en.wikipedia.org/wiki/1968_Formula_One_season"
|
45 |
+
1967,"http://en.wikipedia.org/wiki/1967_Formula_One_season"
|
46 |
+
1966,"http://en.wikipedia.org/wiki/1966_Formula_One_season"
|
47 |
+
1965,"http://en.wikipedia.org/wiki/1965_Formula_One_season"
|
48 |
+
1964,"http://en.wikipedia.org/wiki/1964_Formula_One_season"
|
49 |
+
1963,"http://en.wikipedia.org/wiki/1963_Formula_One_season"
|
50 |
+
1962,"http://en.wikipedia.org/wiki/1962_Formula_One_season"
|
51 |
+
1961,"http://en.wikipedia.org/wiki/1961_Formula_One_season"
|
52 |
+
1960,"http://en.wikipedia.org/wiki/1960_Formula_One_season"
|
53 |
+
1959,"http://en.wikipedia.org/wiki/1959_Formula_One_season"
|
54 |
+
1958,"http://en.wikipedia.org/wiki/1958_Formula_One_season"
|
55 |
+
1957,"http://en.wikipedia.org/wiki/1957_Formula_One_season"
|
56 |
+
1956,"http://en.wikipedia.org/wiki/1956_Formula_One_season"
|
57 |
+
1955,"http://en.wikipedia.org/wiki/1955_Formula_One_season"
|
58 |
+
1954,"http://en.wikipedia.org/wiki/1954_Formula_One_season"
|
59 |
+
1953,"http://en.wikipedia.org/wiki/1953_Formula_One_season"
|
60 |
+
1952,"http://en.wikipedia.org/wiki/1952_Formula_One_season"
|
61 |
+
1951,"http://en.wikipedia.org/wiki/1951_Formula_One_season"
|
62 |
+
1950,"http://en.wikipedia.org/wiki/1950_Formula_One_season"
|
63 |
+
2011,"http://en.wikipedia.org/wiki/2011_Formula_One_season"
|
64 |
+
2012,"http://en.wikipedia.org/wiki/2012_Formula_One_season"
|
65 |
+
2013,"http://en.wikipedia.org/wiki/2013_Formula_One_season"
|
66 |
+
2014,"http://en.wikipedia.org/wiki/2014_Formula_One_season"
|
67 |
+
2015,"http://en.wikipedia.org/wiki/2015_Formula_One_season"
|
68 |
+
2016,"http://en.wikipedia.org/wiki/2016_Formula_One_season"
|
69 |
+
2017,"http://en.wikipedia.org/wiki/2017_Formula_One_season"
|
70 |
+
2018,"http://en.wikipedia.org/wiki/2018_Formula_One_World_Championship"
|
71 |
+
2019,"http://en.wikipedia.org/wiki/2019_Formula_One_World_Championship"
|
72 |
+
2020,"http://en.wikipedia.org/wiki/2020_Formula_One_World_Championship"
|
73 |
+
2021,"http://en.wikipedia.org/wiki/2021_Formula_One_World_Championship"
|
74 |
+
2022,"http://en.wikipedia.org/wiki/2022_Formula_One_World_Championship"
|
data/sprint_results.csv
ADDED
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
resultId,raceId,driverId,constructorId,number,grid,position,positionText,positionOrder,points,laps,time,milliseconds,fastestLap,fastestLapTime,statusId
|
2 |
+
1,1061,830,9,33,2,1,"1",1,3,17,"25:38.426",1538426,14,"1:30.013",1
|
3 |
+
2,1061,1,131,44,1,2,"2",2,2,17,"+1.430",1539856,17,"1:29.937",1
|
4 |
+
3,1061,822,131,77,3,3,"3",3,1,17,"+7.502",1545928,17,"1:29.958",1
|
5 |
+
4,1061,844,6,16,4,4,"4",4,0,17,"+11.278",1549704,16,"1:30.163",1
|
6 |
+
5,1061,846,1,4,6,5,"5",5,0,17,"+24.111",1562537,16,"1:30.566",1
|
7 |
+
6,1061,817,1,3,7,6,"6",6,0,17,"+30.959",1569385,17,"1:30.640",1
|
8 |
+
7,1061,4,214,14,11,7,"7",7,0,17,"+43.527",1581953,17,"1:31.773",1
|
9 |
+
8,1061,20,117,5,10,8,"8",8,0,17,"+44.439",1582865,17,"1:31.687",1
|
10 |
+
9,1061,847,3,63,8,9,"9",9,0,17,"+46.652",1585078,17,"1:32.208",1
|
11 |
+
10,1061,839,214,31,13,10,"10",10,0,17,"+47.395",1585821,16,"1:32.183",1
|
12 |
+
11,1061,832,6,55,9,11,"11",11,0,17,"+47.798",1586224,10,"1:31.991",1
|
13 |
+
12,1061,842,213,10,12,12,"12",12,0,17,"+48.763",1587189,17,"1:32.072",1
|
14 |
+
13,1061,8,51,7,17,13,"13",13,0,17,"+50.677",1589103,12,"1:32.139",1
|
15 |
+
14,1061,840,117,18,15,14,"14",14,0,17,"+52.179",1590605,12,"1:32.210",1
|
16 |
+
15,1061,841,51,99,14,15,"15",15,0,17,"+53.225",1591651,14,"1:32.457",1
|
17 |
+
16,1061,852,213,22,16,16,"16",16,0,17,"+53.567",1591993,14,"1:32.270",1
|
18 |
+
17,1061,849,3,6,18,17,"17",17,0,17,"+55.162",1593588,17,"1:32.143",1
|
19 |
+
18,1061,854,210,47,19,18,"18",18,0,17,"+1:08.213",1606639,15,"1:32.567",1
|
20 |
+
19,1061,853,210,9,20,19,"19",19,0,17,"+1:17.648",1616074,3,"1:33.462",1
|
21 |
+
20,1061,815,9,11,5,\N,"R",20,0,16,\N,\N,6,"1:31.465",76
|
22 |
+
21,1065,822,131,77,1,1,"1",1,3,18,"27:54.078",1674078,9,"1:23.540",1
|
23 |
+
22,1065,830,9,33,3,2,"2",2,2,18,"+2.325",1676403,9,"1:23.502",1
|
24 |
+
23,1065,817,1,3,5,3,"3",3,1,18,"+14.534",1688612,17,"1:24.291",1
|
25 |
+
24,1065,846,1,4,4,4,"4",4,0,18,"+18.835",1692913,9,"1:24.554",1
|
26 |
+
25,1065,1,131,44,2,5,"5",5,0,18,"+20.011",1694089,9,"1:24.253",1
|
27 |
+
26,1065,844,6,16,8,6,"6",6,0,18,"+23.442",1697520,18,"1:24.677",1
|
28 |
+
27,1065,832,6,55,7,7,"7",7,0,18,"+27.952",1702030,8,"1:24.918",1
|
29 |
+
28,1065,841,51,99,10,8,"8",8,0,18,"+31.089",1705167,10,"1:25.126",1
|
30 |
+
29,1065,815,9,11,9,9,"9",9,0,18,"+31.680",1705758,12,"1:24.211",1
|
31 |
+
30,1065,840,117,18,12,10,"10",10,0,18,"+38.671",1712749,8,"1:25.349",1
|
32 |
+
31,1065,4,214,14,13,11,"11",11,0,18,"+39.795",1713873,8,"1:25.225",1
|
33 |
+
32,1065,20,117,5,11,12,"12",12,0,18,"+41.177",1715255,8,"1:25.493",1
|
34 |
+
33,1065,839,214,31,14,13,"13",13,0,18,"+43.373",1717451,8,"1:25.613",1
|
35 |
+
34,1065,849,3,6,16,14,"14",14,0,18,"+45.977",1720055,9,"1:25.711",1
|
36 |
+
35,1065,847,3,63,15,15,"15",15,0,18,"+46.821",1720899,15,"1:25.835",1
|
37 |
+
36,1065,852,213,22,17,16,"16",16,0,18,"+49.977",1724055,18,"1:25.847",1
|
38 |
+
37,1065,853,210,9,20,17,"17",17,0,18,"+1:02.599",1736677,7,"1:26.613",1
|
39 |
+
38,1065,9,51,88,19,18,"18",18,0,18,"+1:05.096",1739174,12,"1:26.772",1
|
40 |
+
39,1065,854,210,47,18,19,"19",19,0,18,"+1:06.154",1740232,7,"1:26.819",1
|
41 |
+
40,1065,842,213,10,6,\N,"R",20,0,0,\N,\N,\N,\N,3
|
42 |
+
41,1071,822,131,77,2,1,"1",1,3,24,"29:09.559",1749559,8,"1:12.300",1
|
43 |
+
42,1071,830,9,33,1,2,"2",2,2,24,"+1.170",1750729,9,"1:12.114",1
|
44 |
+
43,1071,832,6,55,5,3,"3",3,1,24,"+18.723",1768282,13,"1:13.167",1
|
45 |
+
44,1071,815,9,11,3,4,"4",4,0,24,"+19.787",1769346,13,"1:13.110",1
|
46 |
+
45,1071,1,131,44,20,5,"5",5,0,24,"+20.872",1770431,5,"1:12.357",1
|
47 |
+
46,1071,846,1,4,7,6,"6",6,0,24,"+22.558",1772117,8,"1:12.994",1
|
48 |
+
47,1071,844,6,16,6,7,"7",7,0,24,"+25.056",1774615,4,"1:13.140",1
|
49 |
+
48,1071,842,213,10,4,8,"8",8,0,24,"+34.158",1783717,4,"1:13.342",1
|
50 |
+
49,1071,839,214,31,10,9,"9",9,0,24,"+34.632",1784191,11,"1:13.615",1
|
51 |
+
50,1071,20,117,5,11,10,"10",10,0,24,"+34.867",1784426,5,"1:13.558",1
|
52 |
+
51,1071,817,1,3,8,11,"11",11,0,24,"+35.869",1785428,9,"1:13.463",1
|
53 |
+
52,1071,4,214,14,9,12,"12",12,0,24,"+36.578",1786137,4,"1:13.397",1
|
54 |
+
53,1071,841,51,99,14,13,"13",13,0,24,"+41.880",1791439,11,"1:13.627",1
|
55 |
+
54,1071,840,117,18,15,14,"14",14,0,24,"+44.037",1793596,9,"1:13.666",1
|
56 |
+
55,1071,852,213,22,12,15,"15",15,0,24,"+46.150",1795709,11,"1:13.747",1
|
57 |
+
56,1071,849,3,6,16,16,"16",16,0,24,"+46.760",1796319,7,"1:13.934",1
|
58 |
+
57,1071,847,3,63,17,17,"17",17,0,24,"+47.739",1797298,14,"1:14.056",1
|
59 |
+
58,1071,8,51,7,13,18,"18",18,0,24,"+50.014",1799573,9,"1:13.900",1
|
60 |
+
59,1071,854,210,47,18,19,"19",19,0,24,"+1:01.680",1811239,9,"1:14.387",1
|
61 |
+
60,1071,853,210,9,19,20,"20",20,0,24,"+1:07.474",1817033,6,"1:14.583",1
|
62 |
+
61,1077,830,9,1,1,1,"1",1,8,21,"30:39.567",1839567,14,"1:19.154",1
|
63 |
+
62,1077,844,6,16,2,2,"2",2,7,21,"+2.975",1842542,11,"1:19.044",1
|
64 |
+
63,1077,815,9,11,7,3,"3",3,6,21,"+4.721",1844288,14,"1:19.012",1
|
65 |
+
64,1077,832,6,55,10,4,"4",4,5,21,"+17.578",1857145,14,"1:19.251",1
|
66 |
+
65,1077,846,1,4,3,5,"5",5,4,21,"+24.561",1864128,9,"1:20.030",1
|
67 |
+
66,1077,817,1,3,6,6,"6",6,3,21,"+27.740",1867307,12,"1:20.328",1
|
68 |
+
67,1077,822,51,77,8,7,"7",7,2,21,"+28.133",1867700,9,"1:20.219",1
|
69 |
+
68,1077,825,210,20,4,8,"8",8,1,21,"+30.712",1870279,6,"1:20.557",1
|
70 |
+
69,1077,4,214,14,5,9,"9",9,0,21,"+32.278",1871845,10,"1:20.639",1
|
71 |
+
70,1077,854,210,47,12,10,"10",10,0,21,"+33.773",1873340,15,"1:20.567",1
|
72 |
+
71,1077,847,131,63,11,11,"11",11,0,21,"+36.284",1875851,19,"1:20.756",1
|
73 |
+
72,1077,852,213,22,16,12,"12",12,0,21,"+38.298",1877865,20,"1:20.909",1
|
74 |
+
73,1077,20,117,5,9,13,"13",13,0,21,"+40.177",1879744,8,"1:21.044",1
|
75 |
+
74,1077,1,131,44,13,14,"14",14,0,21,"+41.459",1881026,9,"1:20.663",1
|
76 |
+
75,1077,840,117,18,15,15,"15",15,0,21,"+42.910",1882477,14,"1:20.948",1
|
77 |
+
76,1077,839,214,31,19,16,"16",16,0,21,"+43.517",1883084,14,"1:20.995",1
|
78 |
+
77,1077,842,213,10,17,17,"17",17,0,21,"+43.794",1883361,18,"1:20.599",1
|
79 |
+
78,1077,848,3,23,20,18,"18",18,0,21,"+48.871",1888438,14,"1:21.020",1
|
80 |
+
79,1077,849,3,6,18,19,"19",19,0,21,"+52.017",1891584,16,"1:21.437",1
|
81 |
+
80,1077,855,51,24,0,\N,"R",20,0,0,\N,\N,\N,\N,31
|
82 |
+
81,1084,830,9,1,1,1,"1",1,8,23,"26:30.059",1590059,5,"1:08.455",1
|
83 |
+
82,1084,844,6,16,2,2,"2",2,7,23,"+1.675",1591734,4,"1:08.321",1
|
84 |
+
83,1084,832,6,55,3,3,"3",3,6,23,"+5.644",1595703,4,"1:08.409",1
|
85 |
+
84,1084,847,131,63,4,4,"4",4,5,23,"+13.429",1603488,4,"1:08.979",1
|
86 |
+
85,1084,815,9,11,13,5,"5",5,4,23,"+18.302",1608361,14,"1:09.137",1
|
87 |
+
86,1084,839,214,31,5,6,"6",6,3,23,"+31.032",1621091,4,"1:09.384",1
|
88 |
+
87,1084,825,210,20,6,7,"7",7,2,23,"+34.539",1624598,4,"1:09.232",1
|
89 |
+
88,1084,1,131,44,9,8,"8",8,1,23,"+35.447",1625506,7,"1:09.516",1
|
90 |
+
89,1084,854,210,47,7,9,"9",9,0,23,"+37.163",1627222,4,"1:09.457",1
|
91 |
+
90,1084,822,51,77,12,10,"10",10,0,23,"+37.557",1627616,4,"1:09.674",1
|
92 |
+
91,1084,846,1,4,15,11,"11",11,0,23,"+38.580",1628639,8,"1:09.909",1
|
93 |
+
92,1084,817,1,3,16,12,"12",12,0,23,"+39.738",1629797,8,"1:09.996",1
|
94 |
+
93,1084,840,117,18,17,13,"13",13,0,23,"+48.241",1638300,4,"1:10.295",1
|
95 |
+
94,1084,855,51,24,18,14,"14",14,0,23,"+50.753",1640812,11,"1:10.165",1
|
96 |
+
95,1084,842,213,10,10,15,"15",15,0,23,"+52.125",1642184,4,"1:10.409",1
|
97 |
+
96,1084,848,3,23,11,16,"16",16,0,23,"+52.412",1642471,5,"1:10.367",1
|
98 |
+
97,1084,852,213,22,14,17,"17",17,0,23,"+54.556",1644615,4,"1:10.267",1
|
99 |
+
98,1084,849,3,6,19,18,"18",18,0,23,"+1:08.694",1658753,4,"1:10.284",1
|
100 |
+
99,1084,20,117,5,20,19,"19",19,0,21,\N,\N,4,"1:10.317",130
|
101 |
+
100,1084,4,214,14,8,\N,"N",20,0,0,\N,\N,\N,\N,10
|
102 |
+
101,1095,847,131,63,3,1,"1",1,8,24,"30:11.307",1811307,4,"1:14.233",1
|
103 |
+
102,1095,832,6,55,5,2,"2",2,7,24,"+3.995",1815302,2,"1:14.522",1
|
104 |
+
103,1095,1,131,44,8,3,"3",3,6,24,"+4.492",1815799,3,"1:14.317",1
|
105 |
+
104,1095,830,9,1,2,4,"4",4,5,24,"+10.494",1821801,5,"1:14.507",1
|
106 |
+
105,1095,815,9,11,9,5,"5",5,4,24,"+11.855",1823162,5,"1:14.699",1
|
107 |
+
106,1095,844,6,16,10,6,"6",6,3,24,"+13.133",1824440,4,"1:15.236",1
|
108 |
+
107,1095,846,1,4,4,7,"7",7,2,24,"+25.624",1836931,4,"1:15.380",1
|
109 |
+
108,1095,825,210,20,1,8,"8",8,1,24,"+28.768",1840075,2,"1:15.110",1
|
110 |
+
109,1095,20,117,5,13,9,"9",9,0,24,"+30.218",1841525,4,"1:15.451",1
|
111 |
+
110,1095,842,213,10,12,10,"10",10,0,24,"+34.170",1845477,3,"1:15.290",1
|
112 |
+
111,1095,817,1,3,14,11,"11",11,0,24,"+39.395",1850702,5,"1:15.385",1
|
113 |
+
112,1095,854,210,47,20,12,"12",12,0,24,"+41.159",1852466,5,"1:15.771",1
|
114 |
+
113,1095,855,51,24,17,13,"13",13,0,24,"+41.763",1853070,7,"1:15.765",1
|
115 |
+
114,1095,822,51,77,18,14,"14",14,0,24,"+42.338",1853645,8,"1:15.980",1
|
116 |
+
115,1095,852,213,22,19,15,"15",15,0,24,"+50.306",1861613,4,"1:16.413",1
|
117 |
+
116,1095,840,117,18,15,16,"16",16,0,24,"+50.700",1862007,4,"1:15.425",1
|
118 |
+
117,1095,839,214,31,6,17,"17",17,0,24,"+51.756",1863063,5,"1:16.097",1
|
119 |
+
118,1095,4,214,14,7,18,"18",18,0,24,"+53.985",1865292,5,"1:14.764",1
|
120 |
+
119,1095,849,3,6,16,19,"19",19,0,24,"+1:16.850",1888157,4,"1:16.525",1
|
121 |
+
120,1095,848,3,23,11,\N,"R",20,0,12,\N,\N,4,"1:15.998",31
|
data/status.csv
ADDED
@@ -0,0 +1,140 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
statusId,status
|
2 |
+
1,"Finished"
|
3 |
+
2,"Disqualified"
|
4 |
+
3,"Accident"
|
5 |
+
4,"Collision"
|
6 |
+
5,"Engine"
|
7 |
+
6,"Gearbox"
|
8 |
+
7,"Transmission"
|
9 |
+
8,"Clutch"
|
10 |
+
9,"Hydraulics"
|
11 |
+
10,"Electrical"
|
12 |
+
11,"+1 Lap"
|
13 |
+
12,"+2 Laps"
|
14 |
+
13,"+3 Laps"
|
15 |
+
14,"+4 Laps"
|
16 |
+
15,"+5 Laps"
|
17 |
+
16,"+6 Laps"
|
18 |
+
17,"+7 Laps"
|
19 |
+
18,"+8 Laps"
|
20 |
+
19,"+9 Laps"
|
21 |
+
20,"Spun off"
|
22 |
+
21,"Radiator"
|
23 |
+
22,"Suspension"
|
24 |
+
23,"Brakes"
|
25 |
+
24,"Differential"
|
26 |
+
25,"Overheating"
|
27 |
+
26,"Mechanical"
|
28 |
+
27,"Tyre"
|
29 |
+
28,"Driver Seat"
|
30 |
+
29,"Puncture"
|
31 |
+
30,"Driveshaft"
|
32 |
+
31,"Retired"
|
33 |
+
32,"Fuel pressure"
|
34 |
+
33,"Front wing"
|
35 |
+
34,"Water pressure"
|
36 |
+
35,"Refuelling"
|
37 |
+
36,"Wheel"
|
38 |
+
37,"Throttle"
|
39 |
+
38,"Steering"
|
40 |
+
39,"Technical"
|
41 |
+
40,"Electronics"
|
42 |
+
41,"Broken wing"
|
43 |
+
42,"Heat shield fire"
|
44 |
+
43,"Exhaust"
|
45 |
+
44,"Oil leak"
|
46 |
+
45,"+11 Laps"
|
47 |
+
46,"Wheel rim"
|
48 |
+
47,"Water leak"
|
49 |
+
48,"Fuel pump"
|
50 |
+
49,"Track rod"
|
51 |
+
50,"+17 Laps"
|
52 |
+
51,"Oil pressure"
|
53 |
+
128,"+42 Laps"
|
54 |
+
53,"+13 Laps"
|
55 |
+
54,"Withdrew"
|
56 |
+
55,"+12 Laps"
|
57 |
+
56,"Engine fire"
|
58 |
+
129,"Engine misfire"
|
59 |
+
58,"+26 Laps"
|
60 |
+
59,"Tyre puncture"
|
61 |
+
60,"Out of fuel"
|
62 |
+
61,"Wheel nut"
|
63 |
+
62,"Not classified"
|
64 |
+
63,"Pneumatics"
|
65 |
+
64,"Handling"
|
66 |
+
65,"Rear wing"
|
67 |
+
66,"Fire"
|
68 |
+
67,"Wheel bearing"
|
69 |
+
68,"Physical"
|
70 |
+
69,"Fuel system"
|
71 |
+
70,"Oil line"
|
72 |
+
71,"Fuel rig"
|
73 |
+
72,"Launch control"
|
74 |
+
73,"Injured"
|
75 |
+
74,"Fuel"
|
76 |
+
75,"Power loss"
|
77 |
+
76,"Vibrations"
|
78 |
+
77,"107% Rule"
|
79 |
+
78,"Safety"
|
80 |
+
79,"Drivetrain"
|
81 |
+
80,"Ignition"
|
82 |
+
81,"Did not qualify"
|
83 |
+
82,"Injury"
|
84 |
+
83,"Chassis"
|
85 |
+
84,"Battery"
|
86 |
+
85,"Stalled"
|
87 |
+
86,"Halfshaft"
|
88 |
+
87,"Crankshaft"
|
89 |
+
88,"+10 Laps"
|
90 |
+
89,"Safety concerns"
|
91 |
+
90,"Not restarted"
|
92 |
+
91,"Alternator"
|
93 |
+
92,"Underweight"
|
94 |
+
93,"Safety belt"
|
95 |
+
94,"Oil pump"
|
96 |
+
95,"Fuel leak"
|
97 |
+
96,"Excluded"
|
98 |
+
97,"Did not prequalify"
|
99 |
+
98,"Injection"
|
100 |
+
99,"Distributor"
|
101 |
+
100,"Driver unwell"
|
102 |
+
101,"Turbo"
|
103 |
+
102,"CV joint"
|
104 |
+
103,"Water pump"
|
105 |
+
104,"Fatal accident"
|
106 |
+
105,"Spark plugs"
|
107 |
+
106,"Fuel pipe"
|
108 |
+
107,"Eye injury"
|
109 |
+
108,"Oil pipe"
|
110 |
+
109,"Axle"
|
111 |
+
110,"Water pipe"
|
112 |
+
111,"+14 Laps"
|
113 |
+
112,"+15 Laps"
|
114 |
+
113,"+25 Laps"
|
115 |
+
114,"+18 Laps"
|
116 |
+
115,"+22 Laps"
|
117 |
+
116,"+16 Laps"
|
118 |
+
117,"+24 Laps"
|
119 |
+
118,"+29 Laps"
|
120 |
+
119,"+23 Laps"
|
121 |
+
120,"+21 Laps"
|
122 |
+
121,"Magneto"
|
123 |
+
122,"+44 Laps"
|
124 |
+
123,"+30 Laps"
|
125 |
+
124,"+19 Laps"
|
126 |
+
125,"+46 Laps"
|
127 |
+
126,"Supercharger"
|
128 |
+
127,"+20 Laps"
|
129 |
+
130,"Collision damage"
|
130 |
+
131,"Power Unit"
|
131 |
+
132,"ERS"
|
132 |
+
133,"+49 Laps"
|
133 |
+
134,"+38 Laps"
|
134 |
+
135,"Brake duct"
|
135 |
+
136,"Seat"
|
136 |
+
137,"Damage"
|
137 |
+
138,"Debris"
|
138 |
+
139,"Illness"
|
139 |
+
140,"Undertray"
|
140 |
+
141,"Cooling system"
|
data/weather.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
requirements.txt
ADDED
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
alembic==1.13.1
|
2 |
+
altair==5.2.0
|
3 |
+
aniso8601==9.0.1
|
4 |
+
annotated-types==0.6.0
|
5 |
+
anyio==4.3.0
|
6 |
+
appnope==0.1.4
|
7 |
+
argon2-cffi==23.1.0
|
8 |
+
argon2-cffi-bindings==21.2.0
|
9 |
+
arrow==1.3.0
|
10 |
+
asttokens==2.4.1
|
11 |
+
async-lru==2.0.4
|
12 |
+
attrs==23.2.0
|
13 |
+
Babel==2.14.0
|
14 |
+
beautifulsoup4==4.12.3
|
15 |
+
bleach==6.1.0
|
16 |
+
blinker==1.7.0
|
17 |
+
cachetools==5.3.3
|
18 |
+
certifi==2024.2.2
|
19 |
+
cffi==1.16.0
|
20 |
+
charset-normalizer==3.3.2
|
21 |
+
click==8.1.7
|
22 |
+
cloudpickle==3.0.0
|
23 |
+
comm==0.2.1
|
24 |
+
contourpy==1.2.0
|
25 |
+
cycler==0.12.1
|
26 |
+
dacite==1.8.1
|
27 |
+
debugpy==1.8.1
|
28 |
+
decorator==5.1.1
|
29 |
+
defusedxml==0.7.1
|
30 |
+
docker==7.0.0
|
31 |
+
entrypoints==0.4
|
32 |
+
exceptiongroup==1.2.0
|
33 |
+
executing==2.0.1
|
34 |
+
fastjsonschema==2.19.1
|
35 |
+
Flask==3.0.2
|
36 |
+
fonttools==4.49.0
|
37 |
+
fqdn==1.5.1
|
38 |
+
gitdb==4.0.11
|
39 |
+
GitPython==3.1.42
|
40 |
+
graphene==3.3
|
41 |
+
graphql-core==3.2.3
|
42 |
+
graphql-relay==3.2.0
|
43 |
+
gunicorn==21.2.0
|
44 |
+
h11==0.14.0
|
45 |
+
htmlmin==0.1.12
|
46 |
+
httpcore==1.0.4
|
47 |
+
httpx==0.27.0
|
48 |
+
idna==3.6
|
49 |
+
ImageHash==4.3.1
|
50 |
+
importlib-metadata==7.0.1
|
51 |
+
importlib_resources==6.1.2
|
52 |
+
ipykernel==6.29.3
|
53 |
+
ipython==8.18.1
|
54 |
+
ipywidgets==8.1.2
|
55 |
+
isoduration==20.11.0
|
56 |
+
itsdangerous==2.1.2
|
57 |
+
jedi==0.19.1
|
58 |
+
Jinja2==3.1.3
|
59 |
+
joblib==1.3.2
|
60 |
+
json5==0.9.20
|
61 |
+
jsonpointer==2.4
|
62 |
+
jsonschema==4.21.1
|
63 |
+
jsonschema-specifications==2023.12.1
|
64 |
+
jupyter==1.0.0
|
65 |
+
jupyter-console==6.6.3
|
66 |
+
jupyter-events==0.9.0
|
67 |
+
jupyter-lsp==2.2.4
|
68 |
+
jupyter_client==8.6.0
|
69 |
+
jupyter_core==5.7.1
|
70 |
+
jupyter_server==2.13.0
|
71 |
+
jupyter_server_terminals==0.5.2
|
72 |
+
jupyterlab==4.1.3
|
73 |
+
jupyterlab_pygments==0.3.0
|
74 |
+
jupyterlab_server==2.25.3
|
75 |
+
jupyterlab_widgets==3.0.10
|
76 |
+
kiwisolver==1.4.5
|
77 |
+
llvmlite==0.41.1
|
78 |
+
Mako==1.3.2
|
79 |
+
Markdown==3.5.2
|
80 |
+
markdown-it-py==3.0.0
|
81 |
+
MarkupSafe==2.1.5
|
82 |
+
matplotlib==3.8.3
|
83 |
+
matplotlib-inline==0.1.6
|
84 |
+
mdurl==0.1.2
|
85 |
+
mistune==3.0.2
|
86 |
+
mlflow==2.11.1
|
87 |
+
multimethod==1.11.2
|
88 |
+
nbclient==0.9.0
|
89 |
+
nbconvert==7.16.2
|
90 |
+
nbformat==5.9.2
|
91 |
+
nest-asyncio==1.6.0
|
92 |
+
networkx==3.2.1
|
93 |
+
notebook==7.1.1
|
94 |
+
notebook_shim==0.2.4
|
95 |
+
numba==0.58.1
|
96 |
+
numpy==1.25.2
|
97 |
+
overrides==7.7.0
|
98 |
+
packaging==23.2
|
99 |
+
pandas==2.2.1
|
100 |
+
pandas-profiling==3.6.6
|
101 |
+
pandocfilters==1.5.1
|
102 |
+
parso==0.8.3
|
103 |
+
patsy==0.5.6
|
104 |
+
pexpect==4.9.0
|
105 |
+
phik==0.12.4
|
106 |
+
pillow==10.2.0
|
107 |
+
platformdirs==4.2.0
|
108 |
+
plotly==5.19.0
|
109 |
+
prometheus_client==0.20.0
|
110 |
+
prompt-toolkit==3.0.43
|
111 |
+
protobuf==4.25.3
|
112 |
+
psutil==5.9.8
|
113 |
+
ptyprocess==0.7.0
|
114 |
+
pure-eval==0.2.2
|
115 |
+
pyarrow==15.0.0
|
116 |
+
pycparser==2.21
|
117 |
+
pydantic==2.6.3
|
118 |
+
pydantic_core==2.16.3
|
119 |
+
pydeck==0.8.1b0
|
120 |
+
Pygments==2.17.2
|
121 |
+
pyparsing==3.1.2
|
122 |
+
python-dateutil==2.9.0.post0
|
123 |
+
python-dotenv==1.0.1
|
124 |
+
python-json-logger==2.0.7
|
125 |
+
pytz==2024.1
|
126 |
+
PyWavelets==1.5.0
|
127 |
+
PyYAML==6.0.1
|
128 |
+
pyzmq==25.1.2
|
129 |
+
qtconsole==5.5.1
|
130 |
+
QtPy==2.4.1
|
131 |
+
querystring-parser==1.2.4
|
132 |
+
referencing==0.33.0
|
133 |
+
requests==2.31.0
|
134 |
+
rfc3339-validator==0.1.4
|
135 |
+
rfc3986-validator==0.1.1
|
136 |
+
rich==13.7.1
|
137 |
+
rpds-py==0.18.0
|
138 |
+
scikit-learn==1.4.1.post1
|
139 |
+
scipy==1.11.4
|
140 |
+
seaborn==0.12.2
|
141 |
+
Send2Trash==1.8.2
|
142 |
+
six==1.16.0
|
143 |
+
smmap==5.0.1
|
144 |
+
sniffio==1.3.1
|
145 |
+
soupsieve==2.5
|
146 |
+
SQLAlchemy==2.0.28
|
147 |
+
sqlparse==0.4.4
|
148 |
+
stack-data==0.6.3
|
149 |
+
statsmodels==0.14.1
|
150 |
+
streamlit==1.31.1
|
151 |
+
tangled-up-in-unicode==0.2.0
|
152 |
+
tenacity==8.2.3
|
153 |
+
terminado==0.18.0
|
154 |
+
threadpoolctl==3.3.0
|
155 |
+
tinycss2==1.2.1
|
156 |
+
toml==0.10.2
|
157 |
+
tomli==2.0.1
|
158 |
+
toolz==0.12.1
|
159 |
+
tornado==6.4
|
160 |
+
tqdm==4.66.2
|
161 |
+
traitlets==5.14.1
|
162 |
+
typeguard==4.1.5
|
163 |
+
types-python-dateutil==2.8.19.20240106
|
164 |
+
typing_extensions==4.10.0
|
165 |
+
tzdata==2024.1
|
166 |
+
tzlocal==5.2
|
167 |
+
uri-template==1.3.0
|
168 |
+
urllib3==2.2.1
|
169 |
+
validators==0.22.0
|
170 |
+
visions==0.7.5
|
171 |
+
wcwidth==0.2.13
|
172 |
+
webcolors==1.13
|
173 |
+
webencodings==0.5.1
|
174 |
+
websocket-client==1.7.0
|
175 |
+
Werkzeug==3.0.1
|
176 |
+
widgetsnbextension==4.0.10
|
177 |
+
wordcloud==1.9.3
|
178 |
+
xgboost==2.0.3
|
179 |
+
ydata-profiling==4.6.5
|
180 |
+
zipp==3.17.0
|