@osfarm/itineraire-technique 1.0.0
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.
- package/.github/workflows/publish.yml +32 -0
- package/LICENSE +21 -0
- package/README.md +27 -0
- package/css/styles-editor.css +1 -0
- package/css/styles-editor.css.map +1 -0
- package/css/styles-rendering.css +1 -0
- package/css/styles-rendering.css.map +1 -0
- package/editor.html +725 -0
- package/images/rendu_frise.png +0 -0
- package/images/rendu_rotation.png +0 -0
- package/js/chart-render.js +853 -0
- package/js/editor-attributes.js +96 -0
- package/js/editor-crops.js +78 -0
- package/js/editor-export.js +118 -0
- package/js/editor-interventions.js +117 -0
- package/package.json +16 -0
- package/rendu_statique_1.html +664 -0
- package/scss/styles-editor.scss +106 -0
- package/scss/styles-rendering.scss +101 -0
- package/test/itk-templates/export-itk-1.json +153 -0
- package/test/test.json +324 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
$button-color: green;
|
|
2
|
+
$button-hover-color: rgb(2, 102, 2);
|
|
3
|
+
$button-text-color: white;
|
|
4
|
+
$header-height: 3rem;
|
|
5
|
+
|
|
6
|
+
.main-header {
|
|
7
|
+
background-color: green;
|
|
8
|
+
color: white;
|
|
9
|
+
height: $header-height;
|
|
10
|
+
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.editor-view {
|
|
16
|
+
overflow-y: auto;
|
|
17
|
+
|
|
18
|
+
//scrollbar only for the editor
|
|
19
|
+
height: calc(100vh - #{$header-height + 1rem});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Add a button in the rotation to edit right from the transcript
|
|
23
|
+
.rotation_item {
|
|
24
|
+
.step-edit {
|
|
25
|
+
color: #878787;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
display:none;
|
|
28
|
+
margin-left: 10px;
|
|
29
|
+
font-size: 70%;
|
|
30
|
+
vertical-align: super;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:hover .step-edit {
|
|
34
|
+
display: inline !important;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.welcome-view {
|
|
39
|
+
background-color: rgb(169, 233, 169);
|
|
40
|
+
color: green;
|
|
41
|
+
padding: 1rem;
|
|
42
|
+
margin-top: 1rem;
|
|
43
|
+
border-radius: 1rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.card-white {
|
|
47
|
+
background-color: white;
|
|
48
|
+
padding: 1rem;
|
|
49
|
+
border-radius: 1rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.card-holder {
|
|
53
|
+
background-color: whitesmoke;
|
|
54
|
+
padding: 1rem;
|
|
55
|
+
border-radius: 1rem;
|
|
56
|
+
margin: auto
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.editable-row {
|
|
60
|
+
background-color: #f7f7f7;
|
|
61
|
+
min-height: 3rem;
|
|
62
|
+
|
|
63
|
+
display: flex;
|
|
64
|
+
align-items: center;
|
|
65
|
+
|
|
66
|
+
border-radius: 0.5rem;
|
|
67
|
+
|
|
68
|
+
.edit-buttons {
|
|
69
|
+
visibility: hidden;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&:hover > .edit-buttons {
|
|
73
|
+
visibility: visible;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.primary-button {
|
|
78
|
+
color: $button-text-color;
|
|
79
|
+
background-color: $button-color;
|
|
80
|
+
border: $button-color;
|
|
81
|
+
|
|
82
|
+
&:hover {
|
|
83
|
+
background-color: $button-hover-color;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
.close-step-times {
|
|
89
|
+
background: none;
|
|
90
|
+
border: none;
|
|
91
|
+
color: #878787;
|
|
92
|
+
font-size: 120%;
|
|
93
|
+
|
|
94
|
+
&:hover {
|
|
95
|
+
color: #494949;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
#cropsContainer .drag-handle {
|
|
100
|
+
color: #CCC;
|
|
101
|
+
font-weight: normal;
|
|
102
|
+
font-size: 86%;
|
|
103
|
+
margin-right: 10px;
|
|
104
|
+
vertical-align: middle;
|
|
105
|
+
cursor: grab;
|
|
106
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
div.rotation_item {
|
|
2
|
+
background-color: #F8FAFC;
|
|
3
|
+
border-left : #FFFFFF 14px solid;
|
|
4
|
+
border-radius : 7px;
|
|
5
|
+
padding : 13px;
|
|
6
|
+
margin : 12px 0;
|
|
7
|
+
overflow-x : hidden;
|
|
8
|
+
|
|
9
|
+
&.highlighted {
|
|
10
|
+
box-shadow: 0px 4px 4px 0px var(--UI-Shadow, rgba(17, 36, 69, 0.16)),
|
|
11
|
+
0px 1px 16px 0px var(--UI-Shadow, rgba(17, 36, 69, 0.16));
|
|
12
|
+
background-color: #F0F3F5;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
h4 {
|
|
16
|
+
margin-bottom: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
div.step_dates {
|
|
20
|
+
font-size : 11px;
|
|
21
|
+
float : right;
|
|
22
|
+
background-color: #cdcccc;
|
|
23
|
+
color : #ffffff;
|
|
24
|
+
margin-right : 45px;
|
|
25
|
+
padding : 2px 5px;
|
|
26
|
+
border-radius : 5px;
|
|
27
|
+
margin-top: 7px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
div.collapse-button {
|
|
31
|
+
float : right;
|
|
32
|
+
border-radius: 50%;
|
|
33
|
+
width : 30px;
|
|
34
|
+
height : 30px;
|
|
35
|
+
text-align : center;
|
|
36
|
+
padding-top : 5px;
|
|
37
|
+
cursor : pointer;
|
|
38
|
+
background : #dfe6f7;
|
|
39
|
+
color : #7a8bad;
|
|
40
|
+
transition : transform 0.3s ease-in-out;
|
|
41
|
+
margin-top : -26px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.show-all {
|
|
45
|
+
div.collapse-button {
|
|
46
|
+
transform: rotate(180deg);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
div.details {
|
|
50
|
+
max-height: 10000px;
|
|
51
|
+
/* Adjust this value as needed */
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
div.details {
|
|
56
|
+
max-height: 0px;
|
|
57
|
+
overflow : hidden;
|
|
58
|
+
transition: max-height 0.3s ease-in-out;
|
|
59
|
+
|
|
60
|
+
div.intervention {
|
|
61
|
+
background-color: #FFFFFF;
|
|
62
|
+
border-radius : 5px;
|
|
63
|
+
margin-bottom : 11px;
|
|
64
|
+
padding : 13px;
|
|
65
|
+
cursor : pointer;
|
|
66
|
+
|
|
67
|
+
span.intervention_title {
|
|
68
|
+
font-weight: bold;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
span.intervention_date {
|
|
72
|
+
color : #707070;
|
|
73
|
+
background-color: #F0F3F5;
|
|
74
|
+
float : right;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
div.intervention_description {
|
|
78
|
+
margin-top: 5px;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.step-edit {
|
|
84
|
+
display: none;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.charts {
|
|
89
|
+
width : 100%;
|
|
90
|
+
height : 500px;
|
|
91
|
+
display: inline-block;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.transcript {
|
|
95
|
+
font-size : 80%;
|
|
96
|
+
width : 100%;
|
|
97
|
+
max-height : 450px;
|
|
98
|
+
overflow-y : scroll;
|
|
99
|
+
scroll-behavior: smooth;
|
|
100
|
+
padding : 3px;
|
|
101
|
+
}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Itin\u00e9raire technique de ma ferme - test version",
|
|
3
|
+
"options": {
|
|
4
|
+
"view": "horizontal",
|
|
5
|
+
"show_transcript": true,
|
|
6
|
+
"title_top_interventions": "Contr\u00f4le adventices",
|
|
7
|
+
"title_bottom_interventions": "Apport azote",
|
|
8
|
+
"title_steps": "Rotation des cultures"
|
|
9
|
+
},
|
|
10
|
+
"steps": [
|
|
11
|
+
{
|
|
12
|
+
"id": "dece4bee-7ec9-4e66-9ea9-ed319a816169",
|
|
13
|
+
"name": "Bl\u00e9 tendre",
|
|
14
|
+
"color": "#1f77b4",
|
|
15
|
+
"startDate": "2025-10-01T00:00:00Z",
|
|
16
|
+
"endDate": "2025-12-30T00:00:00Z",
|
|
17
|
+
"description": "Culture de bl\u00e9 tendre",
|
|
18
|
+
"interventions": [
|
|
19
|
+
{
|
|
20
|
+
"id": "0ab08415-7147-4d9c-aa60-c16531fe3d21",
|
|
21
|
+
"day": "12",
|
|
22
|
+
"name": "Fauche m\u00e9canique",
|
|
23
|
+
"type": "Contr\u00f4le adventices",
|
|
24
|
+
"description": "Coupe des adventices entre les rangs"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "615efcd0-6452-408a-8990-134e5e145f84",
|
|
28
|
+
"day": "26",
|
|
29
|
+
"name": "Engrais foliaire",
|
|
30
|
+
"type": "Apport azote",
|
|
31
|
+
"description": "Pulv\u00e9risation d\u2019un engrais azot\u00e9 en croissance"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"attributes": [
|
|
35
|
+
{
|
|
36
|
+
"id": "dd415a3a-6184-4572-b8d5-2dd86012ac81",
|
|
37
|
+
"name": "Pr\u00e9-semis",
|
|
38
|
+
"value": "Oui"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "49a45b61-89dc-470a-8651-cf98ba7d392c",
|
|
42
|
+
"name": "Travail du sol",
|
|
43
|
+
"value": "Labour"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "2a75129d-967b-429e-9aca-305d6874011a",
|
|
47
|
+
"name": "Type de semoir",
|
|
48
|
+
"value": "Monograine"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "4f80795e-ae94-4e16-b448-72a5035a0737",
|
|
52
|
+
"name": "Date des semis",
|
|
53
|
+
"value": "2025-10-01"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"duration": 3
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "9a3a5a49-12ab-419d-9c9a-15076e17c693",
|
|
60
|
+
"name": "Orge",
|
|
61
|
+
"color": "#ff7f0e",
|
|
62
|
+
"startDate": "2025-12-30T00:00:00Z",
|
|
63
|
+
"endDate": "2026-03-20T00:00:00Z",
|
|
64
|
+
"description": "Culture de orge",
|
|
65
|
+
"interventions": [
|
|
66
|
+
{
|
|
67
|
+
"id": "123cc674-a8f5-481f-b9f1-28e535792026",
|
|
68
|
+
"day": "8",
|
|
69
|
+
"name": "D\u00e9sherbage cibl\u00e9",
|
|
70
|
+
"type": "Contr\u00f4le adventices",
|
|
71
|
+
"description": "Application d'un herbicide s\u00e9lectif"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"id": "212a10ed-10dd-49b3-af39-d185374ed4b3",
|
|
75
|
+
"day": "37",
|
|
76
|
+
"name": "Fumure de fond",
|
|
77
|
+
"type": "Apport azote",
|
|
78
|
+
"description": "Incorporation de compost azot\u00e9 avant semis"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"attributes": [
|
|
82
|
+
{
|
|
83
|
+
"id": "94dba007-7b3d-41cd-972e-a9e5f121e846",
|
|
84
|
+
"name": "Pr\u00e9-semis",
|
|
85
|
+
"value": "Non"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "68ba27a5-bab1-4ce7-8f1b-bbc051217c62",
|
|
89
|
+
"name": "Travail du sol",
|
|
90
|
+
"value": "D\u00e9chaumage"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "32da1648-25f5-42b6-bcdf-f92753f904d2",
|
|
94
|
+
"name": "Type de semoir",
|
|
95
|
+
"value": "Direct"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"id": "67d58706-f4fe-4c62-82c1-77602cbae6a8",
|
|
99
|
+
"name": "Date des semis",
|
|
100
|
+
"value": "2026-01-05"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"duration": 2
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "96e71b5a-d204-42db-889e-78799f408772",
|
|
107
|
+
"name": "Tournesol",
|
|
108
|
+
"color": "#2ca02c",
|
|
109
|
+
"startDate": "2026-03-20T00:00:00Z",
|
|
110
|
+
"endDate": "2026-06-28T00:00:00Z",
|
|
111
|
+
"description": "Culture de tournesol",
|
|
112
|
+
"interventions": [
|
|
113
|
+
{
|
|
114
|
+
"id": "c8303267-d8d3-4a36-9dbb-0938d8c5a923",
|
|
115
|
+
"day": "39",
|
|
116
|
+
"name": "Binage manuel",
|
|
117
|
+
"type": "Contr\u00f4le adventices",
|
|
118
|
+
"description": "Binage pour a\u00e9rer le sol et limiter les mauvaises herbes"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "87612407-8aae-4724-a397-2daa64a24ea0",
|
|
122
|
+
"day": "23",
|
|
123
|
+
"name": "Fumure de fond",
|
|
124
|
+
"type": "Apport azote",
|
|
125
|
+
"description": "Incorporation de compost azot\u00e9 avant semis"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"attributes": [
|
|
129
|
+
{
|
|
130
|
+
"id": "aaa00fdd-bc21-4fc0-9aac-9154dd4cac1b",
|
|
131
|
+
"name": "Pr\u00e9-semis",
|
|
132
|
+
"value": "Oui"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "3cf8d13c-8a05-49e9-b1e2-eaaad57623a2",
|
|
136
|
+
"name": "Travail du sol",
|
|
137
|
+
"value": "Rotavator"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": "646f7473-c1b4-406d-bda1-c1a82f3be27a",
|
|
141
|
+
"name": "Type de semoir",
|
|
142
|
+
"value": "Pneumatique"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"id": "a002e555-7711-4506-9801-c5871ea50335",
|
|
146
|
+
"name": "Date des semis",
|
|
147
|
+
"value": "2026-04-15"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"duration": 3
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
}
|
package/test/test.json
ADDED
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Itinéraire technique de ma ferme",
|
|
3
|
+
"options": {
|
|
4
|
+
"view" : "horizontal",
|
|
5
|
+
"show_transcript": true,
|
|
6
|
+
"title_top_interventions": "Contrôle adventices",
|
|
7
|
+
"title_bottom_interventions": "Autres interventions",
|
|
8
|
+
"title_steps": "Étapes de la rotation dans la parcelle"
|
|
9
|
+
},
|
|
10
|
+
"steps": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Betterave",
|
|
13
|
+
"color": "#ff96b0",
|
|
14
|
+
"description": "Tête de rotation",
|
|
15
|
+
"attributes": [
|
|
16
|
+
{
|
|
17
|
+
"name": "Pré-semis",
|
|
18
|
+
"value": "Possibilité d'un couvert multi-espèces en aout n-1"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Travail du sol",
|
|
22
|
+
"value": "déchaumage pour niveler le terrain et un binage en Juin à 1cm"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "Type de semoir",
|
|
26
|
+
"value": "trois passages de strip-till"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "Date de semis",
|
|
30
|
+
"value": "22/03"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "Densité de semis",
|
|
34
|
+
"value": "125mil graines/ha"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "Plantes compagnes",
|
|
38
|
+
"value": "avoine/orge fermière, 20kg/ha"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"interventions": [
|
|
42
|
+
{
|
|
43
|
+
"day": 0,
|
|
44
|
+
"name": "Semis",
|
|
45
|
+
"type": "intervention_bottom",
|
|
46
|
+
"description": "Semis des betteraves à J + 5"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"startDate": "2022-03-15",
|
|
50
|
+
"endDate": "2022-11-01"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Blé tendre",
|
|
54
|
+
"color": "#edcc7d",
|
|
55
|
+
"duration": 11,
|
|
56
|
+
"attributes": [
|
|
57
|
+
{
|
|
58
|
+
"name": "Pré-semis",
|
|
59
|
+
"value": "désinfection du grain au vinaigre (1L/100kg)"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "Travail du sol",
|
|
63
|
+
"value": "aucun, semis direct pur"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "Type de semoir",
|
|
67
|
+
"value": "semoir à dents"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "Date de semis",
|
|
71
|
+
"value": "11/10"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "Densité de semis",
|
|
75
|
+
"value": "125kg/ha"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "Plantes compagnes",
|
|
79
|
+
"value": "orge fermière, 20kg/ha (implantation semoir à disque)"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"startDate": "2022-11-15",
|
|
83
|
+
"endDate": "2023-10-15"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "Colza",
|
|
87
|
+
"color": "#ebe733",
|
|
88
|
+
"duration": 12,
|
|
89
|
+
"description": "Travail du sol: aucun, semis direct pur, fissuration après récolte, avant le blé",
|
|
90
|
+
"attributes": [
|
|
91
|
+
{
|
|
92
|
+
"name": "Type de semoir",
|
|
93
|
+
"value": "semoir à dents"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "Date de semis",
|
|
97
|
+
"value": "26/08"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "Densité de semis",
|
|
101
|
+
"value": "2kg/ha"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "Plantes compagnes",
|
|
105
|
+
"value": "feverole fermière, 60 pieds au m2"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"interventions": [
|
|
109
|
+
{
|
|
110
|
+
"day": -20,
|
|
111
|
+
"name": "Labour",
|
|
112
|
+
"type": "intervention_bottom",
|
|
113
|
+
"description": ""
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"day": -15,
|
|
117
|
+
"name": "Travail superficiel",
|
|
118
|
+
"type": "intervention_bottom",
|
|
119
|
+
"description": ""
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"day": -10,
|
|
123
|
+
"name": "Fertilisation",
|
|
124
|
+
"type": "intervention_bottom",
|
|
125
|
+
"description": "Fertilisation - tsp_45 (180 kg)"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"day": -10,
|
|
129
|
+
"name": "Fertilisation",
|
|
130
|
+
"type": "intervention_bottom",
|
|
131
|
+
"description": "Fertilisation - potassium_chloride (125 kg)"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"day": -5,
|
|
135
|
+
"name": "Pulverisation",
|
|
136
|
+
"type": "intervention_top",
|
|
137
|
+
"description": "intervention_top - Proplus (0,4 l)"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"day": 0,
|
|
141
|
+
"name": "Semis",
|
|
142
|
+
"type": "intervention_bottom",
|
|
143
|
+
"description": "Semence - Capello (2 kg)"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"day": 0,
|
|
147
|
+
"name": "Semis",
|
|
148
|
+
"type": "intervention_top",
|
|
149
|
+
"description": "intervention_top - Anti-limaces (4 kg)"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"day": 30,
|
|
153
|
+
"name": "Pulverisation",
|
|
154
|
+
"type": "intervention_top",
|
|
155
|
+
"description": "intervention_top - Sweet Home (0,3 l)"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"day": 120,
|
|
159
|
+
"name": "Fertilisation",
|
|
160
|
+
"type": "intervention_bottom",
|
|
161
|
+
"description": "Fertilisation - ammonitrate_33 (178 kg)"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"day": 150,
|
|
165
|
+
"name": "Fertilisation",
|
|
166
|
+
"type": "intervention_bottom",
|
|
167
|
+
"description": "Fertilisation - ammonium_sulphate (90 kg)",
|
|
168
|
+
"important": true
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"day": 165,
|
|
172
|
+
"name": "Pulverisation",
|
|
173
|
+
"type": "intervention_top",
|
|
174
|
+
"description": "intervention_top - Boravi Wg (1 kg)"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"day": 180,
|
|
178
|
+
"name": "Fertilisation",
|
|
179
|
+
"type": "intervention_bottom",
|
|
180
|
+
"description": "Fertilisation - ammonitrate_33 (178 kg)"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"day": 210,
|
|
184
|
+
"name": "Pulverisation",
|
|
185
|
+
"type": "intervention_top",
|
|
186
|
+
"description": "intervention_top - Elifor (0,5 l)"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"day": 225,
|
|
190
|
+
"name": "Pulverisation",
|
|
191
|
+
"type": "intervention_top",
|
|
192
|
+
"description": "intervention_top - Karakas (0,05 l)"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"day": 240,
|
|
196
|
+
"name": "Pulverisation",
|
|
197
|
+
"type": "intervention_top",
|
|
198
|
+
"description": "intervention_top - Sunorg Pro (0,4 l)"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"day": 255,
|
|
202
|
+
"name": "Pulverisation",
|
|
203
|
+
"type": "intervention_top",
|
|
204
|
+
"description": "intervention_top - Boravi Wg (1 kg)"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"day": 300,
|
|
208
|
+
"name": "Récolte",
|
|
209
|
+
"type": "intervention_bottom",
|
|
210
|
+
"description": "Récolte - Rendement (30 q)"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"day": 300,
|
|
214
|
+
"name": "Transport",
|
|
215
|
+
"type": "intervention_bottom",
|
|
216
|
+
"description": ""
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"startDate": "2023-10-01",
|
|
220
|
+
"endDate": "2024-10-01"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "Repousses",
|
|
224
|
+
"color": "#fff2cc",
|
|
225
|
+
"duration": 1,
|
|
226
|
+
"description": "",
|
|
227
|
+
"startDate": "2024-10-01",
|
|
228
|
+
"endDate": "2024-11-01"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "Blé tendre",
|
|
232
|
+
"color": "#edcc7d",
|
|
233
|
+
"duration": 11,
|
|
234
|
+
"description": "",
|
|
235
|
+
"startDate": "2024-11-01",
|
|
236
|
+
"endDate": "2025-10-01"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"name": "Couvert",
|
|
240
|
+
"color": "#93c47d",
|
|
241
|
+
"duration": 6,
|
|
242
|
+
"description": "Couvert d'interculture longue pour casser le cycle des graminées",
|
|
243
|
+
"attributes": [
|
|
244
|
+
{
|
|
245
|
+
"name": "Composition",
|
|
246
|
+
"value": "trefle facscelie vesce, feverple,pois, lupin tournessol, avoine"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"name": "Destruction",
|
|
250
|
+
"value": "rouleau faca + gel"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "Densité",
|
|
254
|
+
"value": "250 pieds/m²"
|
|
255
|
+
}
|
|
256
|
+
],
|
|
257
|
+
"startDate": "2025-10-01",
|
|
258
|
+
"endDate": "2026-04-01"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "Lin textile",
|
|
262
|
+
"color": "#efefef",
|
|
263
|
+
"duration": 7,
|
|
264
|
+
"attributes": [
|
|
265
|
+
{
|
|
266
|
+
"name": "Semis",
|
|
267
|
+
"value": "Mars"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "Type de semoir",
|
|
271
|
+
"value": "semoir à disques"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"name": "Note",
|
|
275
|
+
"value": "Très sensible à la compaction donc éloigné le plus possible de la récolte de betterave"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "Autre",
|
|
279
|
+
"value": "Apport de BRF après lin, environ 10t/ha"
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"startDate": "2026-04-01",
|
|
283
|
+
"endDate": "2026-11-01"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"name": "Blé tendre",
|
|
287
|
+
"color": "#edcc7d",
|
|
288
|
+
"duration": 11,
|
|
289
|
+
"description": "",
|
|
290
|
+
"startDate": "2026-11-01",
|
|
291
|
+
"endDate": "2027-10-01"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "Couvert",
|
|
295
|
+
"color": "#93c47d",
|
|
296
|
+
"duration": 4,
|
|
297
|
+
"description": "Couvert d'interculture court",
|
|
298
|
+
"attributes": [
|
|
299
|
+
{
|
|
300
|
+
"name": "Date de semis",
|
|
301
|
+
"value": "28/09 ou plus tôt"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "Composition",
|
|
305
|
+
"value": "avoine/pois/feverole/vesce/fascelie/radis/lupin/tournessol"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "Densité",
|
|
309
|
+
"value": "85 kg/ha"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "Destruction",
|
|
313
|
+
"value": "26/01"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "Reliquats azotés",
|
|
317
|
+
"value": "apporteront entre 20 et 40 u d'azote mobilisable"
|
|
318
|
+
}
|
|
319
|
+
],
|
|
320
|
+
"startDate": "2027-10-01",
|
|
321
|
+
"endDate": "2028-02-25"
|
|
322
|
+
}
|
|
323
|
+
]
|
|
324
|
+
}
|