abhionlyone / us-car-models-data

Introducing the most comprehensive and up-to-date open source dataset on US car models on Github. With over 15,000 entries covering car models manufactured between 1992 and 2023, this repository offers valuable information for anyone looking to incorporate car data into their applications. Best of all, it's completely free to use!
https://abhilash.space
Other
439 stars 163 forks source link

interested in expanding your data? #15

Closed kdschlosser closed 7 months ago

kdschlosser commented 1 year ago

I am in the middle of compiling data on vehicle that range from the Ford Model T all the way to current. It will include

Options Interior Colors Exterior Colors Engines Drive trains Transmissions Body types Trims

it will be broken down by year so each year will list all of the makes, models and the above metrics available for that specific year. The data format I am dumping to is JSON and the data looks like this

{
    'Lamborghini': {
        'Huracan': {
            'options': ['SL Package', 'Audio Package', 'Power Package', 'LE Package', 'Comfort Package', 'RS Package', 'Carbon Ceramic Brakes', 'Third Row Seating', 'Adaptive Suspension', 'Parking Sensors', 'Smoker Package', 'Light Package', 'Sport Package', 'Premium Audio Package', 'Premium Package', 'Tow Package', 'Cold Weather Package', 'Ambient Light Package', 'Heated Seats', 'Android Auto', 'Bluetooth', 'CarPlay', 'Backup Camera', 'Multi Zone Climate Control', 'Leather Seats', 'Sunroof/Moonroof', 'Navigation System', 'Technology Package', 'DVD Entertainment System', 'Alloy Wheels', 'Chrome Wheels', 'Premium Wheels', 'Trim Package', 'SE Package', 'Performance Package', 'Heat Package'], 
            'drive_trains': ['Rear-Wheel Drive', 'All-Wheel Drive'], 
            'body_types': ['Coupe', 'Convertible'], 'transmissions': ['Automatic', 'Unknown', 'Manual'], 
            'engines': ['V10', '5.2L 630hp', '5.2L 631hp', '5.2L 602hp', '5.2L 571hp'], 
            'trims': ['LP 610-2 EVO Spyder Convertible RWD', 'LP 640-4 Performante Spyder Convertible AWD', 'LP 580-2 Spyder', 'LP 580-2 Coupe RWD', 'LP 640-4 Performante Coupe AWD', 'LP 640-4 EVO Spyder AWD', 'LP 640-4 EVO Coupe AWD', 'LP 610-2 EVO Coupe RWD', 'LP 580-2 Spyder Convertible RWD', 'LP 610-4', 'LP 640-4 STO Coupe RWD', 'LP 610-4 EVO Coupe RWD', 'LP 640-4 EVO Spyder Convertible AWD', 'LP 580-2', 'LP 610-4 Spyder', 'LP 610-4 Avio', 'LP 610-4 EVO Spyder RWD'], 
            'ext_colors': ['Red', 'Gold', 'White', 'Gray', 'Blue', 'Silver', 'Black', 'Unknown', 'Yellow', 'Purple', 'Green', 'Orange'], 
            'int_colors': []
        },
        'Aventador': {
            'options': ['Power Mirror Package', 'Premium Package', 'Power Package', 'LE Package', 'Heated Seats', 'Bluetooth', 'CarPlay', 'Backup Camera', 'Multi Zone Climate Control', 'Leather Seats', 'Remote Start', 'Carbon Ceramic Brakes', 'Sunroof/Moonroof', 'Navigation System', 'Adaptive Suspension', 'Alloy Wheels', 'Parking Sensors', 'Premium Wheels', 'Trim Package', 'Sound Package', 'Light Package', 'SE Package', 'Sport Package', 'Heat Package'], 
            'drive_trains': ['All-Wheel Drive'], 
            'body_types': ['Coupe', 'Convertible'], 
            'transmissions': ['Automatic', 'Unknown'], 
            'engines': ['V12', '6.5L 710hp', '6.5L 730hp', '6.5L 759hp', '6.5L 769hp', '6.5L 691hp', '6.5L 740hp'], 
            'trims': ['LP 700-4 Roadster AWD', 'LP 770-4 SVJ Coupe AWD', 'LP 700-4', 'LP 780-4 Ultimate Coupe AWD', 'LP 720-4 Anniversario Roadster', 'LP 700-4 Coupe AWD', 'LP 700-4 Pirelli Edition Roadster AWD', 'LP 750-4 SV', 'LP 740-4 S Roadster AWD', 'LP 750-4 SV Coupe AWD', 'LP 740-4 S Coupe AWD', 'LP 700-4 Pirelli Edition Coupe AWD', 'LP 740-4 S', 'LP 750-4 SV Roadster', 'LP 770-4 SVJ Roadster AWD', 'LP 700-4 Roadster', 'LP 750-4 SV Roadster AWD', 'LP 780-4 Ultimate Roadster AWD', 'LP 720-4 Anniversario'], 
            'ext_colors': ['Red', 'Gold', 'White', 'Gray', 'Blue', 'Silver', 'Black', 'Unknown', 'Purple', 'Yellow', 'Green', 'Orange'], 
            'int_colors': []
        }
    }
}
alex3475me commented 7 months ago

Hi @kdschlosser , I'm coming back to you because I'm also interested in compiling this information, but I don't have any particular coding skills. Could you help me?