Federal Contractor

WEEKS MARINE, INC. Federal Contract Obligations (Last 5 Years)

WEEKS MARINE, INC. (CAGE 1RHV3, UEI ED3FZHBD52V3) has 266 award actions and 1.09 billion in obligated federal procurement over the last five years.

Over the last five years, WEEKS MARINE, INC. recorded 266 award actions totaling $1,092,039,746.49 in obligated value, with an average action value of $4,105,412.58. Activity is concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction, and is led by the Department of the Army.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect obligations during the last 5 years and may include awards across multiple agencies, with the Department of the Army accounting for most obligations.

CAGE Code
1RHV3
UEI
ED3FZHBD52V3
Total Obligated
1.09 billion
1,092,039,746.49
Award Actions
266
Average Action Value
4,105,412.58

About WEEKS MARINE, INC. federal contract activity

WEEKS MARINE, INC. (CAGE 1RHV3, UEI ED3FZHBD52V3) recorded $1.09 billion in obligated awards across 266 actions over the last 5 years, with an average award value of $4.11 million. The procurement profile is highly concentrated in a single NAICS code, indicating a focused contracting footprint rather than a diversified vendor base.

Agency mix and customer concentration

The Department of the Army accounted for the vast majority of obligations at $956.10 million across 250 awards, making it the clear primary buying activity. NOAA was a distant second at $120.85 million across 11 awards, while the Farm Production and Conservation Business Center contributed $15.09 million across 4 awards; the Department of the Navy appears only once and with no obligated value shown in the provided data.

Industry profile based on NAICS activity

All reported obligations fall under NAICS 237990, Other Heavy and Civil Engineering Construction, totaling $1.09 billion across 266 awards. This indicates that the vendor’s federal work in the analysis window was entirely aligned to heavy/civil construction activity rather than a multi-industry contracting portfolio.

Annual contract trend over the analysis window

Obligations peaked in 2024 at $377.96 million, then declined to $190.04 million in 2025 within the reported period. Prior years were more evenly distributed, ranging from $118.21 million in 2023 to $206.01 million in 2021, showing meaningful year-to-year variability rather than steady growth.

How to interpret this page

This summary is based on FPDS award records attributed to CAGE 1RHV3 and UEI ED3FZHBD52V3 over the last 5 years, using obligated dollars and award counts as provided. Agency and NAICS summaries reflect the supplied top-category aggregations, and annual trend values reflect obligations by fiscal year within the stated analysis window.

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 = '1RHV3'
        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
2100 DEPT OF THE ARMY 956,104,379.65 956.10 million 250
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 120,849,216.84 120.85 million 11
12D0 FARM PRODUCTION AND CONSERVATION BUSINESS CENTER 15,086,150.00 15.09 million 4
1700 DEPT OF THE NAVY 0.00 0.00 1

Insight

Over the last 5 years, WEEKS MARINE, INC. received $1.09 billion across 266 awards, with obligations highly concentrated in the DEPT OF THE ARMY, which accounted for $956.10 million and 250 awards. NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION was the only other major obligating agency at $120.85 million across 11 awards, while the FARM PRODUCTION AND CONSERVATION BUSINESS CENTER contributed $15.09 million across 4 awards. DEPT OF THE NAVY recorded one award with no obligated amount, indicating a narrowly distributed agency footprint dominated by Army procurement.

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 = '1RHV3'
        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
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 1,092,039,746.49 1.09 billion 266

Insight

Over the last 5 years, WEEKS MARINE, INC. (CAGE 1RHV3) shows complete NAICS concentration in 237990, Other Heavy and Civil Engineering Construction, which accounts for the full $1.09 billion in obligated awards across 266 actions. This indicates a highly specialized procurement profile with no diversification across other NAICS codes in the reported period. The average award value of about $4.11 million suggests a mix of recurring contract activity rather than reliance on a small number of very large obligations.

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 = '1RHV3'
        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 190,035,504.33 190.04 million 70
2024 377,955,466.82 377.96 million 56
2023 118,213,160.13 118.21 million 45
2022 199,823,505.96 199.82 million 46
2021 206,012,109.25 206.01 million 49

Insight

Over the last 5 years, WEEKS MARINE, INC. (CAGE 1RHV3) obligated 1.09 billion across 266 awards, averaging 4.11 million per award. Obligations are concentrated in 2024, which accounts for 377.96 million, or roughly 35% of the period total, while 2021 through 2023 are comparatively clustered between 118.21 million and 206.01 million annually. Award volume was highest in 2025 at 70 awards, but funding declined from the 2024 peak to 190.04 million, indicating a year-over-year reduction in obligation value despite elevated award activity.

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.