πŸ“¦ Setup Export/Import

Export your setups as .rcs files or import setups from other users and tools

πŸ“€ Export
πŸ“₯ Import
πŸ“‹ Browse Setups
πŸ“– Format Guide

Export Single Setup

Select a setup to export as a downloadable .rcs file.

Export All Setups

Export all setups as a single archive file. Optionally filter by chassis or surface.

Export Preview

Preview the selected setup before exporting.

Select a setup above to preview its contents.

Quick Export

One-click export for common scenarios.

Import from File

Upload a .rcs or .json file containing one or more setups.

πŸ“
Drop file here or click to browse
Supports .rcs, .json files (single setup or archive)

Import from JSON

Paste a raw setup JSON object to import directly.

Import Result

Import a setup to see results here.

Import Status

No imports yet this session.

All Setups

Loading setups…

RCS File Format

The RC Setup (.rcs) format is a JSON-based file format for sharing touring car setups between tools and users.

Single Setup Export

{
  "_export_metadata": {
    "version": "1.0",
    "exported_at": "2026-06-07T12:00:00+00:00",
    "application": "RC Touring Car Expert",
    "format": "rcs"
  },
  "setup": {
    "id": "abc12345",
    "name": "CS Track - Memorial Day Final",
    "chassis_id": "xray-t4-2024",
    "track_name": "CS Raceway",
    "surface": "asphalt",
    "front": {
      "spring": "Medium",
      "ride_height_mm": 5.0,
      "camber_deg": -1.0,
      "toe_out_mm": 4.5
    },
    "rear": {
      "spring": "Medium",
      "ride_height_mm": 5.4,
      "camber_deg": -1.75,
      "toe_deg": 1.75
    },
    "drivetrain": {
      "pinion": 38,
      "spur": 88,
      "fdr": 4.38
    }
  }
}

Archive Format (Multiple Setups)

{
  "_export_metadata": {
    "version": "1.0",
    "exported_at": "2026-06-07T12:00:00+00:00",
    "application": "RC Touring Car Expert",
    "format": "rcs-archive",
    "count": 3
  },
  "setups": [
    { "id": "abc12345", "name": "Setup 1", ... },
    { "id": "def67890", "name": "Setup 2", ... },
    { "id": "ghi11111", "name": "Setup 3", ... }
  ]
}

Supported Import Formats

  • Single .rcs file β€” Export envelope with _export_metadata + setup
  • Archive .rcs file β€” Export envelope with _export_metadata + setups array
  • Raw JSON object β€” A bare setup object (no wrapper needed)
  • JSON array β€” An array of setup objects

Validation Rules

  • Each setup must have a chassis_id or chassis field
  • At least one recognized setup field must be present
  • Duplicate setups (same name + chassis + track) are skipped
  • Missing fields are populated with sensible defaults