summaryrefslogtreecommitdiff
path: root/artifacts
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2021-03-04 18:14:12 -0500
committerAdam T. Carpenter <atc@53hor.net>2021-03-04 18:14:12 -0500
commit0c63ae51d1221b8ecd9742c7d5580bd06551ecbb (patch)
tree5c87242c295f519252db57c0eb269058e8b959c2 /artifacts
parent1259dad8d561bd390262314035d5252905d1c12e (diff)
downloadtwinh-0c63ae51d1221b8ecd9742c7d5580bd06551ecbb.tar.xz
twinh-0c63ae51d1221b8ecd9742c7d5580bd06551ecbb.zip
did some templating, added some models
Diffstat (limited to 'artifacts')
-rw-r--r--artifacts/categories48
-rw-r--r--artifacts/makes-models5
-rw-r--r--artifacts/template.json22
3 files changed, 75 insertions, 0 deletions
diff --git a/artifacts/categories b/artifacts/categories
new file mode 100644
index 0000000..4f9ad46
--- /dev/null
+++ b/artifacts/categories
@@ -0,0 +1,48 @@
+From [Wikipedia](https://en.wikipedia.org/wiki/List_of_auto_parts). Could be adapted for use in this application. Need to dump electronic parts that aren't as important and add parts that are no longer considered essential equipment.
+
+1 Car body and main part
+
+ 1.1 Body components, including trim
+ 1.2 Doors
+ 1.3 Windows
+
+2 Low voltage/auxiliary electrical system and electronics
+
+ 2.1 Audio/video devices
+ 2.2 Cameras
+ 2.3 Low voltage electrical supply system
+ 2.4 Gauges and meters
+ 2.5 Ignition system
+ 2.6 Lighting and signaling system
+ 2.7 Sensors
+ 2.8 Starting system
+ 2.9 Electrical switches
+ 2.10 Wiring harnesses
+ 2.11 Miscellaneous
+
+3 Interior
+
+ 3.1 Floor components and parts
+ 3.2 Other components
+ 3.3 Car seat
+
+4 Power-train and chassis
+
+ 4.1 Braking system
+ 4.2 Electrified powertrain components
+ 4.3 Engine components and parts
+ 4.4 Engine cooling system
+ 4.5 Engine oil systems
+ 4.6 Exhaust system
+ 4.7 Fuel supply system
+ 4.8 Suspension and steering systems
+ 4.9 Transmission system
+
+5 Miscellaneous auto parts
+
+ 5.1 Air conditioning system (A/C)
+ 5.2 Bearings
+ 5.3 Hose
+ 5.4 Other miscellaneous parts
+
+
diff --git a/artifacts/makes-models b/artifacts/makes-models
new file mode 100644
index 0000000..a18b407
--- /dev/null
+++ b/artifacts/makes-models
@@ -0,0 +1,5 @@
+Hudson
+ Hornet
+ Wasp
+ Pacemaker
+
diff --git a/artifacts/template.json b/artifacts/template.json
new file mode 100644
index 0000000..ddacc2a
--- /dev/null
+++ b/artifacts/template.json
@@ -0,0 +1,22 @@
+{
+ "type": "part",
+ "shortName": "Wheel Bearing",
+ "fitsCars": [
+ {
+ "type": "car",
+ "year": 1953,
+ "make": "Hudson",
+ "model": "Hornet",
+ "engine": {
+ "type": "engine",
+ "cylinders": 6,
+ "displacement": 308,
+ "layout": "I"
+ },
+ "doors": 4,
+ "transmission": "Dual-Range Hydramatic"
+ }
+ ],
+ "sources": ["url://", "url://"],
+ "categories": ["Wheel & Tire", "Drivetrain"]
+}