Target Progress
How the CRD platform measures progress toward emissions reduction targets
The Reduction Journey
A company sets a base year (starting point) and a target year (finish line). Progress is measured by how far actual emissions have fallen relative to the reduction goal.
Worked Example
A company targeting a 50% reduction in Scope 1+2 emissions from 2020 to 2030.
What Does “On Track” Mean?
The platform checks whether actual reductions are keeping pace with where they should be, assuming steady linear progress over time.
Think of it like a weight loss goal: if you need to lose 50 pounds over 10 months, a linear expectation says you should have lost 25 pounds by month 5. If you have already lost 30 pounds, you are ahead of schedule. If only 20 pounds, you are behind.
Actual reduction exceeds the expected linear reduction for the elapsed time.
Actual reduction is close to or matches the expected linear reduction.
Actual reduction is below the expected linear reduction. Acceleration needed.
Which Emissions Are Counted?
Each target specifies which GHG emission scopes it covers. The system sums the relevant scope values for both the base year and the current period.
The system determines which emission scopes to include by parsing the target'sscopeCoveredfield. The relevant scope emissions are summed for both the base year and the current year.
| Target Covers | Scope 1 | Scope 2 | Scope 3 |
|---|---|---|---|
| Scope 1 Only | |||
| Scope 2 Only | |||
| Scope 1 + 2 | |||
| All Scopes (incl. Scope 3) |
Scope 2 always uses location-based values, not market-based. This ensures consistency across all calculations.
Technical Calculation Details
Formal definitions, formulas, and edge case handling
Target Types
The CRD platform tracks two types of emissions reduction targets.
A fixed reduction in total emissions. For example, reduce overall GHG emissions by 50% from the base year level.
A reduction in emissions per unit of output. For example, reduce tCO2e per $M revenue by 40%.
Progress Percentage Calculation
The seven-step process for computing how much progress has been made toward a target.
The progress percentage answers the question: “What fraction of the target reduction has been achieved so far?”
scopeCovered to determine which emission scopes to include (see scope selection table above).On-Track Status Calculation
Determines whether the entity is reducing emissions at a sufficient rate to meet the target by the target year, assuming linear progress.
Scope Selection Logic
Decision table for determining which emissions values are included based on the target's scope coverage field.
| scopeCovered Value | Emissions Used | Formula |
|---|---|---|
| Contains only “1” | Scope 1 | E = S1 |
| Contains only “2” | Scope 2 (location-based) | E = S2loc |
| Contains “1” and “2” (no “3”) | Scope 1 + Scope 2 | E = S1 + S2loc |
| Contains “3” | All scopes | E = S1 + S2loc + S3 |
Edge Cases and Null Handling
How the system handles missing, invalid, or boundary-condition data.