pyholos 0.0.1__py3-none-any.whl → 0.1.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.

Files changed (31) hide show
  1. pyholos/components/animals/common.py +1 -1
  2. pyholos/components/land_management/carbon/relative_biomass_information.py +1 -1
  3. pyholos/components/land_management/carbon/tillage.py +1 -1
  4. pyholos/components/land_management/common.py +1 -1
  5. pyholos/components/land_management/field_system.py +1 -1
  6. pyholos/components/land_management/utils.py +1 -1
  7. pyholos/farm/farm_inputs.py +1 -1
  8. pyholos/soil.py +1 -1
  9. pyholos/version.py +5 -0
  10. {pyholos-0.0.1.dist-info → pyholos-0.1.1.dist-info}/METADATA +21 -16
  11. pyholos-0.1.1.dist-info/RECORD +41 -0
  12. {pyholos-0.0.1.dist-info → pyholos-0.1.1.dist-info}/WHEEL +2 -1
  13. pyholos-0.1.1.dist-info/top_level.txt +1 -0
  14. pyholos/resources/holos/Table_16_Livestock_Coefficients_BeefAndDairy_Cattle_Provider.csv +0 -21
  15. pyholos/resources/holos/Table_21_Average_Milk_Production_For_Dairy_Cows_By_Province.csv +0 -23
  16. pyholos/resources/holos/Table_22_Livestock_Coefficients_For_Sheep.csv +0 -28
  17. pyholos/resources/holos/Table_29_Percentage_Total_Manure_Produced_In_Systems.csv +0 -56
  18. pyholos/resources/holos/Table_30_Default_Bedding_Material_Composition_Provider.csv +0 -28
  19. pyholos/resources/holos/Table_50_Fuel_Energy_Requirement_Estimates_By_Region.csv +0 -81
  20. pyholos/resources/holos/Table_51_Herbicide_Energy_Requirement_Estimates_By_Region.csv +0 -81
  21. pyholos/resources/holos/Table_61_Fractions_of_dairy_cattle_N_volatilized.csv +0 -25
  22. pyholos/resources/holos/Table_62_Fractions_of_swine_N_volatilized.csv +0 -25
  23. pyholos/resources/holos/Table_6_Manure_Types_And_Default_Composition.csv +0 -126
  24. pyholos/resources/holos/Table_7_Relative_Biomass_Information.csv +0 -112
  25. pyholos/resources/holos/Table_9_Default_Values_For_Nitrogen_Lignin_In_Crops.csv +0 -72
  26. pyholos/resources/holos/Table_Tillage_Factor.csv +0 -13
  27. pyholos/resources/holos/feeds.csv +0 -223
  28. pyholos/resources/holos/small_area_yields.csv +0 -167159
  29. pyholos/resources/soil_landscapes_of_canada_v3r2.zip +0 -0
  30. pyholos-0.0.1.dist-info/RECORD +0 -55
  31. {pyholos-0.0.1.dist-info → pyholos-0.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -7,12 +7,12 @@ from pydantic import BaseModel, Field, NonNegativeFloat
7
7
  from pyholos import utils
8
8
  from pyholos.common import (ClimateZones, EnumGeneric, HolosVar, Region,
9
9
  get_climate_zone, get_region)
10
+ from pyholos.common2 import CanadianProvince
10
11
  from pyholos.components.common import (
11
12
  ComponentCategory,
12
13
  calculate_fraction_of_nitrogen_lost_by_leaching_and_runoff)
13
14
  from pyholos.config import PathsHolosResources
14
15
  from pyholos.defaults import Defaults
15
- from pyholos.common2 import CanadianProvince
16
16
  from pyholos.soil import SoilTexture
17
17
  from pyholos.utils import AutoNameEnum, read_holos_resource_table
18
18
 
@@ -2,12 +2,12 @@ from dataclasses import dataclass, field
2
2
 
3
3
  from pydantic import BaseModel, Field, NonNegativeFloat
4
4
 
5
+ from pyholos.common2 import CanadianProvince
5
6
  from pyholos.components.common import convert_province_name
6
7
  from pyholos.components.land_management.common import IrrigationType
7
8
  from pyholos.components.land_management.crop import (CropType,
8
9
  convert_crop_type_name)
9
10
  from pyholos.config import PathsHolosResources
10
- from pyholos.common2 import CanadianProvince
11
11
  from pyholos.utils import clean_string
12
12
 
13
13
 
@@ -1,8 +1,8 @@
1
1
  from pyholos.common import verify_is_prairie_province
2
+ from pyholos.common2 import CanadianProvince
2
3
  from pyholos.components.land_management.common import TillageType
3
4
  from pyholos.components.land_management.crop import CropType
4
5
  from pyholos.config import PathsHolosResources
5
- from pyholos.common2 import CanadianProvince
6
6
  from pyholos.soil import SoilFunctionalCategory
7
7
  from pyholos.utils import read_holos_resource_table
8
8
 
@@ -4,11 +4,11 @@ from pathlib import Path
4
4
  from pandas import DataFrame, MultiIndex
5
5
 
6
6
  from pyholos.common import Region, get_region
7
+ from pyholos.common2 import CanadianProvince
7
8
  from pyholos.components.common import convert_province_name
8
9
  from pyholos.components.land_management.crop import (CropType,
9
10
  convert_crop_type_name)
10
11
  from pyholos.config import PathsHolosResources
11
- from pyholos.common2 import CanadianProvince
12
12
  from pyholos.soil import (SoilFunctionalCategory,
13
13
  convert_soil_functional_category_name)
14
14
  from pyholos.utils import (AutoNameEnum, keep_alphabetical_characters,
@@ -1,6 +1,7 @@
1
1
  from uuid import UUID
2
2
 
3
3
  from pyholos.common import Component, HolosVar
4
+ from pyholos.common2 import CanadianProvince
4
5
  from pyholos.components.animals.common import (ManureAnimalSourceTypes,
5
6
  ManureLocationSourceType,
6
7
  ManureStateType)
@@ -21,7 +22,6 @@ from pyholos.components.land_management.crop import (CropType,
21
22
  get_nitrogen_fixation)
22
23
  from pyholos.core_constants import CoreConstants
23
24
  from pyholos.defaults import Defaults
24
- from pyholos.common2 import CanadianProvince
25
25
  from pyholos.soil import SoilFunctionalCategory
26
26
 
27
27
  TABLE_9 = parse_table_9()
@@ -1,8 +1,8 @@
1
+ from pyholos.common2 import CanadianProvince
1
2
  from pyholos.components.common import convert_province_name
2
3
  from pyholos.components.land_management.crop import (CropType,
3
4
  convert_crop_type_name)
4
5
  from pyholos.config import PathsHolosResources
5
- from pyholos.common2 import CanadianProvince
6
6
  from pyholos.utils import read_holos_resource_table
7
7
 
8
8
 
@@ -6,6 +6,7 @@ from pydantic import (BaseModel, Field, NonNegativeFloat, NonNegativeInt,
6
6
  PositiveFloat, PositiveInt, confloat, conint, conlist,
7
7
  field_validator)
8
8
 
9
+ from pyholos.common2 import CanadianProvince
9
10
  from pyholos.components.animals import beef, dairy, sheep
10
11
  from pyholos.components.animals.common import (BeddingMaterialType, Diet,
11
12
  DietAdditiveType, HousingType,
@@ -25,7 +26,6 @@ from pyholos.components.land_management.common import (FertilizerBlends,
25
26
  from pyholos.components.land_management.crop import CropType
26
27
  from pyholos.components.land_management.field_system import CropViewItem
27
28
  from pyholos.core_constants import CoreConstants
28
- from pyholos.common2 import CanadianProvince
29
29
  from pyholos.soil import SoilFunctionalCategory, SoilTexture
30
30
  from pyholos.utils import concat_lists
31
31
 
pyholos/soil.py CHANGED
@@ -2,8 +2,8 @@ from enum import StrEnum, auto, unique
2
2
 
3
3
  from pyholos import common2
4
4
  from pyholos.common import Region, get_region
5
- from pyholos.config import PathsSlcData
6
5
  from pyholos.common2 import CanadianProvince
6
+ from pyholos.config import PathsSlcData
7
7
  from pyholos.utils import AutoNameEnum, keep_alphabetical_characters
8
8
 
9
9
 
pyholos/version.py ADDED
@@ -0,0 +1,5 @@
1
+ major = 0
2
+ minor = 1
3
+ post = 1
4
+
5
+ __version__ = ".".join([str(s) for s in (major, minor, post)])
@@ -1,16 +1,21 @@
1
- Metadata-Version: 2.4
2
- Name: pyholos
3
- Version: 0.0.1
4
- Summary: A Python package for running the HOLOS 4.0 CLI.
5
- Project-URL: Homepage, https://github.com/Mon-Systeme-Fourrager/pyholos
6
- Project-URL: Issues, https://github.com/Mon-Systeme-Fourrager/pyholos/issues
7
- Author-email: Rami ALBASHA <ralbasha@msfourrager.com>
8
- License-File: LICENSE
9
- Classifier: Operating System :: OS Independent
10
- Classifier: Programming Language :: Python :: 3
11
- Requires-Python: >=3.12
12
- Description-Content-Type: text/markdown
13
-
14
- # Welcome to PyHolos, the Python wrapper for Holos CLI! (and beyond)
15
- Description in progress
16
-
1
+ Metadata-Version: 2.4
2
+ Name: pyholos
3
+ Version: 0.1.1
4
+ Summary: A Python package for running the HOLOS 4.0 CLI.
5
+ Author-email: Rami ALBASHA <ralbasha@msfourrager.com>
6
+ Project-URL: Homepage, https://github.com/Mon-Systeme-Fourrager/pyholos
7
+ Project-URL: Issues, https://github.com/Mon-Systeme-Fourrager/pyholos/issues
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.12
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: geojson>=3.1.0
14
+ Requires-Dist: shapely>=2.0.6
15
+ Requires-Dist: pandas>=2.2.3
16
+ Requires-Dist: pydantic>=2.10.6
17
+ Dynamic: license-file
18
+
19
+ # Welcome to PyHolos, the Python wrapper for Holos CLI! (and beyond)
20
+ Description in progress
21
+
@@ -0,0 +1,41 @@
1
+ pyholos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ pyholos/common.py,sha256=JOnsBjlxWAmzyGLkuNoTACEfuVAuCg8EqwnAcFNOQT4,4822
3
+ pyholos/common2.py,sha256=Dy9f1LiCfNCEbHNZ4db25W4n9VyP4HaOsAIO7TfKOAQ,7364
4
+ pyholos/config.py,sha256=BxtTMji7gDFq_aqhMs31MrMd5NUs7i1yScgJZI2oz9A,2521
5
+ pyholos/core_constants.py,sha256=NSrQ0EuZY_riybgHHLLKyvhrCbOKAYLj1sTo6H0aX_8,888
6
+ pyholos/defaults.py,sha256=n0qKQcKv7ey7ze4lONTSwYGfd7y3RogGEmXkyV8WHig,4842
7
+ pyholos/launching.py,sha256=e1Jcu7w2BDMnG5xxXQhxkqL-aqrQ5qQ6e7mw9mHmM4E,2530
8
+ pyholos/soil.py,sha256=LbQ1yDdmg8QRLxPWe0ORX69aMEdiNL5tLY_4Ll4q-xs,20167
9
+ pyholos/utils.py,sha256=IPb7Sx0jw-w7r46t0MXgVqHZIiJwBbVei8gPqcoHO7s,2571
10
+ pyholos/version.py,sha256=VLs_8yvfLSUZIFSBG1WqdvS3j24tC4r6ECtk3625ZSA,96
11
+ pyholos/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ pyholos/components/common.py,sha256=ZEt4GOjJGRN66chjtSPHo2R-u9wnrkpUkV17W0m7BF8,6788
13
+ pyholos/components/animals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ pyholos/components/animals/beef.py,sha256=jxL7Hh0A_zPpUOD1yWv7O9nMMtdLab-qP4KmQmlvlng,34373
15
+ pyholos/components/animals/common.py,sha256=lJ0y9Kx_V_qYNPEZ33fUdJLcPD2LnB3dxbVPYEFCxaU,95832
16
+ pyholos/components/animals/dairy.py,sha256=NDqOGRsQTXmYYflwkdhTF8rE2AuSMA8HzXCtNrxB1zA,16846
17
+ pyholos/components/animals/sheep.py,sha256=G0JcPA0enXIES7RC7jqlXOy88GQExEperCjcNn1l1fQ,18689
18
+ pyholos/components/land_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ pyholos/components/land_management/common.py,sha256=5yvhD1POYW5NNNtNtL9vxty3B0ekW5t3lYR-mW3eVEk,7639
20
+ pyholos/components/land_management/crop.py,sha256=3NHDLUCwO2LRo56gBT_yHrPKR8whn0dnjtL13Swzms8,42880
21
+ pyholos/components/land_management/field_system.py,sha256=dYsbFA46YgBXdP19uv7wrRtLfa0_3U7j9cma3yL-wTg,24792
22
+ pyholos/components/land_management/utils.py,sha256=O5rE46_yhG73O5HXjpDJbd8P0BIiNoKYrdYfiynBha8,2654
23
+ pyholos/components/land_management/carbon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ pyholos/components/land_management/carbon/climate.py,sha256=1qMnYYJtmoe4yv4x_XrnhDIgrylE_yzrcszOG4XXfoY,34645
25
+ pyholos/components/land_management/carbon/management.py,sha256=_3MfAdAqaTFjkBRvUtKd76ShsYm_U2Jc6JHDOErYSg4,771
26
+ pyholos/components/land_management/carbon/relative_biomass_information.py,sha256=V9Eq6I5d4wWWSQl7nwkUf16o2o1VcwBy8V-a3JD88q8,17808
27
+ pyholos/components/land_management/carbon/tillage.py,sha256=bjpkz90DLIPaZXHgRN3hMQ5KJj08_-qpviF1aWQ31J0,3110
28
+ pyholos/farm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ pyholos/farm/enums.py,sha256=DEMGOTB-VmILVCcpoNfWV1FViiJ0TeJkG36_HRiLKEY,1978
30
+ pyholos/farm/farm.py,sha256=XiiDtxoIEwu_uGu2f7A_qUMjYO04g6ZPt_MUf275u_4,4056
31
+ pyholos/farm/farm_inputs.py,sha256=g3WKw4lqIcmEOVYpUU73uQlAp9VhGJPsTa462lzWlMk,26749
32
+ pyholos/farm/farm_settings.py,sha256=KJhz39K0zUGt269zBh_E_YXA6JXkzvoGAvQMzCE9Amc,28952
33
+ pyholos/postprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ pyholos/postprocessing/plots.py,sha256=LvucTQQQCO6mjZavSRlECOA7KNtOIhNmsOLkLKoRYCE,5522
35
+ pyholos/postprocessing/postprocessing.py,sha256=Q7r8ceUEJymBztSdFB46YxoZ0Gyik1VwVWZGVvQ8XuE,1400
36
+ pyholos/resources/holos/main_tables.py,sha256=WZMt22Q_S2EcxWAIczYc-Tje0ALy6bz-n_vTasxD7Q0,24018
37
+ pyholos-0.1.1.dist-info/licenses/LICENSE,sha256=C8amDSvgy941IWtTFploX0NSyjBHHB0biiEKEX85XM0,35976
38
+ pyholos-0.1.1.dist-info/METADATA,sha256=SH6QqqkmyZcB9ch7zrWmWy2mr0LfK3jhCtLP-ZffS48,751
39
+ pyholos-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
40
+ pyholos-0.1.1.dist-info/top_level.txt,sha256=-OdNFZ9lbJWvWGkFjszJHZdIr8ggnJnnIaNMaCfdwuI,8
41
+ pyholos-0.1.1.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pyholos
@@ -1,21 +0,0 @@
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
@@ -1,23 +0,0 @@
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
@@ -1,28 +0,0 @@
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
@@ -1,56 +0,0 @@
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
@@ -1,28 +0,0 @@
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
@@ -1,81 +0,0 @@
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
@@ -1,81 +0,0 @@
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
@@ -1,25 +0,0 @@
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,