-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat (workflow): new food intake example
- Loading branch information
Showing
17 changed files
with
475,402 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# U.S. EPA Food Commodity Intake Database (FCID) | ||
|
||
| Table | File | Description | | ||
| ----- | ---- | ----------- | | ||
| FCID Recipe Database | [Recipes_WWEIA_FCID_0510.csv](https://fcid.foodrisk.org/dbc/csv2014Q4/Recipes_WWEIA_FCID_0510.csv) | U.S. EPA recipe database to translate WWEIA food consumption to consumption of agricultural food commodities | | ||
| WWEIA Food Code Descriptions | [Food_Code_Description.csv](https://fcid.foodrisk.org/dbc/csv2014Q4/Food_Code_Description.csv) | Text descriptions of WWEIA food codes | | ||
| FCID Commodity Code Descriptions | [FCID_Code_Description.csv](https://fcid.foodrisk.org/dbc/csv2014Q4/FCID_Code_Description.csv) | Text descriptions of U.S. EPA FCID commodity codes | | ||
| FCID Crop Group Descriptions | [FCID_Cropgroup_Description.csv](https://fcid.foodrisk.org/dbc/csv2014Q4/FCID_Cropgroup_Description.csv) | Text descriptions of U.S. EPA FCID crop groups | | ||
| FCID Food Form Descriptions | [Food_Form_Description.csv](https://fcid.foodrisk.org/dbc/csv2014Q4/Food_Form_Description.csv) | Text descriptions of U.S. EPA food form codes | | ||
| FCID Cooked Status Descriptions | [Cooked_Status_Description.csv](https://fcid.foodrisk.org/dbc/csv2014Q4/Cooked_Status_Description.csv) | Text descriptions of U.S. EPA cooking status codes | | ||
| FCID Cooking Method Descriptions | [Cooking_Method_Description.csv](https://fcid.foodrisk.org/dbc/csv2014Q4/Cooking_Method_Description.csv) | Text descriptions of U.S. EPA cooking method codes | | ||
|
||
|
||
|
||
|
||
| Food_Code | | ||
| FCID_Code | | ||
|
||
Code of the food. Foreign key to the WWEIA Food Code Descriptions table. | ||
Code of the ingredient (commodity). Foreign key to the FCID Commodity Code Descriptions table. | ||
Modification code. Code of a modified version of the current food. Zero means unmodified. | ||
Ingredient number. Sequential number ordering the ingredients. | ||
Cooked status. Foreign key to the FCID Cooked Status Descriptions table. | ||
Cooking method. Foreign key to the FCID Cooking Method Descriptions table. | ||
Food form. Foreign key to the FCID Food Form Descriptions table. | ||
Participation of this ingredient (commodity) in the recipe weight -- in percentual. | ||
|
||
https://fcid.foodrisk.org/docs/WWEIA-FCID_0510_Background-Codebooks-ControlStats.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Cooked_Status,count,cooked_status_desc | ||
1,9947,Uncooked | ||
2,80460,Cooked | ||
9,39429,Refined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Cooking_Method,count,cooking_method_desc | ||
0,81475,Not specified | ||
1,17056,Baked | ||
2,18693,Boiled | ||
3,10507,Fried | ||
4,754,Fried or baked | ||
5,1351,Boiled or baked |
Oops, something went wrong.