pyholos 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyholos might be problematic. Click here for more details.
- pyholos/__init__.py +0 -0
- pyholos/common.py +141 -0
- pyholos/common2.py +157 -0
- pyholos/components/__init__.py +0 -0
- pyholos/components/animals/__init__.py +0 -0
- pyholos/components/animals/beef.py +766 -0
- pyholos/components/animals/common.py +2301 -0
- pyholos/components/animals/dairy.py +341 -0
- pyholos/components/animals/sheep.py +412 -0
- pyholos/components/common.py +170 -0
- pyholos/components/land_management/__init__.py +0 -0
- pyholos/components/land_management/carbon/__init__.py +0 -0
- pyholos/components/land_management/carbon/climate.py +863 -0
- pyholos/components/land_management/carbon/management.py +21 -0
- pyholos/components/land_management/carbon/relative_biomass_information.py +410 -0
- pyholos/components/land_management/carbon/tillage.py +88 -0
- pyholos/components/land_management/common.py +220 -0
- pyholos/components/land_management/crop.py +1233 -0
- pyholos/components/land_management/field_system.py +458 -0
- pyholos/components/land_management/utils.py +66 -0
- pyholos/config.py +49 -0
- pyholos/core_constants.py +20 -0
- pyholos/defaults.py +116 -0
- pyholos/farm/__init__.py +0 -0
- pyholos/farm/enums.py +54 -0
- pyholos/farm/farm.py +101 -0
- pyholos/farm/farm_inputs.py +633 -0
- pyholos/farm/farm_settings.py +542 -0
- pyholos/launching.py +86 -0
- pyholos/postprocessing/__init__.py +0 -0
- pyholos/postprocessing/plots.py +164 -0
- pyholos/postprocessing/postprocessing.py +38 -0
- pyholos/resources/holos/Table_16_Livestock_Coefficients_BeefAndDairy_Cattle_Provider.csv +21 -0
- pyholos/resources/holos/Table_21_Average_Milk_Production_For_Dairy_Cows_By_Province.csv +23 -0
- pyholos/resources/holos/Table_22_Livestock_Coefficients_For_Sheep.csv +28 -0
- pyholos/resources/holos/Table_29_Percentage_Total_Manure_Produced_In_Systems.csv +56 -0
- pyholos/resources/holos/Table_30_Default_Bedding_Material_Composition_Provider.csv +28 -0
- pyholos/resources/holos/Table_50_Fuel_Energy_Requirement_Estimates_By_Region.csv +81 -0
- pyholos/resources/holos/Table_51_Herbicide_Energy_Requirement_Estimates_By_Region.csv +81 -0
- pyholos/resources/holos/Table_61_Fractions_of_dairy_cattle_N_volatilized.csv +25 -0
- pyholos/resources/holos/Table_62_Fractions_of_swine_N_volatilized.csv +25 -0
- pyholos/resources/holos/Table_6_Manure_Types_And_Default_Composition.csv +126 -0
- pyholos/resources/holos/Table_7_Relative_Biomass_Information.csv +112 -0
- pyholos/resources/holos/Table_9_Default_Values_For_Nitrogen_Lignin_In_Crops.csv +72 -0
- pyholos/resources/holos/Table_Tillage_Factor.csv +13 -0
- pyholos/resources/holos/feeds.csv +223 -0
- pyholos/resources/holos/main_tables.py +493 -0
- pyholos/resources/holos/small_area_yields.csv +167159 -0
- pyholos/resources/soil_landscapes_of_canada_v3r2.zip +0 -0
- pyholos/soil.py +439 -0
- pyholos/utils.py +83 -0
- pyholos-0.0.1.dist-info/METADATA +16 -0
- pyholos-0.0.1.dist-info/RECORD +55 -0
- pyholos-0.0.1.dist-info/WHEEL +4 -0
- pyholos-0.0.1.dist-info/licenses/LICENSE +677 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import calendar
|
|
2
|
+
from dataclasses import dataclass
|
|
3
|
+
from math import ceil
|
|
4
|
+
from pathlib import Path
|
|
5
|
+
|
|
6
|
+
import matplotlib
|
|
7
|
+
from matplotlib import pyplot
|
|
8
|
+
from pandas import DataFrame
|
|
9
|
+
|
|
10
|
+
from pyholos.utils import calc_vector_percentage
|
|
11
|
+
|
|
12
|
+
matplotlib.use("Qt5Agg")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class UnitStrings:
|
|
16
|
+
co2_eq = r"$\mathregular{CO_2\/_{(eq)}}$"
|
|
17
|
+
mg_co2_eq = f'MG {co2_eq}'
|
|
18
|
+
ch4 = r"$\mathregular{CH_4}$"
|
|
19
|
+
n2o = r"$\mathregular{N_2O}$"
|
|
20
|
+
co2 = r"$\mathregular{CO_2}$"
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
@dataclass
|
|
24
|
+
class NameUnit:
|
|
25
|
+
name: str
|
|
26
|
+
unit: str
|
|
27
|
+
|
|
28
|
+
def get_string(self, sep: str = ' ') -> str:
|
|
29
|
+
return f"{self.name}{sep}({self.unit})"
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class Config:
|
|
33
|
+
map_names: dict[str, NameUnit] = {
|
|
34
|
+
"Enteric CH4 (Mg C02e)": NameUnit(name=f"Enteric {UnitStrings.ch4}", unit=UnitStrings.mg_co2_eq),
|
|
35
|
+
"Manure CH4 (Mg C02e)": NameUnit(name=f"Manure {UnitStrings.ch4}", unit=UnitStrings.mg_co2_eq),
|
|
36
|
+
"Direct N2O (Mg C02e)": NameUnit(name=f"Direct {UnitStrings.n2o}", unit=UnitStrings.mg_co2_eq),
|
|
37
|
+
"Indirect N2O (Mg C02e)": NameUnit(name=f"Indirect {UnitStrings.n2o}", unit=UnitStrings.mg_co2_eq),
|
|
38
|
+
"Energy CO2 (Mg C02e)": NameUnit(name=f"Energy {UnitStrings.co2}", unit=UnitStrings.mg_co2_eq),
|
|
39
|
+
"CO2 (Mg C02e)": NameUnit(name=f"{UnitStrings.co2}", unit=UnitStrings.mg_co2_eq),
|
|
40
|
+
"Sub-total (Mg C02e)": NameUnit(name=f"Sub-total {UnitStrings.co2}", unit=UnitStrings.mg_co2_eq),
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def plot_farm_total_co2eq_emissions(
|
|
45
|
+
df: DataFrame,
|
|
46
|
+
path_dir_fig: Path
|
|
47
|
+
) -> None:
|
|
48
|
+
data = df.drop(columns=['Farm Name', 'Component Name', 'Component Group Name', 'Sub-total (Mg C02e)']).groupby(
|
|
49
|
+
'Component Category').sum()
|
|
50
|
+
|
|
51
|
+
fig, ax = pyplot.subplots()
|
|
52
|
+
data.plot(kind='bar', stacked=True, ax=ax)
|
|
53
|
+
ax.set(
|
|
54
|
+
xlabel="Animal category",
|
|
55
|
+
ylabel=UnitStrings.co2_eq
|
|
56
|
+
)
|
|
57
|
+
ax.tick_params(axis='x', labelrotation=45)
|
|
58
|
+
|
|
59
|
+
handles, labels = ax.get_legend_handles_labels()
|
|
60
|
+
ax.legend(
|
|
61
|
+
labels=[Config.map_names[s].name for s in labels],
|
|
62
|
+
handles=handles
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
fig.tight_layout()
|
|
66
|
+
fig.savefig(path_dir_fig / f"co2eq_{df['Farm Name'].iloc[0]}_total.png")
|
|
67
|
+
pass
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def plot_farm_detailed_co2eq_emissions(
|
|
71
|
+
df: DataFrame,
|
|
72
|
+
path_dir_fig: Path
|
|
73
|
+
) -> None:
|
|
74
|
+
data = df.drop(columns=['Farm Name', 'Component Name', 'Sub-total (Mg C02e)']).groupby(
|
|
75
|
+
by=['Component Category', 'Component Group Name']).sum()
|
|
76
|
+
|
|
77
|
+
fig, ax = pyplot.subplots()
|
|
78
|
+
data.plot(kind='bar', stacked=True, ax=ax)
|
|
79
|
+
ax.set(
|
|
80
|
+
xlabel="Animal category",
|
|
81
|
+
ylabel=UnitStrings.co2_eq
|
|
82
|
+
)
|
|
83
|
+
|
|
84
|
+
handles, labels = ax.get_legend_handles_labels()
|
|
85
|
+
ax.legend(
|
|
86
|
+
labels=[Config.map_names[s].name for s in labels],
|
|
87
|
+
handles=handles
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
fig.tight_layout()
|
|
91
|
+
fig.savefig(path_dir_fig / f"co2eq_{df['Farm Name'].iloc[0]}_detailed.png")
|
|
92
|
+
pass
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def plot_total_co2eq_emissions(
|
|
96
|
+
ghg_data: DataFrame,
|
|
97
|
+
path_dir_fig: Path,
|
|
98
|
+
farm_name: str | list[str] = None
|
|
99
|
+
) -> None:
|
|
100
|
+
if farm_name is not None:
|
|
101
|
+
farms = farm_name if isinstance(farm_name, list) else [farm_name]
|
|
102
|
+
else:
|
|
103
|
+
farms = ghg_data['Farm Name'].unique()
|
|
104
|
+
|
|
105
|
+
for farm in farms:
|
|
106
|
+
plot_farm_total_co2eq_emissions(
|
|
107
|
+
df=ghg_data[ghg_data['Farm Name'] == farm],
|
|
108
|
+
path_dir_fig=path_dir_fig
|
|
109
|
+
)
|
|
110
|
+
plot_farm_detailed_co2eq_emissions(
|
|
111
|
+
df=ghg_data[ghg_data['Farm Name'] == farm],
|
|
112
|
+
path_dir_fig=path_dir_fig
|
|
113
|
+
)
|
|
114
|
+
|
|
115
|
+
pass
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
def plot_farm_monthly_co2eq_emissions(
|
|
119
|
+
df: DataFrame,
|
|
120
|
+
path_dir_fig: Path,
|
|
121
|
+
is_percentage: bool = False
|
|
122
|
+
) -> None:
|
|
123
|
+
cols_to_plot = [
|
|
124
|
+
"Enteric CH4 (Mg C02e)",
|
|
125
|
+
"Manure CH4 (Mg C02e)",
|
|
126
|
+
"Direct N2O (Mg C02e)",
|
|
127
|
+
"Indirect N2O (Mg C02e)"
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
if is_percentage:
|
|
131
|
+
for col in cols_to_plot:
|
|
132
|
+
for month in df['Month'].unique():
|
|
133
|
+
df.loc[df['Month'] == month, col] = calc_vector_percentage(
|
|
134
|
+
vector=df[df['Month'] == month].loc[:, col])
|
|
135
|
+
|
|
136
|
+
df.loc[:, 'Month'] = df['Month'].map({calendar.month_name[i]: i for i in range(1, 13)})
|
|
137
|
+
df.loc[:, 'animal_type_id'] = df.loc[:, ['Component Category', 'Component Name', 'Group Name']].apply(
|
|
138
|
+
lambda x: '_'.join(x), axis=1)
|
|
139
|
+
gdf = df.groupby(by='animal_type_id').agg(list).sort_values(by='Component Category')
|
|
140
|
+
|
|
141
|
+
fig, axs = pyplot.subplots(ncols=2, nrows=ceil(len(cols_to_plot) / 2), sharex='all', sharey='all')
|
|
142
|
+
|
|
143
|
+
for ax, col in zip(axs.flatten(), cols_to_plot):
|
|
144
|
+
ax.clear()
|
|
145
|
+
ax.set_ylabel(Config.map_names[col].get_string())
|
|
146
|
+
bottom = [0] * 12
|
|
147
|
+
for group_name, values in gdf.iterrows():
|
|
148
|
+
simulated_months = values['Month']
|
|
149
|
+
simulated_ghg = values[col]
|
|
150
|
+
ax.bar(simulated_months, simulated_ghg,
|
|
151
|
+
width=0.5,
|
|
152
|
+
label=' '.join(group_name.split('_')[1:]),
|
|
153
|
+
bottom=[bottom[i - 1] for i in simulated_months])
|
|
154
|
+
for month, ghg in zip(simulated_months, simulated_ghg):
|
|
155
|
+
bottom[month - 1] += ghg
|
|
156
|
+
|
|
157
|
+
axs[-1, -1].legend(fontsize=7)
|
|
158
|
+
|
|
159
|
+
axs[-1, 0].xaxis.set_ticks(range(1, 13))
|
|
160
|
+
axs[-1, 0].set_xlabel('month')
|
|
161
|
+
axs[-1, 0].xaxis.set_label_coords(1.05, -0.15)
|
|
162
|
+
fig.tight_layout()
|
|
163
|
+
fig.savefig(path_dir_fig / f"co2eq_{df['Farm Name'].iloc[0]}_monthly{'_percentage' if is_percentage else ''}.png")
|
|
164
|
+
pass
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
|
|
3
|
+
from pandas import DataFrame, read_csv
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def read_equivalent_co2_emissions(
|
|
7
|
+
path_outputs: Path
|
|
8
|
+
) -> DataFrame:
|
|
9
|
+
df = read_csv(path_outputs, decimal='.', sep=',').rename(columns=lambda x: x.strip()).ffill()
|
|
10
|
+
cols_to_keep = [s for s in df.columns if "Unnamed" not in s]
|
|
11
|
+
df = df[cols_to_keep].dropna(axis=0)
|
|
12
|
+
df.loc[:, 'Farm Name'] = df['Farm Name'].apply(lambda x: x.replace('_Farm_', '')).to_list()
|
|
13
|
+
|
|
14
|
+
df = df[~df['Component Group Name'].str.contains('Totals|Total')]
|
|
15
|
+
df = df[~df['Farm Name'].str.contains('All Farms')]
|
|
16
|
+
|
|
17
|
+
return df
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def read_farm_monthly_equivalent_co2_emissions(
|
|
21
|
+
path_outputs: Path,
|
|
22
|
+
year: int
|
|
23
|
+
) -> DataFrame:
|
|
24
|
+
df = read_csv(path_outputs, decimal='.', sep=',').rename(columns=lambda x: x.strip())
|
|
25
|
+
df = df[[s for s in df.columns if "Unnamed" not in s]]
|
|
26
|
+
fill_cols = ['Farm Name', 'Component Category', 'Component Name', 'Group Name']
|
|
27
|
+
df.loc[:, fill_cols] = df.loc[:, fill_cols].ffill()
|
|
28
|
+
df = df.dropna(axis=0)
|
|
29
|
+
df.loc[:, 'Farm Name'] = df['Farm Name'].apply(lambda x: x.replace('_Farm', '')).to_list()
|
|
30
|
+
df.loc[:, 'Year'] = df['Year'].astype(str)
|
|
31
|
+
|
|
32
|
+
df = df[
|
|
33
|
+
(~df['Year'].str.contains('Totals|Total')) &
|
|
34
|
+
(df['Year'] == str(year))
|
|
35
|
+
]
|
|
36
|
+
df = df[~df['Farm Name'].str.contains('All Farms')]
|
|
37
|
+
|
|
38
|
+
return df.drop(columns=['Year'])
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This table was automatically generated using "main_tables.py"
|
|
2
|
+
# Table 16. Livestock coefficients for beef cattle and dairy cattle.
|
|
3
|
+
# source: https://github.com/holos-aafc/Holos/blob/396f1ab9bc7247e6d78766f9445c14d2eb7c0d9d/H.Core/Providers/Animals/Table_16_Livestock_Coefficients_BeefAndDairy_Cattle_Provider.cs#L13
|
|
4
|
+
#
|
|
5
|
+
# The value of "DefaultFinalWeight" was modified from 260 kg to 90 kg, according to the default values set in the GUI.
|
|
6
|
+
#
|
|
7
|
+
AnimalType,BaselineMaintenanceCoefficient,GainCoefficient,DefaultInitialWeight,DefaultFinalWeight
|
|
8
|
+
BeefCalf,-100000.0,-100000.0,39,260
|
|
9
|
+
BeefCowLactating,0.386,0.8,610,610
|
|
10
|
+
BeefCowDry,0.322,0.8,610,610
|
|
11
|
+
BeefBulls,0.37,1.2,900,900
|
|
12
|
+
BeefBackgrounderSteer,0.322,1.0,250,380
|
|
13
|
+
BeefBackgrounderHeifer,0.322,0.8,240,360
|
|
14
|
+
BeefReplacementHeifers,0.322,0.8,240,360
|
|
15
|
+
BeefFinishingSteer,0.322,1.0,310,610
|
|
16
|
+
BeefFinishingHeifer,0.322,0.8,300,580
|
|
17
|
+
DairyLactatingCow,0.386,0.8,687,687
|
|
18
|
+
DairyDryCow,0.322,0.8,687,687
|
|
19
|
+
DairyHeifers,0.322,0.8,637,687
|
|
20
|
+
DairyBulls,0.37,1.2,1200,1200
|
|
21
|
+
DairyCalves,0.0,0.0,45,127
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# This table is based on a homonym table provided by the Holos source code:
|
|
2
|
+
# https://github.com/holos-aafc/Holos/blob/main/H.Content/Resources/Table_21_Average_Milk_Production_For_Dairy_Cows_By_Province.csv
|
|
3
|
+
# For sake of consistency with the official Canadian Provinces abbreviations (https://www12.statcan.gc.ca/census-recensement/2021/ref/dict/tab/index-eng.cfm?ID=t1_8),
|
|
4
|
+
# the following column names were changed:
|
|
5
|
+
# "NFLD" to "NL"
|
|
6
|
+
# "PEI" to "PE"
|
|
7
|
+
#
|
|
8
|
+
Year,BC,AB,SK,MB,ON,QC,NB,NS,NL,PE
|
|
9
|
+
1990,24.3,23.2,22.2,22.1,21.7,20.3,20.8,21,21,20.9
|
|
10
|
+
1995,26.8,25.5,24.2,24.2,24,22.2,23,23.2,23.1,23.1
|
|
11
|
+
2000,30,29,27.7,27.9,26.5,25.5,26.4,26.8,27.4,26.1
|
|
12
|
+
2005,30.4,29.3,29.3,27.4,26.7,25.9,26.4,26.9,27,27.1
|
|
13
|
+
2010,31.1,30.6,31.1,28.8,27.8,27.3,26.8,27.7,27.4,27.8
|
|
14
|
+
2011,30.7,30.2,30.1,28.3,28,27.4,27,28.3,27.9,28.5
|
|
15
|
+
2012,30.4,30.9,30.6,28.4,28.4,27.4,27.1,27.9,27.9,28.5
|
|
16
|
+
2013,32.7,32.8,32,30.7,30.2,28.7,28.5,29.1,29.6,29.7
|
|
17
|
+
2014,32.6,33,32.9,29.8,29.5,28.8,27.6,28.4,30,29.3
|
|
18
|
+
2015,33,34.2,33.1,30.6,30.1,28.7,27.3,28.9,30.3,29.4
|
|
19
|
+
2016,34,35.5,35.6,34.1,31,29.3,27.6,29.7,30.9,30
|
|
20
|
+
2017,32.2,34.6,35,31.5,31.3,29.8,28.4,30.8,30.5,31.3
|
|
21
|
+
2018,33.9,35.5,37,32,31.3,30.3,29.8,31.1,31.8,31.6
|
|
22
|
+
2019,34.3,35.7,36.4,33.2,32.5,31.2,30.2,32,34.9,33.1
|
|
23
|
+
2020,35.1,34.7,36.2,34.1,33.2,31.5,30.4,31.6,33.7,32.8
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# This table is based on a homonym table provided by the Holos source code:
|
|
2
|
+
# https://github.com/holos-aafc/Holos/blob/main/H.Content/Resources/Table_22_Livestock_Coefficients_For_Sheep.csv
|
|
3
|
+
# For sake of simplicity, the original column names were changed as follows:
|
|
4
|
+
# * Cf (MJ d-1 kg-1) : cf
|
|
5
|
+
# * a (MJ kg-1): a
|
|
6
|
+
# * b (MJ kg-2): b
|
|
7
|
+
# * Initial Weight (kg): Initial Weight
|
|
8
|
+
# * Final Weight (kg): Final Weight
|
|
9
|
+
# * Wool Production (kg year-1): wool production
|
|
10
|
+
# the following column names were changed:
|
|
11
|
+
# "NFLD" to "NL"
|
|
12
|
+
# "PEI" to "PE"
|
|
13
|
+
#
|
|
14
|
+
# The original table along with the associated original notes follows in this comment:
|
|
15
|
+
# Sheep Class, Cf (MJ d-1 kg-1), a (MJ kg-1), b (MJ kg-2), Initial Weight (kg), Final Weight (kg), Wool Production (kg year-1)
|
|
16
|
+
# Ewe,0.217 (1),2.1 (3),0.45 (3),70 (4),70 (4),4 (4)
|
|
17
|
+
# Ram,0.25 (2),2.5 (3),0.35 (3),125 (4),125 (4),4 (4)
|
|
18
|
+
# Weaned Lambs,0.236 (1),3.25 (2),0.385 (2),30 (4),50 (4),0 (4)
|
|
19
|
+
# ,,,,,,
|
|
20
|
+
# "1 IPCC (2019), Table 10.4",,,,,,
|
|
21
|
+
# 2 IPCC (2019) - Cf for intact males is 15% higher than the value for ewes,,,,,,
|
|
22
|
+
# "3 IPCC (2019), Table 10.6",,,,,,
|
|
23
|
+
# 4 Helgason et al. (2005),,,,,,
|
|
24
|
+
#
|
|
25
|
+
Sheep Class,cf,a,b,Initial Weight,Final Weight,Wool Production
|
|
26
|
+
Ewe,0.217,2.1,0.45,70,70,4
|
|
27
|
+
Ram,0.25,2.5,0.35,125,125,4
|
|
28
|
+
Weaned Lambs,0.236,3.25,0.385,30,50,0
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# This table is based on a homonym table provided by the Holos source code:
|
|
2
|
+
# https://github.com/holos-aafc/Holos/blob/main/H.Content/Resources/Table_29_Percentage_Total_Manure_Produced_In_Systems.csv
|
|
3
|
+
# The original data are commented below
|
|
4
|
+
# Animal group,Liquid systems ,Solid storage and drylot (1),"Pasture, range and paddock" (1),Other systems (1),Manureexcreted_rate (kg head-1 day-1)
|
|
5
|
+
# Non-dairy cattle,5.3,45,45,4.2,-9
|
|
6
|
+
# Dairy cattle,64,18,16,2.9,-9
|
|
7
|
+
# Sheep and lambs,0.1,34,66,0.02,1.8 (2)
|
|
8
|
+
# Swine,97,3,0,0,-9
|
|
9
|
+
# Chicken pullets,7,92,0.6,0.6,0.08 (2)
|
|
10
|
+
# Chicken cockerels,7,92,0.6,0.6,0.08 (2)
|
|
11
|
+
# Chicken broilers,7,92,0.6,0.6,0.08 (2)
|
|
12
|
+
# Chicken layers,7,92,0.6,0.6,0.12 (2)
|
|
13
|
+
# Turkeys,7,92,0.6,0.6,0.32 (2)
|
|
14
|
+
# Ducks,7,92,0.6,0.6,0.2 (3)
|
|
15
|
+
# Geese,7,92,0.6,0.6,0.2 (3)(4)
|
|
16
|
+
# Llamas (5),0.03,28,72,0.02,1.8
|
|
17
|
+
# Alpacas (5),0.03,28,72,0.02,1.8
|
|
18
|
+
# Deer (6),0,47,50,3.5,-9
|
|
19
|
+
# Elk (6),0,47,50,3.5,-9
|
|
20
|
+
# Goats,0,42,58,0,3 (2)
|
|
21
|
+
# Horses,0,31,68,0.7,23 (2)
|
|
22
|
+
# Mules (7),0,32,68,0.7,23
|
|
23
|
+
# Bison,0.2,46,50,4,37
|
|
24
|
+
# ,,,,
|
|
25
|
+
# ,,,,
|
|
26
|
+
# ,,,,
|
|
27
|
+
# 1 "Source: ECCC (2022), Table A3.4-18",,,,
|
|
28
|
+
# 2 Calculated from Hofmann and Beaulieu (2006), Table A1 (for all values in Table A1, total manure production consists of feces and urine. Bedding and other types of material such as feather, unused feed, etc. are not included),,,,
|
|
29
|
+
# 3 Lorimor et al. (2004), Table 6,,,,
|
|
30
|
+
# 4 For geese, value for ducks used from Lorimor et al. (2004), Table 6,,,,
|
|
31
|
+
# 5 Assumes that manure handled by animal waste management system (AWMS) and manure excretion rate are the same for llamas and alpacas as for sheep and lambs,,,,
|
|
32
|
+
# 6 Identical distributions for manure handled by AWMS to non-dairy cattle, except that liquid systems are distributed to pasture, range and paddock (PRP),,,,
|
|
33
|
+
# 7 Assumes that manure handled by AWMS and manure excretion rate are the same for mules and asses as for horses,,,,
|
|
34
|
+
#
|
|
35
|
+
# The column title "Manureexcreted_rate (kg head-1 day-1)" was changed into "manure_excreted_rate"
|
|
36
|
+
#
|
|
37
|
+
Animal group,Liquid systems,Solid storage and drylot,"Pasture, range and paddock",Other systems,manure_excreted_rate
|
|
38
|
+
Non-dairy cattle,5.3,45,45,4.2,-9
|
|
39
|
+
Dairy cattle,64,18,16,2.9,-9
|
|
40
|
+
Sheep and lambs,0.1,34,66,0.02,1.8
|
|
41
|
+
Swine,97,3,0,0,-9
|
|
42
|
+
Chicken pullets,7,92,0.6,0.6,0.08
|
|
43
|
+
Chicken cockerels,7,92,0.6,0.6,0.08
|
|
44
|
+
Chicken broilers,7,92,0.6,0.6,0.08
|
|
45
|
+
Chicken layers,7,92,0.6,0.6,0.12
|
|
46
|
+
Turkeys,7,92,0.6,0.6,0.32
|
|
47
|
+
Ducks,7,92,0.6,0.6,0.2
|
|
48
|
+
Geese,7,92,0.6,0.6,0.2
|
|
49
|
+
Llamas,0.03,28,72,0.02,1.8
|
|
50
|
+
Alpacas,0.03,28,72,0.02,1.8
|
|
51
|
+
Deer,0,47,50,3.5,-9
|
|
52
|
+
Elk,0,47,50,3.5,-9
|
|
53
|
+
Goats,0,42,58,0,3
|
|
54
|
+
Horses,0,31,68,0.7,23
|
|
55
|
+
Mules,0,32,68,0.7,23
|
|
56
|
+
Bison,0.2,46,50,4,37
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# This table was automatically generated using "main_tables.py"
|
|
2
|
+
# Table 30. Default bedding application rates and composition of bedding materials for all livestock groups.
|
|
3
|
+
# source: https://github.com/holos-aafc/Holos/blob/396f1ab9bc7247e6d78766f9445c14d2eb7c0d9d/H.Core/Providers/Animals/Table_30_Default_Bedding_Material_Composition_Provider.cs#L15
|
|
4
|
+
#
|
|
5
|
+
AnimalType,BeddingMaterial,TotalNitrogenKilogramsDryMatter,TotalCarbonKilogramsDryMatter,TotalPhosphorusKilogramsDryMatter,CarbonToNitrogenRatio,MoistureContent
|
|
6
|
+
Beef,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
7
|
+
Beef,WoodChip,0.00185,0.506,0.000275,329.5,12.82
|
|
8
|
+
Dairy,Sand,0.0,0.0,0.0,0.0,0.0
|
|
9
|
+
Dairy,SeparatedManureSolid,0.033,0.395,0.0,12.0,0.0
|
|
10
|
+
Dairy,StrawLong,0.0057,0.447,0.000635,90.5,9.57
|
|
11
|
+
Dairy,StrawChopped,0.0057,0.447,0.000635,90.5,9.57
|
|
12
|
+
Dairy,Shavings,0.00185,0.506,0.000275,329.5,10.09
|
|
13
|
+
Dairy,Sawdust,0.00185,0.506,0.000275,329.5,10.99
|
|
14
|
+
Swine,StrawLong,0.0057,0.447,0.000635,90.5,9.57
|
|
15
|
+
Swine,StrawChopped,0.0057,0.447,0.000635,90.5,9.57
|
|
16
|
+
Sheep,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
17
|
+
Sheep,Shavings,0.00185,0.506,0.000275,329.5,10.09
|
|
18
|
+
Poultry,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
19
|
+
Poultry,Shavings,0.00185,0.506,0.000275,329.5,10.09
|
|
20
|
+
Poultry,Sawdust,0.00185,0.506,0.000275,329.5,10.99
|
|
21
|
+
Llamas,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
22
|
+
Alpacas,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
23
|
+
Deer,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
24
|
+
Elk,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
25
|
+
Goats,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
26
|
+
Horses,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
27
|
+
Mules,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
28
|
+
Bison,Straw,0.0057,0.447,0.000635,90.5,9.57
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
2
|
+
# IT = intensive tillage; RT = reduced tillage; NT = no till,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
3
|
+
# "W. Canada - Elwin Smith, personal communication. ",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
4
|
+
# "E. Canada - Jim Dyer, Farm Fieldwork and Fossil Fuel Energy and Emissions (F4E2) model (Efuel) or Dyer and Desjardins 2004 (Eherbicide)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
5
|
+
# "* W. Canada includes BC, AB, SK, MB. E. Canada includes ON, QB, NB, NS, PE, NF.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
6
|
+
# H Use Table 55 to determine crop type in Eastern Canada.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
7
|
+
#
|
|
8
|
+
,AB,AB,AB,AB,AB,AB,SK,SK,SK,SK,SK,SK,MB,MB,MB,MB,MB,MB,ON,ON,ON,QC,QC,QC,NB,NB,NB,NS,NS,NS,NFLD,NFLD,NFLD,PEI,PEI,PEI,BC,BC,BC,BC,BC,BC
|
|
9
|
+
,Black,Black,Black,Brown,Brown,Brown,Black,Black,Black,Brown,Brown,Brown,Black,Black,Black,Brown,Brown,Brown,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,Black,Black,Black,Brown,Brown,Brown
|
|
10
|
+
CROP,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT
|
|
11
|
+
Fallow,2.35,1.71,0.93,1.62,1.16,0.34,2.35,1.71,0.93,1.62,1.16,0.34,2.35,1.71,0.93,1.62,1.16,0.34,,,,,,,,,,,,,,,,,,,,,,,,
|
|
12
|
+
Small grain cereals,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
13
|
+
Wheat,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
14
|
+
Barley,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
15
|
+
Undersown Barley,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
16
|
+
Oats,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
17
|
+
Triticale,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
18
|
+
Sorghum,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
19
|
+
Canary seed,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
20
|
+
Buckwheat,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
21
|
+
Grain corn,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
22
|
+
Mixed grains,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
23
|
+
Durum,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
24
|
+
Corn Silage,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
25
|
+
Barley Silage,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
26
|
+
Oat Silage,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
27
|
+
Triticale Silage,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
28
|
+
Wheat Silage,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
29
|
+
Oilseeds,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
30
|
+
Canola,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
31
|
+
Mustard,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
32
|
+
Flax,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
33
|
+
Pulse crops,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,2.63,2.39,1.43,2.02,1.78,1.42
|
|
34
|
+
Soybean,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,2.63,2.39,1.43,2.02,1.78,1.42
|
|
35
|
+
Beans (dry field),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,2.63,2.39,1.43,2.02,1.78,1.42
|
|
36
|
+
Chickpea,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
37
|
+
Dry pea,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,2.63,2.39,1.43,2.02,1.78,1.42
|
|
38
|
+
Field Pea,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,2.63,2.39,1.43,2.02,1.78,1.42
|
|
39
|
+
Lentil,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,3.11,2.13,1.72,2.63,2.39,1.43,2.02,1.78,1.42
|
|
40
|
+
Potato,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
41
|
+
Sugar Beets,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,3.29,2.3,1.9,2.63,2.39,1.43,2.02,1.78,1.42
|
|
42
|
+
Safflower,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
43
|
+
Sunflower seed,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
44
|
+
Tobacco,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
45
|
+
Vegetables,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
46
|
+
Berries & grapes,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
47
|
+
Other field crops,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
48
|
+
Winter weeds,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
49
|
+
Red clover (Trifolium pratense L.),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
50
|
+
Berseem clover (Trifolium alexandrium L.),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
51
|
+
Sweet clover (Melilotus officinalis),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
52
|
+
Crimson clover (Trifolium incarnatum),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
53
|
+
Hairy Vetch (Vicia villosa roth),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
54
|
+
Alfalfa (Medicago sativa L.),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
55
|
+
Faba bean/broad bean (Vicia faba),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
56
|
+
Cowpea (Vigna unguiculata),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
57
|
+
Austrian winter pea,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
58
|
+
Rapeseed (Brassica Napus L.),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
59
|
+
"Winter turnip rape [Brassica Rapa spp. oleifera L. (cv. ""Largo"")]",2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
60
|
+
Phacelia [Phacelia tanacetifolia (cv. 'Phaci')],2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
61
|
+
Forage radish (Raphanus sativus L.),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
62
|
+
Mustard (Sinapus alba L. subsp. Mairei (H. Lindb.) Maire),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
63
|
+
Barley (Hordeum vulgare),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
64
|
+
Oat (Avena sativa),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
65
|
+
Rye (Secale cereale) / Winter rye / Cereal rye,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
66
|
+
Sesame (Sesamum indicum),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
67
|
+
Flax (Linum usitatissimum),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
68
|
+
Ryegrass (Lolium Perenne L.),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
69
|
+
Annual Ryegrass (Lolium multiflorum),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
70
|
+
Sorghum (Sorghum bicolour),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
71
|
+
Pigeon Bean,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
72
|
+
Shepherd's purse,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
73
|
+
Winter wheat (Triticum aestivum),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
74
|
+
(Fall) Rye,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.83,1.8,1.34,2.63,2.39,1.43,2.02,1.78,1.42
|
|
75
|
+
Rangeland (native),2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,2.63,2.39,1.43,2.02,1.78,1.42
|
|
76
|
+
Perennial forages,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,2.63,2.39,1.43,2.02,1.78,1.42
|
|
77
|
+
Tame grass,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,2.63,2.39,1.43,2.02,1.78,1.42
|
|
78
|
+
Tame legume,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,2.63,2.39,1.43,2.02,1.78,1.42
|
|
79
|
+
Tame mixed,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,2.63,2.39,1.43,2.02,1.78,1.42
|
|
80
|
+
Seeded grassland,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,2.63,2.39,1.43,2.02,1.78,1.42
|
|
81
|
+
Forage for seed,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,2.63,2.39,1.43,2.02,1.78,1.42,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,0.81,2.63,2.39,1.43,2.02,1.78,1.42
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
2
|
+
# IT = intensive tillage; RT = reduced tillage; NT = no till,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
3
|
+
# "W. Canada - Elwin Smith, personal communication. ",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
4
|
+
# "E. Canada - Jim Dyer, Farm Fieldwork and Fossil Fuel Energy and Emissions (F4E2) model (Efuel) or Dyer and Desjardins 2004 (Eherbicide)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
5
|
+
# "* W. Canada includes BC, AB, SK, MB. E. Canada includes ON, QB, NB, NS, PE, NF.",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
6
|
+
# H Use Table 55 to determine crop type in Eastern Canada.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
7
|
+
#
|
|
8
|
+
,AB,AB,AB,AB,AB,AB,SK,SK,SK,SK,SK,SK,MB,MB,MB,MB,MB,MB,ON,ON,ON,QC,QC,QC,NB,NB,NB,NS,NS,NS,NFLD,NFLD,NFLD,PEI,PEI,PEI,BC,BC,BC,BC,BC,BC
|
|
9
|
+
,Black,Black,Black,Brown,Brown,Brown,Black,Black,Black,Brown,Brown,Brown,Black,Black,Black,Brown,Brown,Brown,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,East,Black,Black,Black,Brown,Brown,Brown
|
|
10
|
+
CROP,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT,IT,RT,NT
|
|
11
|
+
Fallow,0.06,0.11,0.6,0,0.07,0.78,0.06,0.11,0.6,0,0.07,0.78,0.06,0.11,0.6,0,0.07,0.78,,,,,,,,,,,,,,,,,,,,,,,,
|
|
12
|
+
Small grain cereals,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
13
|
+
Wheat,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
14
|
+
Barley,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
15
|
+
Undersown Barley,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
16
|
+
Oats,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
17
|
+
Triticale,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
18
|
+
Sorghum,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
19
|
+
Canary seed,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
20
|
+
Buckwheat,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
21
|
+
Grain corn,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
22
|
+
Mixed grains,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
23
|
+
Durum,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
24
|
+
Corn Silage,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
25
|
+
Barley Silage,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
26
|
+
Oat Silage,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
27
|
+
Triticale Silage,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
28
|
+
Wheat Silage,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
29
|
+
Oilseeds,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
30
|
+
Canola,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
31
|
+
Mustard,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
32
|
+
Flax,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
33
|
+
Pulse crops,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
34
|
+
Soybean,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
35
|
+
Beans (dry field),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
36
|
+
Chickpea,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
37
|
+
Dry pea,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
38
|
+
Field Pea,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
39
|
+
Lentil,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
40
|
+
Potato,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
41
|
+
Sugar Beets,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.08,0.12,0.12,0.16,0.23,0.46,0.16,0.23,0.46
|
|
42
|
+
Safflower,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
43
|
+
Sunflower seed,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
44
|
+
Tobacco,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
45
|
+
Vegetables,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
46
|
+
Berries & grapes,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
47
|
+
Other field crops,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
48
|
+
Winter weeds,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
49
|
+
Red clover (Trifolium pratense L.),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
50
|
+
Berseem clover (Trifolium alexandrium L.),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
51
|
+
Sweet clover (Melilotus officinalis),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
52
|
+
Crimson clover (Trifolium incarnatum),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
53
|
+
Hairy Vetch (Vicia villosa roth),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
54
|
+
Alfalfa (Medicago sativa L.),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
55
|
+
Faba bean/broad bean (Vicia faba),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
56
|
+
Cowpea (Vigna unguiculata),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
57
|
+
Austrian winter pea,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
58
|
+
Rapeseed (Brassica Napus L.),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
59
|
+
"Winter turnip rape [Brassica Rapa spp. oleifera L. (cv. ""Largo"")]",0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
60
|
+
Phacelia [Phacelia tanacetifolia (cv. 'Phaci')],0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
61
|
+
Forage radish (Raphanus sativus L.),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
62
|
+
Mustard (Sinapus alba L. subsp. Mairei (H. Lindb.) Maire),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
63
|
+
Barley (Hordeum vulgare),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
64
|
+
Oat (Avena sativa),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
65
|
+
Rye (Secale cereale) / Winter rye / Cereal rye,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
66
|
+
Sesame (Sesamum indicum),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
67
|
+
Flax (Linum usitatissimum),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
68
|
+
Ryegrass (Lolium Perenne L.),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
69
|
+
Annual Ryegrass (Lolium multiflorum),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
70
|
+
Sorghum (Sorghum bicolour),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
71
|
+
Pigeon Bean,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
72
|
+
Shepherd's purse,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
73
|
+
Winter wheat (Triticum aestivum),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
74
|
+
(Fall) Rye,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.24,0.24,0.16,0.23,0.46,0.16,0.23,0.46
|
|
75
|
+
Rangeland (native),0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.23,0.46,0.16,0.23,0.46
|
|
76
|
+
Perennial forages,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.23,0.46,0.16,0.23,0.46
|
|
77
|
+
Tame grass,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.23,0.46,0.16,0.23,0.46
|
|
78
|
+
Tame legume,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.23,0.46,0.16,0.23,0.46
|
|
79
|
+
Tame mixed,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.23,0.46,0.16,0.23,0.46
|
|
80
|
+
Seeded grassland,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.23,0.46,0.16,0.23,0.46
|
|
81
|
+
Forage for seed,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0.16,0.23,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.23,0.46,0.16,0.23,0.46
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# This table is based on a homonym table provided by the Holos source code:
|
|
2
|
+
# https://github.com/holos-aafc/Holos/blob/main/H.Content/Resources/Table_61_Fractions_of_dairy_cattle_N_volatilized.csv
|
|
3
|
+
# For sake of consistency with the official Canadian Provinces abbreviations (https://www12.statcan.gc.ca/census-recensement/2021/ref/dict/tab/index-eng.cfm?ID=t1_8),
|
|
4
|
+
# the column "PEI" was renamed to "PE"
|
|
5
|
+
#
|
|
6
|
+
# original comment:
|
|
7
|
+
# Table 61. Fractions of dairy cattle N volatilized as ammonia resulting from the application of manure N fertilizer,
|
|
8
|
+
# from select years, 1990–2020, at a provincial scale
|
|
9
|
+
# Implied EF (kg NH3-N volatilized kg-1 manure N applied)
|
|
10
|
+
#
|
|
11
|
+
# "Source: ECCC (2022). For years other than the select years in the above table,
|
|
12
|
+
# the volatilization fraction is determined based on the nearest neighbour approach."
|
|
13
|
+
#
|
|
14
|
+
Year,BC,AB,SK,MB,ON,QC,NS,NB,NL,PE,
|
|
15
|
+
1990,0.1,0.13,0.15,0.16,0.18,0.17,0.2,0.2,0.19,0.18,
|
|
16
|
+
1995,0.09,0.13,0.15,0.16,0.18,0.17,0.19,0.19,0.19,0.18,
|
|
17
|
+
2000,0.09,0.12,0.14,0.15,0.17,0.16,0.18,0.18,0.19,0.18,
|
|
18
|
+
2005,0.08,0.11,0.13,0.14,0.17,0.15,0.16,0.17,0.19,0.18,
|
|
19
|
+
2010,0.09,0.11,0.12,0.13,0.16,0.15,0.15,0.16,0.19,0.17,
|
|
20
|
+
2015,0.09,0.11,0.12,0.13,0.16,0.15,0.15,0.16,0.19,0.17,
|
|
21
|
+
2016,0.09,0.11,0.12,0.13,0.16,0.15,0.15,0.16,0.19,0.17,
|
|
22
|
+
2017,0.09,0.11,0.12,0.13,0.16,0.15,0.15,0.16,0.19,0.17,
|
|
23
|
+
2018,0.09,0.11,0.12,0.13,0.16,0.15,0.15,0.16,0.19,0.17,
|
|
24
|
+
2019,0.09,0.11,0.12,0.13,0.16,0.15,0.15,0.16,0.19,0.17,
|
|
25
|
+
2020,0.09,0.11,0.12,0.13,0.16,0.15,0.15,0.16,0.19,0.17,
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# This table is based on a homonym table provided by the Holos source code:
|
|
2
|
+
# https://github.com/holos-aafc/Holos/blob/main/H.Content/Resources/Table_62_Fractions_of_swine_N_volatilized.csv
|
|
3
|
+
# For sake of consistency with the official Canadian Provinces abbreviations (https://www12.statcan.gc.ca/census-recensement/2021/ref/dict/tab/index-eng.cfm?ID=t1_8),
|
|
4
|
+
# the column "PEI" was renamed to "PE"
|
|
5
|
+
#
|
|
6
|
+
# original comment:
|
|
7
|
+
# "Table 62. Fractions of swine N volatilized as ammonia resulting from the application of manure N fertilizer,
|
|
8
|
+
# from select years, 1990–2020, at a provincial scale"
|
|
9
|
+
# Implied EF (kg NH3-N volatilized kg-1 manure N applied)
|
|
10
|
+
#
|
|
11
|
+
# Source: ECCC (2022). For years other than the select years in the above table, the volatilization fraction is
|
|
12
|
+
# determined based on the nearest neighbour approach.
|
|
13
|
+
#
|
|
14
|
+
Year,BC,AB,SK,MB,ON,QC,NS,NB,NL,PE,
|
|
15
|
+
1990,0.22,0.14,0.15,0.14,0.21,0.26,0.28,0.28,0.22,0.28,
|
|
16
|
+
1995,0.22,0.13,0.13,0.12,0.21,0.25,0.27,0.27,0.22,0.27,
|
|
17
|
+
2000,0.22,0.13,0.12,0.11,0.2,0.25,0.25,0.25,0.23,0.26,
|
|
18
|
+
2005,0.22,0.12,0.12,0.11,0.2,0.24,0.24,0.25,0.22,0.25,
|
|
19
|
+
2010,0.21,0.12,0.12,0.11,0.2,0.24,0.23,0.24,0.23,0.25,
|
|
20
|
+
2015,0.21,0.13,0.12,0.11,0.2,0.24,0.25,0.24,0.22,0.25,
|
|
21
|
+
2016,0.21,0.13,0.12,0.11,0.2,0.24,0.25,0.24,0.22,0.25,
|
|
22
|
+
2017,0.21,0.13,0.12,0.11,0.2,0.24,0.25,0.24,0.22,0.25,
|
|
23
|
+
2018,0.21,0.13,0.12,0.11,0.2,0.24,0.25,0.24,0.22,0.25,
|
|
24
|
+
2019,0.21,0.13,0.12,0.11,0.2,0.24,0.25,0.24,0.22,0.25,
|
|
25
|
+
2020,0.2,0.13,0.12,0.11,0.2,0.24,0.26,0.24,0.23,0.25,
|