This function loads a pre-trained emission model to predict scope 1 carbon emissions for a British farm. The function predicts emissions for the following farm types: "Cereals ex. rice", "Dairy", "Mixed farming", "Sheep and goats", "Cattle & buffaloes", "Poultry", "Animal production", "Support for crop production".

farms_scope1(
  sic_code,
  farm_area,
  no_beef_cows,
  no_dairy_cows,
  no_pigs,
  no_sheep,
  annual_revenue,
  annual_fuel_spend
)

Arguments

sic_code

A 4-digit UK SIC code (numeric).

farm_area

Farm area in hectares.

no_beef_cows

Number of beef cows.

no_dairy_cows

Number of dairy cows.

no_pigs

Number of pigs.

no_sheep

Number of sheep.

annual_revenue

Annual revenue (£)

annual_fuel_spend

Annual fuel spend (£)

Value

A dataframe with predicted emissions (tCO2e)

Examples

farms_scope1(
sic_code = 1110,
farm_area = 1113,
no_beef_cows = 25,
no_dairy_cows = 8,
no_pigs = 18,
no_sheep = 29,
annual_revenue = 2986511,
annual_fuel_spend = 209055)
#>   Predicted Emissions (tCO2e)
#> 1                     2388.51