Datasets:
File size: 4,729 Bytes
8379a32 08b40b0 8379a32 08b40b0 8379a32 25c60c2 fa16dd4 25c60c2 bb70d66 25c60c2 bb70d66 25c60c2 bb70d66 25c60c2 bb70d66 25c60c2 fa16dd4 25c60c2 bb70d66 25c60c2 bb70d66 25c60c2 bb70d66 25c60c2 bb70d66 25c60c2 bb70d66 | 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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | ---
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
```
|