travel-spend
Calculate carbon emissions from travel expenses by inputting spend type, amount, currency, location, and year. Use this tool to assess climate impact of travel-related spending.
Instructions
Calculate carbon emissions from travel-related spending based on spend type, amount, currency, location, and year.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
money | Yes | Amount of money spent | |
money_unit | Yes | Currency unit for the spent money | |
spend_location | Yes | Location of the travel spending | |
spend_type | Yes | Type of travel spending (air, road, rail, sea, hotel) | |
spend_year | No | Year of the travel spending |
Input Schema (JSON Schema)
{
"properties": {
"money": {
"description": "Amount of money spent",
"type": "number"
},
"money_unit": {
"description": "Currency unit for the spent money",
"type": "string"
},
"spend_location": {
"description": "Location of the travel spending",
"type": "string"
},
"spend_type": {
"description": "Type of travel spending (air, road, rail, sea, hotel)",
"type": "string"
},
"spend_year": {
"description": "Year of the travel spending",
"type": "number"
}
},
"required": [
"spend_type",
"money",
"money_unit",
"spend_location"
],
"type": "object"
}