Federal Contractor

ERAPSCO Federal Contract Obligations (Last 5 Years)

ERAPSCO (CAGE 0CCL9, UEI UUD6KCVB8JB8) received 211 federal award actions totaling $890.92 million over the last 5 years.

ERAPSCO's federal procurement record is concentrated in the Department of the Navy, which accounts for 210 actions and $890.72 million of the total obligated value. Nearly all obligations fall under NAICS 334511 for search, detection, navigation, guidance, aeronautical, and nautical system and instrument manufacturing, with one smaller award under NAICS 334519.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the last 5 years of FPDS-observed award actions and may include obligations recorded across multiple contract actions.

CAGE Code
0CCL9
UEI
UUD6KCVB8JB8
Total Obligated
890.92 million
890,920,384.78
Award Actions
211
Average Action Value
4,222,371.49

About ERAPSCO federal contract activity

ERAPSCO (CAGE 0CCL9, UEI UUD6KCVB8JB8) recorded $890.92 million in obligations across 211 awards in the last 5 years, for an average award value of $4.22 million. The profile is highly concentrated: nearly all obligated value flowed through a single federal customer and a single primary product/service classification.

Agency mix and customer concentration

The DEPT OF THE NAVY dominates the agency mix, accounting for $890.72 million and 210 of 211 awards, or effectively the full observed spend base. NOAA is a minor secondary customer with one award totaling $196.99 thousand, indicating only limited diversification outside the Navy.

Industry profile based on NAICS activity

NAICS 334511 accounts for virtually all activity, with $890.72 million across 210 awards. NAICS 334519 appears only once, at $196.99 thousand, reinforcing that ERAPSCO’s federal footprint in this window is overwhelmingly centered on search, detection, navigation, guidance, aeronautical, and nautical systems and instruments manufacturing.

Annual contract trend over the analysis window

Obligations were strongest in 2022 and 2023, at $322.48 million and $310.29 million respectively, followed by a much smaller 2024 total of $248.47 thousand. In 2025, there were 29 awards but no obligated value reported, while 2021 contributed $257.90 million, indicating a sharp year-to-year decline after the 2021-2023 peak.

How to interpret this page

This summary uses FPDS-observed awards for the last 5 years and reflects obligations, not contract ceiling or potential value. Agency, NAICS, and annual totals are based on the provided aggregate data; award counts may include actions with zero obligated value, as shown in 2025.

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 5 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 890,723,392.78 890.72 million 210
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 196,992.00 196.99 thousand 1

Insight

Over the last 5 years, ERAPSCO’s obligations are highly concentrated in the Department of the Navy, which accounts for $890.72 million across 210 awards, or essentially the entire $890.92 million total. The only other identified agency is NOAA, with a single award totaling $196.99 thousand, indicating minimal diversification across civilian agencies. This distribution suggests ERAPSCO’s federal contracting activity is overwhelmingly Navy-driven within the observed period.

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 5 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 890,723,392.78 890.72 million 210
334519 OTHER MEASURING AND CONTROLLING DEVICE MANUFACTURING 196,992.00 196.99 thousand 1

Insight

Over the last 5 years, ERAPSCO’s obligations are overwhelmingly concentrated in NAICS 334511, which accounts for $890.72 million across 210 of 211 awards, or nearly all recorded activity. NAICS 334519 appears only once and represents a negligible share of obligations at $196,992. This distribution indicates a highly focused contracting profile with minimal diversification across NAICS codes.

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 5 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

Insight

ERAPSCO (CAGE 0CCL9) shows highly concentrated obligations in the last 5 years, with $890.92 million across 211 awards and an average award value of $4.22 million. Funding was heavily weighted to 2021–2023, which accounted for nearly all obligated dollars, peaking in 2022 at $322.48 million and remaining high in 2023 at $310.29 million. Award activity persisted in 2024 and 2025, but obligations fell sharply to $248.47 thousand in 2024 and $0 in 2025, indicating a steep recent decline in funded value despite continued award counts.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.