Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix management group #128

Merged
merged 19 commits into from
May 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: OBIC
Type: Package
Title: Functions for the Open Bodem Index (OBI)
Version: 1.0.0
Version: 1.0.1
Authors@R: c(
person("Sven", "Verweij", email = "[email protected]", role = c("aut","cre")),
person("Gerard", "Ros", email = "[email protected]", role = "aut"),
Expand Down
28 changes: 4 additions & 24 deletions DEV/data/column_description.csv
Original file line number Diff line number Diff line change
Expand Up @@ -100,30 +100,10 @@ I_E_NGW;indicator;N vasthoudend vermogen voor grondwater;Nitrogen retention for
I_E_NSW;indicator;N vasthoudend vermogen voor oppervlaktewater;Nitrogen retention for surface water;;
I_M;indicator;Label Duurzaam Bodembeheer;Soil management evaluation;;
I_BCS;indicator;BodemConditieScore;Visual Soil Condition Score;;
I_B_EW_BCS;indicator;Regenwormen;Earth worms;;
I_P_C_BCS;indicator;Aanwezigheid van scheuren;Cracks;;
I_P_CC_BCS;indicator;Gewasbedekking;Crop cover;;
I_P_GS_BCS;indicator;Aantal gekleurde vlekken;Gley spots;;
I_P_P_BCS;indicator;Plasvorming;Ponding;;
I_P_RD_BCS;indicator;Beworteling;Root depth;;
I_P_RT_BCS;indicator;Spoorvorming/ vertrapping;Rutting / trampling;;
I_P_SC_BCS;indicator;Verdichting ondergrond;Subsoil compaction;;
I_P_SS_BCS;indicator;Bodemstructuur;Soil structure;;
I_M_LIME;indicator;Is perceel in afgelopen 3 jaar bekalkt;Has field been limed in last three years;;
I_M_GREEN;indicator;Gebruik groenbemesters;Use of green manure;;
I_M_COMPOST;indicator;Frequentie compostgebruik;Frequency of compost application;;
I_M_NONBARE;indicator;Is het perceel 80% van het jaar groen;Field 80% of the year green;;
I_M_EARLYCROP;indicator;wordt berijding in het najaar vermeden (vroege rassen);Use of early crops;;
I_M_SLEEPHOSE;indicator;wordt drijfmest toegediend via sleepslangbemesting;Manure application using sleep hoses;;
I_M_DRAIN;indicator;is er onderwaterdrainage aangelegd (veen);Under water drains available;;
I_M_DITCH;indicator;worden sloten op diepte gehouden en het bagger benut;Ditch is cleaned and sludge is applied;;
I_M_UNDERSEED;indicator;is er grasonderzaai in mais toegepast;Underseed of grass at maize;;
I_M_NONINVTILL;indicator;Niet Kerende Grondbewerking;Non inversion tillage;;
I_M_SSPM;indicator;worden er bodemstructuur beschermende maatregelen genomen (vaste rijpaden, lage bandenspanning, lage wiellast)?;Soil Structure Protection Measures;;
I_M_SOLIDMANURE;indicator;gebruik vaste mest boven drijfmest en kunstmest;Use of solid manure;;
I_M_STRAWRESIDUE;indicator;wordt stro ondergewerkt;Application of straw residues;;
I_M_MECHWEEDS;indicator;mechanische onkruidbestrijding;Use of mechanical weed protection;;
I_M_PESTICIDES_DST;indicator;beslissingsondersteunde systemen gewasbescherming;Use of DST for pesticides;;
I_M_SOILFERTILITY;indicator;bodemmanagementscore voor bodemvruchtbaarheid;integrated soil management indicator for soil fertility;;
I_M_CLIMATE;indicator;bodemmanagementscore voor klimaatmitigatie;integrated soil management indicator for soil carbon sequestration;;
I_M_WATERQUALITY;indicator;bodemmanagementscore voor waterkwaliteit;integrated soil management indicator for waterquality;;
I_M_BIODIVERSITY;indicator;bodemmanagementscore voor bodembiodiversiteit;integrated soil management indicator for soil biodiversity;;
M_LIME;measurement;Is perceel in afgelopen 3 jaar bekalkt;Has field been limed in last three years;ja/nee;
M_GREEN;measurement;Gebruik groenbemesters;Use of green manure;ja/nee;
M_COMPOST;measurement;Frequentie compostgebruik;Frequency of compost application;;
Expand Down
Binary file modified DEV/data/column_description_obic.rds
Binary file not shown.
16 changes: 16 additions & 0 deletions DEV/data/maatregel_groep.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
measure;description;I_M_SOILFERTILITY;I_M_CLIMATE;I_M_WATERQUALITY;I_M_BIODIVERSITY
M_COMPOST;Frequency of compost application;1;1;0;1
M_DITCH;Ditch is cleaned and sludge is applied;0;0;1;0
M_DRAIN;Drains available;0;1;1;0
M_EARLYCROP;Use of early crops;1;1;1;1
M_GREEN;Use of green manure;1;1;1;1
M_LIME;Has field been limed in last three years;1;0;0;0
M_MECHWEEDS;Use of mechanical weed protection;0;0;1;0
M_NONBARE;Field 80% of the year green;0;1;1;0
M_NONINVTILL;Non inversion tillage;1;1;0;1
M_PESTICIDES_DST;Use of DST for pesticides;0;0;1;1
M_SLEEPHOSE;Manure application using sleep hoses;1;0;0;0
M_SOLIDMANURE;Use of solid manure;1;1;0;1
M_SSPM;Soil Structure Protection Measures;1;0;1;1
M_STRAWRESIDUE;Application of straw residues;1;1;0;1
M_UNDERSEED;Underseed of grass at maize;0;1;1;0
Loading