-
Notifications
You must be signed in to change notification settings - Fork 38
/
NFDI4Ing_Vorlage.xml
4520 lines (4479 loc) · 215 KB
/
NFDI4Ing_Vorlage.xml
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"?>
<rdmo xmlns:dc="http://purl.org/dc/elements/1.1/" created="2024-10-22T13:58:28.109712+02:00" version="2.2.1">
<catalog dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2</uri_path>
<dc:comment>NFDI4ING DMP Template
Date: 2024-09-13
Version: 2.0.0
compatible with RDMO version: 2.1.0+
This template is based on the DFG checklist: https://www.dfg.de/research_data/checklist
The catalog makes use of the {more}-tag, available since release 2.1.0. Compared to version 1, extensive adjustments have been made to questions, option sets and, in some cases, attributes, so the catalog is only partially compatible with the previous version.</dc:comment>
<order>35</order>
<title lang="en">NFDI4ING DMP Template (Version 2)</title>
<help lang="en">Catalog according to the DFG checklist supplemented by engineering content.</help>
<title lang="de">NFDI4Ing DMP-Vorlage (Version 2)</title>
<help lang="de">Katalog entsprechend der DFG-Checkliste ergänzt um ingenieurwissenschaftliche Inhalte.</help>
<sections>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/introduction" order="0"/>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description" order="1"/>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/doku_quality" order="2"/>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/storage_backup" order="3"/>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/exchange_access" order="4"/>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/rights" order="5"/>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/responsibilities" order="6"/>
</sections>
</catalog>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/introduction">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/introduction</uri_path>
<dc:comment/>
<title lang="en">Introduction</title>
<short_title lang="en"/>
<title lang="de">Einleitung</title>
<short_title lang="de"/>
<pages>
<page dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/introduction/introduction" order="1"/>
</pages>
</section>
<page dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/introduction/introduction">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/introduction/introduction</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<is_collection>True</is_collection>
<title lang="en">Please add a dataset to your plan</title>
<short_title lang="en"/>
<help lang="en">The present catalog is the [checklist published by the DFG](https://www.dfg.de/research_data/checklist) supplemented by engineering content. The questions from the DFG checklist must be taken into account when submitting an application and completing the project and should help you to structure your data management.
During the interview, you will be asked several questions about the various aspects of data management. Depending on your research project, you may work with different types of data, so it might be necessary to plan different measures for each. Therefore, create as many sets as it makes sense for your approach.
A logical unit for your research data could be, for example, based on
* the methodology (e.g. measurements, eye-tracking, luminance measurement, questionnaires),
* data type (e.g. images, measured data, geological data), or
* accessibility of the data (public data, data of industry partner).
You must create at least one set.</help>
<verbose_name lang="en"/>
<title lang="de">Legen Sie ein Datenset an</title>
<short_title lang="de"/>
<help lang="de">Der vorliegende Fragenkatalog ist die von der [DFG herausgegebene Checkliste](https://www.dfg.de/forschungsdaten/checkliste) ergänzt um ingenieurwissenschaftliche Inhalte. Die Fragen aus der Checkliste der DFG müssen bei der Antragstellung und beim Projektabschluss berücksichtigt werden und sollen Ihnen helfen, Ihr Datenmanagement zu strukturieren.
Im Laufe des Interviews werden Ihnen Fragen zu den verschiedenen Aspekten des Datenmanagements gestellt.
Im Rahmen Ihres Projekts arbeiten Sie eventuell mit verschiedenen Arten von Daten, daher kann es sinnvoll sein, unterschiedliche Maßnahmen für die Daten zu planen. Legen Sie daher so viele Sets an, wie es für Ihr Vorgehen sinnvoll erscheint.
Eine logische Einheit Ihrer Forschungsdaten könnte sich z.B. orientieren an
* der Methodik (z.B. Messungen, Eye-Tracking, Leuchtdichtemessung, Fragebogen),
* Datenart (z.B. Bilder, Messdaten, Geodaten) oder
* Zugänglichkeit der Daten (z.B. öffentliche Daten, Daten eines Industriepartners).
Sie müssen mindestens ein Set anlegen.</help>
<verbose_name lang="de"/>
<questionsets/>
<questions/>
<conditions/>
</page>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>id</key>
<path>project/dataset/id</path>
<dc:comment>Short ID for a dataset, used as questionset attribute for dataset related questionsets.</dc:comment>
<parent dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset"/>
</attribute>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>dataset</key>
<path>project/dataset</path>
<dc:comment/>
<parent dc:uri="https://rdmorganiser.github.io/terms/domain/project"/>
</attribute>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>project</key>
<path>project</path>
<dc:comment/>
<parent/>
</attribute>
<section dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/data_description</uri_path>
<dc:comment/>
<title lang="en">Data description</title>
<short_title lang="en"/>
<title lang="de">Datennutzung</title>
<short_title lang="de"/>
<pages>
<page dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content" order="0"/>
<page dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/technical_description" order="1"/>
</pages>
</section>
<page dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/data_description/data_content</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<is_collection>True</is_collection>
<title lang="en">Content data description</title>
<short_title lang="en"/>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Inhaltliche Datenbeschreibung</title>
<short_title lang="de"/>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content/ds_description" order="0"/>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content/ds_newData" order="1"/>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content/ds_reuse" order="2"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content/ds_description">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/data_description/data_content/ds_description</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/description"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">What kind of dataset is it?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Um was für einen Datensatz handelt es sich?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width>12</width>
<optionsets>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what"/>
</optionsets>
<conditions/>
</question>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/description">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>description</key>
<path>project/dataset/description</path>
<dc:comment/>
<parent dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset"/>
</attribute>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_00" order="0"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_01" order="1"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_02" order="2"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_03" order="3"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_04" order="4"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_05" order="5"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_06" order="6"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_07" order="7"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_08" order="8"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_09" order="9"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_10" order="10"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_11" order="11"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_12" order="12"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_00">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_00</uri_path>
<dc:comment/>
<text lang="en">tables</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Tabellen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_01">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_01</uri_path>
<dc:comment/>
<text lang="en">Binary or numeric data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Binäre oder numerische Daten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_02">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_02</uri_path>
<dc:comment/>
<text lang="en">code</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Code</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_03">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_03</uri_path>
<dc:comment/>
<text lang="en">simulation data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Simulationsdaten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_04">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_04</uri_path>
<dc:comment/>
<text lang="en">algorithm</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Algorithmen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_05">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_05</uri_path>
<dc:comment/>
<text lang="en">Measurement data e.g. from test benches</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Messdaten z.B. von Prüfständen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_06">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_06</uri_path>
<dc:comment/>
<text lang="en">image data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Bilddaten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_07">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_07</uri_path>
<dc:comment/>
<text lang="en">Big Data (heterological data types)</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Big Data (heterologische Datentypen)</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_08">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_08</uri_path>
<dc:comment/>
<text lang="en">references</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Referenzen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_09">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_09</uri_path>
<dc:comment/>
<text lang="en">textual data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Textuelle Daten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_10">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_10</uri_path>
<dc:comment/>
<text lang="en">visual recordings / video data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Visuelle Aufnahmen / Videodaten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_11">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_11</uri_path>
<dc:comment/>
<text lang="en">Stream data (e.g. the continuously supplied values of a temperature sensor)</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Streamdaten (z.B. die kontinuierlich gelieferten Werte eines Temperatursensors)</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_ds_what/nfdi-ds-w_12">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_ds_what/nfdi-ds-w_12</uri_path>
<dc:comment/>
<text lang="en">Other</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Sonstige</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content/ds_newData">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/data_description/data_content/ds_newData</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creation_methods"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">In engineering, the way in which data is created in your project can depend heavily on the individual sub-disciplines - such as electrical engineering, information technology, civil engineering, etc. Therefore this information is relevant for all types of data.</help>
<text lang="en">How is new data created in your project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Die Art und Weise, wie Daten in Ihrem Projekt entstehen, kann in den Ingenieurwissenschaften stark von den einzelnen Teildisziplinen - wie z.B. der Elektrotechnik, Informationstechnik, dem Bauingenieurwesen etc. abhängen. Daher sind diese Informationen sind für alle Arten von Daten relevant.</help>
<text lang="de">Auf welche Weise entstehen in Ihrem Projekt neue Daten?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data"/>
</optionsets>
<conditions/>
</question>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creation_methods">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>creation_methods</key>
<path>project/dataset/creation_methods</path>
<dc:comment/>
<parent dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset"/>
</attribute>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_00" order="0"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_01" order="1"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_02" order="2"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_03" order="3"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_04" order="4"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_05" order="5"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_06" order="6"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_09" order="9"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_10" order="10"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_11" order="11"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_00">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_00</uri_path>
<dc:comment/>
<text lang="en">calculations</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Berechnungen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_01">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_01</uri_path>
<dc:comment/>
<text lang="en">models</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Modelle</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_02">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_02</uri_path>
<dc:comment/>
<text lang="en">simulations</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Simulationen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_03">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_03</uri_path>
<dc:comment/>
<text lang="en">laboratory tests</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Laborversuche</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_04">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_04</uri_path>
<dc:comment/>
<text lang="en">Observations (by human observation, instruments or sensors)</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Beobachtungen (durch menschliche Beobachtung, Instrumente oder Sensoren)</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_05">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_05</uri_path>
<dc:comment/>
<text lang="en">Derivation or compilation from other data sources</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Ableitung oder Zusammenstellung aus anderen Datenquellen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_06">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_06</uri_path>
<dc:comment/>
<text lang="en">Creation of repositories, databases and catalogues</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Erstellung von Repositorien, Datenbanken und Katalogen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_09">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_09</uri_path>
<dc:comment/>
<text lang="en">visualizations</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Visualisierungen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_10">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_10</uri_path>
<dc:comment/>
<text lang="en">programming</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Programmierung</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/NFDI_new_data/nfdi-nd_11">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI_new_data/nfdi-nd_11</uri_path>
<dc:comment/>
<text lang="en">Other</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Sonstige</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/data_content/ds_reuse">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/data_description/data_content/ds_reuse</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/reproducibility"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">Existing data is often reused in engineering. They can form the basis of a new project or can only be used for parts of the project. This also includes data that you use to compare your data.
The [NFDI4Ing Data Collections Explorer](https://data-collections.nfdi4ing.de/) helps you to find suitable data resources.
{more}The sources of the reused data range from working group internal databases, e.g. for DFT calculations, to open and freely accessible databases such as Kaggle, to (openly accessible) repositories such as Zenodo or, more specifically, the Sequence Read Archive (SRA). Very often data from databases like [Open Quantum Materials](https://www.oqmd.org/materials/), [Inorganic Crystal Structure Database](https://icsd.fiz-karlsruhe.de), [Materials Project](https://materialsproject.org/), [AtomWorkAdv.](https://atomwork-adv.nims.go.jp), or [MAGNDATA](http://webbdcrista1.ehu.es/magndata) are reused.</help>
<text lang="en">Will existing data be reused?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Existierende Daten werden in den Ingenieurwissenschaften häufig wiederverwendet. Sie können die Basis eines neuen Projekts bilden oder auch nur für Teile des Projekts verwendet werden. Hierunter fallen auch Daten, die Sie zum Vergleich Ihrer Daten heranziehen.
Der [NFDI4Ing Data Collections Explorer](https://data-collections.nfdi4ing.de/) hilft Ihnen dabei, passende Quellen zu finden.
{more}Die Quellen der wiederverwendeten Daten reichen von arbeitsgruppen-internen Datenbanken z.B. zu DFT-Kalkulationen über offene und frei zugängliche Datenbanken wie Kaggle bis hin zu (frei zugänglichen) Repositorien wie Zenodo oder spezifischer das Sequence Read Archive (SRA). Sehr oft werden auch Daten aus Datenbanken wie [Open Quantum Materials](https://www.oqmd.org/materials/), [Inorganic Crystal Structure Database](https://icsd.fiz-karlsruhe.de), [Materials Project](https://materialsproject.org/), [AtomWorkAdv.](https://atomwork-adv.nims.go.jp) oder [MAGNDATA](http://webbdcrista1.ehu.es/magndata) nachgenutzt.</help>
<text lang="de">Werden existierende Daten wiederverwendet?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data"/>
</optionsets>
<conditions/>
</question>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/reproducibility">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>reproducibility</key>
<path>project/dataset/reproducibility</path>
<dc:comment/>
<parent dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset"/>
</attribute>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_00" order="0"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_01" order="1"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_02" order="2"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_03" order="3"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_04" order="4"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_05" order="5"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_06" order="6"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_07" order="7"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_08" order="8"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_09" order="9"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_10" order="10"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_11" order="11"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_12" order="12"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_13" order="13"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_13a" order="14"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_13b" order="15"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_14" order="16"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_00">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_00</uri_path>
<dc:comment/>
<text lang="en">Simulation data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Simulationsdaten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_01">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_01</uri_path>
<dc:comment/>
<text lang="en">Measurement data e.g. from test benches</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Messdaten z.B. von Prüfständen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_02">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_02</uri_path>
<dc:comment/>
<text lang="en">Experimental, microbial and/or genomic data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">experimentelle, mikrobielle und/oder genomische Daten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_03">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_03</uri_path>
<dc:comment/>
<text lang="en">Sequenced data such as parts of a production plan used to form a production order</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">sequenzierte Daten wie z.B. Teile einer Produktionsplanung, die zur Bildung einer Produktionsreihenfolge dienen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_04">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_04</uri_path>
<dc:comment/>
<text lang="en">Material properties and other material data from databases or from tables in various journals</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Materialeigenschaften und weitere Materialdaten aus Datenbanken oder aus Tabellen in verschiedenen Journals</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_05">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_05</uri_path>
<dc:comment/>
<text lang="en">Source code from GitHub or the following open source software</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Source-Code von GitHub oder folgende Open-Source Software</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_06">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_06</uri_path>
<dc:comment/>
<text lang="en">3D models</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">3D-Modelle</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_07">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_07</uri_path>
<dc:comment/>
<text lang="en">Calculations for Heusler alloys and MAB components</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Kalkulationen zu heuslerschen Legierungen und MAB Komponenten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_08">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_08</uri_path>
<dc:comment/>
<text lang="en">Weather data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Wetterdaten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_09">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_09</uri_path>
<dc:comment/>
<text lang="en">Geographic data (e.g. Open Street Map)</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Geographische Daten (z.B. Open Street Map)</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_10">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_10</uri_path>
<dc:comment/>
<text lang="en">Output and model parameters for standardized models such as FEM</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Output- und Modellparameter für standardisierte Modelle wie z.B. FEM</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_11">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_11</uri_path>
<dc:comment/>
<text lang="en">Open data from public databases such as Kaggle</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">offene Daten aus öffentlichen Datenbanken wie z.B. Kaggle</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_12">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_12</uri_path>
<dc:comment/>
<text lang="en">Data from social media</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Daten aus den sozialen Medien</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_13">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_13</uri_path>
<dc:comment/>
<text lang="en">Reuse of data generated by your own working group or associated groups in previous projects</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Nachnutzung von Daten, die durch die eigene Arbeitsgruppe oder assoziierte Gruppen in früheren Projekten erzeugt worden sind</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_13a">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_13a</uri_path>
<dc:comment/>
<text lang="en">Reuse of data provided by industry partner</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Nachnutzung von Daten eines Industriepartners</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_13b">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_13b</uri_path>
<dc:comment/>
<text lang="en">Other</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Sonstiges</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_reuse_data/nfdi-rd_14">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_reuse_data/nfdi-rd_14</uri_path>
<dc:comment/>
<text lang="en">No, no existing data will be used.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Nein, es werden keine existierenden Daten verwendet.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<page dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/technical_description">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/data_description/technical_description</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<is_collection>True</is_collection>
<title lang="en">Technical data description</title>
<short_title lang="en"/>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Technische Datenbeschreibung</title>
<short_title lang="de"/>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/technical_description/ds_format" order="0"/>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/technical_description/ds_usage_how" order="1"/>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/technical_description/ds_size" order="2"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://rdmo.nfdi4ing.de/terms/questions/NFDI4Ing_Vorlage/v2/data_description/technical_description/ds_format">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>NFDI4Ing_Vorlage/v2/data_description/technical_description/ds_format</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/format"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">When choosing the file format, it is advisable to use formats that are standardized, non-proprietary and generally used in engineering. Please keep in mind that the data can be used for more than 10 years and should not lead to conflicts in collaborative use or subsequent use.
When it comes to the question of origin, the initial creation of data is meant, as well as the processing and further processing of the data during the project period.</help>
<text lang="en">Which data types, in terms of data formats, are created in your project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Bei der Wahl des Dateiformats empfiehlt es sich, möglichst standardisierte, nicht-proprietäre und allgemein bzw. in den Ingenieurwissenschaften verbreitete Formate zu nutzen. Bitte bedenken Sie, dass eine Nutzung der Daten über 10 Jahre hinaus möglich sein und zu keinen Konflikten in der kollaborativen Nutzung oder Nachnutzung führen sollte.
Bei der Frage der Entstehung ist die erstmalige Erstellung von Daten gemeint, sowie die Bearbeitung und Weiterverarbeitung der Daten während der Projektlaufzeit.</help>
<text lang="de">Welche Datentypen, im Sinne von Datenformaten entstehen in Ihrem Projekt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>freeautocomplete</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats"/>
</optionsets>
<conditions/>
</question>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/format">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>format</key>
<path>project/dataset/format</path>
<dc:comment/>
<parent dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset"/>
</attribute>
<optionset dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_formats</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/91" order="91"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/92" order="92"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/93" order="93"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/94" order="94"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/95" order="95"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/96" order="96"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/97" order="97"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/98" order="98"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/99" order="99"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/199" order="199"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/200" order="200"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/201" order="201"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/202" order="202"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/203" order="203"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/204" order="204"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/205" order="205"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/206" order="206"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/207" order="207"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/208" order="208"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/209" order="209"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/210" order="210"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/211" order="211"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/212" order="212"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/213" order="213"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/214" order="214"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/215" order="215"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/216" order="216"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/217" order="217"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/218" order="218"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/219" order="219"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/220" order="220"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/221" order="221"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/222" order="222"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/300" order="300"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/301" order="301"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/302" order="302"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/303" order="303"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/304" order="304"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/305" order="305"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/306" order="306"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/307" order="307"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/308" order="308"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/310" order="310"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/311" order="311"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/312" order="312"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/313" order="313"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/314" order="314"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/316" order="316"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/317" order="317"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/318" order="318"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/319" order="319"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/320" order="320"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/321" order="321"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/322" order="322"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/323" order="502"/>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/326" order="503"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/91">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_formats/91</uri_path>
<dc:comment/>
<text lang="en">(text) *.txt</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">(text) *.txt</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/92">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_formats/92</uri_path>
<dc:comment/>
<text lang="en">(word) *.doc/.docx</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">(Word) *.doc/.docx</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/93">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_formats/93</uri_path>
<dc:comment/>
<text lang="en">(PDF) *.pdf</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">(PDF) *.pdf</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/94">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_formats/94</uri_path>
<dc:comment/>
<text lang="en">(LaTeX) *.tex</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">(LaTeX) *.tex</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/95">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_formats/95</uri_path>
<dc:comment/>
<text lang="en">(Literature database) *.bib</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">(Literaturdatenbank) *.bib</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/96">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>
<uri_path>v2/NFDI_formats/96</uri_path>
<dc:comment/>
<text lang="en">(Literature database) *.bibtex</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">(Literaturdatenbank) *.bibtex</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://rdmo.nfdi4ing.de/terms/options/v2/NFDI_formats/97">
<uri_prefix>https://rdmo.nfdi4ing.de/terms</uri_prefix>