Source code for greenlang.calculations.ghg.scope_3.employee_commuting
""" Employee commuting emissions calculation module. """
from ..base.base import BaseCalculationMethod
[docs]
class TransportationDistanceBasedMethod(BaseCalculationMethod):
    """Transportation by distance""" 
[docs]
class TransportationFuelAmountMethod(BaseCalculationMethod):
    """Transportation by fuel amount""" 
[docs]
class HomeOfficeElectricityUseMethod(BaseCalculationMethod):
    """ Home Office Electricity Use """ 
[docs]
class HomeOfficeHeatingNeedsMethod(BaseCalculationMethod):
    """ Home Office Heating Needs """ 
[docs]
class HomeOfficeCoolingNeedsMethod(BaseCalculationMethod):
    """ Home Office Cooling Needs """