Over the last 10 years, WEEKS MARINE, INC. recorded 529 award actions totaling $2,030,114,081.13 in obligated funding, with an average action value of $3,837,644.76. Activity is concentrated in the Department of the Army and in NAICS 237990, Other Heavy and Civil Engineering Construction.
Federal Contractor
WEEKS MARINE, INC. Federal Contract Obligations (Last 10 Years)
Federal procurement profile for WEEKS MARINE, INC. (CAGE 1RHV3, UEI ED3FZHBD52V3) showing 10-year award activity, obligations, agencies, and NAICS mix.
Totals reflect the selected 10-year analysis window and may include multiple actions tied to the same award.
About WEEKS MARINE, INC. federal contract activity
WEEKS MARINE, INC. shows $2.03 billion in obligated awards across 529 contracts over the last 10 years, with an average award value of $3.84 million. The profile is heavily concentrated in a single mission area, indicating a contractor relationship built around repeated, relatively high-value awards rather than a broad contract base. CAGE code 1RHV3 and UEI ED3FZHBD52V3 are associated with this award history.
Agency mix and customer concentration
The DEPT OF THE ARMY accounts for the overwhelming share of obligations at $1.89 billion across 511 awards, making it the clear primary customer. The remaining activity is limited and dispersed across NOAA, the Farm Production and Conservation Business Center, and the DEPT OF THE NAVY, each contributing a much smaller portion of total obligations. This mix suggests strong dependence on Army demand with only modest diversification into other agencies.
Industry profile based on NAICS activity
The vendor’s award history is almost entirely tied to NAICS 237990, Other Heavy and Civil Engineering Construction, which represents $2.03 billion across 528 awards. Only one award is shown under NAICS 238990 for $10,000, indicating minimal activity outside the core construction classification. The NAICS pattern is therefore highly concentrated and consistent with a specialized infrastructure-oriented profile.
Annual contract trend over the analysis window
Obligations are uneven year to year, with a notable peak in 2024 at $377.96 million and strong activity continuing in 2025 at $190.04 million through the available period. Earlier years shown include $206.01 million in 2021, $199.82 million in 2022, and $118.21 million in 2023, indicating fluctuating but sustained procurement volume. The annual pattern supports a recurring-award relationship rather than a one-time spike.
How to interpret this page
This summary uses FPDS award data for the last 10 years and relies on obligated dollars, award counts, agency attribution, and NAICS classification as provided. Totals reflect the supplied overview metrics and category breakdowns, with no adjustments for inflation, deobligation timing, or contract vehicle structure. Where annual data is partial, the narrative is limited to the values shown in the 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 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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 1,888,450,262.60 | 1.89 billion | 511 |
| 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 | 5,728,451.69 | 5.73 million | 3 |
Insight
Over the last 10 years, WEEKS MARINE, INC. received 2.03 billion across 529 awards, with obligations heavily concentrated in the DEPT OF THE ARMY at 1.89 billion across 511 awards. The Army accounts for the overwhelming share of both dollars and award volume, indicating a highly concentrated customer base. Other agencies are secondary and comparatively limited: NOAA obligated 120.85 million across 11 awards, the Farm Production and Conservation Business Center 15.09 million across 4 awards, and the DEPT OF THE NAVY 5.73 million across 3 awards.
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 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 |
|---|---|---|---|---|
| 237990 | OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION | 2,030,104,081.13 | 2.03 billion | 528 |
| 238990 | ALL OTHER SPECIALTY TRADE CONTRACTORS | 10,000.00 | 10.00 thousand | 1 |
Insight
Over the last 10 years, WEEKS MARINE, INC. received $2.03 billion across 529 awards, with a highly concentrated NAICS profile. NAICS 237990, Other Heavy and Civil Engineering Construction, accounts for virtually all obligated dollars at $2.03 billion and 528 awards, indicating this is the firm’s dominant procurement category. NAICS 238990, All Other Specialty Trade Contractors, appears only once at $10 thousand and is immaterial relative to the total.
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 10 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 |
| 2020 | 148,030,048.51 | 148.03 million | 76 |
| 2019 | 366,031,383.51 | 366.03 million | 62 |
| 2018 | 300,042,634.39 | 300.04 million | 63 |
| 2017 | 123,970,268.23 | 123.97 million | 62 |
Insight
Over the last 10 years, WEEKS MARINE, INC. (CAGE 1RHV3) received $2.03 billion across 529 awards, averaging $3.84 million per award. Obligations are unevenly distributed, with a high point in 2024 at $377.96 million and other elevated years in 2018, 2019, 2021, 2022, and 2025, indicating intermittent spikes rather than a steady annual pattern. Award volume remained relatively consistent, ranging from 45 to 76 awards per year, suggesting variability in obligated dollars is driven more by award size than by count.
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.