Flight: EPA πŸ‡ΊπŸ‡Έ

πŸ’‘ High-Level Description:

The Environmental Protection Agency (EPA) has long been a vanguard in environmental preservation and protection in the United States. When it comes to carbon calculations for the flight passenger sector, the EPA's methodology offers a robust framework, bearing in mind the intricate nature of aviation and its environmental implications. As the aviation industry remains a considerable contributor to greenhouse gas emissions, it becomes crucial to possess a comprehensive and accurate calculation methodology.

The EPA's approach for carbon emissions from passenger flights emphasizes not just the direct emissions but also factors in relevant elements such as plane type, flight distance, fuel efficiency, and load factors. This multifaceted methodology assists airlines, regulatory bodies, and environmental advocates in gaining a clearer understanding of the sector's carbon footprint. The consistency this approach provides ensures that carbon reduction efforts are based on reliable data, making it possible to chart effective and impactful strategies to combat climate change.

Versioning: Include methodology_version to pin a specific Hub year (e.g., "2024"). If omitted, SQUAKE uses the latest supported year.


Sample API Request

{
  "expand": ["items"],
  "items": [
    {
      "type": "flight",
      "methodology": "US-EPA",
      "external_reference": "test_1",
      "number_of_travelers": 1,
      "origin": "JFK",
      "destination": "ORY",
      "methodology_version": "2024"
    }
  ]
}

API Request Items

  • "type": "flight" (required)

  • "methodology": "US-EPA" (required)

  • "methodology_version": EPA Hub year (e.g., "2024"). Optional; if omitted β†’ latest supported year.

  • "external_reference": Correlates request/response (max 128 chars).

  • "number_of_travelers": Minimum 1. Default: 1.

  • "origin": Flexible formats (postal, IATA/ICAO ^[A-Z]{3,4}$, UN/LOCODE ^[A-Z]{2}\W?[A-Z2-9]{3}$, or "lat,lon" like "+40.712,-74.006").

  • "destination": Same as "origin".

  • "distance_in_km": If provided, overrides origin/destination resolution.

  • "sustainable_fuels": Indicates SAF usage (reduces emissions in SQUAKE; not part of EPA factors).

  • "carbon_reduction_percentage_of_total": Fraction 0–1 applied when sustainable_fuels is used (default: 0).

Notes: EPA provides mode-level factors; aircraft-specific parameters (type, booking class, RFI) are not part of EPA Hub factors.


Sample API Response

{
  "carbon_quantity": 625550,
  "carbon_unit": "gram",
  "items": [
    {
      "carbon_quantity": 625550,
      "carbon_unit": "gram",
      "external_reference": "test_1",
      "type": "flight",
      "methodology": "US-EPA",
      "methodology_version": "2024",
      "distance": 5964.0,
      "distance_unit": "kilometer"
    }
  ]
}

Versions

  • Behavior: If methodology_version is omitted, SQUAKE automatically applies the latest supported EPA Hub year. Pin a year for reproducibility and auditability.


Bibliography

  • US EPA β€” GHG Emission Factors Hub: https://www.epa.gov/climateleadership/ghg-emission-factors-hub

Last updated

Was this helpful?