-
Notifications
You must be signed in to change notification settings - Fork 1
/
Physiocap3_dialog_base.ui
7408 lines (7408 loc) · 240 KB
/
Physiocap3_dialog_base.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PhysiocapAnalyseurDialogBase</class>
<widget class="QDialog" name="PhysiocapAnalyseurDialogBase">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>632</width>
<height>815</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>550</width>
<height>600</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>800</width>
<height>1000</height>
</size>
</property>
<property name="sizeIncrement">
<size>
<width>30</width>
<height>30</height>
</size>
</property>
<property name="windowTitle">
<string>Physiocap 3 pour QGIS3</string>
</property>
<property name="toolTip">
<string/>
</property>
<property name="sizeGripEnabled">
<bool>false</bool>
</property>
<property name="modal">
<bool>true</bool>
</property>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="geometry">
<rect>
<x>540</x>
<y>8</y>
<width>71</width>
<height>61</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="mouseTracking">
<bool>true</bool>
</property>
<property name="toolTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-size:8pt;">Le bouton </span><span style=" font-size:8pt; font-weight:600;">Fermer</span><span style=" font-size:8pt;"> souhaite vous revoir bientôt.</span></p><p><span style=" font-size:8pt;">Le bouton </span><span style=" font-size:8pt; font-weight:600;">Aide</span><span style=" font-size:8pt;"> permet d'accéder aux documentations, à la license et au suivi des évolutions sous le Wiki de l'extension. N'hésitez pas à y poster vos questions, proposition d'évolutions et retour de bugs.</span></p></body></html></string>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Close|QDialogButtonBox::Help</set>
</property>
<property name="centerButtons">
<bool>true</bool>
</property>
</widget>
<widget class="QComboBox" name="fieldComboProfilPHY">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>120</x>
<y>10</y>
<width>371</width>
<height>23</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Le profil décrit un contexte d'utilisation encadré de Physiocap3. Il </span><span style=" font-size:10pt; color:#00aa00;">limite à des usages ciblées un groupe d'utilisateur. Le paramétrage commun (même seuils de filtre, liste de cépages ou communes spécifique, choix d'affichage commun, thématiques de coloriage communes) simplifie et homogénéise les usages du groupe. </span></p><p><span style=" font-size:10pt; color:#00aa00;">Pour compatibilité, le profil Standard correspond à votre utilisation habituelle</span></p><p><span style=" font-size:10pt; color:#00aa00;">L'administrateur d'un profil est un animateur d'un secteur géographique </span><span style=" font-size:10pt; color:#00aa00;">(par exemple CIVC en Champagne)</span><span style=" font-size:10pt; color:#00aa00;"> ou d'un groupe d'utilisateur (par exemple IFV Bordeaux).</span></p></body></html></string>
</property>
</widget>
<widget class="QLabel" name="lab_Profil">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>111</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>Profil Physiocap</string>
</property>
</widget>
<widget class="QLabel" name="lab_Session">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>10</x>
<y>40</y>
<width>111</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>Dernière session</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEditDerniereSession">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
<x>120</x>
<y>40</y>
<width>191</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Nom de la dernière session Physiocap. C'est le nom du répertoire tous les entités créées par l'extension et regroupées dans un groupe du panneau de couche de QGIS.</span></p></body></html></string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
<widget class="QLabel" name="lab_Camapgne">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>320</x>
<y>40</y>
<width>81</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>Campagne</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEditCampagne">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
<x>410</x>
<y>40</y>
<width>81</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Il s'agit du nom de la campagne (c'est un millesime) qui peut être la vendange avant les mesure ou la vendange après.<br/>Se reporter au paramétrage dans l'onglet Expert, qui explicite l'origine du calcul de la campagne.</span></p></body></html></string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
<widget class="QTabWidget" name="tabWidgetPhysiocap">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>10</x>
<y>70</y>
<width>621</width>
<height>731</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="baseSize">
<size>
<width>0</width>
<height>600</height>
</size>
</property>
<property name="font">
<font>
<pointsize>8</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><p>Usage des onglets de l'extension Physiocap :</p><p>- Calcul permet de définir les paramétres utilisés lors du filtrage de données brutes et ceux du calcul de moyennes INTER parcellaires</p><p>- Agronomie permet de détailler les informations du vignoble et de son agronomie qui permettent de </p><p>- InterParcellaire définit les parametres de l'interpolation et du calcul des isolignes puis lancer une interpolation INTRA pour créer une carte INTRA parcellaire</p><p>- Synthèse donne une lecture synthétique de l'analyse de vos données brutes</p><p>- Histos permet de visualiser les sarments, vitesses et diamètres bruts et les diamètres filtrés</p><p>- Affichages permet de choisir les couches affichées et leurs styles ( définissant le coloriage, les légendes, les libellés ...)</p><p>- Expert accède aux paramétrages avancés (niveau de détail d'affichage des journaux, règles de calculs des segments et paramétrage du répertoire des thématiques). L'utilisateur classique n'a pa besoin d'accéder à ces paramètres. </p><p>- A Propos précise la version, la liste des contributeurs et les liens pour plus d'informations</p></body></html></string>
</property>
<property name="accessibleDescription">
<string/>
</property>
<property name="tabPosition">
<enum>QTabWidget::North</enum>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<property name="iconSize">
<size>
<width>16</width>
<height>14</height>
</size>
</property>
<property name="elideMode">
<enum>Qt::ElideNone</enum>
</property>
<property name="movable">
<bool>true</bool>
</property>
<widget class="QWidget" name="tabParametres">
<property name="font">
<font>
<pointsize>8</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<attribute name="title">
<string>Calculs</string>
</attribute>
<widget class="QGroupBox" name="groupBoxFiltrer">
<property name="geometry">
<rect>
<x>5</x>
<y>180</y>
<width>621</width>
<height>91</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="cursor">
<cursorShape>ArrowCursor</cursorShape>
</property>
<property name="styleSheet">
<string notr="true">QLineEdit { margin: 4px }</string>
</property>
<property name="title">
<string>Filtres permettant de nettoyer les données brutes</string>
</property>
<widget class="QLabel" name="lab_20">
<property name="geometry">
<rect>
<x>10</x>
<y>20</y>
<width>351</width>
<height>21</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>Nombre maximal de sarments au mètre</string>
</property>
</widget>
<widget class="QSpinBox" name="spinBoxMaxSarmentsParMetre">
<property name="geometry">
<rect>
<x>370</x>
<y>20</y>
<width>81</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string/>
</property>
<property name="minimum">
<number>15</number>
</property>
<property name="maximum">
<number>50</number>
</property>
<property name="singleStep">
<number>1</number>
</property>
<property name="value">
<number>25</number>
</property>
</widget>
<widget class="QSpinBox" name="spinBoxMinDiametre">
<property name="geometry">
<rect>
<x>10</x>
<y>60</y>
<width>70</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Ce filtre peut permettre d'exclure des &quot;mesures&quot; qui pourraient être des entres-coeur et non des sarments. </span></p></body></html></string>
</property>
<property name="minimum">
<number>0</number>
</property>
<property name="maximum">
<number>5</number>
</property>
<property name="singleStep">
<number>1</number>
</property>
<property name="value">
<number>4</number>
</property>
</widget>
<widget class="QLabel" name="lab_21">
<property name="geometry">
<rect>
<x>10</x>
<y>38</y>
<width>481</width>
<height>21</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Tailles d'exclusion des mesures de sarments (en mm)</string>
</property>
</widget>
<widget class="QLabel" name="lab_22">
<property name="geometry">
<rect>
<x>110</x>
<y>60</y>
<width>251</width>
<height>21</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string><= Diamètre de sarments retenus < </string>
</property>
</widget>
<widget class="QSpinBox" name="spinBoxMaxDiametre">
<property name="geometry">
<rect>
<x>370</x>
<y>60</y>
<width>70</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Ce filtre peut permettre d'exclure des &quot;mesures&quot; qui pourraient être des piquets et non des sarments. </span></p></body></html></string>
</property>
<property name="minimum">
<number>6</number>
</property>
<property name="maximum">
<number>28</number>
</property>
<property name="singleStep">
<number>1</number>
</property>
<property name="value">
<number>18</number>
</property>
</widget>
</widget>
<widget class="QGroupBox" name="groupBox_select">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>621</width>
<height>171</height>
</rect>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>10</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="title">
<string>Sélectionnez le répertoire des données brutes de Physiocap (MID)</string>
</property>
<widget class="QLineEdit" name="lineEditDirectoryPhysiocap">
<property name="geometry">
<rect>
<x>5</x>
<y>23</y>
<width>551</width>
<height>22</height>
</rect>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Ouvrir la liste de vos répertoires avec le bouton &quot;...&quot;</span></p><p><span style=" font-size:10pt; color:#00aa00;">Vous devez sélectionner le répertoire où se trouvent les mesures brutes de votre capture Physiocap (répertoire qui contient les fichiers MID issus de votre clé USB).</span></p><p><span style=" font-size:10pt; color:#00aa00;">Ce répertoire peut contenir aussi votre contour qui est ouvert dans QGIS automatiquement à la fin du traitement &quot;Filtrer les données brutes&quot;.</span></p><p><span style=" font-size:10pt; font-style:italic; color:#00aa00;">L'extension crée des entités dans des sous répertoires et n'altèrent jamais vos données brutes.</span></p></body></html></string>
</property>
</widget>
<widget class="QToolButton" name="toolButtonDirectoryPhysiocap">
<property name="geometry">
<rect>
<x>570</x>
<y>27</y>
<width>41</width>
<height>18</height>
</rect>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="text">
<string>...</string>
</property>
</widget>
<widget class="QCheckBox" name="checkBoxRecursif">
<property name="geometry">
<rect>
<x>40</x>
<y>45</y>
<width>471</width>
<height>26</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Si vous souhaitez regrouper des données MID de plusieurs sous répertoires, cochez la case &quot;Recherche des MIDs dans les sous répertoires&quot;.</span></p><p><span style=" font-size:10pt; font-style:italic; color:#00aa00;">Astuce : vous pouvez regrouper toutes les données brutes d'une campagne, d'un cépage ou d'un secteur dans un même arbre de données. Choisissez un nom de session Physiocap explicitant le regroupement. L'extension Physiocap les traitera avec un même paramétrage.</span></p></body></html></string>
</property>
<property name="text">
<string>Recherche des MIDs dans les sous-répertoires</string>
</property>
</widget>
<widget class="QToolButton" name="toolButtonDirectoryFiltre">
<property name="geometry">
<rect>
<x>570</x>
<y>97</y>
<width>41</width>
<height>18</height>
</rect>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="text">
<string>...</string>
</property>
</widget>
<widget class="QLabel" name="lab_10">
<property name="geometry">
<rect>
<x>5</x>
<y>70</y>
<width>571</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="text">
<string>Sélectionnez le répertoire cible des données calculées par Physiocap</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEditDirectoryFiltre">
<property name="geometry">
<rect>
<x>5</x>
<y>93</y>
<width>551</width>
<height>22</height>
</rect>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Ouvrir la liste de vos répertoires cibles avec le bouton &quot;...&quot;</span></p><p><span style=" font-size:10pt; color:#00aa00;">Vous pouvez sélectionner le répertoire où se trouveront les données après filtrage par l'Extension Physiocap.</span></p><p><span style=" font-size:10pt; font-style:italic; color:#00aa00;">Par défaut, il s'agit du répertoire qui contient les fichiers MID.</span></p><p><span style=" font-size:10pt; font-style:italic; color:#00aa00;">L'extension crée des entités dans des sous répertoires et n'altère jamais vos données brutes.</span></p></body></html></string>
</property>
</widget>
<widget class="QLineEdit" name="lineEditSession">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>5</x>
<y>140</y>
<width>251</width>
<height>22</height>
</rect>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Il s'agit du nom qui identifie votre session de travail. Ce nom sert de répertoire de base pour les données produites par l'extension Physiocap. Il sert aussi de préfixe pour les données créées.</span></p><p><span style=" font-size:10pt; font-style:italic; color:#00aa00;">Astuce 1 : Choisir un nom court, décrivant clairement votre jeu de données.<br/>Astuce 2 : Difficile de matérialiser l'impact de ce nom : choissiez SESSION et regardez dans le nommage de votre repertoire cible les impacts.</span></p><p><span style=" font-size:10pt; color:#00aa00;">Si vous lancez plusieurs itérations (bouton OK), ce nom se completera du suffixe [1] puis [2] jusqu'à [n] . Le plus grand numéro correspond à la dernière itération.</span></p></body></html></string>
</property>
<property name="inputMethodHints">
<set>Qt::ImhNone</set>
</property>
<property name="maxLength">
<number>50</number>
</property>
<property name="dragEnabled">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="lab_11">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>5</x>
<y>120</y>
<width>611</width>
<height>21</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<family>Ubuntu</family>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="text">
<string>Session Physiocap (nom du répertoire et préfixes des données générées)</string>
</property>
</widget>
</widget>
<widget class="QGroupBox" name="groupBoxDetailVignoble">
<property name="geometry">
<rect>
<x>5</x>
<y>280</y>
<width>621</width>
<height>101</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Ce choix vous permet d'accéder aux unités avancées de Physiocap.</span></p><p><span style=" font-size:10pt; color:#00aa00;">Si les calculs détaillés sont demandés, vous pouvez renseigner les informations requises pour ces calculs et les informations agronomique par deux sources :<br/>- Onglet Agronomie<br/>- vos contours décrivent ces données agronomiques (voir le shape ou le CSV modèle dans ~plugins/data). Ces vecteurs doivent être déposés dans le répertoires des données brutes pour être ouvert automtiquement par l'extension lors de &quot;Filtrer les données brutes&quot;.</span></p><p><span style=" font-size:10pt; color:#00aa00;">Ce choix d'&quot;Unités détaillées&quot; est obligatoire pour accéder à l'ensemble des informations agronomiques.</span><br/></p></body></html></string>
</property>
<property name="whatsThis">
<string/>
</property>
<property name="title">
<string>Unités détaillées par m2 ou par cep</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<widget class="QRadioButton" name="radioButtonOnglet">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>30</x>
<y>55</y>
<width>571</width>
<height>26</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string/>
</property>
<property name="text">
<string>Onglet Agronomie détaille mon information du vignoble</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
<widget class="QRadioButton" name="radioButtonContour">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>30</x>
<y>75</y>
<width>571</width>
<height>26</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string/>
</property>
<property name="text">
<string>Mes contours détaillent les données agronomiques de chaque parcelle</string>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
<widget class="QCheckBox" name="checkBoxInfoVignoble">
<property name="geometry">
<rect>
<x>10</x>
<y>30</y>
<width>321</width>
<height>22</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Vous souhaitez faire suivre toutes vos informations agronomiques</span></p></body></html></string>
</property>
<property name="autoFillBackground">
<bool>true</bool>
</property>
<property name="text">
<string>Toutes vos informations vignobles</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
<widget class="QGroupBox" name="groupBoxPrecisez">
<property name="geometry">
<rect>
<x>360</x>
<y>-10</y>
<width>261</width>
<height>61</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>1</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>true</kerning>
</font>
</property>
<property name="title">
<string/>
</property>
<widget class="QLabel" name="lab_precisez">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>241</width>
<height>50</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
<weight>50</weight>
<italic>true</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="text">
<string>Précisez vos densités de plantation,
hauteurs de haie foliaire et
vos autres données agronomiques</string>
</property>
</widget>
</widget>
</widget>
<widget class="QGroupBox" name="groupBoxInter">
<property name="geometry">
<rect>
<x>10</x>
<y>380</y>
<width>621</width>
<height>131</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>1</pointsize>
<weight>50</weight>
<italic>false</italic>
<bold>false</bold>
<kerning>true</kerning>
</font>
</property>
<property name="title">
<string/>
</property>
<widget class="QGroupBox" name="groupBoxContourInter">
<property name="geometry">
<rect>
<x>0</x>
<y>30</y>
<width>621</width>
<height>101</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<weight>75</weight>
<italic>false</italic>
<bold>true</bold>
<kerning>false</kerning>
</font>
</property>
<property name="cursor">
<cursorShape>ArrowCursor</cursorShape>
</property>
<property name="toolTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Vous devez ouvrir une couche des contours de parcelles (menu Couche puis Ajouter un vecteur&quot;). Puis, activez le bouton rafraichir les listes.<br/>Choississez le polygone Contour dont vous souhaitez visualiser les moyennes inter parcellaires.</span></p><p><span style=" font-size:10pt; font-style:italic; color:#00aa00;">Astuce 1 : si vous n'avez pas de couche de contours, vous pouvez demander son calcul automatique en cliquant la case &quot;Pas de coutour&quot; <br/>Astuce 2 : vous possédez un contour dont la qualité est incertaine : vous pouvez valider visuellement la qualité de la capture de l'information GPS en superposant la couche Vitesse à ce contour.<br/>Astuce 3 : si vous n'avez pas de couche de contours, vous pouvez utiliser la couche Vitesse qui identifie le contour des parcelles où la capture a eu lieu. QGIS vous permet de créer vos contours.<br/>Astuce 4 : demandez de l'aide si la notion de contour n'est pas claire pour vous.</span></p></body></html></string>
</property>
<property name="autoFillBackground">
<bool>true</bool>
</property>
<property name="styleSheet">
<string notr="true">QLineEdit { margin: 4px }</string>
</property>
<property name="title">
<string>Moyennes Inter Parcellaire : précisez vos contours</string>
</property>
<property name="checkable">
<bool>false</bool>
</property>
<widget class="QComboBox" name="comboBoxPolygone">
<property name="geometry">
<rect>
<x>15</x>
<y>70</y>
<width>331</width>
<height>22</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
</widget>
<widget class="QComboBox" name="fieldComboContours">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>440</x>
<y>70</y>
<width>171</width>
<height>22</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string><html><head/><body><p><span style=" font-size:10pt; color:#00aa00;">Choisissez le champ de votre contour qui identifie chacune de vos parcelles. Dans la moyenne Inter Parcellaire, ce champ se nomme NOM_PHY</span></p><p><span style=" font-size:10pt; color:#00aa00;">Si vos contours ne contiennent pas de champ unique ou que vous ne connaissez pas les champs de vos contours, vous pouvez choisir NOM_PHY qui sera crée pa l'extension pour identifier chaque parcelles de vos contours. L'attribut aura des valeurs PHY_1, PHY-2 ...</span></p><p><span style=" font-size:10pt; color:#00aa00;">Attention : seuls les champs ayant une valeur différente pour chaque parcelle sont proposés.</span></p></body></html></string>
</property>