The June 5, 2026 national trailer inventory was collected by field staff and volunteers submitting data through a structured form. Because respondents entered values manually in free-text fields — rather than selecting from a controlled list — the raw dataset reflects the full range of real-world data entry: inconsistent units, varied date formats, truncated brand names, and missing or ambiguous values.
This report documents the cleaning and standardization pipeline applied before analysis. Three fields required significant transformation: trailer length (inconsistent formats), model year (mixed date representations), and trailer make (free-form brand names with no canonical list). Each field was parsed with custom logic, and every transformation decision is surfaced in the tables below so the methodology is fully auditable.
Of 2,099 records received, all 2,099 were successfully geocoded to a street address.
| Raw Input | Cleaned length_ft | Parse method |
|---|
| Raw Input | Cleaned model_year | Age in 2026 |
|---|
| Raw Input | Canonical Make | Records affected |
|---|
Each column compares a RIM count against Element inventory. Apr RIM = active trailers recorded in April 2026. Jun RIM = active trailers recorded June 5, 2026.
Positive difference = RIM shows more trailers than Element expects. Negative = RIM shows fewer. RIM Change (Apr→Jun) tracks whether each region improved or declined between the two pulls.
| Region | Apr Inventory | Apr RIM | Apr Diff | Jun Inventory | Jun RIM | Jun Diff | RIM Change |
|---|
The three most common brands average 18–23 years in service. The images below show factory-new stock — field units will vary based on age, use, and chapter modifications.
By cross-referencing the Element fleet management system, the June 2026 RIM extract, and the NHTSA free VIN database, we now have the most complete picture of the American Red Cross trailer fleet ever assembled — and it reveals significant gaps, risks, and opportunities that neither system alone could show.
How many trailers appear in each data source
Distribution of 2,323 VIN-decoded trailers
From NHTSA VIN decode — not in either source system
Mission-critical for tow vehicle matching — new data
Fleet built in waves — reveals replacement planning gaps
Issues visible only by joining all three sources
The American Red Cross maintains a national fleet of approximately 2,200+ trailers used for disaster response operations. Until June 2026, fleet data was siloed across two systems: the Element fleet management platform (authoritative for ownership, registration, and status) and the chapter-maintained RIM system (authoritative for physical condition, location, and inspection history). Neither system contained manufacturer identity, model year, or axle count — facts deterministically decodable from the VIN number embedded in every record. This study merges all three sources into a single master dataset and quantifies the resulting intelligence gain.
The trailer fleet is a critical logistics asset for ARC disaster response. Trailers carry cots, blankets, casework supplies, and field equipment to active disasters. Fleet condition, location, and capability directly affect ARC's ability to mobilize. Despite this operational importance, no single data view of the fleet existed. The Element system tracks ownership and status. Field teams record trailers in RIM, capturing physical condition and location. The NHTSA's free Vehicle Product Information Catalog (vPIC) API can decode any 17-character VIN into manufacturer, model year, axle count, trailer length, and body type in milliseconds — but this had never been applied to the trailer dataset.
Three datasets were joined using the VIN as the primary key:
The master dataset contains unique VIN records spanning all three sources. Join was performed in Python using exact VIN string matching. No fuzzy matching was required.
Only trailers appear in both Element and RIM — meaning both systems have a confirmed physical record and an administrative record. trailers exist in Element but have no corresponding RIM record: the fleet system knows they exist, but no field team has assessed their current physical condition, location confirmation, or operational status. Conversely, trailers appear in RIM but not in Element — these are assets being used operationally that have no administrative record. This asymmetry is a fleet governance gap: trailers without RIM records may be in unknown condition; trailers without Element records may lack proper registration, insurance, or accountability.
Neither source system contains model year as a data field. The NHTSA decode reveals the fleet's age profile for the first time. The median trailer has been in service for approximately years. The largest procurement cohort spans 2006–2009, meaning the bulk of the fleet is now 17–20 years old. The oldest active trailers date to 1982 — over 40 years in service. A small cohort of 2018 trailers (132 units, the Kaufman batch) represents the most recent significant procurement. The virtual absence of trailers from 2020–2024 suggests procurement halted during COVID and has not recovered — a fleet renewal gap that should trigger capital planning attention.
The fleet spans distinct manufacturers — a degree of brand fragmentation that complicates maintenance standardization and parts sourcing. American Cargo Group (416 units, formerly Wells Cargo) is the dominant supplier, followed by Forest River (236) and Kaufman (119). However, 50+ manufacturers are represented by fewer than 10 units each. This long tail of small-count brands suggests historical procurement without a vendor strategy, resulting in a fleet where no single maintenance relationship can cover the majority of assets.
Axle count does not appear in either source system. The NHTSA decode recovered axle count for 1,609 trailers. The fleet is split roughly 45/55 between single-axle (727) and dual-axle (878) configurations. This distinction is mission-critical: a dual-axle trailer typically carries significantly more weight and requires a vehicle with a higher tow rating. Without axle data, tow vehicle assignments cannot be made by specification — they are made by guesswork or institutional knowledge. Encoding axle count into Element or RIM would enable capacity-based dispatch.
Cross-referencing Element status against survey records reveals trailers marked Sold or Surplus in the fleet system that still appear in RIM. This could reflect: (a) a data lag where Element was updated but RIM was not; (b) trailers that were sold but remain in use by a chapter; or (c) data entry errors. Regardless of cause, an operational team reading only RIM would believe these trailers are active ARC assets. Each case should be investigated.
Of the trailers where both the RIM "Trailer Size" field and the NHTSA length decode are available, show a discrepancy of more than 1 foot between the reported and decoded lengths. This rate suggests the RIM length field contains a mix of reliable and unreliable data — possibly due to inconsistent measurement convention (interior vs. exterior), typos, or records where the VIN doesn't match the physical trailer. The NHTSA-decoded length, derived from the manufacturer's original specifications, should be treated as authoritative where the decode is clean (ErrorCode=0).
Element records include license plate expiration dates. As of June 2026, trailers have expired plates. A trailer with an expired plate cannot legally be towed on public roads and would be inoperable for disaster response without remediation. This list is actionable: plates can be renewed without replacing the trailer, and the affected chapters can be notified directly using the driver assignment contact information also present in Element.
This analysis demonstrates that ARC's trailer fleet intelligence was unnecessarily limited by the siloed treatment of data that was always available to be joined. The VIN — a field present in both source systems — is a direct key into a free federal database that adds manufacturer identity, model year, and axle count to every decodable record. The three-way join reveals coverage asymmetries that no single system could surface. None of the findings in this study required new data collection: they required the application of a join, a free API call, and a willingness to look at the data as a unified whole rather than as separate operational artifacts.
vpic.nhtsa.dot.gov/api/vehicles/DecodeVINValuesBatch/ — free, unauthenticated, 50 VINs per request ·
Join key: 17-character VIN ·
Analysis: Python / June 2026 ·
Master dataset: 2,479 unique VIN records