1<!doctype html>
2
3<html lang="en">
4
5
6<head>
7
8 <title>
9
10 Aston Martin Tires and Wheels Size Calculator | TireSizeHelp.com</title>
11
12 <meta name="description" content="Aston Martin Tires and Wheels Size Calculator and Specs" />
13
14 <meta name="author" content="TireSizePro.com" />
15
16 <meta charset="utf-8">
17
18 <meta name="viewport" content="width=device-width, initial-scale=1">
19
20 <link href="/css/flatly.css" rel="stylesheet">
21
22 <link rel="canonical" href="https://www.tiresizehelp.com/Aston%20Martin/tires" />
23
24 <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon.png">
25
26 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
27
28 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
29
30 <link rel="manifest" href="/site.webmanifest">
31
32 <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
33
34 <meta name="msapplication-TileColor" content="#da532c">
35
36 <meta name="theme-color" content="#ffffff">
37
38 <meta name="google-site-verification" content="zfhUUC12qOg7iJjE0Xvu7wR4dwBWae9vVT47_SVim4A" />
39
40 <script src="https://code.jquery.com/jquery-3.1.1.min.js">
41</script>
42
43 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
44
45 <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2280065185048291"
46 crossorigin="anonymous">
47</script>
48
49 </head>
50
51
52<body>
53
54 <nav class="navbar navbar-expand-md navbar-light fixed-top bg-light">
55
56 <a title="TireSizeHelp" class="navbar-brand" href="/">
57<img alt="TireSizeHelp" src="/images/tiresizepro-logo.png"/>
58</a>
59
60 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
61
62 <span class="navbar-toggler-icon">
63</span>
64
65 </button>
66
67
68 <div class="collapse navbar-collapse" id="navbarsExampleDefault">
69
70 <ul class="navbar-nav mr-auto">
71
72 <li class="nav-item">
73
74 <a class="nav-link" href="/">
75Home</a>
76
77 </li>
78
79 <li class="nav-item">
80
81 <a class="nav-link" href="/">
82Tire Size Calculator</a>
83
84 </li>
85
86 <li class="nav-item">
87
88 <a class="nav-link" href="#">
89Tire Size Chart</a>
90
91 </li>
92
93 <li class="nav-item">
94
95 <a class="nav-link" href="#">
96Tires Size Comparison</a>
97
98 </li>
99
100
101 <li class="nav-item dropdown">
102
103 <a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
104Tires</a>
105
106 <div class="dropdown-menu">
107
108 <a class="dropdown-item" href="#">
109By Vehicle</a>
110
111 <a class="dropdown-item" href="#">
112By Size</a>
113
114 <a class="dropdown-item" href="#">
115By Diameter</a>
116
117 <a class="dropdown-item" href="#">
118By Brand</a>
119
120 <a class="dropdown-item" href="#">
121By Type</a>
122
123 </div>
124
125 </li>
126
127
128 <li class="nav-item dropdown">
129
130 <a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
131Size Tools</a>
132
133 <div class="dropdown-menu" aria-labelledby="dropdown01">
134
135 <a class="dropdown-item" href="#">
136All Tire Sizes</a>
137
138 <a class="dropdown-item" href="#">
139Bolt Patterns</a>
140
141 <a class="dropdown-item" href="#">
142Wheel Offset Calculator</a>
143
144 <a class="dropdown-item" href="#">
145Gear Ration Calculator</a>
146
147 <a class="dropdown-item" href="#">
148Speedometer Calibration</a>
149
150 </div>
151
152 </li>
153
154 </ul>
155
156 <form class="form-inline my-2 my-lg-0">
157
158 <input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
159
160 <button class="btn btn-outline-success my-2 my-sm-0" type="submit">
161Search</button>
162
163 </form>
164
165 </div>
166
167 </nav>
168 <main>
169
170 <script>
171
172 function loadModels(vendor) {
173 // alert(vendor);
174 $( "#year" ).html('<option value="0">
175Select Year</option>
176');
177 $( "#trim" ).html('<option value="0">
178Select Trim</option>
179');
180
181 $.get( "/get_models/" + vendor , function( data, status ) {
182 $( "#model" ).html( data );
183 });
184 }
185
186 function loadYears(model) {
187 $( "#trim" ).html('<option value="0">
188Select Trim</option>
189');
190 $.get( "/get_years/" + $( "#vendor" ).val() + "/" + model , function( data, status ) {
191 $( "#year" ).html( data );
192 });
193 }
194
195 function loadTrims(year) {
196 $.get( "/get_trims/" + $( "#vendor" ).val() + "/" + $( "#model" ).val() + "/" + year , function( data, status ) {
197 $( "#trim" ).html( data );
198 });
199 }
200
201 function showSizes(trim) {
202 window.location.href = "/Tires/" + $( "#year" ).val() + "/" + $( "#vendor" ).val() + "/" + $( "#model" ).val() + "/" + $( "#trim" ).val();
203 }
204 </script>
205
206 <div class="container">
207
208 <div class="page-header">
209
210 <div class="col-sm">
211
212 <br/>
213<br/>
214<br/>
215<br/>
216
217 <br/>
218
219 <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
220
221 <div id="brand_logo">
222
223
224 </div>
225
226 <form class="form-inline my-2 my-lg-0">
227
228
<select style="font-size:14px;" onchange="loadModels(this.value)" id="vendor" class="custom-select btn btn-light my-2 my-sm-0">
229
230 <option value="0">
231Select make</option>
232
233 <option value="Acura">
234Acura</option>
235
236 <option value="Alfa Romeo">
237Alfa Romeo</option>
238
239 <option value="Aston Martin">
240Aston Martin</option>
241
242 <option value="Audi">
243Audi</option>
244
245 <option value="Bentley">
246Bentley</option>
247
248 <option value="BMW">
249BMW</option>
250
251 <option value="Brilliance">
252Brilliance</option>
253
254 <option value="Buick">
255Buick</option>
256
257 <option value="BYD">
258BYD</option>
259
260 <option value="Cadillac">
261Cadillac</option>
262
263 <option value="Changan">
264Changan</option>
265
266 <option value="Chery">
267Chery</option>
268
269 <option value="Chevrolet">
270Chevrolet</option>
271
272 <option value="Chrysler">
273Chrysler</option>
274
275 <option value="Citroen">
276Citroen</option>
277
278 <option value="Dadi">
279Dadi</option>
280
281 <option value="Daewoo">
282Daewoo</option>
283
284 <option value="Daihatsu">
285Daihatsu</option>
286
287 <option value="Datsun">
288Datsun</option>
289
290 <option value="Derways">
291Derways</option>
292
293 <option value="Dodge">
294Dodge</option>
295
296 <option value="Dongfeng">
297Dongfeng</option>
298
299 <option value="Emgrand">
300Emgrand</option>
301
302 <option value="FAW">
303FAW</option>
304
305 <option value="Ferrari">
306Ferrari</option>
307
308 <option value="Fiat">
309Fiat</option>
310
311 <option value="Ford">
312Ford</option>
313
314 <option value="Geely">
315Geely</option>
316
317 <option value="GMC">
318GMC</option>
319
320 <option value="Great Wall">
321Great Wall</option>
322
323 <option value="Haima">
324Haima</option>
325
326 <option value="Honda">
327Honda</option>
328
329 <option value="Hummer">
330Hummer</option>
331
332 <option value="Hyundai">
333Hyundai</option>
334
335 <option value="Infiniti">
336Infiniti</option>
337
338 <option value="Isuzu">
339Isuzu</option>
340
341 <option value="Iveco">
342Iveco</option>
343
344 <option value="JAC">
345JAC</option>
346
347 <option value="Jaguar">
348Jaguar</option>
349
350 <option value="Jeep">
351Jeep</option>
352
353 <option value="Jiangling">
354Jiangling</option>
355
356 <option value="JMC">
357JMC</option>
358
359 <option value="Kia">
360Kia</option>
361
362 <option value="Lamborghini">
363Lamborghini</option>
364
365 <option value="Lancia">
366Lancia</option>
367
368 <option value="Land Rover">
369Land Rover</option>
370
371 <option value="Landwind">
372Landwind</option>
373
374 <option value="Lexus">
375Lexus</option>
376
377 <option value="Lifan">
378Lifan</option>
379
380 <option value="Lincoln">
381Lincoln</option>
382
383 <option value="Lotus">
384Lotus</option>
385
386 <option value="Maserati">
387Maserati</option>
388
389 <option value="Maybach">
390Maybach</option>
391
392 <option value="Mazda">
393Mazda</option>
394
395 <option value="Mercedes">
396Mercedes</option>
397
398 <option value="Mercury">
399Mercury</option>
400
401 <option value="MG">
402MG</option>
403
404 <option value="Mini">
405Mini</option>
406
407 <option value="Mitsubishi">
408Mitsubishi</option>
409
410 <option value="Mosler">
411Mosler</option>
412
413 <option value="Nissan">
414Nissan</option>
415
416 <option value="Oldsmobile">
417Oldsmobile</option>
418
419 <option value="Opel">
420Opel</option>
421
422 <option value="Panoz">
423Panoz</option>
424
425 <option value="Peugeot">
426Peugeot</option>
427
428 <option value="Plymouth">
429Plymouth</option>
430
431 <option value="Pontiac">
432Pontiac</option>
433
434 <option value="Porsche">
435Porsche</option>
436
437 <option value="Ram">
438Ram</option>
439
440 <option value="Ravon">
441Ravon</option>
442
443 <option value="Renault">
444Renault</option>
445
446 <option value="Rolls Royce">
447Rolls Royce</option>
448
449 <option value="Rover">
450Rover</option>
451
452 <option value="Saab">
453Saab</option>
454
455 <option value="Saleen">
456Saleen</option>
457
458 <option value="Saturn">
459Saturn</option>
460
461 <option value="Scion">
462Scion</option>
463
464 <option value="Seat">
465Seat</option>
466
467 <option value="Skoda">
468Skoda</option>
469
470 <option value="Smart">
471Smart</option>
472
473 <option value="Ssang Yong">
474Ssang Yong</option>
475
476 <option value="Subaru">
477Subaru</option>
478
479 <option value="Suzuki">
480Suzuki</option>
481
482 <option value="Toyota">
483Toyota</option>
484
485 <option value="Volkswagen">
486Volkswagen</option>
487
488 <option value="Volvo">
489Volvo</option>
490
491 <option value="Xin Kai">
492Xin Kai</option>
493
494 <option value="ZAZ">
495ZAZ</option>
496
497 <option value="ZX">
498ZX</option>
499
500 <option value="ВАЗ">
501ВАЗ</option>
502
503 <option value="ГАЗ">
504ГАЗ</option>
505
506 <option value="ТагАЗ">
507ТагАЗ</option>
508
509 <option value="УАЗ">
510УАЗ</option>
511
512 </select>
513
514
515
<select style="font-size:14px;" onchange="loadYears(this.value)" id="model" class="custom-select btn btn-light my-2 my-sm-0">
516
517 <option value="0">
518Select model</option>
519
520 </select>
521
522
523
<select style="font-size:14px;" onchange="loadTrims(this.value)" id="year" class="custom-select btn btn-light my-2 my-sm-0">
524
525 <option value="0">
526Select year</option>
527
528 </select>
529
530
531
<select style="font-size:14px;" onchange="showSizes(this.value)" id="trim" class="custom-select btn btn-light my-2 my-sm-0">
532
533 <option value="0">
534Select trim</option>
535
536 </select>
537
538 </form>
539
540 </nav>
541
542 <br/>
543
544 </div>
545
546
547 </div>
548
549 </div>
550 <div class="container">
551
552 <div class="row">
553
554 <div class="col-sm">
555
556 <h1 style="font-size:18px;">
557
558 Aston Martin Tires and Wheels Size Calculator</h1>
559
560
<p align="justify">
561
562 Here our users can find a wide varierty of useful info on different tires and wheels for
563 Aston Martin cars, including detailed parameters such as size, specifcations, max speed and many more. We gathered these parameters for almost 3000 vehicle models! Is easy to access all this information by using a selector menu.
564 </p>
565
566 </div>
567
568 </div>
569
570 </div>
571
572 <div class="container">
573
574 <div class="col-sm">
575
576 <div>
577
578 <nav aria-label="breadcrumb">
579
580 <ol class="breadcrumb">
581
582 <li class="breadcrumb-item">
583<a href="/">
584Home</a>
585</li>
586
587 <li class="breadcrumb-item active" aria-current="page">
588
589 Aston Martin </li>
590
591 </ol>
592
593 </nav>
594
595 </div>
596
597 <div class="row">
598
599 <p>
600
601
<table align='center' border='0'>
602<tr>
603
<td align="center">
604
605
<div align="left" style="width:200px;">
606
607 <span style="font-size:14px;">
608<a data-toggle="tooltip" href="/Aston Martin/Cygnet/tires" title="Cygnet">
609
610
<h3 style="font-size:14px;">
611Cygnet</h3>
612 </a>
613</span>
614
615 </div>
616
617 </td>
618
619
<td align="center">
620
621
<div align="left" style="width:200px;">
622
623 <span style="font-size:14px;">
624<a data-toggle="tooltip" href="/Aston Martin/DB11/tires" title="DB11">
625
626 <h3 style="font-size:14px;">
627DB11</h3>
628 </a>
629</span>
630
631 </div>
632
633 </td>
634
635
<td align="center">
636
637
<div align="left" style="width:200px;">
638
639 <span style="font-size:14px;">
640<a data-toggle="tooltip" href="/Aston Martin/DB7 Cabrio/tires" title="DB7 Cabrio">
641
642 <h3 style="font-size:14px;">
643DB7 Cabrio</h3>
644 </a>
645</span>
646
647 </div>
648
649 </td>
650
651
<td align="center">
652
653
<div align="left" style="width:200px;">
654
655 <span style="font-size:14px;">
656<a data-toggle="tooltip" href="/Aston Martin/DB7 Coupe/tires" title="DB7 Coupe">
657
658 <h3 style="font-size:14px;">
659DB7 Coupe</h3>
660 </a>
661</span>
662
663 </div>
664
665 </td>
666
667 </tr>
668<tr>
669
<td align="center">
670
671
<div align="left" style="width:200px;">
672
673 <span style="font-size:14px;">
674<a data-toggle="tooltip" href="/Aston Martin/DB9 Cabrio/tires" title="DB9 Cabrio">
675
676 <h3 style="font-size:14px;">
677DB9 Cabrio</h3>
678 </a>
679</span>
680
681 </div>
682
683 </td>
684
685
<td align="center">
686
687
<div align="left" style="width:200px;">
688
689 <span style="font-size:14px;">
690<a data-toggle="tooltip" href="/Aston Martin/DB9 Coupe/tires" title="DB9 Coupe">
691
692 <h3 style="font-size:14px;">
693DB9 Coupe</h3>
694 </a>
695</span>
696
697 </div>
698
699 </td>
700
701
<td align="center">
702
703
<div align="left" style="width:200px;">
704
705 <span style="font-size:14px;">
706<a data-toggle="tooltip" href="/Aston Martin/DBS Coupe/tires" title="DBS Coupe">
707
708 <h3 style="font-size:14px;">
709DBS Coupe</h3>
710 </a>
711</span>
712
713 </div>
714
715 </td>
716
717
<td align="center">
718
719
<div align="left" style="width:200px;">
720
721 <span style="font-size:14px;">
722<a data-toggle="tooltip" href="/Aston Martin/DBS Volante/tires" title="DBS Volante">
723
724 <h3 style="font-size:14px;">
725DBS Volante</h3>
726 </a>
727</span>
728
729 </div>
730
731 </td>
732
733 </tr>
734<tr>
735
<td align="center">
736
737
<div align="left" style="width:200px;">
738
739 <span style="font-size:14px;">
740<a data-toggle="tooltip" href="/Aston Martin/One-77/tires" title="One-77">
741
742 <h3 style="font-size:14px;">
743One-77</h3>
744 </a>
745</span>
746
747 </div>
748
749 </td>
750
751
<td align="center">
752
753
<div align="left" style="width:200px;">
754
755 <span style="font-size:14px;">
756<a data-toggle="tooltip" href="/Aston Martin/Rapide/tires" title="Rapide">
757
758 <h3 style="font-size:14px;">
759Rapide</h3>
760 </a>
761</span>
762
763 </div>
764
765 </td>
766
767
<td align="center">
768
769
<div align="left" style="width:200px;">
770
771 <span style="font-size:14px;">
772<a data-toggle="tooltip" href="/Aston Martin/V12 Vantage/tires" title="V12 Vantage">
773
774 <h3 style="font-size:14px;">
775V12 Vantage</h3>
776 </a>
777</span>
778
779 </div>
780
781 </td>
782
783
<td align="center">
784
785
<div align="left" style="width:200px;">
786
787 <span style="font-size:14px;">
788<a data-toggle="tooltip" href="/Aston Martin/Vanquish/tires" title="Vanquish">
789
790 <h3 style="font-size:14px;">
791Vanquish</h3>
792 </a>
793</span>
794
795 </div>
796
797 </td>
798
799 </tr>
800<tr>
801
<td align="center">
802
803
<div align="left" style="width:200px;">
804
805 <span style="font-size:14px;">
806<a data-toggle="tooltip" href="/Aston Martin/Vanquish (R2)/tires" title="Vanquish (R2)">
807
808 <h3 style="font-size:14px;">
809Vanquish (R2)</h3>
810 </a>
811</span>
812
813 </div>
814
815 </td>
816
817
<td align="center">
818
819
<div align="left" style="width:200px;">
820
821 <span style="font-size:14px;">
822<a data-toggle="tooltip" href="/Aston Martin/Vanquish Cabrio/tires" title="Vanquish Cabrio">
823
824 <h3 style="font-size:14px;">
825Vanquish Cabrio</h3>
826 </a>
827</span>
828
829 </div>
830
831 </td>
832
833
<td align="center">
834
835
<div align="left" style="width:200px;">
836
837 <span style="font-size:14px;">
838<a data-toggle="tooltip" href="/Aston Martin/Vantage Coupe/tires" title="Vantage Coupe">
839
840 <h3 style="font-size:14px;">
841Vantage Coupe</h3>
842 </a>
843</span>
844
845 </div>
846
847 </td>
848
849
<td align="center">
850
851
<div align="left" style="width:200px;">
852
853 <span style="font-size:14px;">
854<a data-toggle="tooltip" href="/Aston Martin/Vantage Roadster/tires" title="Vantage Roadster">
855
856 <h3 style="font-size:14px;">
857Vantage Roadster</h3>
858 </a>
859</span>
860
861 </div>
862
863 </td>
864
865 </tr>
866<tr>
867
<td align="center">
868
869
<div align="left" style="width:200px;">
870
871 <span style="font-size:14px;">
872<a data-toggle="tooltip" href="/Aston Martin/Virage Cabrio/tires" title="Virage Cabrio">
873
874 <h3 style="font-size:14px;">
875Virage Cabrio</h3>
876 </a>
877</span>
878
879 </div>
880
881 </td>
882
883
<td align="center">
884
885
<div align="left" style="width:200px;">
886
887 <span style="font-size:14px;">
888<a data-toggle="tooltip" href="/Aston Martin/Virage Coupe/tires" title="Virage Coupe">
889
890 <h3 style="font-size:14px;">
891Virage Coupe</h3>
892 </a>
893</span>
894
895 </div>
896
897 </td>
898
899
<td align="center">
900
901
<div align="left" style="width:200px;">
902
903 <span style="font-size:14px;">
904<a data-toggle="tooltip" href="/Aston Martin/Virage Saloon/tires" title="Virage Saloon">
905
906 <h3 style="font-size:14px;">
907Virage Saloon</h3>
908 </a>
909</span>
910
911 </div>
912
913 </td>
914
915
<td align="center">
916
917
<div align="left" style="width:200px;">
918
919 <span style="font-size:14px;">
920<a data-toggle="tooltip" href="/Aston Martin/Zagato Coupe/tires" title="Zagato Coupe">
921
922 <h3 style="font-size:14px;">
923Zagato Coupe</h3>
924 </a>
925</span>
926
927 </div>
928
929 </td>
930
931 </tr>
932</table>
933 <
/p>
934
935
936
937
938 <br/>
939
940 </div>
941
942 <Br/>
943<br/>
944
945 <hr/>
946
947 <div class="row">
948
949 <br/>
950<br/>
951
952
<p align="justify" class="text">
953
954 <br/>
955Please do not forget to check your vehicle with <a href="https://www.vindecoderz.com/EN/Aston Martin">
956Aston Martin VIN decoder</a>
957.
958 <br/>
959See also this <a href="https://www.vinrush.com/en/Aston Martin/free-vin-check">
960free Aston Martin VIN check</a>
961 tool in order to get vehicle history report.
962 </p>
963
964 <div>
965
966 </div>
967
968 </div>
969
970 <
/main>
971
972 <hr/>
973
974 <footer class="container">
975
976 <p>
977TireSizeHelp© 2020</p>
978
979 <small>
980
981 All names, logos, trademarks and registered trademarks are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, trademarks and brands does not imply endorsement.
982 </small>
983
984 </footer>
985
986<br/>
987
988 <script src="https://getbootstrap.com/docs/4.1/assets/js/vendor/holder.min.js">
989</script>
990
991 <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js">
992</script>
993
994 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js">
995</script>
996
997 <script src="https://getbootstrap.com/docs/4.1/examples/offcanvas/offcanvas.js">
998</script>
999
1000
1001<!-- Global site tag (gtag.js) - Google Analytics -->
1002
1003<script async src="https://www.googletagmanager.com/gtag/js?id=UA-4640919-18">
1004</script>
1005
1006<script>
1007
1008 window.dataLayer = window.dataLayer || [];
1009 function gtag(){dataLayer.push(arguments);}
1010 gtag('js', new Date());
1011
1012 gtag('config', 'UA-4640919-18');
1013</script>
1014
1015</body>
1016
1017
1018</html>