The GLEC Company Report is the standard output of the GLEC v3.0 Framework. It provides a complete emissions breakdown for a logistics organization over a reporting period, structured by:
Emission scopes (1, 2, 3) as defined by the GHG Protocol
Transport activity with intensity values (gCO2e/tkm)
Hub operations with intensity values (gCO2e/tonne)
Per-TOC breakdown showing emissions by vehicle type
Per-HOC breakdown showing emissions by hub category
Copy
┌──────────────────────────────────────────────────────────────────────────────┐│ GLEC COMPANY REPORT STRUCTURE │├──────────────────────────────────────────────────────────────────────────────┤│ ││ SCOPE 1 SCOPE 2 SCOPE 3 ││ ──────── ──────── ──────── ││ TTW emissions Hub purchased WTT emissions ││ (own fleet direct energy (electricity, (upstream fuel ││ fuel combustion) district heating) production) ││ ││ Hub on-site fuel WTW subcontracted ││ (generators, heating) (3rd party transport) ││ ││ Hub emissions ││ (subcontracted hubs) ││ ││ Cleaning emissions ││ │├──────────────────────────────────────────────────────────────────────────────┤│ COMPANY METRICS ││ ─────────────── ││ Transport Activity IV: gCO2e/tkm | Hub Operation IV: gCO2e/tonne ││ Total tkm Total tonnes handled ││ Total transport CO2e Total hub CO2e ││ │├──────────────────────────────────────────────────────────────────────────────┤│ BREAKDOWNS ││ ────────── ││ By TOC (vehicle type): IV, tkm, emissions, fuels used ││ By HOC (hub category): IV, emissions, tonnes ││ By transport mode: IV, tkm, emissions, DAF applied ││ Emission factors used: all fuel and TOC factors applied ││ │└──────────────────────────────────────────────────────────────────────────────┘
Two report types are available:
GLEC Company Report (legacy endpoint) — Full GLEC v3.0 structure with Scope 1/2/3, TOC/HOC breakdowns, and intensity values. Available via GET /logistics/report.
ISO 14083 Summary Report (new API) — Simplified aggregated report with category breakdown. Available via GET /v1/logistics/report.
This guide covers both, with the GLEC Company Report as the primary focus.
# List all emission factors applied in the reportprint("\nEMISSION FACTORS USED")print("\n Fuels:")for fuel in report["emission_factors_used"]["logistics_fuels"]: print(f" {fuel}")print("\n TOCs:")for toc in report["emission_factors_used"]["logistics_tocs"]: print(f" {toc}")
Sharing with clients: Client-level GLEC reports help your customers account for Scope 3 Category 4 (upstream transport) or Category 9 (downstream transport) in their own GHG Protocol inventories. The more specific your TOC and fuel data, the more valuable the report.
from src.utils.filename_generator import generate_report_filename# The GLEC report CSV follows the naming convention:# reporte-glec_<org-name>_<start-date>_<end-date>_<timestamp>.csvfilename = generate_report_filename("glec", "my-org-name", "2025-01-01", "2025-12-31")# → "reporte-glec_my-org-name_2025-01-01_2025-12-31_20250219.csv"
CSV export is available through the Dcycle web application. Navigate to your organization’s logistics dashboard, select the reporting period, and click Download GLEC Report.
Use these approximate benchmarks to contextualize your Transport Activity IV:
Mode
Good IV (gCO2e/tkm)
Average IV
Poor IV
Road (general)
< 50
50 – 120
> 120
Rail
< 15
15 – 30
> 30
Maritime
< 10
10 – 20
> 20
Air
< 500
500 – 800
> 800
These benchmarks are approximate and vary significantly by region, load factor, and vehicle age. Always compare against your own historical data and industry-specific benchmarks from the Smart Freight Centre.