NewSpaceMarket commited on
Commit
92e0edd
·
verified ·
1 Parent(s): 71902df

Dataset card and CSV tables: 2,486 products, 19,011 values

Browse files
Files changed (4) hide show
  1. README.md +104 -0
  2. mrd-products.csv +0 -0
  3. mrd-properties.csv +112 -0
  4. mrd-values.csv +0 -0
README.md CHANGED
@@ -1,3 +1,107 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - spacecraft
7
+ - satellite
8
+ - cubesat
9
+ - smallsat
10
+ - engineering
11
+ - components
12
+ - datasheets
13
+ - aerospace
14
+ pretty_name: NewSpace Market MRD — machine-readable spacecraft component specifications
15
+ size_categories:
16
+ - 10K<n<100K
17
+ task_categories:
18
+ - table-question-answering
19
+ - feature-extraction
20
+ configs:
21
+ - config_name: values
22
+ data_files: mrd-values.csv
23
+ - config_name: products
24
+ data_files: mrd-products.csv
25
+ - config_name: properties
26
+ data_files: mrd-properties.csv
27
  ---
28
+
29
+ # NewSpace Market MRD
30
+
31
+ Typed, datasheet-sourced specifications for **2,486 spacecraft flight hardware products
32
+ across 24 categories** — reaction wheels, star trackers, propulsion, radios, antennas,
33
+ structures, ground stations and more — with **19,011 values, each citing the vendor
34
+ datasheet page it came from**.
35
+
36
+ The dataset exists because component selection is a task where a language model must not
37
+ improvise: a wheel that cannot take a 12 V bus is not a "close enough" answer. Three rules
38
+ make the data safe to compute on.
39
+
40
+ * **Nothing is guessed.** A missing property means the vendor does not publish it. The
41
+ record is absent rather than filled with a typical value.
42
+ * **Conditions are kept apart.** Idle, steady-state and peak power are separate rows, each
43
+ with its measurement condition. They are never averaged into one number.
44
+ * **Every value is traceable.** Source file and page, plus a confidence level: `L0`
45
+ machine-extracted, `L1` verified by a human against the vendor datasheet.
46
+
47
+ ## Files
48
+
49
+ | File | One row is | Rows |
50
+ |------|------------|------|
51
+ | `mrd-values.csv` | one measured value | 19,011 |
52
+ | `mrd-products.csv` | one product | 2,486 |
53
+ | `mrd-properties.csv` | one property in the dictionary | 111 |
54
+ | `mrd-full.json` | everything, nested by product | — |
55
+
56
+ ### Columns of `mrd-values.csv`
57
+
58
+ | Column | Meaning |
59
+ |--------|---------|
60
+ | `product_id`, `product_name`, `category` | which item the value belongs to |
61
+ | `prop` | property key; see `mrd-properties.csv` for its label and canonical unit |
62
+ | `num`, `num_max` | the figure; both are filled when the vendor published a range |
63
+ | `text` | for non-numeric properties: interface, band, material, heritage |
64
+ | `unit` | canonical unit, converted **by code** (kg→g, dBm→W, psi→bar, tf→mN) |
65
+ | `bound` | `min`, `typical`, `max`, `range`, `nominal` — which end of the spec this is |
66
+ | `condition` | measurement condition as printed, e.g. "at 4200 rpm", "Ka-band" |
67
+ | `source` | `datasheet <file> p.N`, `vendor product page`, or `product description` |
68
+ | `confidence` | `L0` machine-extracted · `L1` human-verified |
69
+
70
+ ## Categories
71
+
72
+ `reaction-wheels` · `star-trackers` · `obc-computers` · `batteries` · `radios` ·
73
+ `solar-panels` · `propulsion` · `sun-sensors` · `magnetometers` · `magnetorquers` ·
74
+ `imus-gyros` · `gnss-receivers` · `eps` · `deployers` · `thermal` · `antennas` ·
75
+ `sdr-modems` · `cameras` · `structures` · `ground-stations` · `sadm` · `tanks-valves` ·
76
+ `separation-systems` · `pointing-mechanisms`
77
+
78
+ ## Live data and tools
79
+
80
+ The snapshot here is dated; the layer grows weekly. For current data:
81
+
82
+ * **Reverse search** — pass requirements, get candidates grouped A (meets all) / B (fails a
83
+ named requirement, both figures quoted) / C (data missing, fields named):
84
+ `https://newspacemarket.com/mrd-connect/match?category=reaction-wheels&momentum_min=0.2&bus_v=12`
85
+ * **Full category dump** — `https://newspacemarket.com/mrd-connect/specs?category=star-trackers`
86
+ * **MCP server** for AI assistants — `https://newspacemarket.com/mrd-connect/mcp`
87
+ (also in the official MCP registry as `io.github.newspacemarket-com/mrd`)
88
+ * **OpenAPI 3.1** — `https://newspacemarket.com/mrd-connect/openapi.json`
89
+ * Code, schema and examples — <https://github.com/newspacemarket-com/mrd>
90
+
91
+ ## How it was built
92
+
93
+ Values are extracted from vendor datasheets (text, and page images for scanned documents),
94
+ from vendor product pages and from product descriptions — the `source` column says which.
95
+ Unit conversion is done in code, not by a model. A validation pass rejects any figure whose
96
+ unit does not match the property, and an outlier scan flags values far from the category
97
+ median for human review.
98
+
99
+ ## Limitations
100
+
101
+ Coverage is not exhaustive: where a vendor publishes nothing machine-readable, the product
102
+ is not here. Most rows are `L0` — machine-extracted and not yet checked by a person. Values
103
+ are provided as-is; verify against the vendor datasheet before committing to a design.
104
+
105
+ ## Licence and attribution
106
+
107
+ CC BY 4.0. Attribution: **NewSpace Market** — <https://newspacemarket.com>
mrd-products.csv ADDED
The diff for this file is too large to render. See raw diff
 
mrd-properties.csv ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ category,prop,label,unit,kind,port
2
+ antennas,gain_dbi,Gain,dBi,number,perf
3
+ antennas,beamwidth_deg,Beamwidth,°,number,perf
4
+ antennas,polarization,Polarization,,enum,perf
5
+ antennas,antenna_type,"Antenna type",,text,perf
6
+ batteries,capacity_wh,Capacity,Wh,number,perf
7
+ batteries,capacity_ah,"Capacity (charge)",Ah,number,perf
8
+ batteries,chemistry,"Cell chemistry",,text,perf
9
+ cameras,gsd_m,"Ground sample distance",m,number,perf
10
+ cameras,swath_km,"Swath width",km,number,perf
11
+ cameras,resolution_mpx,"Sensor resolution",Mpx,number,perf
12
+ cameras,spectral_bands,"Spectral bands",,number,perf
13
+ cameras,focal_mm,"Focal length",mm,number,perf
14
+ common,mass_g,Mass,g,number,mech
15
+ common,dim_mm,"Envelope (L×W×H)",mm,text,mech
16
+ common,voltage_v,"Supply voltage",V,range,power
17
+ common,power_w,"Power consumption",W,number,power
18
+ common,data_if,"Data interface",,enum,data
19
+ common,connector,Connector,,text,data
20
+ common,temp_op_c,"Operating temperature",°C,range,thermal
21
+ common,temp_surv_c,"Survival temperature",°C,range,thermal
22
+ common,tid_krad,"Radiation tolerance (TID)",krad,number,env
23
+ common,vibration_grms,"Random vibration","g RMS",number,env
24
+ common,lifetime_y,"Design lifetime",years,number,supply
25
+ common,trl,TRL,,number,supply
26
+ common,heritage,"Flight heritage",,text,supply
27
+ common,lead_months,"Lead time",months,number,supply
28
+ common,export,"Export status",,enum,supply
29
+ common,warranty_y,Warranty,years,number,supply
30
+ deployers,capacity_u,Capacity,U,number,perf
31
+ deployers,payload_mass_max_g,"Max payload mass",g,number,perf
32
+ deployers,separation_vel_ms,"Separation velocity",m/s,number,perf
33
+ deployers,actuation,Actuation,,enum,perf
34
+ eps,out_power_w,"Output power (total)",W,number,perf
35
+ eps,conv_eff_pct,"Conversion efficiency",%,number,perf
36
+ eps,rails,"Output rails",,text,perf
37
+ eps,protections,Protections,,text,perf
38
+ gnss-receivers,pos_acc_m,"Position accuracy",m,number,perf
39
+ gnss-receivers,vel_acc_ms,"Velocity accuracy",m/s,number,perf
40
+ gnss-receivers,ttff_s,"Time to first fix (cold)",s,number,perf
41
+ gnss-receivers,channels,Channels,,number,perf
42
+ gnss-receivers,constellations,Constellations,,text,perf
43
+ ground-stations,dish_diameter_m,"Antenna diameter",m,number,perf
44
+ ground-stations,gt_dbk,G/T,dB/K,number,perf
45
+ ground-stations,eirp_dbw,EIRP,dBW,number,perf
46
+ imus-gyros,gyro_range_dps,"Gyro range",°/s,number,perf
47
+ imus-gyros,bias_deg_h,"Bias instability",°/h,number,perf
48
+ imus-gyros,arw_deg_sqrth,"Angle random walk",°/√h,number,perf
49
+ magnetometers,range_ut,"Measurement range",µT,number,perf
50
+ magnetometers,resolution_nt,Resolution,nT,number,perf
51
+ magnetometers,noise_nt,"Noise density",nT/√Hz,number,perf
52
+ magnetorquers,dipole_am2,"Magnetic dipole moment",A·m²,number,perf
53
+ magnetorquers,residual_am2,"Residual moment",A·m²,number,perf
54
+ obc-computers,cpu,Processor,,text,perf
55
+ obc-computers,clock_mhz,"CPU clock",MHz,number,perf
56
+ obc-computers,ram_mb,RAM,MB,number,perf
57
+ obc-computers,storage_gb,Storage,GB,number,perf
58
+ obc-computers,os,"Operating system",,text,perf
59
+ pointing-mechanisms,range_deg,"Travel range",deg,range,perf
60
+ pointing-mechanisms,angular_res_deg,"Angular resolution",deg,number,perf
61
+ propulsion,prop_type,"Propulsion type",,enum,perf
62
+ propulsion,thrust_mn,Thrust,mN,number,perf
63
+ propulsion,isp_s,"Specific impulse",s,number,perf
64
+ propulsion,total_impulse_ns,"Total impulse",N·s,number,perf
65
+ propulsion,impulse_bit_mns,"Min impulse bit",mN·s,number,perf
66
+ propulsion,propellant,Propellant,,text,perf
67
+ propulsion,propellant_mass_g,"Propellant mass",g,number,perf
68
+ propulsion,feed_pressure_bar,"Feed/tank pressure",bar,number,perf
69
+ propulsion,thrust_power_w,"Power at thrust",W,number,perf
70
+ propulsion,startup_s,"Time to thrust",s,number,perf
71
+ radios,band,"Frequency band",,enum,perf
72
+ radios,freq_mhz,Frequency,MHz,range,perf
73
+ radios,tx_power_w,"TX power",W,number,perf
74
+ radios,data_rate_kbps,"Data rate",kbps,number,perf
75
+ radios,rx_sens_dbm,"RX sensitivity",dBm,number,perf
76
+ radios,modulation,Modulation,,text,perf
77
+ reaction-wheels,momentum_nms,"Angular momentum storage",N·m·s,number,perf
78
+ reaction-wheels,torque_mnm,"Max torque",mN·m,number,perf
79
+ reaction-wheels,speed_rpm,"Wheel speed",rpm,range,perf
80
+ reaction-wheels,imbalance_static,"Static imbalance",g·cm,number,perf
81
+ reaction-wheels,imbalance_dynamic,"Dynamic imbalance",g·cm²,number,perf
82
+ reaction-wheels,bearing,"Bearing type",,enum,perf
83
+ sadm,slip_ring_channels,"Slip-ring channels",,number,perf
84
+ sadm,power_transfer_w,"Power transfer",W,number,perf
85
+ sdr-modems,protocols,"Protocols / waveforms",,text,perf
86
+ separation-systems,preload_kn,"Preload / holding force",kN,number,perf
87
+ separation-systems,release_time_ms,"Release time",ms,number,perf
88
+ separation-systems,shock_g,"Release shock",g,number,perf
89
+ separation-systems,cycles,"Cycles / reuses",,number,perf
90
+ solar-panels,power_bol_w,"Output power (BOL)",W,number,perf
91
+ solar-panels,cell_eff_pct,"Cell efficiency",%,number,perf
92
+ solar-panels,form_factor,"Form factor",,text,perf
93
+ solar-panels,deployable,Deployable,,text,perf
94
+ star-trackers,accuracy_arcsec,"Attitude accuracy (cross-boresight)",arcsec,number,perf
95
+ star-trackers,accuracy_roll_arcsec,"Accuracy around boresight (roll)",arcsec,number,perf
96
+ star-trackers,update_hz,"Update rate",Hz,number,perf
97
+ star-trackers,slew_deg_s,"Max tracking slew rate",°/s,number,perf
98
+ star-trackers,sun_excl_deg,"Sun exclusion angle",°,number,perf
99
+ star-trackers,fov_deg,"Field of view",°,number,perf
100
+ star-trackers,acq_time_s,"Lost-in-space acquisition time",s,number,perf
101
+ star-trackers,limiting_mag,"Limiting star magnitude",Mv,number,perf
102
+ structures,compatible_u,"Form factor",U,number,perf
103
+ sun-sensors,accuracy_deg,Accuracy,°,number,perf
104
+ sun-sensors,output_type,"Output type",,enum,perf
105
+ tanks-valves,volume_l,Volume,L,number,perf
106
+ tanks-valves,meop_bar,"Operating pressure (MEOP)",bar,number,perf
107
+ tanks-valves,media,"Media / propellant",,text,perf
108
+ tanks-valves,material,Material,,text,perf
109
+ thermal,conductance_w_k,"Thermal conductance",W/K,number,perf
110
+ thermal,emissivity,Emissivity,,number,perf
111
+ thermal,absorptivity,Absorptivity,,number,perf
112
+ thermal,layers,"Layers (MLI)",,number,perf
mrd-values.csv ADDED
The diff for this file is too large to render. See raw diff