| --- |
| license: mit |
| task_categories: |
| - text-generation |
| - question-answering |
| tags: |
| - rocketry |
| - aerospace |
| - simulation |
| configs: |
| - config_name: default |
| data_files: |
| - split: train |
| path: data/reviews.jsonl |
| - config_name: reviews |
| data_files: |
| - split: train |
| path: data/reviews.jsonl |
| - config_name: flights |
| data_files: |
| - split: train |
| path: data/flights.jsonl |
| - config_name: products |
| data_files: |
| - split: train |
| path: data/products.jsonl |
| - config_name: motors |
| data_files: |
| - split: train |
| path: data/motors.jsonl |
| - config_name: parts |
| data_files: |
| - split: train |
| path: data/parts.jsonl |
| - config_name: designs |
| data_files: |
| - split: train |
| path: data/designs.jsonl |
| - config_name: clubs |
| data_files: |
| - split: train |
| path: data/clubs.jsonl |
| - config_name: glossary |
| data_files: |
| - split: train |
| path: data/glossary.jsonl |
| - config_name: plans |
| data_files: |
| - split: train |
| path: data/plans.jsonl |
| --- |
| |
| # RocketReviews Dataset |
|
|
| A structured dataset scraped from [RocketReviews.com](https://www.rocketreviews.com) for use in AI/ML pipelines and vector databases. |
|
|
| --- |
|
|
| ## Collection Status |
|
|
| Legend: `[ ]` not started · `[~]` in progress · `[x]` complete |
|
|
| ### Primary Tables |
|
|
| | Table | Description | Script | Output | Status | |
| |-------|-------------|--------|--------|--------| |
| | `reviews` | Kit and product reviews with ratings and text sections | `scripts/reviews/01_scrape.py` | `source/reviews/` | `[~]` | |
| | `flights` | Member flight logs with conditions and notes | `scripts/flights/01_scrape.py` | `source/flights/` | `[~]` | |
| | `products` | Full product catalog (kits, motors, components, software, etc.) | `scripts/products/01_scrape.py` | `source/products/` | `[ ]` | |
| | `motors` | Motor specifications with thrust and performance data | `scripts/motors/01_scrape.py` | `source/motors/` | `[~]` | |
| | `designs` | OpenRocket (.ork) and RockSim (.rkt) design files | `scripts/designs/01_scrape.py` | `source/designs/` | `[~]` | |
| | `design_parsing` | High-fidelity JSON conversion of design files | `scripts/designs/02_parse_files.py` | `source/designs/files/json/` | `[~]` | |
| | `plans` | Rocket plans and build instructions | `scripts/plans/01_scrape.py` | `source/plans/` | `[~]` | |
| | `clubs` | Rocketry clubs directory | `scripts/clubs/01_scrape.py` | `source/clubs/` | `[~]` | |
| | `glossary` | Rocketry terms and definitions | `scripts/glossary/01_scrape.py` | `source/glossary/` | `[~]` | |
|
|
| ### Relational Tables |
|
|
| | Table | Description | Script | Output | Status | Used By | |
| |-------|-------------|--------|--------|--------|---------| |
| | `manufacturers` | Rocket kit and product manufacturers | `scripts/manufacturers/01_scrape.py` | `source/manufacturers/` | `[~]` | `products`, `reviews` | |
| | `designers` | Rocket designers linked to products | `scripts/designers/01_scrape.py` | `source/designers/` | `[ ]` | `products` | |
| | `contributors` | Site members who write reviews | `scripts/contributors/01_scrape.py` | `source/contributors/` | `[ ]` | `reviews` | |
|
|
| ### Lookup Tables |
|
|
| | Table | Description | Script | Output | Status | Used By | |
| |-------|-------------|--------|--------|--------|---------| |
| | `styles` | Rocket style classifications (Sport, Scale, Upscale, etc.) | `scripts/styles/01_scrape.py` | `source/styles/` | `[ ]` | `products` | |
| | `recovery_types` | Recovery method types (Parachute, Streamer, Glide, etc.) | `scripts/recovery_types/01_scrape.py` | `source/recovery_types/` | `[ ]` | `products` | |
| | `power_classes` | Motor power classifications (Low, Mid, High Power, etc.) | `scripts/power_classes/01_scrape.py` | `source/power_classes/` | `[ ]` | `products` | |
| | `cp_library` | Center of pressure data per product | `scripts/cp_library/01_scrape.py` | `source/cp_library/` | `[ ]` | `products` | |
|
|
| --- |
|
|
| ## Source Layout |
|
|
| ``` |
| source/ |
| reviews/ |
| index.jsonl |
| detail/{shard}/{id}.json |
| products/ |
| index.jsonl |
| detail/{shard}/{id}.json |
| parts/ |
| index.jsonl |
| detail/{shard}/{slug}.json |
| motors/ |
| index.jsonl |
| detail/{shard}/{id}.json |
| designs/ |
| index.jsonl |
| detail/{shard}/{id}.json |
| files/ |
| ork/ |
| rkt/ |
| json/ |
| flights/ |
| index.jsonl |
| detail/{shard}/{id}.json |
| plans/ |
| index.jsonl |
| detail/{shard}/{slug}.json |
| clubs/ |
| index.jsonl |
| detail/{shard}/{id}.json |
| glossary/ |
| index.jsonl |
| detail/{shard}/{slug}.json |
| manufacturers/ |
| index.jsonl |
| designers/ |
| index.jsonl |
| contributors/ |
| index.jsonl |
| styles/ |
| index.jsonl |
| recovery_types/ |
| index.jsonl |
| power_classes/ |
| index.jsonl |
| cp_library/ |
| index.jsonl |
| ``` |
| ndex.jsonl |
| power_classes/ |
| index.jsonl |
| cp_library/ |
| index.jsonl |
| ``` |
| ``` |
| ndex.jsonl |
| power_classes/ |
| index.jsonl |
| cp_library/ |
| index.jsonl |
| ``` |
| |