-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvibso-base.owl
1102 lines (778 loc) · 72.2 KB
/
vibso-base.owl
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"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/vibso/vibso-base.owl#"
xml:base="http://purl.obolibrary.org/obo/vibso/vibso-base.owl"
xmlns:ex="https://example.instances/"
xmlns:DOI="http://doi.org/"
xmlns:ROR="http://ror.org/"
xmlns:dce="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:prov="http://www.w3.org/ns/prov#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:ORCID="http://orcid.org/"
xmlns:schema="http://schema.org/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:wikipedia="https://en.wikipedia.org/wiki/">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/vibso/vibso-base.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/vibso/releases/2024-09-23/vibso-base.owl"/>
<dce:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
<dcterms:contributor rdf:resource="https://orcid.org/0000-0001-7694-5519"/>
<dcterms:contributor rdf:resource="https://orcid.org/0000-0002-1595-3213"/>
<dcterms:contributor rdf:resource="https://orcid.org/0000-0002-2239-3955"/>
<dcterms:contributor rdf:resource="https://orcid.org/0000-0002-4378-6061"/>
<dcterms:creator rdf:resource="https://www.wikidata.org/wiki/Q96678459"/>
<dcterms:creator xml:lang="en">VIBSO Workgroup</dcterms:creator>
<dcterms:description>_WIP - NOT READY FOR PRODUCTION_ The Vibration Spectroscopy Ontology (VIBSO) is used to represent information regarding the excution and analysis of vibrational spectroscopy assays.</dcterms:description>
<dcterms:license rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
<dcterms:title>Vibrational Spectroscopy Ontology</dcterms:title>
<owl:versionInfo>2024-09-23</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000231 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001"/>
<!-- http://purl.org/dc/elements/1.1/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://purl.org/dc/elements/1.1/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type"/>
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000293 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000293"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000312 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000312"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001938 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001938"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000029"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000027"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000032"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000109"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000140 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000140"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000654 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000654"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000674 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000674"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000968 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000968"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001933 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001933"/>
<!-- http://purl.obolibrary.org/obo/OBI_0200000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0200000"/>
<!-- http://purl.obolibrary.org/obo/PATO_0001018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0001018"/>
<!-- http://purl.obolibrary.org/obo/STATO_0000184 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/STATO_0000184"/>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000000">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the needed settings of a spectrometer used in vibrational spectroscopy.</obo:IAO_0000115>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">vibrational spectrometer configuration specification</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/39"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000654"/>
<obo:IAO_0000112 xml:lang="en">The set of meassured configuration characteristics of a Raman spectrometer, like the operating temperature of a Raman spectrometer.</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A device setting that represents the measured or set physical qualities which make up the configuration state of a Raman spectrometer at the time of a measurement (e.g. operating temperature, exitation wavelength, groove density, ...).</obo:IAO_0000115>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">Raman spectrometer configuration</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/47"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the length of time that a photo detector is allowed to collect photons before passing the accumulated charge to the A/D converter for processing. The minimum integration time is the shortest integration time the device supports and is dependent on how fast the detector can read out all of the pixel information. Integration time should not be confused with data transfer speed.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology or a domain ontology with the scope of optical devices.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">integration period setting</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">integration time</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">integration time setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/40"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000002"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A setting datum that specifies the length of time that a photo detector is allowed to collect photons before passing the accumulated charge to the A/D converter for processing. The minimum integration time is the shortest integration time the device supports and is dependent on how fast the detector can read out all of the pixel information. Integration time should not be confused with data transfer speed.</owl:annotatedTarget>
<dce:source rdf:resource="https://www.oceaninsight.com/knowledge-hub/glossary/#i"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the preamplifier gain in CCD sensors.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">preamplifier gain setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/41"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the horizontal shift speed in CCD sensors.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology or a domain ontology with the scope of optical devices.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">horizontal shift speed setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/42"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the vertical shift speed in CCD sensors.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology or a domain ontology with the scope of optical devices.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">vertical shift speed setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/42"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the operating temperature of a device.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">device temperature setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/43"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the desired number of measurements a spectrometer has to perform on the same location, without position change to produce an usable spectrum. This setting datum is relevant to improve the signal to noise ratio.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class might better be defined in a more general device ontology.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">number of acquisitions</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">number of accumulations</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/30"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the binning read mode of a device with a CCD sensor.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology or a domain ontology with the scope of optical devices.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">CCD sensor binning read mode setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/46"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 xml:lang="en">A physical quality inhering in a diffraction grating device by virtue of the device's function to diffract light. This quality specifically depends on the number of grooves per area of the grating device and is usually expressed in grooves per millimeter.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">temp class until NTR in PATO has been accepted and merged (https://github.com/pato-ontology/pato/issues/541)</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">groove frequency</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">groove density</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/45"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000009"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A physical quality inhering in a diffraction grating device by virtue of the device's function to diffract light. This quality specifically depends on the number of grooves per area of the grating device and is usually expressed in grooves per millimeter.</owl:annotatedTarget>
<dce:source rdf:resource="https://en.wikipedia.org/wiki/Diffraction_grating"/>
<dce:source rdf:resource="https://www.meetoptics.com/academy/groove-density#:~:text=The%20groove%20density%20(or%20groove,of%20the%20operational%20wavelength%20range"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000010">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the number of grooves in a diffraction grating device.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology or a domain ontology with the scope of optical devices.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">grating</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">grating setting</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">groove density setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/45"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<obo:IAO_0000115 xml:lang="en">A device that is an optical component with a periodic structure that diffracts light into several beams travelling in different directions (i.e. different diffraction angles)</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology or a domain ontology with the scope of optical devices.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">diffraction grating</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/49"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000011"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A device that is an optical component with a periodic structure that diffracts light into several beams travelling in different directions (i.e. different diffraction angles)</owl:annotatedTarget>
<dce:source rdf:resource="https://en.wikipedia.org/wiki/Diffraction_grating"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000012">
<obo:IAO_0000115 xml:lang="en">A physical quality of the light source that is used used to excite a system to a higher energy state.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is not needed, as PATO:wavelength is sufficient, if this quality of a Raman device is really needed.</obo:IAO_0000116>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000103"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/PATO_0001242"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">deprecated_excitation wavelength</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/48"/>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000013 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the wavelength of an electromagnetic radiation source (e.g. a laser) which has the function to excite the energy state of a target material.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class should better be defined in a more general device ontology or a domain ontology with the scope of optical devices.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">excitation wavelength setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/48"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">100x</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the magnification factor of the objective collecting the scattered light.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">magnification</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">magnification setting</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:label xml:lang="en">objective magnification factor setting</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/24%20"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">210 cm^-1</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the upper boundary of the spectral window range utilized during the acquisition of spectroscopic data.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">It needs to be determined, if this is also part of another kind of spectrum, such as a vibrational spectrum in general. We also need to decide, if we need to also model the terms window size and window center, from which this term is derived.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">acquisition band maximum</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">spectral window range maximum</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/31"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">1960 cm^-1</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the lower boundary of the spectral window range utilized during the acquisition of spectroscopic data.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">It needs to be determined, if this is also part of another kind of spectrum, such as a vibrational spectrum in general. We also need to decide, if we need to also model the terms window size and window center, from which this term is derived.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">acquisition band minimum</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">spectral window range minimum</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/31"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000032"/>
<obo:IAO_0000112 xml:lang="en">200 mW</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A scalar measurement datum that is the result of measuring the incoming light power before the sample holder and which depends on the laser power and on the dispersive behaviour of the filters and optical components.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">excitation light power</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">light power on the sample</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<rdfs:comment xml:lang="en">The incident power is an elementary measurement parameter allowing to compare among measurements conducted with the same setup. A thorough investigation of the effects of light irradiation onto the sample depends on the local irradiance (power per unit area) and requires deeper knowledge of the irradiation geometry, e.g. width, depth and shape of the focal spot.</rdfs:comment>
<rdfs:label xml:lang="en">incident light power datum</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/29"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000018">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000029"/>
<obo:IAO_0000115 xml:lang="en">A site that refers to a user-defined portion of the image area in which data will be acquired. The remainder of the image area will be discarded.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">See also https://w3id.org/reproduceme#ROI & http://purl.obolibrary.org/obo/NCIT_C85402</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">ROI</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">imaging region of interest</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:label xml:lang="en">region of interest</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000018"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A site that refers to a user-defined portion of the image area in which data will be acquired. The remainder of the image area will be discarded.</owl:annotatedTarget>
<dce:source rdf:resource="https://wiki.charisma.ideaconsult.net/wiki/Item:Q57"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">1 mm</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the width (length in the X direction) of the region of interest.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">ROI horizontal length</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">ROI width</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">region of interest width = (point distance X) * (number of measurements X)</rdfs:comment>
<rdfs:label xml:lang="en">region of interest width</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">0.5 mm</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the height (length in the Y direction) of the region of interest.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">ROI breadth</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">ROI lateral length</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">region of interest breadth = (point distance Y) * (number of measurements Y)</rdfs:comment>
<rdfs:label xml:lang="en">region of interest breadth</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000021">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">0.1 mm</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the depth (length in the Z direction) of the region of interest.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">ROI depth</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">ROI vertical length</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">region of interest depth = (point distance Z) * (number of measurements Z)</rdfs:comment>
<rdfs:label xml:lang="en">region of interest depth</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000022 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000022">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">20 µm</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the equal distance which the incident light beam will be moved laterally in the X direction on a given sample within the region of interest after each measurement, when performing a spatially resolved spectroscopy.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">sampling pace in the X direction</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">sampling step in the X direction</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">voxel distance in the X direction</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">point distance X = (region of interest width) / (number of measurements X)</rdfs:comment>
<rdfs:label xml:lang="en">point distance X</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">10 µm</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the equal distance which the incident light beam will be moved laterally in the Y direction on a given sample within the region of interest after each measurement, when performing a spatially resolved spectroscopy.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">sampling pace in the Y direction</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">sampling step in the Y direction</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">voxel distance in the Y direction</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">point distance Y = (region of interest breadth) / (number of measurements Y)</rdfs:comment>
<rdfs:label xml:lang="en">point distance Y</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000024">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">10 µm</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies the equal distance which the incident light beam will moved along the focal axis within the region of interest, when performing a spatially resolved spectroscopy.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">axial mapping distance</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">sampling pace in the Z direction</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">sampling step in the Z direction</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">vertical mapping distance</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">voxel distance in the Z direction</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">point distance Z = (region of interest depth) / (number of measurements Z)</rdfs:comment>
<rdfs:label xml:lang="en">point distance Z</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">50</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies how many equally configured measurements of a sample are to be performed along the X-axis of a certain region of interest. Together with the point distance X, this setting defines the region of interest width.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">number of points in the X direction</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">number of points per line</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">number of measurements X = (region of interest width) / (point distance X)</rdfs:comment>
<rdfs:label xml:lang="en">number of measurements X</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">100</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies how many equally configured measurements of a sample are to be performed along the Y-axis of a certain region of interest. Together with the point distance Y, this setting defines the region of interest breadth.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">number of lines per layer</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">number of points in the Y direction</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:comment xml:lang="en">number of measurements = (region of interest breadth) / (point distance Y)</rdfs:comment>
<rdfs:label xml:lang="en">number of measurements Y</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">10</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that specifies how many equally configured measurements of a sample are to be performed in the vertical direction (on the Z-axis) of a certain region of interest. Together with the focal point distance, this setting defines the region of interest depth.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">number of layers per acquisition</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">number of points in the Z direction</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0001-7694-5519"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3956"/>
<rdfs:comment xml:lang="en">number of measurements Z = (region of interest depth) / (point distance Z)</rdfs:comment>
<rdfs:label xml:lang="en">number of measurements Z</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/32"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000028 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000028">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum that is obtained from a calibrated and ready Raman spectrometer and prior to be submitted to any mathematical modification. The only corrections on the data shall be the one associated with the spectrometer. The data will assign pixels readouts with nm as per calibration of the spectrometer and a.u. as intensity readout but will not be corrected in relationship of the incident monochromatic beam.</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">raw Raman data</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:label xml:lang="en">Raman raw data</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/77"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000028"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A measurement datum that is obtained from a calibrated and ready Raman spectrometer and prior to be submitted to any mathematical modification. The only corrections on the data shall be the one associated with the spectrometer. The data will assign pixels readouts with nm as per calibration of the spectrometer and a.u. as intensity readout but will not be corrected in relationship of the incident monochromatic beam.</owl:annotatedTarget>
<dce:source rdf:resource="https://wiki.charisma.ideaconsult.net/wiki/Item:Q64"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000140"/>
<obo:IAO_0000112 xml:lang="en">The light was focused onto the embedded sample using a 100× objective with a numerical aperture of 0.9, resulting in a diffraction-limited in-plane laser spot size of <1 μm.</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A setting datum that, as a dimensionless number, represents the quality which characterizes the range of angles over which an optical system can accept or emit light [dc:source wikidata:Numerical_aperture]. It gets calculated by the sine of one half of the vertex angle of the largest cone of meridional rays that can enter or leave an optical system or element, multiplied by the refractive index of the medium in which the cone is located.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">possible equivalents in other terminologies: http://purl.obolibrary.org/obo/NCIT_C181921 & https://w3id.org/reproduceme#LensNA</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">numerical aperture</obo:IAO_0000118>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:label xml:lang="en">lens numerical aperture</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/76"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000029"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A setting datum that, as a dimensionless number, represents the quality which characterizes the range of angles over which an optical system can accept or emit light [dc:source wikidata:Numerical_aperture]. It gets calculated by the sine of one half of the vertex angle of the largest cone of meridional rays that can enter or leave an optical system or element, multiplied by the refractive index of the medium in which the cone is located.</owl:annotatedTarget>
<dce:source rdf:resource="https://en.wikipedia.org/wiki/Numerical_aperture"/>
<dce:source rdf:resource="https://wiki.charisma.ideaconsult.net/wiki/Item:Q385"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000312"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0200000"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000293"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000028"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A data item that is obtained by processing raw Raman data.</obo:IAO_0000115>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-1595-3213"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<rdfs:label xml:lang="en">primary Raman data</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/132"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 xml:lang="en">A physical quality of a measurement device that expresses (realizes) the device's capacity to distinguish between two distinct but closely related measurements of the same physical quality or type, often quantified as the smallest detectable difference (resolution interval) between measured values.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:label xml:lang="en">resolution</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000031"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0001938"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0001933"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A data item that quantifies a resolution, by representing the minimum measurable difference between two measurements of the same physical quality or type, such that the measurements can be distinguished as different.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:label xml:lang="en">resolution interval</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/STATO_0000184"/>
<obo:IAO_0000115 xml:lang="en">A ratio that quantifies the ability of a measurement device to distinguish between small differences in measurement values, expressed as the ratio between a typical measurement datum and the corresponding resolution interval.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:label xml:lang="en">resolution power</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000033"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A ratio that quantifies the ability of a measurement device to distinguish between small differences in measurement values, expressed as the ratio between a typical measurement datum and the corresponding resolution interval.</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000034">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000032"/>
<obo:IAO_0000115 xml:lang="en">A resolution interval that quantifies the minimum distance between two points such that they can be considered two separate points in a given microscope under specific experimental parameters.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:label xml:lang="en">spatial resolution interval</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000034"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A resolution interval that quantifies the minimum distance between two points such that they can be considered two separate points in a given microscope under specific experimental parameters.</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000035">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000034"/>
<obo:IAO_0000115 xml:lang="en">A spatial resolution interval that quantifies the minimum angular separation between two points on a plane orthogonal to the light ray, expressed as an angle centered in the lens (Formula: δθ = 1.22 * λ / D).</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:comment xml:lang="en">$δθ = 1.22cdotλ/D$</rdfs:comment>
<rdfs:label xml:lang="en">lateral resolution interval as angle</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000035"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A spatial resolution interval that quantifies the minimum angular separation between two points on a plane orthogonal to the light ray, expressed as an angle centered in the lens (Formula: δθ = 1.22 * λ / D).</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000036 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000036">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000034"/>
<obo:IAO_0000115 xml:lang="en">A spatial resolution interval that quantifies the minimum linear separation between two points on a plane orthogonal to the light ray, expressed as the distance from the center of the optical spot (Formula: δr = 0.61 * λ / NA).</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:comment xml:lang="en">$δr = 0.61cdotλ/NA$ (Abbe formula, derived from the Rayleigh criterion with the Kirchhoff, Debye and paraxial approximation) $= 1.22 λcdot(f/sharp)$</rdfs:comment>
<rdfs:label xml:lang="en">lateral resolution interval as length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000036"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A spatial resolution interval that quantifies the minimum linear separation between two points on a plane orthogonal to the light ray, expressed as the distance from the center of the optical spot (Formula: δr = 0.61 * λ / NA).</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000034"/>
<obo:IAO_0000115 xml:lang="en">A spatial resolution interval that quantifies the minimum measurable separation between two points along the axis of propagation of the light ray, expressed as a linear distance (Formula: δz = 2 ⋅ n ⋅ λ / NA²).</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:comment xml:lang="en">$δz = 2cdot ncdotλ/NA²$</rdfs:comment>
<rdfs:label xml:lang="en">axial resolution interval as length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000037"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A spatial resolution interval that quantifies the minimum measurable separation between two points along the axis of propagation of the light ray, expressed as a linear distance (Formula: δz = 2 ⋅ n ⋅ λ / NA²).</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000038 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000038">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000032"/>
<obo:IAO_0000115 xml:lang="en">A resolution interval that quantifies the minimum separation between two narrow peaks in a spectrum such that they can be distinguished as two separate peaks.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:label xml:lang="en">spectral resolution interval</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000038"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A resolution interval that quantifies the minimum separation between two narrow peaks in a spectrum such that they can be distinguished as two separate peaks.</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000039 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000039">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000038"/>
<obo:IAO_0000115 xml:lang="en">A spectral resolution interval that quantifies the minimum separation between two wavelengths such that they can be distinguished as different (Formula: δλ = λ / (n * N)).</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:comment xml:lang="en">$δλ = λ / (ncdot N) = RFcdot Δλcdot WS / n$</rdfs:comment>
<rdfs:label xml:lang="en">spectral resolution interval as wavelength</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000039"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A spectral resolution interval that quantifies the minimum separation between two wavelengths such that they can be distinguished as different (Formula: δλ = λ / (n * N)).</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
<dce:source rdf:resource="https://wiki.charisma.ideaconsult.net/wiki/Item:Q200"/>
<dce:source rdf:resource="https://wiki.charisma.ideaconsult.net/wiki/Item:Q22"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000038"/>
<obo:IAO_0000115 xml:lang="en">A spectral resolution interval that quantifies the minimum separation between two wavenumbers such that they can be distinguished as different (Formula: δν~ = δλ / λ²).</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:comment xml:lang="en">$δbarν$</rdfs:comment>
<rdfs:label xml:lang="en">spectral resolution interval as wavenumber</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000040"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A spectral resolution interval that quantifies the minimum separation between two wavenumbers such that they can be distinguished as different (Formula: δν~ = δλ / λ²).</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/VIBSO_0000041 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/VIBSO_0000041">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000038"/>
<obo:IAO_0000115 xml:lang="en">A spectral resolution interval that quantifies the minimum separation between two frequencies such that they can be distinguished as different (Formula: δν = c * δν~ = c * δλ / λ²).</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">This class is actually to general for VIBSO's scope. It needs to be discussed with CHMO and OBI devs which of these is a better home, as there currently does not exist an optical device ontology within OBO Foundry. OBI contains most terms around optical devices so far.</obo:IAO_0000116>
<dce:contributor rdf:resource="http://orcid.org/0000-0002-2239-3955"/>
<dce:contributor rdf:resource="http://orcid.org/0000-0003-2673-366X"/>
<rdfs:comment xml:lang="en">$δν$</rdfs:comment>
<rdfs:label xml:lang="en">spectral resolution interval as frequency</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/NFDI4Chem/VibrationalSpectroscopyOntology/issues/125"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/VIBSO_0000041"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A spectral resolution interval that quantifies the minimum separation between two frequencies such that they can be distinguished as different (Formula: δν = c * δν~ = c * δλ / λ²).</owl:annotatedTarget>
<dce:source rdf:resource="http://www.w3.org/2002/07/ISBN%20081946043-5"/>
</owl:Axiom>