valuesets 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of valuesets might be problematic. Click here for more details.

Files changed (248) hide show
  1. valuesets/__init__.py +7 -0
  2. valuesets/_version.py +8 -0
  3. valuesets/datamodel/valuesets.py +13796 -0
  4. valuesets/datamodel/valuesets_dataclass.py +24503 -0
  5. valuesets/datamodel/valuesets_pydantic.py +13796 -0
  6. valuesets/enums/__init__.py +590 -0
  7. valuesets/enums/academic/__init__.py +1 -0
  8. valuesets/enums/academic/research.py +559 -0
  9. valuesets/enums/analytical_chemistry/__init__.py +1 -0
  10. valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
  11. valuesets/enums/bio/__init__.py +1 -0
  12. valuesets/enums/bio/biological_colors.py +238 -0
  13. valuesets/enums/bio/cell_cycle.py +180 -0
  14. valuesets/enums/bio/currency_chemicals.py +52 -0
  15. valuesets/enums/bio/developmental_stages.py +103 -0
  16. valuesets/enums/bio/genome_features.py +182 -0
  17. valuesets/enums/bio/genomics.py +91 -0
  18. valuesets/enums/bio/go_aspect.py +32 -0
  19. valuesets/enums/bio/go_causality.py +58 -0
  20. valuesets/enums/bio/go_evidence.py +129 -0
  21. valuesets/enums/bio/human_developmental_stages.py +62 -0
  22. valuesets/enums/bio/insdc_geographic_locations.py +591 -0
  23. valuesets/enums/bio/insdc_missing_values.py +49 -0
  24. valuesets/enums/bio/lipid_categories.py +67 -0
  25. valuesets/enums/bio/mouse_developmental_stages.py +62 -0
  26. valuesets/enums/bio/plant_biology.py +86 -0
  27. valuesets/enums/bio/plant_developmental_stages.py +54 -0
  28. valuesets/enums/bio/plant_sex.py +81 -0
  29. valuesets/enums/bio/protein_evidence.py +61 -0
  30. valuesets/enums/bio/proteomics_standards.py +123 -0
  31. valuesets/enums/bio/psi_mi.py +306 -0
  32. valuesets/enums/bio/relationship_to_oxygen.py +37 -0
  33. valuesets/enums/bio/sequence_alphabets.py +449 -0
  34. valuesets/enums/bio/sequence_chemistry.py +357 -0
  35. valuesets/enums/bio/sequencing_platforms.py +302 -0
  36. valuesets/enums/bio/structural_biology.py +320 -0
  37. valuesets/enums/bio/taxonomy.py +238 -0
  38. valuesets/enums/bio/trophic_levels.py +85 -0
  39. valuesets/enums/bio/uniprot_species.py +344 -0
  40. valuesets/enums/bio/viral_genome_types.py +47 -0
  41. valuesets/enums/bioprocessing/__init__.py +1 -0
  42. valuesets/enums/bioprocessing/scale_up.py +249 -0
  43. valuesets/enums/business/__init__.py +1 -0
  44. valuesets/enums/business/human_resources.py +275 -0
  45. valuesets/enums/business/industry_classifications.py +181 -0
  46. valuesets/enums/business/management_operations.py +228 -0
  47. valuesets/enums/business/organizational_structures.py +236 -0
  48. valuesets/enums/business/quality_management.py +181 -0
  49. valuesets/enums/business/supply_chain.py +232 -0
  50. valuesets/enums/chemistry/__init__.py +1 -0
  51. valuesets/enums/chemistry/chemical_entities.py +315 -0
  52. valuesets/enums/chemistry/reaction_directionality.py +65 -0
  53. valuesets/enums/chemistry/reactions.py +256 -0
  54. valuesets/enums/clinical/__init__.py +1 -0
  55. valuesets/enums/clinical/nih_demographics.py +177 -0
  56. valuesets/enums/clinical/phenopackets.py +254 -0
  57. valuesets/enums/common_value_sets.py +8791 -0
  58. valuesets/enums/computing/__init__.py +1 -0
  59. valuesets/enums/computing/file_formats.py +294 -0
  60. valuesets/enums/computing/maturity_levels.py +196 -0
  61. valuesets/enums/computing/mime_types.py +227 -0
  62. valuesets/enums/confidence_levels.py +168 -0
  63. valuesets/enums/contributor.py +30 -0
  64. valuesets/enums/core.py +42 -0
  65. valuesets/enums/data/__init__.py +1 -0
  66. valuesets/enums/data/data_absent_reason.py +53 -0
  67. valuesets/enums/data_science/__init__.py +1 -0
  68. valuesets/enums/data_science/binary_classification.py +87 -0
  69. valuesets/enums/data_science/emotion_classification.py +66 -0
  70. valuesets/enums/data_science/priority_severity.py +73 -0
  71. valuesets/enums/data_science/quality_control.py +46 -0
  72. valuesets/enums/data_science/sentiment_analysis.py +50 -0
  73. valuesets/enums/data_science/text_classification.py +97 -0
  74. valuesets/enums/demographics.py +206 -0
  75. valuesets/enums/ecological_interactions.py +151 -0
  76. valuesets/enums/energy/__init__.py +1 -0
  77. valuesets/enums/energy/energy.py +343 -0
  78. valuesets/enums/energy/fossil_fuels.py +29 -0
  79. valuesets/enums/energy/nuclear/__init__.py +1 -0
  80. valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
  81. valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
  82. valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
  83. valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
  84. valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
  85. valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
  86. valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
  87. valuesets/enums/energy/nuclear/reactor_types.py +163 -0
  88. valuesets/enums/environmental_health/__init__.py +1 -0
  89. valuesets/enums/environmental_health/exposures.py +265 -0
  90. valuesets/enums/geography/__init__.py +1 -0
  91. valuesets/enums/geography/geographic_codes.py +741 -0
  92. valuesets/enums/health/__init__.py +12 -0
  93. valuesets/enums/health/vaccination.py +98 -0
  94. valuesets/enums/health.py +36 -0
  95. valuesets/enums/health_base.py +36 -0
  96. valuesets/enums/healthcare.py +45 -0
  97. valuesets/enums/industry/__init__.py +1 -0
  98. valuesets/enums/industry/extractive_industry.py +94 -0
  99. valuesets/enums/industry/mining.py +388 -0
  100. valuesets/enums/industry/safety_colors.py +201 -0
  101. valuesets/enums/investigation.py +27 -0
  102. valuesets/enums/materials_science/__init__.py +1 -0
  103. valuesets/enums/materials_science/characterization_methods.py +112 -0
  104. valuesets/enums/materials_science/crystal_structures.py +76 -0
  105. valuesets/enums/materials_science/material_properties.py +119 -0
  106. valuesets/enums/materials_science/material_types.py +104 -0
  107. valuesets/enums/materials_science/pigments_dyes.py +198 -0
  108. valuesets/enums/materials_science/synthesis_methods.py +109 -0
  109. valuesets/enums/medical/__init__.py +1 -0
  110. valuesets/enums/medical/clinical.py +277 -0
  111. valuesets/enums/medical/neuroimaging.py +119 -0
  112. valuesets/enums/mining_processing.py +302 -0
  113. valuesets/enums/physics/__init__.py +1 -0
  114. valuesets/enums/physics/states_of_matter.py +46 -0
  115. valuesets/enums/social/__init__.py +1 -0
  116. valuesets/enums/social/person_status.py +29 -0
  117. valuesets/enums/spatial/__init__.py +1 -0
  118. valuesets/enums/spatial/spatial_qualifiers.py +246 -0
  119. valuesets/enums/statistics/__init__.py +5 -0
  120. valuesets/enums/statistics/prediction_outcomes.py +31 -0
  121. valuesets/enums/statistics.py +31 -0
  122. valuesets/enums/time/__init__.py +1 -0
  123. valuesets/enums/time/temporal.py +254 -0
  124. valuesets/enums/units/__init__.py +1 -0
  125. valuesets/enums/units/measurements.py +310 -0
  126. valuesets/enums/visual/__init__.py +1 -0
  127. valuesets/enums/visual/colors.py +376 -0
  128. valuesets/generators/__init__.py +19 -0
  129. valuesets/generators/auto_slot_injector.py +280 -0
  130. valuesets/generators/enhanced_pydantic_generator.py +100 -0
  131. valuesets/generators/enum_slot_generator.py +201 -0
  132. valuesets/generators/modular_rich_generator.py +353 -0
  133. valuesets/generators/prefix_standardizer.py +198 -0
  134. valuesets/generators/rich_enum.py +127 -0
  135. valuesets/generators/rich_pydantic_generator.py +310 -0
  136. valuesets/generators/smart_slot_syncer.py +428 -0
  137. valuesets/generators/sssom_generator.py +394 -0
  138. valuesets/merged/merged_hierarchy.yaml +21649 -0
  139. valuesets/schema/README.md +3 -0
  140. valuesets/schema/academic/research.yaml +911 -0
  141. valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
  142. valuesets/schema/bio/bio_entities.yaml +364 -0
  143. valuesets/schema/bio/biological_colors.yaml +434 -0
  144. valuesets/schema/bio/cell_cycle.yaml +309 -0
  145. valuesets/schema/bio/currency_chemicals.yaml +70 -0
  146. valuesets/schema/bio/developmental_stages.yaml +226 -0
  147. valuesets/schema/bio/genome_features.yaml +342 -0
  148. valuesets/schema/bio/genomics.yaml +101 -0
  149. valuesets/schema/bio/go_aspect.yaml +39 -0
  150. valuesets/schema/bio/go_causality.yaml +119 -0
  151. valuesets/schema/bio/go_evidence.yaml +215 -0
  152. valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
  153. valuesets/schema/bio/insdc_missing_values.yaml +85 -0
  154. valuesets/schema/bio/lipid_categories.yaml +72 -0
  155. valuesets/schema/bio/plant_biology.yaml +125 -0
  156. valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
  157. valuesets/schema/bio/plant_sex.yaml +108 -0
  158. valuesets/schema/bio/protein_evidence.yaml +63 -0
  159. valuesets/schema/bio/proteomics_standards.yaml +116 -0
  160. valuesets/schema/bio/psi_mi.yaml +400 -0
  161. valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
  162. valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
  163. valuesets/schema/bio/sequence_chemistry.yaml +477 -0
  164. valuesets/schema/bio/sequencing_platforms.yaml +515 -0
  165. valuesets/schema/bio/structural_biology.yaml +428 -0
  166. valuesets/schema/bio/taxonomy.yaml +453 -0
  167. valuesets/schema/bio/trophic_levels.yaml +118 -0
  168. valuesets/schema/bio/uniprot_species.yaml +1209 -0
  169. valuesets/schema/bio/viral_genome_types.yaml +99 -0
  170. valuesets/schema/bioprocessing/scale_up.yaml +458 -0
  171. valuesets/schema/business/human_resources.yaml +752 -0
  172. valuesets/schema/business/industry_classifications.yaml +448 -0
  173. valuesets/schema/business/management_operations.yaml +602 -0
  174. valuesets/schema/business/organizational_structures.yaml +645 -0
  175. valuesets/schema/business/quality_management.yaml +502 -0
  176. valuesets/schema/business/supply_chain.yaml +688 -0
  177. valuesets/schema/chemistry/chemical_entities.yaml +639 -0
  178. valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
  179. valuesets/schema/chemistry/reactions.yaml +442 -0
  180. valuesets/schema/clinical/nih_demographics.yaml +285 -0
  181. valuesets/schema/clinical/phenopackets.yaml +429 -0
  182. valuesets/schema/computing/file_formats.yaml +631 -0
  183. valuesets/schema/computing/maturity_levels.yaml +229 -0
  184. valuesets/schema/computing/mime_types.yaml +266 -0
  185. valuesets/schema/confidence_levels.yaml +206 -0
  186. valuesets/schema/contributor.yaml +30 -0
  187. valuesets/schema/core.yaml +55 -0
  188. valuesets/schema/data/data_absent_reason.yaml +82 -0
  189. valuesets/schema/data_science/binary_classification.yaml +125 -0
  190. valuesets/schema/data_science/emotion_classification.yaml +109 -0
  191. valuesets/schema/data_science/priority_severity.yaml +122 -0
  192. valuesets/schema/data_science/quality_control.yaml +68 -0
  193. valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
  194. valuesets/schema/data_science/text_classification.yaml +135 -0
  195. valuesets/schema/demographics.yaml +238 -0
  196. valuesets/schema/ecological_interactions.yaml +298 -0
  197. valuesets/schema/energy/energy.yaml +595 -0
  198. valuesets/schema/energy/fossil_fuels.yaml +28 -0
  199. valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
  200. valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
  201. valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
  202. valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
  203. valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
  204. valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
  205. valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
  206. valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
  207. valuesets/schema/environmental_health/exposures.yaml +355 -0
  208. valuesets/schema/generated_slots.yaml +1828 -0
  209. valuesets/schema/geography/geographic_codes.yaml +1018 -0
  210. valuesets/schema/health/vaccination.yaml +102 -0
  211. valuesets/schema/health.yaml +38 -0
  212. valuesets/schema/healthcare.yaml +53 -0
  213. valuesets/schema/industry/extractive_industry.yaml +89 -0
  214. valuesets/schema/industry/mining.yaml +888 -0
  215. valuesets/schema/industry/safety_colors.yaml +375 -0
  216. valuesets/schema/investigation.yaml +64 -0
  217. valuesets/schema/materials_science/characterization_methods.yaml +193 -0
  218. valuesets/schema/materials_science/crystal_structures.yaml +138 -0
  219. valuesets/schema/materials_science/material_properties.yaml +135 -0
  220. valuesets/schema/materials_science/material_types.yaml +151 -0
  221. valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
  222. valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
  223. valuesets/schema/medical/clinical.yaml +610 -0
  224. valuesets/schema/medical/neuroimaging.yaml +325 -0
  225. valuesets/schema/mining_processing.yaml +295 -0
  226. valuesets/schema/physics/states_of_matter.yaml +46 -0
  227. valuesets/schema/slot_mixins.yaml +143 -0
  228. valuesets/schema/social/person_status.yaml +28 -0
  229. valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
  230. valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
  231. valuesets/schema/statistics.yaml +34 -0
  232. valuesets/schema/time/temporal.yaml +435 -0
  233. valuesets/schema/types.yaml +15 -0
  234. valuesets/schema/units/measurements.yaml +675 -0
  235. valuesets/schema/valuesets.yaml +100 -0
  236. valuesets/schema/visual/colors.yaml +778 -0
  237. valuesets/utils/__init__.py +6 -0
  238. valuesets/utils/comparison.py +102 -0
  239. valuesets/utils/expand_dynamic_enums.py +414 -0
  240. valuesets/utils/mapping_utils.py +236 -0
  241. valuesets/validators/__init__.py +11 -0
  242. valuesets/validators/enum_evaluator.py +669 -0
  243. valuesets/validators/oak_config.yaml +70 -0
  244. valuesets/validators/validate_with_ols.py +241 -0
  245. valuesets-0.3.1.dist-info/METADATA +395 -0
  246. valuesets-0.3.1.dist-info/RECORD +248 -0
  247. valuesets-0.3.1.dist-info/WHEEL +4 -0
  248. valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,675 @@
1
+ name: measurements
2
+ title: Units and Measurements Value Sets
3
+ description: 'Value sets for units of measurement including length, mass, volume, temperature, and other physical quantities
4
+ following SI and common standards.
5
+
6
+ '
7
+ id: https://w3id.org/valuesets/units/measurements
8
+ imports:
9
+ - linkml:types
10
+ prefixes:
11
+ linkml: https://w3id.org/linkml/
12
+ UO: http://purl.obolibrary.org/obo/UO_
13
+ QUDT: http://qudt.org/schema/qudt/
14
+ SI: http://www.bipm.org/en/si/
15
+ valuesets: https://w3id.org/valuesets/
16
+ default_prefix: valuesets
17
+ slots:
18
+ length_unit:
19
+ description: Units of length/distance measurement
20
+ range: LengthUnitEnum
21
+ mass_unit:
22
+ description: Units of mass measurement
23
+ range: MassUnitEnum
24
+ volume_unit:
25
+ description: Units of volume measurement
26
+ range: VolumeUnitEnum
27
+ temperature_unit:
28
+ description: Units of temperature measurement
29
+ range: TemperatureUnitEnum
30
+ time_unit:
31
+ description: Units of time measurement
32
+ range: TimeUnitEnum
33
+ pressure_unit:
34
+ description: Units of pressure measurement
35
+ range: PressureUnitEnum
36
+ concentration_unit:
37
+ description: Units of concentration measurement
38
+ range: ConcentrationUnitEnum
39
+ frequency_unit:
40
+ description: Units of frequency measurement
41
+ range: FrequencyUnitEnum
42
+ angle_unit:
43
+ description: Units of angle measurement
44
+ range: AngleUnitEnum
45
+ data_size_unit:
46
+ description: Units of digital data size
47
+ range: DataSizeUnitEnum
48
+ enums:
49
+ LengthUnitEnum:
50
+ description: Units of length/distance measurement
51
+ permissible_values:
52
+ METER:
53
+ title: meter
54
+ description: Meter (SI base unit)
55
+ meaning: UO:0000008
56
+ annotations:
57
+ symbol: m
58
+ system: SI
59
+ KILOMETER:
60
+ title: kilometer
61
+ description: Kilometer (1000 meters)
62
+ meaning: UO:0010066
63
+ annotations:
64
+ symbol: km
65
+ conversion_to_meter: '1000'
66
+ CENTIMETER:
67
+ description: Centimeter (0.01 meter)
68
+ meaning: UO:0000015
69
+ annotations:
70
+ symbol: cm
71
+ conversion_to_meter: '0.01'
72
+ MILLIMETER:
73
+ description: Millimeter (0.001 meter)
74
+ meaning: UO:0000016
75
+ annotations:
76
+ symbol: mm
77
+ conversion_to_meter: '0.001'
78
+ MICROMETER:
79
+ description: Micrometer/micron (10^-6 meter)
80
+ meaning: UO:0000017
81
+ annotations:
82
+ symbol: μm
83
+ conversion_to_meter: 1e-6
84
+ NANOMETER:
85
+ description: Nanometer (10^-9 meter)
86
+ meaning: UO:0000018
87
+ annotations:
88
+ symbol: nm
89
+ conversion_to_meter: 1e-9
90
+ ANGSTROM:
91
+ description: Angstrom (10^-10 meter)
92
+ meaning: UO:0000019
93
+ annotations:
94
+ symbol: Å
95
+ conversion_to_meter: 1e-10
96
+ INCH:
97
+ title: inch
98
+ description: Inch (imperial)
99
+ meaning: UO:0010011
100
+ annotations:
101
+ symbol: in
102
+ conversion_to_meter: '0.0254'
103
+ system: imperial
104
+ FOOT:
105
+ title: foot
106
+ description: Foot (imperial)
107
+ meaning: UO:0010013
108
+ annotations:
109
+ symbol: ft
110
+ conversion_to_meter: '0.3048'
111
+ system: imperial
112
+ YARD:
113
+ title: yard
114
+ description: Yard (imperial)
115
+ meaning: UO:0010014
116
+ annotations:
117
+ symbol: yd
118
+ conversion_to_meter: '0.9144'
119
+ system: imperial
120
+ MILE:
121
+ title: mile
122
+ description: Mile (imperial)
123
+ meaning: UO:0010017
124
+ annotations:
125
+ symbol: mi
126
+ conversion_to_meter: '1609.344'
127
+ system: imperial
128
+ NAUTICAL_MILE:
129
+ title: nautical mile
130
+ description: Nautical mile
131
+ meaning: UO:0010022
132
+ annotations:
133
+ symbol: nmi
134
+ conversion_to_meter: '1852'
135
+ MassUnitEnum:
136
+ description: Units of mass measurement
137
+ permissible_values:
138
+ KILOGRAM:
139
+ description: Kilogram (SI base unit)
140
+ meaning: UO:0000009
141
+ annotations:
142
+ symbol: kg
143
+ system: SI
144
+ GRAM:
145
+ description: Gram (0.001 kilogram)
146
+ meaning: UO:0000021
147
+ annotations:
148
+ symbol: g
149
+ conversion_to_kg: '0.001'
150
+ MILLIGRAM:
151
+ description: Milligram (10^-6 kilogram)
152
+ meaning: UO:0000022
153
+ annotations:
154
+ symbol: mg
155
+ conversion_to_kg: 1e-6
156
+ MICROGRAM:
157
+ description: Microgram (10^-9 kilogram)
158
+ meaning: UO:0000023
159
+ annotations:
160
+ symbol: μg
161
+ conversion_to_kg: 1e-9
162
+ NANOGRAM:
163
+ description: Nanogram (10^-12 kilogram)
164
+ meaning: UO:0000024
165
+ annotations:
166
+ symbol: ng
167
+ conversion_to_kg: 1e-12
168
+ METRIC_TON:
169
+ description: Metric ton/tonne (1000 kilograms)
170
+ meaning: UO:0010038
171
+ aliases:
172
+ - ton
173
+ annotations:
174
+ symbol: t
175
+ conversion_to_kg: '1000'
176
+ POUND:
177
+ title: pound
178
+ description: Pound (imperial)
179
+ meaning: UO:0010034
180
+ annotations:
181
+ symbol: lb
182
+ conversion_to_kg: '0.453592'
183
+ system: imperial
184
+ OUNCE:
185
+ title: ounce
186
+ description: Ounce (imperial)
187
+ meaning: UO:0010033
188
+ annotations:
189
+ symbol: oz
190
+ conversion_to_kg: '0.0283495'
191
+ system: imperial
192
+ STONE:
193
+ title: stone
194
+ description: Stone (imperial)
195
+ meaning: UO:0010035
196
+ annotations:
197
+ symbol: st
198
+ conversion_to_kg: '6.35029'
199
+ system: imperial
200
+ DALTON:
201
+ description: Dalton/atomic mass unit
202
+ meaning: UO:0000221
203
+ annotations:
204
+ symbol: Da
205
+ conversion_to_kg: '1.66054e-27'
206
+ use: molecular mass
207
+ VolumeUnitEnum:
208
+ description: Units of volume measurement
209
+ permissible_values:
210
+ LITER:
211
+ description: Liter (SI derived)
212
+ meaning: UO:0000099
213
+ annotations:
214
+ symbol: L
215
+ conversion_to_m3: '0.001'
216
+ MILLILITER:
217
+ description: Milliliter (0.001 liter)
218
+ meaning: UO:0000098
219
+ annotations:
220
+ symbol: mL
221
+ conversion_to_m3: 1e-6
222
+ MICROLITER:
223
+ description: Microliter (10^-6 liter)
224
+ meaning: UO:0000101
225
+ annotations:
226
+ symbol: μL
227
+ conversion_to_m3: 1e-9
228
+ CUBIC_METER:
229
+ description: Cubic meter (SI derived)
230
+ meaning: UO:0000096
231
+ annotations:
232
+ symbol: m³
233
+ system: SI
234
+ CUBIC_CENTIMETER:
235
+ description: Cubic centimeter
236
+ meaning: UO:0000097
237
+ annotations:
238
+ symbol: cm³
239
+ conversion_to_m3: 1e-6
240
+ GALLON_US:
241
+ description: US gallon
242
+ annotations:
243
+ symbol: gal
244
+ conversion_to_m3: '0.00378541'
245
+ system: US
246
+ GALLON_UK:
247
+ title: gallon
248
+ description: UK/Imperial gallon
249
+ meaning: UO:0010030
250
+ aliases:
251
+ - imperial gallon
252
+ annotations:
253
+ symbol: gal
254
+ conversion_to_m3: '0.00454609'
255
+ system: imperial
256
+ FLUID_OUNCE_US:
257
+ title: fluid ounce
258
+ description: US fluid ounce
259
+ meaning: UO:0010026
260
+ aliases:
261
+ - imperial fluid ounce
262
+ annotations:
263
+ symbol: fl oz
264
+ conversion_to_m3: '2.95735e-5'
265
+ system: US
266
+ PINT_US:
267
+ title: pint
268
+ description: US pint
269
+ meaning: UO:0010028
270
+ aliases:
271
+ - imperial pint
272
+ annotations:
273
+ symbol: pt
274
+ conversion_to_m3: '0.000473176'
275
+ system: US
276
+ QUART_US:
277
+ title: quart
278
+ description: US quart
279
+ meaning: UO:0010029
280
+ aliases:
281
+ - imperial quart
282
+ annotations:
283
+ symbol: qt
284
+ conversion_to_m3: '0.000946353'
285
+ system: US
286
+ CUP_US:
287
+ title: united states customary cup
288
+ description: US cup
289
+ meaning: UO:0010046
290
+ annotations:
291
+ symbol: cup
292
+ conversion_to_m3: '0.000236588'
293
+ system: US
294
+ TABLESPOON:
295
+ title: united states customary tablespoon
296
+ description: Tablespoon
297
+ meaning: UO:0010044
298
+ annotations:
299
+ symbol: tbsp
300
+ conversion_to_m3: '1.47868e-5'
301
+ TEASPOON:
302
+ title: united states customary teaspoon
303
+ description: Teaspoon
304
+ meaning: UO:0010041
305
+ annotations:
306
+ symbol: tsp
307
+ conversion_to_m3: '4.92892e-6'
308
+ TemperatureUnitEnum:
309
+ description: Units of temperature measurement
310
+ permissible_values:
311
+ KELVIN:
312
+ description: Kelvin (SI base unit)
313
+ meaning: UO:0000012
314
+ annotations:
315
+ symbol: K
316
+ system: SI
317
+ absolute: 'true'
318
+ CELSIUS:
319
+ title: degree Celsius
320
+ description: Celsius/Centigrade
321
+ meaning: UO:0000027
322
+ annotations:
323
+ symbol: °C
324
+ conversion: K - 273.15
325
+ FAHRENHEIT:
326
+ title: degree Fahrenheit
327
+ description: Fahrenheit
328
+ meaning: UO:0000195
329
+ annotations:
330
+ symbol: °F
331
+ conversion: (K - 273.15) * 9/5 + 32
332
+ system: imperial
333
+ RANKINE:
334
+ description: Rankine
335
+ annotations:
336
+ symbol: °R
337
+ conversion: K * 9/5
338
+ absolute: 'true'
339
+ TimeUnitEnum:
340
+ description: Units of time measurement
341
+ permissible_values:
342
+ SECOND:
343
+ description: Second (SI base unit)
344
+ meaning: UO:0000010
345
+ annotations:
346
+ symbol: s
347
+ system: SI
348
+ MILLISECOND:
349
+ description: Millisecond (0.001 second)
350
+ meaning: UO:0000028
351
+ annotations:
352
+ symbol: ms
353
+ conversion_to_second: '0.001'
354
+ MICROSECOND:
355
+ description: Microsecond (10^-6 second)
356
+ meaning: UO:0000029
357
+ annotations:
358
+ symbol: μs
359
+ conversion_to_second: 1e-6
360
+ NANOSECOND:
361
+ title: nanosecond
362
+ description: Nanosecond (10^-9 second)
363
+ meaning: UO:0000150
364
+ annotations:
365
+ symbol: ns
366
+ conversion_to_second: 1e-9
367
+ MINUTE:
368
+ description: Minute (60 seconds)
369
+ meaning: UO:0000031
370
+ annotations:
371
+ symbol: min
372
+ conversion_to_second: '60'
373
+ HOUR:
374
+ description: Hour (3600 seconds)
375
+ meaning: UO:0000032
376
+ annotations:
377
+ symbol: h
378
+ conversion_to_second: '3600'
379
+ DAY:
380
+ description: Day (86400 seconds)
381
+ meaning: UO:0000033
382
+ annotations:
383
+ symbol: d
384
+ conversion_to_second: '86400'
385
+ WEEK:
386
+ description: Week (7 days)
387
+ meaning: UO:0000034
388
+ annotations:
389
+ symbol: wk
390
+ conversion_to_second: '604800'
391
+ MONTH:
392
+ description: Month (approximately 30 days)
393
+ meaning: UO:0000035
394
+ annotations:
395
+ symbol: mo
396
+ conversion_to_second: '2592000'
397
+ note: approximate, varies by month
398
+ YEAR:
399
+ description: Year (365.25 days)
400
+ meaning: UO:0000036
401
+ annotations:
402
+ symbol: yr
403
+ conversion_to_second: '31557600'
404
+ note: accounts for leap years
405
+ PressureUnitEnum:
406
+ description: Units of pressure measurement
407
+ permissible_values:
408
+ PASCAL:
409
+ description: Pascal (SI derived unit)
410
+ meaning: UO:0000110
411
+ annotations:
412
+ symbol: Pa
413
+ system: SI
414
+ definition: N/m²
415
+ KILOPASCAL:
416
+ description: Kilopascal (1000 pascals)
417
+ annotations:
418
+ symbol: kPa
419
+ conversion_to_pascal: '1000'
420
+ MEGAPASCAL:
421
+ description: Megapascal (10^6 pascals)
422
+ annotations:
423
+ symbol: MPa
424
+ conversion_to_pascal: 1e6
425
+ BAR:
426
+ description: Bar
427
+ annotations:
428
+ symbol: bar
429
+ conversion_to_pascal: '100000'
430
+ MILLIBAR:
431
+ description: Millibar
432
+ annotations:
433
+ symbol: mbar
434
+ conversion_to_pascal: '100'
435
+ ATMOSPHERE:
436
+ description: Standard atmosphere
437
+ annotations:
438
+ symbol: atm
439
+ conversion_to_pascal: '101325'
440
+ TORR:
441
+ description: Torr (millimeter of mercury)
442
+ annotations:
443
+ symbol: Torr
444
+ conversion_to_pascal: '133.322'
445
+ PSI:
446
+ title: pounds per square inch
447
+ description: Pounds per square inch
448
+ meaning: UO:0010052
449
+ aliases:
450
+ - pound-force per square inch
451
+ annotations:
452
+ symbol: psi
453
+ conversion_to_pascal: '6894.76'
454
+ system: imperial
455
+ MM_HG:
456
+ title: millimetres of mercury
457
+ description: Millimeters of mercury
458
+ meaning: UO:0000272
459
+ annotations:
460
+ symbol: mmHg
461
+ conversion_to_pascal: '133.322'
462
+ use: medical blood pressure
463
+ ConcentrationUnitEnum:
464
+ description: Units of concentration measurement
465
+ permissible_values:
466
+ MOLAR:
467
+ description: Molar (moles per liter)
468
+ meaning: UO:0000062
469
+ annotations:
470
+ symbol: M
471
+ definition: mol/L
472
+ MILLIMOLAR:
473
+ description: Millimolar (10^-3 molar)
474
+ meaning: UO:0000063
475
+ annotations:
476
+ symbol: mM
477
+ conversion_to_molar: '0.001'
478
+ MICROMOLAR:
479
+ description: Micromolar (10^-6 molar)
480
+ meaning: UO:0000064
481
+ annotations:
482
+ symbol: μM
483
+ conversion_to_molar: 1e-6
484
+ NANOMOLAR:
485
+ description: Nanomolar (10^-9 molar)
486
+ meaning: UO:0000065
487
+ annotations:
488
+ symbol: nM
489
+ conversion_to_molar: 1e-9
490
+ PICOMOLAR:
491
+ description: Picomolar (10^-12 molar)
492
+ meaning: UO:0000066
493
+ annotations:
494
+ symbol: pM
495
+ conversion_to_molar: 1e-12
496
+ MG_PER_ML:
497
+ title: milligram per milliliter
498
+ description: Milligrams per milliliter
499
+ meaning: UO:0000176
500
+ annotations:
501
+ symbol: mg/mL
502
+ UG_PER_ML:
503
+ title: microgram per milliliter
504
+ description: Micrograms per milliliter
505
+ meaning: UO:0000274
506
+ annotations:
507
+ symbol: μg/mL
508
+ NG_PER_ML:
509
+ title: nanogram per milliliter
510
+ description: Nanograms per milliliter
511
+ meaning: UO:0000275
512
+ annotations:
513
+ symbol: ng/mL
514
+ PERCENT:
515
+ description: Percent (parts per hundred)
516
+ meaning: UO:0000187
517
+ annotations:
518
+ symbol: '%'
519
+ conversion_to_fraction: '0.01'
520
+ PPM:
521
+ title: parts per million
522
+ description: Parts per million
523
+ meaning: UO:0000169
524
+ annotations:
525
+ symbol: ppm
526
+ conversion_to_fraction: 1e-6
527
+ PPB:
528
+ title: parts per billion
529
+ description: Parts per billion
530
+ meaning: UO:0000170
531
+ annotations:
532
+ symbol: ppb
533
+ conversion_to_fraction: 1e-9
534
+ FrequencyUnitEnum:
535
+ description: Units of frequency measurement
536
+ permissible_values:
537
+ HERTZ:
538
+ description: Hertz (cycles per second)
539
+ meaning: UO:0000106
540
+ annotations:
541
+ symbol: Hz
542
+ system: SI
543
+ KILOHERTZ:
544
+ description: Kilohertz (1000 Hz)
545
+ annotations:
546
+ symbol: kHz
547
+ conversion_to_hz: '1000'
548
+ MEGAHERTZ:
549
+ title: megaHertz
550
+ description: Megahertz (10^6 Hz)
551
+ meaning: UO:0000325
552
+ annotations:
553
+ symbol: MHz
554
+ conversion_to_hz: 1e6
555
+ GIGAHERTZ:
556
+ description: Gigahertz (10^9 Hz)
557
+ annotations:
558
+ symbol: GHz
559
+ conversion_to_hz: 1e9
560
+ RPM:
561
+ description: Revolutions per minute
562
+ annotations:
563
+ symbol: rpm
564
+ conversion_to_hz: '0.0166667'
565
+ BPM:
566
+ description: Beats per minute
567
+ annotations:
568
+ symbol: bpm
569
+ conversion_to_hz: '0.0166667'
570
+ use: heart rate
571
+ AngleUnitEnum:
572
+ description: Units of angle measurement
573
+ permissible_values:
574
+ RADIAN:
575
+ description: Radian (SI derived unit)
576
+ meaning: UO:0000123
577
+ annotations:
578
+ symbol: rad
579
+ system: SI
580
+ DEGREE:
581
+ description: Degree
582
+ meaning: UO:0000185
583
+ annotations:
584
+ symbol: °
585
+ conversion_to_radian: '0.0174533'
586
+ MINUTE_OF_ARC:
587
+ description: Minute of arc/arcminute
588
+ annotations:
589
+ symbol: ''''
590
+ conversion_to_degree: '0.0166667'
591
+ SECOND_OF_ARC:
592
+ description: Second of arc/arcsecond
593
+ annotations:
594
+ symbol: '"'
595
+ conversion_to_degree: '0.000277778'
596
+ GRADIAN:
597
+ description: Gradian/gon
598
+ annotations:
599
+ symbol: gon
600
+ conversion_to_degree: '0.9'
601
+ TURN:
602
+ description: Turn/revolution
603
+ annotations:
604
+ symbol: turn
605
+ conversion_to_radian: '6.28319'
606
+ DataSizeUnitEnum:
607
+ description: Units of digital data size
608
+ permissible_values:
609
+ BIT:
610
+ description: Bit (binary digit)
611
+ annotations:
612
+ symbol: bit
613
+ base: binary
614
+ BYTE:
615
+ description: Byte (8 bits)
616
+ meaning: UO:0000233
617
+ annotations:
618
+ symbol: B
619
+ conversion_to_bit: '8'
620
+ KILOBYTE:
621
+ description: Kilobyte (1000 bytes)
622
+ meaning: UO:0000234
623
+ annotations:
624
+ symbol: KB
625
+ conversion_to_byte: '1000'
626
+ standard: decimal
627
+ MEGABYTE:
628
+ description: Megabyte (10^6 bytes)
629
+ meaning: UO:0000235
630
+ annotations:
631
+ symbol: MB
632
+ conversion_to_byte: 1e6
633
+ standard: decimal
634
+ GIGABYTE:
635
+ description: Gigabyte (10^9 bytes)
636
+ annotations:
637
+ symbol: GB
638
+ conversion_to_byte: 1e9
639
+ standard: decimal
640
+ TERABYTE:
641
+ description: Terabyte (10^12 bytes)
642
+ annotations:
643
+ symbol: TB
644
+ conversion_to_byte: 1e12
645
+ standard: decimal
646
+ PETABYTE:
647
+ description: Petabyte (10^15 bytes)
648
+ annotations:
649
+ symbol: PB
650
+ conversion_to_byte: 1e15
651
+ standard: decimal
652
+ KIBIBYTE:
653
+ description: Kibibyte (1024 bytes)
654
+ annotations:
655
+ symbol: KiB
656
+ conversion_to_byte: '1024'
657
+ standard: binary
658
+ MEBIBYTE:
659
+ description: Mebibyte (2^20 bytes)
660
+ annotations:
661
+ symbol: MiB
662
+ conversion_to_byte: '1048576'
663
+ standard: binary
664
+ GIBIBYTE:
665
+ description: Gibibyte (2^30 bytes)
666
+ annotations:
667
+ symbol: GiB
668
+ conversion_to_byte: '1073741824'
669
+ standard: binary
670
+ TEBIBYTE:
671
+ description: Tebibyte (2^40 bytes)
672
+ annotations:
673
+ symbol: TiB
674
+ conversion_to_byte: '1099511627776'
675
+ standard: binary