-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
136 lines (136 loc) · 3.77 KB
/
data.json
File metadata and controls
136 lines (136 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"cars": [
{
"id": 1,
"name": "Tesla Model 3",
"make": "Tesla",
"model": "Model 3",
"price": 25,
"distance": 0.5,
"image": "https://raw.githubusercontent.com/mikkel1510/react-native-app/main/assets/cars/tesla.png",
"specs": {
"modelYear": 2024,
"color": "White",
"transmission": "Single-speed (fixed)",
"fuelType": "Electric",
"topSpeed": "225 km/h",
"firstRegistration": "1/2024",
"mileage": "",
"fuelConsumption": "",
"range": "560 km",
"batteryCapacity": "75 kWh",
"energyConsumption": "15 kWh/100 km",
"co2Emissions": "0 g/km",
"euroStandard": "",
"annualRoadTax": "",
"powerOutput": "283 hp",
"acceleration": "5.8 sec",
"gears": 1,
"towingCapacity": "1,000 kg"
},
"location": {
"latitude": 55.3686,
"longitude": 10.4275
}
},
{
"id": 2,
"name": "BMW 330i",
"make": "BMW",
"model": "3 Series",
"price": 22,
"distance": 0.8,
"image": "https://raw.githubusercontent.com/mikkel1510/react-native-app/main/assets/cars/bmw.png",
"specs": {
"modelYear": 2022,
"color": "Black",
"transmission": "Automatic",
"fuelType": "Petrol",
"topSpeed": "250 km/h",
"firstRegistration": "1/2022",
"mileage": "",
"fuelConsumption": "12.8 km/l",
"range": "650 km",
"batteryCapacity": "",
"energyConsumption": "",
"co2Emissions": "",
"euroStandard": "6",
"annualRoadTax": "",
"powerOutput": "255 hp",
"acceleration": "5.6 sec",
"gears": 8,
"towingCapacity": "1,500 kg"
},
"location": {
"latitude": 55.3959,
"longitude": 10.3883
}
},
{
"id": 3,
"name": "Toyota Corolla",
"make": "Toyota",
"model": "Corolla",
"price": 15,
"distance": 1.5,
"image": "https://raw.githubusercontent.com/mikkel1510/react-native-app/main/assets/cars/toyota.png",
"specs": {
"modelYear": 2024,
"color": "Gray metallic",
"transmission": "Automatic",
"fuelType": "Hybrid",
"topSpeed": "175 km/h",
"firstRegistration": "1/2024",
"mileage": "69,000 km",
"fuelConsumption": "(NEDC) 25.7 km/l",
"range": "900 km",
"batteryCapacity": "1.3 kWh",
"energyConsumption": "15 kWh/100 km",
"co2Emissions": "106 g/km",
"euroStandard": "6",
"annualRoadTax": "1,260 DKK / year",
"powerOutput": "140 hp",
"acceleration": "9.4 sec",
"gears": 1,
"towingCapacity": "750 kg"
},
"location": {
"latitude": 55.4035,
"longitude": 10.3830
}
},
{
"id": 4,
"name": "Polestar 2",
"make": "Polestar",
"model": "2",
"price": 27,
"distance": 0.8,
"image": "https://raw.githubusercontent.com/mikkel1510/react-native-app/main/assets/cars/polestar.png",
"specs": {
"modelYear": 2024,
"color": "Midnight Blue",
"transmission": "Single-speed (fixed)",
"fuelType": "Electric",
"topSpeed": "210 km/h",
"firstRegistration": "3/2024",
"mileage": "",
"fuelConsumption": "",
"range": "540 km",
"batteryCapacity": "78 kWh",
"energyConsumption": "16.5 kWh/100 km",
"co2Emissions": "0 g/km",
"euroStandard": "",
"annualRoadTax": "",
"powerOutput": "300 hp",
"acceleration": "4.7 sec",
"gears": 1,
"towingCapacity": "1,500 kg"
},
"location": {
"latitude": 55.4136,
"longitude": 10.3890
}
}
]
}