ERAPSCO, CAGE 0CCL9 and UEI UUD6KCVB8JB8, recorded 349 federal award actions with total obligations of $1,698,981,417.05 over the last 10 years. Most activity came from the Department of the Navy, with smaller amounts tied to NOAA and limited awards in other agencies.
Federal Contractor
ERAPSCO Federal Contract Obligations (Last 10 Years)
ERAPSCO procurement profile for the last 10 years, showing 349 award actions and $1.70 billion in obligated federal spending.
Totals and trends are based on FPDS award actions in the stated analysis window and may reflect obligations of $0 in some award-count entries.
About ERAPSCO federal contract activity
ERAPSCO (CAGE 0CCL9, UEI UUD6KCVB8JB8) recorded 349 FPDS awards totaling $1.70 billion over the last 10 years, with an average award value of $4.87 million. The profile is highly concentrated in a small set of awards, and the Department of the Navy accounts for virtually all observed obligations. Recent activity remains present in award counts, but obligated dollars have been materially lower in the most recent year shown.
Agency mix and customer concentration
The Department of the Navy dominates the agency mix with $1.70 billion across 338 awards, making ERAPSCO overwhelmingly Navy-oriented in federal contracting. The only other obligated dollars appear in small awards from NOAA, while DCMA and US Geological Survey show award activity but no obligated dollars in the provided summary. This indicates a narrow customer base with minimal diversification outside defense procurement.
Industry profile based on NAICS activity
Contracting is concentrated in NAICS 334511, which represents search, detection, navigation, guidance, aeronautical, and nautical system and instrument manufacturing, and accounts for nearly all obligated dollars and awards. Smaller activity appears under NAICS 334519 and 541712, but these categories contribute only marginal obligation amounts relative to the core manufacturing line. The mix is consistent with a vendor supplying specialized marine and defense instrumentation.
Annual contract trend over the analysis window
Annual obligations were substantial in 2021 through 2023, rising above $257.9 million in 2021 and peaking at $322.5 million in 2022 before easing to $310.3 million in 2023. The 2024 figure drops sharply to $248.47 thousand, while 2025 shows award activity but no obligated dollars in the data provided. On this record, the recent pattern suggests continued transactional activity but a pronounced decline in recognized obligations after 2023.
How to interpret this page
This summary is based on FPDS award records associated with ERAPSCO, using the provided CAGE code 0CCL9 and UEI UUD6KCVB8JB8 across the last 10 years. Agency, NAICS, and annual trend statements reflect only the totals included in the supplied dataset and do not infer work outside those observations. Amounts are rounded as presented in the source metrics; zero-obligation entries are reported as such without extrapolation.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0CCL9'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 1,698,784,425.05 | 1.70 billion | 338 |
| 1330 | NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION | 196,992.00 | 196.99 thousand | 1 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 8 |
| 1434 | US GEOLOGICAL SURVEY | 0.00 | 0.00 | 2 |
Insight
ERAPSCO’s obligations over the last 10 years are highly concentrated in the Department of the Navy, which accounts for $1.6987 billion across 338 awards, or nearly all recorded obligations for this CAGE. The only other obligated agency is NOAA at $196,992 across 1 award, indicating minimal diversification outside the Navy. DCMA and USGS appear in the award history with 8 and 2 awards respectively, but with $0 obligated, suggesting limited or administrative activity without recorded spend.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0CCL9'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 1,698,761,328.05 | 1.70 billion | 344 |
| 334519 | OTHER MEASURING AND CONTROLLING DEVICE MANUFACTURING | 196,992.00 | 196.99 thousand | 1 |
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 23,097.00 | 23.10 thousand | 4 |
Insight
ERAPSCO’s obligations are highly concentrated in NAICS 334511, which accounts for $1.70 billion across 344 awards and effectively represents the full 10-year portfolio. The remaining activity is minimal and dispersed across NAICS 334519 and 541712, together totaling less than $0.3 million across 5 awards. This pattern indicates a narrowly focused procurement profile centered on search, detection, navigation, guidance, aeronautical, and nautical systems and instrument manufacturing.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '0CCL9'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 0.00 | 0.00 | 29 |
| 2024 | 248,467.41 | 248.47 thousand | 44 |
| 2023 | 310,289,188.80 | 310.29 million | 42 |
| 2022 | 322,481,300.10 | 322.48 million | 56 |
| 2021 | 257,901,428.47 | 257.90 million | 40 |
| 2020 | 324,681,410.44 | 324.68 million | 28 |
| 2019 | 179,331,114.55 | 179.33 million | 30 |
| 2018 | 195,650,296.31 | 195.65 million | 49 |
| 2017 | 108,398,210.97 | 108.40 million | 31 |
Insight
ERAPSCO’s obligations over the last 10 years total $1.70 billion across 349 awards, with an average award value of $4.87 million. Funding is concentrated in a multi-year peak from 2020 through 2023, when annual obligations ranged from $257.90 million to $324.68 million and accounted for the preponderance of total spend. Activity declined sharply in 2024 to $248.47 thousand, and 2025 currently reflects 29 awards with no obligated dollars reported.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.
Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.