unitsdb 2.1.1 → 2.2.1
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.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +8 -1
- data/.gitignore +2 -0
- data/.gitmodules +4 -3
- data/.rubocop.yml +13 -8
- data/.rubocop_todo.yml +217 -100
- data/CLAUDE.md +55 -0
- data/Gemfile +4 -1
- data/README.adoc +283 -16
- data/data/dimensions.yaml +1864 -0
- data/data/prefixes.yaml +874 -0
- data/data/quantities.yaml +3715 -0
- data/data/scales.yaml +97 -0
- data/data/schemas/dimensions-schema.yaml +153 -0
- data/data/schemas/prefixes-schema.yaml +155 -0
- data/data/schemas/quantities-schema.yaml +117 -0
- data/data/schemas/scales-schema.yaml +106 -0
- data/data/schemas/unit_systems-schema.yaml +116 -0
- data/data/schemas/units-schema.yaml +215 -0
- data/data/unit_systems.yaml +78 -0
- data/data/units.yaml +14052 -0
- data/exe/unitsdb +7 -1
- data/lib/unitsdb/cli.rb +42 -15
- data/lib/unitsdb/commands/_modify.rb +40 -4
- data/lib/unitsdb/commands/base.rb +6 -2
- data/lib/unitsdb/commands/check_si/si_formatter.rb +488 -0
- data/lib/unitsdb/commands/check_si/si_matcher.rb +487 -0
- data/lib/unitsdb/commands/check_si/si_ttl_parser.rb +103 -0
- data/lib/unitsdb/commands/check_si/si_updater.rb +254 -0
- data/lib/unitsdb/commands/check_si.rb +54 -35
- data/lib/unitsdb/commands/get.rb +11 -10
- data/lib/unitsdb/commands/normalize.rb +21 -7
- data/lib/unitsdb/commands/qudt/check.rb +150 -0
- data/lib/unitsdb/commands/qudt/formatter.rb +194 -0
- data/lib/unitsdb/commands/qudt/matcher.rb +746 -0
- data/lib/unitsdb/commands/qudt/ttl_parser.rb +403 -0
- data/lib/unitsdb/commands/qudt/update.rb +126 -0
- data/lib/unitsdb/commands/qudt/updater.rb +189 -0
- data/lib/unitsdb/commands/qudt.rb +82 -0
- data/lib/unitsdb/commands/release.rb +12 -9
- data/lib/unitsdb/commands/search.rb +12 -11
- data/lib/unitsdb/commands/ucum/check.rb +42 -29
- data/lib/unitsdb/commands/ucum/formatter.rb +2 -1
- data/lib/unitsdb/commands/ucum/matcher.rb +23 -9
- data/lib/unitsdb/commands/ucum/update.rb +14 -13
- data/lib/unitsdb/commands/ucum/updater.rb +40 -6
- data/lib/unitsdb/commands/ucum/xml_parser.rb +0 -2
- data/lib/unitsdb/commands/ucum.rb +44 -4
- data/lib/unitsdb/commands/validate/identifiers.rb +2 -4
- data/lib/unitsdb/commands/validate/qudt_references.rb +111 -0
- data/lib/unitsdb/commands/validate/references.rb +36 -19
- data/lib/unitsdb/commands/validate/si_references.rb +3 -5
- data/lib/unitsdb/commands/validate/ucum_references.rb +105 -0
- data/lib/unitsdb/commands/validate.rb +67 -11
- data/lib/unitsdb/commands.rb +20 -0
- data/lib/unitsdb/database.rb +90 -52
- data/lib/unitsdb/dimension.rb +1 -4
- data/lib/unitsdb/dimension_details.rb +0 -1
- data/lib/unitsdb/dimensions.rb +0 -2
- data/lib/unitsdb/errors.rb +7 -0
- data/lib/unitsdb/prefix.rb +0 -4
- data/lib/unitsdb/prefix_reference.rb +0 -2
- data/lib/unitsdb/prefixes.rb +0 -1
- data/lib/unitsdb/quantities.rb +0 -2
- data/lib/unitsdb/quantity.rb +0 -6
- data/lib/unitsdb/qudt.rb +100 -0
- data/lib/unitsdb/root_unit_reference.rb +0 -3
- data/lib/unitsdb/scale.rb +0 -4
- data/lib/unitsdb/scale_reference.rb +0 -2
- data/lib/unitsdb/scales.rb +0 -2
- data/lib/unitsdb/si_derived_base.rb +0 -2
- data/lib/unitsdb/ucum.rb +14 -10
- data/lib/unitsdb/unit.rb +0 -10
- data/lib/unitsdb/unit_reference.rb +0 -2
- data/lib/unitsdb/unit_system.rb +1 -3
- data/lib/unitsdb/unit_system_reference.rb +0 -2
- data/lib/unitsdb/unit_systems.rb +0 -2
- data/lib/unitsdb/units.rb +0 -2
- data/lib/unitsdb/utils.rb +32 -21
- data/lib/unitsdb/version.rb +5 -1
- data/lib/unitsdb.rb +62 -14
- data/unitsdb.gemspec +6 -3
- metadata +52 -13
- data/lib/unitsdb/commands/si_formatter.rb +0 -485
- data/lib/unitsdb/commands/si_matcher.rb +0 -470
- data/lib/unitsdb/commands/si_ttl_parser.rb +0 -100
- data/lib/unitsdb/commands/si_updater.rb +0 -212
data/data/prefixes.yaml
ADDED
|
@@ -0,0 +1,874 @@
|
|
|
1
|
+
# yaml-language-server: $schema=schemas/prefixes-schema.yaml
|
|
2
|
+
---
|
|
3
|
+
schema_version: 2.0.0
|
|
4
|
+
prefixes:
|
|
5
|
+
- base: 10
|
|
6
|
+
identifiers:
|
|
7
|
+
- type: nist
|
|
8
|
+
id: NISTp10_-1
|
|
9
|
+
- type: unitsml
|
|
10
|
+
id: p:deci
|
|
11
|
+
names:
|
|
12
|
+
- value: deci
|
|
13
|
+
lang: en
|
|
14
|
+
power: -1
|
|
15
|
+
references:
|
|
16
|
+
- type: normative
|
|
17
|
+
authority: si-digital-framework
|
|
18
|
+
uri: http://si-digital-framework.org/SI/prefixes/deci
|
|
19
|
+
- type: informative
|
|
20
|
+
authority: ucum
|
|
21
|
+
uri: ucum:prefix:code:d
|
|
22
|
+
- type: informative
|
|
23
|
+
authority: qudt
|
|
24
|
+
uri: http://qudt.org/vocab/unit/Deci
|
|
25
|
+
short: deci
|
|
26
|
+
symbols:
|
|
27
|
+
- latex: d
|
|
28
|
+
unicode: d
|
|
29
|
+
ascii: d
|
|
30
|
+
html: d
|
|
31
|
+
id: deci
|
|
32
|
+
mathml: "<mi>d</mi>"
|
|
33
|
+
- base: 10
|
|
34
|
+
identifiers:
|
|
35
|
+
- type: nist
|
|
36
|
+
id: NISTp10_-12
|
|
37
|
+
- type: unitsml
|
|
38
|
+
id: p:pico
|
|
39
|
+
names:
|
|
40
|
+
- value: pico
|
|
41
|
+
lang: en
|
|
42
|
+
power: -12
|
|
43
|
+
references:
|
|
44
|
+
- type: normative
|
|
45
|
+
authority: si-digital-framework
|
|
46
|
+
uri: http://si-digital-framework.org/SI/prefixes/pico
|
|
47
|
+
- type: informative
|
|
48
|
+
authority: ucum
|
|
49
|
+
uri: ucum:prefix:code:p
|
|
50
|
+
- type: informative
|
|
51
|
+
authority: qudt
|
|
52
|
+
uri: http://qudt.org/vocab/unit/Pico
|
|
53
|
+
short: pico
|
|
54
|
+
symbols:
|
|
55
|
+
- latex: p
|
|
56
|
+
unicode: p
|
|
57
|
+
ascii: p
|
|
58
|
+
html: p
|
|
59
|
+
id: pico
|
|
60
|
+
mathml: "<mi>p</mi>"
|
|
61
|
+
- base: 10
|
|
62
|
+
identifiers:
|
|
63
|
+
- type: nist
|
|
64
|
+
id: NISTp10_-15
|
|
65
|
+
- type: unitsml
|
|
66
|
+
id: p:femto
|
|
67
|
+
names:
|
|
68
|
+
- value: femto
|
|
69
|
+
lang: en
|
|
70
|
+
power: -15
|
|
71
|
+
references:
|
|
72
|
+
- type: normative
|
|
73
|
+
authority: si-digital-framework
|
|
74
|
+
uri: http://si-digital-framework.org/SI/prefixes/femto
|
|
75
|
+
- type: informative
|
|
76
|
+
authority: ucum
|
|
77
|
+
uri: ucum:prefix:code:f
|
|
78
|
+
- type: informative
|
|
79
|
+
authority: qudt
|
|
80
|
+
uri: http://qudt.org/vocab/unit/Femto
|
|
81
|
+
short: femto
|
|
82
|
+
symbols:
|
|
83
|
+
- latex: f
|
|
84
|
+
unicode: f
|
|
85
|
+
ascii: f
|
|
86
|
+
html: f
|
|
87
|
+
id: femto
|
|
88
|
+
mathml: "<mi>f</mi>"
|
|
89
|
+
- base: 10
|
|
90
|
+
identifiers:
|
|
91
|
+
- type: nist
|
|
92
|
+
id: NISTp10_-18
|
|
93
|
+
- type: unitsml
|
|
94
|
+
id: p:atto
|
|
95
|
+
names:
|
|
96
|
+
- value: atto
|
|
97
|
+
lang: en
|
|
98
|
+
power: -18
|
|
99
|
+
references:
|
|
100
|
+
- type: normative
|
|
101
|
+
authority: si-digital-framework
|
|
102
|
+
uri: http://si-digital-framework.org/SI/prefixes/atto
|
|
103
|
+
- type: informative
|
|
104
|
+
authority: ucum
|
|
105
|
+
uri: ucum:prefix:code:a
|
|
106
|
+
- type: informative
|
|
107
|
+
authority: qudt
|
|
108
|
+
uri: http://qudt.org/vocab/unit/Atto
|
|
109
|
+
short: atto
|
|
110
|
+
symbols:
|
|
111
|
+
- latex: a
|
|
112
|
+
unicode: a
|
|
113
|
+
ascii: a
|
|
114
|
+
html: a
|
|
115
|
+
id: atto
|
|
116
|
+
mathml: "<mi>a</mi>"
|
|
117
|
+
- base: 10
|
|
118
|
+
identifiers:
|
|
119
|
+
- type: nist
|
|
120
|
+
id: NISTp10_-2
|
|
121
|
+
- type: unitsml
|
|
122
|
+
id: p:centi
|
|
123
|
+
names:
|
|
124
|
+
- value: centi
|
|
125
|
+
lang: en
|
|
126
|
+
power: -2
|
|
127
|
+
references:
|
|
128
|
+
- type: normative
|
|
129
|
+
authority: si-digital-framework
|
|
130
|
+
uri: http://si-digital-framework.org/SI/prefixes/centi
|
|
131
|
+
- type: informative
|
|
132
|
+
authority: ucum
|
|
133
|
+
uri: ucum:prefix:code:c
|
|
134
|
+
- type: informative
|
|
135
|
+
authority: qudt
|
|
136
|
+
uri: http://qudt.org/vocab/unit/Centi
|
|
137
|
+
short: centi
|
|
138
|
+
symbols:
|
|
139
|
+
- latex: c
|
|
140
|
+
unicode: c
|
|
141
|
+
ascii: c
|
|
142
|
+
html: c
|
|
143
|
+
id: centi
|
|
144
|
+
mathml: "<mi>c</mi>"
|
|
145
|
+
- base: 10
|
|
146
|
+
identifiers:
|
|
147
|
+
- type: nist
|
|
148
|
+
id: NISTp10_-21
|
|
149
|
+
- type: unitsml
|
|
150
|
+
id: p:zepto
|
|
151
|
+
names:
|
|
152
|
+
- value: zepto
|
|
153
|
+
lang: en
|
|
154
|
+
power: -21
|
|
155
|
+
references:
|
|
156
|
+
- type: normative
|
|
157
|
+
authority: si-digital-framework
|
|
158
|
+
uri: http://si-digital-framework.org/SI/prefixes/zepto
|
|
159
|
+
- type: informative
|
|
160
|
+
authority: ucum
|
|
161
|
+
uri: ucum:prefix:code:z
|
|
162
|
+
- type: informative
|
|
163
|
+
authority: qudt
|
|
164
|
+
uri: http://qudt.org/vocab/unit/Zepto
|
|
165
|
+
short: zepto
|
|
166
|
+
symbols:
|
|
167
|
+
- latex: z
|
|
168
|
+
unicode: z
|
|
169
|
+
ascii: z
|
|
170
|
+
html: z
|
|
171
|
+
id: zepto
|
|
172
|
+
mathml: "<mi>z</mi>"
|
|
173
|
+
- base: 10
|
|
174
|
+
identifiers:
|
|
175
|
+
- type: nist
|
|
176
|
+
id: NISTp10_-24
|
|
177
|
+
- type: unitsml
|
|
178
|
+
id: p:yocto
|
|
179
|
+
names:
|
|
180
|
+
- value: yocto
|
|
181
|
+
lang: en
|
|
182
|
+
power: -24
|
|
183
|
+
references:
|
|
184
|
+
- type: normative
|
|
185
|
+
authority: si-digital-framework
|
|
186
|
+
uri: http://si-digital-framework.org/SI/prefixes/yocto
|
|
187
|
+
- type: informative
|
|
188
|
+
authority: ucum
|
|
189
|
+
uri: ucum:prefix:code:y
|
|
190
|
+
- type: informative
|
|
191
|
+
authority: qudt
|
|
192
|
+
uri: http://qudt.org/vocab/unit/Yocto
|
|
193
|
+
short: yocto
|
|
194
|
+
symbols:
|
|
195
|
+
- latex: "y"
|
|
196
|
+
unicode: "y"
|
|
197
|
+
ascii: "y"
|
|
198
|
+
html: "y"
|
|
199
|
+
id: yocto
|
|
200
|
+
mathml: "<mi>y</mi>"
|
|
201
|
+
- base: 10
|
|
202
|
+
identifiers:
|
|
203
|
+
- type: nist
|
|
204
|
+
id: NISTp10_-27
|
|
205
|
+
- type: unitsml
|
|
206
|
+
id: p:ronto
|
|
207
|
+
names:
|
|
208
|
+
- value: ronto
|
|
209
|
+
lang: en
|
|
210
|
+
power: -27
|
|
211
|
+
references:
|
|
212
|
+
- type: normative
|
|
213
|
+
authority: si-digital-framework
|
|
214
|
+
uri: http://si-digital-framework.org/SI/prefixes/ronto
|
|
215
|
+
- type: informative
|
|
216
|
+
authority: qudt
|
|
217
|
+
uri: http://qudt.org/vocab/unit/Ronto
|
|
218
|
+
short: ronto
|
|
219
|
+
symbols:
|
|
220
|
+
- latex: r
|
|
221
|
+
unicode: r
|
|
222
|
+
ascii: r
|
|
223
|
+
html: r
|
|
224
|
+
id: ronto
|
|
225
|
+
mathml: "<mi>r</mi>"
|
|
226
|
+
- base: 10
|
|
227
|
+
identifiers:
|
|
228
|
+
- type: nist
|
|
229
|
+
id: NISTp10_-3
|
|
230
|
+
- type: unitsml
|
|
231
|
+
id: p:milli
|
|
232
|
+
names:
|
|
233
|
+
- value: milli
|
|
234
|
+
lang: en
|
|
235
|
+
power: -3
|
|
236
|
+
references:
|
|
237
|
+
- type: normative
|
|
238
|
+
authority: si-digital-framework
|
|
239
|
+
uri: http://si-digital-framework.org/SI/prefixes/milli
|
|
240
|
+
- type: informative
|
|
241
|
+
authority: ucum
|
|
242
|
+
uri: ucum:prefix:code:m
|
|
243
|
+
- type: informative
|
|
244
|
+
authority: qudt
|
|
245
|
+
uri: http://qudt.org/vocab/unit/Milli
|
|
246
|
+
short: milli
|
|
247
|
+
symbols:
|
|
248
|
+
- latex: m
|
|
249
|
+
unicode: m
|
|
250
|
+
ascii: m
|
|
251
|
+
html: m
|
|
252
|
+
id: milli
|
|
253
|
+
mathml: "<mi>m</mi>"
|
|
254
|
+
- base: 10
|
|
255
|
+
identifiers:
|
|
256
|
+
- type: nist
|
|
257
|
+
id: NISTp10_-30
|
|
258
|
+
- type: unitsml
|
|
259
|
+
id: p:quecto
|
|
260
|
+
names:
|
|
261
|
+
- value: quecto
|
|
262
|
+
lang: en
|
|
263
|
+
power: -30
|
|
264
|
+
references:
|
|
265
|
+
- type: normative
|
|
266
|
+
authority: si-digital-framework
|
|
267
|
+
uri: http://si-digital-framework.org/SI/prefixes/quecto
|
|
268
|
+
- type: informative
|
|
269
|
+
authority: qudt
|
|
270
|
+
uri: http://qudt.org/vocab/unit/Quecto
|
|
271
|
+
short: quecto
|
|
272
|
+
symbols:
|
|
273
|
+
- latex: q
|
|
274
|
+
unicode: q
|
|
275
|
+
ascii: q
|
|
276
|
+
html: q
|
|
277
|
+
id: quecto
|
|
278
|
+
mathml: "<mi>q</mi>"
|
|
279
|
+
- base: 10
|
|
280
|
+
identifiers:
|
|
281
|
+
- type: nist
|
|
282
|
+
id: NISTp10_-6
|
|
283
|
+
- type: unitsml
|
|
284
|
+
id: p:micro
|
|
285
|
+
names:
|
|
286
|
+
- value: micro
|
|
287
|
+
lang: en
|
|
288
|
+
power: -6
|
|
289
|
+
references:
|
|
290
|
+
- type: normative
|
|
291
|
+
authority: si-digital-framework
|
|
292
|
+
uri: http://si-digital-framework.org/SI/prefixes/micro
|
|
293
|
+
- type: informative
|
|
294
|
+
authority: ucum
|
|
295
|
+
uri: ucum:prefix:code:u
|
|
296
|
+
- type: informative
|
|
297
|
+
authority: qudt
|
|
298
|
+
uri: http://qudt.org/vocab/unit/Micro
|
|
299
|
+
short: micro
|
|
300
|
+
symbols:
|
|
301
|
+
- latex: "$mu$"
|
|
302
|
+
unicode: μ
|
|
303
|
+
ascii: u
|
|
304
|
+
html: "µ"
|
|
305
|
+
id: micro
|
|
306
|
+
mathml: "<mi>µ</mi>"
|
|
307
|
+
- base: 10
|
|
308
|
+
identifiers:
|
|
309
|
+
- type: nist
|
|
310
|
+
id: NISTp10_-9
|
|
311
|
+
- type: unitsml
|
|
312
|
+
id: p:nano
|
|
313
|
+
names:
|
|
314
|
+
- value: nano
|
|
315
|
+
lang: en
|
|
316
|
+
power: -9
|
|
317
|
+
references:
|
|
318
|
+
- type: normative
|
|
319
|
+
authority: si-digital-framework
|
|
320
|
+
uri: http://si-digital-framework.org/SI/prefixes/nano
|
|
321
|
+
- type: informative
|
|
322
|
+
authority: ucum
|
|
323
|
+
uri: ucum:prefix:code:n
|
|
324
|
+
- type: informative
|
|
325
|
+
authority: qudt
|
|
326
|
+
uri: http://qudt.org/vocab/unit/Nano
|
|
327
|
+
short: nano
|
|
328
|
+
symbols:
|
|
329
|
+
- latex: "n"
|
|
330
|
+
unicode: "n"
|
|
331
|
+
ascii: "n"
|
|
332
|
+
html: "n"
|
|
333
|
+
id: nano
|
|
334
|
+
mathml: "<mi>n</mi>"
|
|
335
|
+
- base: 10
|
|
336
|
+
identifiers:
|
|
337
|
+
- type: nist
|
|
338
|
+
id: NISTp10_0
|
|
339
|
+
- type: unitsml
|
|
340
|
+
id: p:none
|
|
341
|
+
names:
|
|
342
|
+
- value: none
|
|
343
|
+
lang: en
|
|
344
|
+
power: 0
|
|
345
|
+
references:
|
|
346
|
+
- type: normative
|
|
347
|
+
authority: si-digital-framework
|
|
348
|
+
uri: http://si-digital-framework.org/SI/prefixes/none
|
|
349
|
+
short: none
|
|
350
|
+
symbols:
|
|
351
|
+
- latex: '1'
|
|
352
|
+
unicode: '1'
|
|
353
|
+
ascii: '1'
|
|
354
|
+
html: '1'
|
|
355
|
+
id: unity
|
|
356
|
+
mathml: "<mn>1</mn>"
|
|
357
|
+
- base: 10
|
|
358
|
+
identifiers:
|
|
359
|
+
- type: nist
|
|
360
|
+
id: NISTp10_1
|
|
361
|
+
- type: unitsml
|
|
362
|
+
id: p:deka
|
|
363
|
+
names:
|
|
364
|
+
- value: deka
|
|
365
|
+
lang: en
|
|
366
|
+
power: 1
|
|
367
|
+
references:
|
|
368
|
+
- type: normative
|
|
369
|
+
authority: si-digital-framework
|
|
370
|
+
uri: http://si-digital-framework.org/SI/prefixes/deca
|
|
371
|
+
- type: informative
|
|
372
|
+
authority: ucum
|
|
373
|
+
uri: ucum:prefix:code:da
|
|
374
|
+
- type: informative
|
|
375
|
+
authority: qudt
|
|
376
|
+
uri: http://qudt.org/vocab/unit/Deca
|
|
377
|
+
short: deka
|
|
378
|
+
symbols:
|
|
379
|
+
- latex: da
|
|
380
|
+
unicode: da
|
|
381
|
+
ascii: da
|
|
382
|
+
html: da
|
|
383
|
+
id: deka
|
|
384
|
+
mathml: "<mi>da</mi>"
|
|
385
|
+
- base: 10
|
|
386
|
+
identifiers:
|
|
387
|
+
- type: nist
|
|
388
|
+
id: NISTp10_12
|
|
389
|
+
- type: unitsml
|
|
390
|
+
id: p:tera
|
|
391
|
+
names:
|
|
392
|
+
- value: tera
|
|
393
|
+
lang: en
|
|
394
|
+
power: 12
|
|
395
|
+
references:
|
|
396
|
+
- type: normative
|
|
397
|
+
authority: si-digital-framework
|
|
398
|
+
uri: http://si-digital-framework.org/SI/prefixes/tera
|
|
399
|
+
- type: informative
|
|
400
|
+
authority: ucum
|
|
401
|
+
uri: ucum:prefix:code:T
|
|
402
|
+
- type: informative
|
|
403
|
+
authority: qudt
|
|
404
|
+
uri: http://qudt.org/vocab/unit/Tera
|
|
405
|
+
short: tera
|
|
406
|
+
symbols:
|
|
407
|
+
- latex: T
|
|
408
|
+
unicode: T
|
|
409
|
+
ascii: T
|
|
410
|
+
html: T
|
|
411
|
+
id: tera
|
|
412
|
+
mathml: "<mi>T</mi>"
|
|
413
|
+
- base: 10
|
|
414
|
+
identifiers:
|
|
415
|
+
- type: nist
|
|
416
|
+
id: NISTp10_15
|
|
417
|
+
- type: unitsml
|
|
418
|
+
id: p:peta
|
|
419
|
+
names:
|
|
420
|
+
- value: peta
|
|
421
|
+
lang: en
|
|
422
|
+
power: 15
|
|
423
|
+
references:
|
|
424
|
+
- type: normative
|
|
425
|
+
authority: si-digital-framework
|
|
426
|
+
uri: http://si-digital-framework.org/SI/prefixes/peta
|
|
427
|
+
- type: informative
|
|
428
|
+
authority: ucum
|
|
429
|
+
uri: ucum:prefix:code:P
|
|
430
|
+
- type: informative
|
|
431
|
+
authority: qudt
|
|
432
|
+
uri: http://qudt.org/vocab/unit/Peta
|
|
433
|
+
short: peta
|
|
434
|
+
symbols:
|
|
435
|
+
- latex: P
|
|
436
|
+
unicode: P
|
|
437
|
+
ascii: P
|
|
438
|
+
html: P
|
|
439
|
+
id: peta
|
|
440
|
+
mathml: "<mi>P</mi>"
|
|
441
|
+
- base: 10
|
|
442
|
+
identifiers:
|
|
443
|
+
- type: nist
|
|
444
|
+
id: NISTp10_18
|
|
445
|
+
- type: unitsml
|
|
446
|
+
id: p:exa
|
|
447
|
+
names:
|
|
448
|
+
- value: exa
|
|
449
|
+
lang: en
|
|
450
|
+
power: 18
|
|
451
|
+
references:
|
|
452
|
+
- type: normative
|
|
453
|
+
authority: si-digital-framework
|
|
454
|
+
uri: http://si-digital-framework.org/SI/prefixes/exa
|
|
455
|
+
- type: informative
|
|
456
|
+
authority: ucum
|
|
457
|
+
uri: ucum:prefix:code:E
|
|
458
|
+
- type: informative
|
|
459
|
+
authority: qudt
|
|
460
|
+
uri: http://qudt.org/vocab/unit/Exa
|
|
461
|
+
short: exa
|
|
462
|
+
symbols:
|
|
463
|
+
- latex: E
|
|
464
|
+
unicode: E
|
|
465
|
+
ascii: E
|
|
466
|
+
html: E
|
|
467
|
+
id: exa
|
|
468
|
+
mathml: "<mi>E</mi>"
|
|
469
|
+
- base: 10
|
|
470
|
+
identifiers:
|
|
471
|
+
- type: nist
|
|
472
|
+
id: NISTp10_2
|
|
473
|
+
- type: unitsml
|
|
474
|
+
id: p:hecto
|
|
475
|
+
names:
|
|
476
|
+
- value: hecto
|
|
477
|
+
lang: en
|
|
478
|
+
power: 2
|
|
479
|
+
references:
|
|
480
|
+
- type: normative
|
|
481
|
+
authority: si-digital-framework
|
|
482
|
+
uri: http://si-digital-framework.org/SI/prefixes/hecto
|
|
483
|
+
- type: informative
|
|
484
|
+
authority: ucum
|
|
485
|
+
uri: ucum:prefix:code:h
|
|
486
|
+
- type: informative
|
|
487
|
+
authority: qudt
|
|
488
|
+
uri: http://qudt.org/vocab/unit/Hecto
|
|
489
|
+
short: hecto
|
|
490
|
+
symbols:
|
|
491
|
+
- latex: h
|
|
492
|
+
unicode: h
|
|
493
|
+
ascii: h
|
|
494
|
+
html: h
|
|
495
|
+
id: hecto
|
|
496
|
+
mathml: "<mi>h</mi>"
|
|
497
|
+
- base: 10
|
|
498
|
+
identifiers:
|
|
499
|
+
- type: nist
|
|
500
|
+
id: NISTp10_21
|
|
501
|
+
- type: unitsml
|
|
502
|
+
id: p:zetta
|
|
503
|
+
names:
|
|
504
|
+
- value: zetta
|
|
505
|
+
lang: en
|
|
506
|
+
power: 21
|
|
507
|
+
references:
|
|
508
|
+
- type: normative
|
|
509
|
+
authority: si-digital-framework
|
|
510
|
+
uri: http://si-digital-framework.org/SI/prefixes/zetta
|
|
511
|
+
- type: informative
|
|
512
|
+
authority: ucum
|
|
513
|
+
uri: ucum:prefix:code:Z
|
|
514
|
+
- type: informative
|
|
515
|
+
authority: qudt
|
|
516
|
+
uri: http://qudt.org/vocab/unit/Zetta
|
|
517
|
+
short: zetta
|
|
518
|
+
symbols:
|
|
519
|
+
- latex: Z
|
|
520
|
+
unicode: Z
|
|
521
|
+
ascii: Z
|
|
522
|
+
html: Z
|
|
523
|
+
id: zetta
|
|
524
|
+
mathml: "<mi>Z</mi>"
|
|
525
|
+
- base: 10
|
|
526
|
+
identifiers:
|
|
527
|
+
- type: nist
|
|
528
|
+
id: NISTp10_24
|
|
529
|
+
- type: unitsml
|
|
530
|
+
id: p:yotta
|
|
531
|
+
names:
|
|
532
|
+
- value: yotta
|
|
533
|
+
lang: en
|
|
534
|
+
power: 24
|
|
535
|
+
references:
|
|
536
|
+
- type: normative
|
|
537
|
+
authority: si-digital-framework
|
|
538
|
+
uri: http://si-digital-framework.org/SI/prefixes/yotta
|
|
539
|
+
- type: informative
|
|
540
|
+
authority: ucum
|
|
541
|
+
uri: ucum:prefix:code:Y
|
|
542
|
+
- type: informative
|
|
543
|
+
authority: qudt
|
|
544
|
+
uri: http://qudt.org/vocab/unit/Yotta
|
|
545
|
+
short: yotta
|
|
546
|
+
symbols:
|
|
547
|
+
- latex: Y
|
|
548
|
+
unicode: Y
|
|
549
|
+
ascii: Y
|
|
550
|
+
html: Y
|
|
551
|
+
id: yotta
|
|
552
|
+
mathml: "<mi>Y</mi>"
|
|
553
|
+
- base: 10
|
|
554
|
+
identifiers:
|
|
555
|
+
- type: nist
|
|
556
|
+
id: NISTp10_27
|
|
557
|
+
- type: unitsml
|
|
558
|
+
id: p:ronna
|
|
559
|
+
names:
|
|
560
|
+
- value: ronna
|
|
561
|
+
lang: en
|
|
562
|
+
power: 27
|
|
563
|
+
references:
|
|
564
|
+
- type: normative
|
|
565
|
+
authority: si-digital-framework
|
|
566
|
+
uri: http://si-digital-framework.org/SI/prefixes/ronna
|
|
567
|
+
- type: informative
|
|
568
|
+
authority: qudt
|
|
569
|
+
uri: http://qudt.org/vocab/unit/Ronna
|
|
570
|
+
short: ronna
|
|
571
|
+
symbols:
|
|
572
|
+
- latex: R
|
|
573
|
+
unicode: R
|
|
574
|
+
ascii: R
|
|
575
|
+
html: R
|
|
576
|
+
id: ronna
|
|
577
|
+
mathml: "<mi>R</mi>"
|
|
578
|
+
- base: 10
|
|
579
|
+
identifiers:
|
|
580
|
+
- type: nist
|
|
581
|
+
id: NISTp10_3
|
|
582
|
+
- type: unitsml
|
|
583
|
+
id: p:kilo
|
|
584
|
+
names:
|
|
585
|
+
- value: kilo
|
|
586
|
+
lang: en
|
|
587
|
+
power: 3
|
|
588
|
+
references:
|
|
589
|
+
- type: normative
|
|
590
|
+
authority: si-digital-framework
|
|
591
|
+
uri: http://si-digital-framework.org/SI/prefixes/kilo
|
|
592
|
+
- type: informative
|
|
593
|
+
authority: ucum
|
|
594
|
+
uri: ucum:prefix:code:k
|
|
595
|
+
- type: informative
|
|
596
|
+
authority: qudt
|
|
597
|
+
uri: http://qudt.org/vocab/unit/Kilo
|
|
598
|
+
short: kilo
|
|
599
|
+
symbols:
|
|
600
|
+
- latex: k
|
|
601
|
+
unicode: k
|
|
602
|
+
ascii: k
|
|
603
|
+
html: k
|
|
604
|
+
id: kilo
|
|
605
|
+
mathml: "<mi>k</mi>"
|
|
606
|
+
- base: 10
|
|
607
|
+
identifiers:
|
|
608
|
+
- type: nist
|
|
609
|
+
id: NISTp10_30
|
|
610
|
+
- type: unitsml
|
|
611
|
+
id: p:quetta
|
|
612
|
+
names:
|
|
613
|
+
- value: quetta
|
|
614
|
+
lang: en
|
|
615
|
+
power: 30
|
|
616
|
+
references:
|
|
617
|
+
- type: normative
|
|
618
|
+
authority: si-digital-framework
|
|
619
|
+
uri: http://si-digital-framework.org/SI/prefixes/quetta
|
|
620
|
+
- type: informative
|
|
621
|
+
authority: qudt
|
|
622
|
+
uri: http://qudt.org/vocab/unit/Quetta
|
|
623
|
+
short: quetta
|
|
624
|
+
symbols:
|
|
625
|
+
- latex: Q
|
|
626
|
+
unicode: Q
|
|
627
|
+
ascii: Q
|
|
628
|
+
html: Q
|
|
629
|
+
id: quetta
|
|
630
|
+
mathml: "<mi>Q</mi>"
|
|
631
|
+
- base: 10
|
|
632
|
+
identifiers:
|
|
633
|
+
- type: nist
|
|
634
|
+
id: NISTp10_6
|
|
635
|
+
- type: unitsml
|
|
636
|
+
id: p:mega
|
|
637
|
+
names:
|
|
638
|
+
- value: mega
|
|
639
|
+
lang: en
|
|
640
|
+
power: 6
|
|
641
|
+
references:
|
|
642
|
+
- type: normative
|
|
643
|
+
authority: si-digital-framework
|
|
644
|
+
uri: http://si-digital-framework.org/SI/prefixes/mega
|
|
645
|
+
- type: informative
|
|
646
|
+
authority: ucum
|
|
647
|
+
uri: ucum:prefix:code:M
|
|
648
|
+
- type: informative
|
|
649
|
+
authority: qudt
|
|
650
|
+
uri: http://qudt.org/vocab/unit/Mega
|
|
651
|
+
short: mega
|
|
652
|
+
symbols:
|
|
653
|
+
- latex: M
|
|
654
|
+
unicode: M
|
|
655
|
+
ascii: M
|
|
656
|
+
html: M
|
|
657
|
+
id: mega
|
|
658
|
+
mathml: "<mi>M</mi>"
|
|
659
|
+
- base: 10
|
|
660
|
+
identifiers:
|
|
661
|
+
- type: nist
|
|
662
|
+
id: NISTp10_9
|
|
663
|
+
- type: unitsml
|
|
664
|
+
id: p:giga
|
|
665
|
+
names:
|
|
666
|
+
- value: giga
|
|
667
|
+
lang: en
|
|
668
|
+
power: 9
|
|
669
|
+
references:
|
|
670
|
+
- type: normative
|
|
671
|
+
authority: si-digital-framework
|
|
672
|
+
uri: http://si-digital-framework.org/SI/prefixes/giga
|
|
673
|
+
- type: informative
|
|
674
|
+
authority: ucum
|
|
675
|
+
uri: ucum:prefix:code:G
|
|
676
|
+
- type: informative
|
|
677
|
+
authority: qudt
|
|
678
|
+
uri: http://qudt.org/vocab/unit/Giga
|
|
679
|
+
short: giga
|
|
680
|
+
symbols:
|
|
681
|
+
- latex: G
|
|
682
|
+
unicode: G
|
|
683
|
+
ascii: G
|
|
684
|
+
html: G
|
|
685
|
+
id: giga
|
|
686
|
+
mathml: "<mi>G</mi>"
|
|
687
|
+
- base: 2
|
|
688
|
+
identifiers:
|
|
689
|
+
- type: nist
|
|
690
|
+
id: NISTp2_10
|
|
691
|
+
- type: unitsml
|
|
692
|
+
id: p:kibi
|
|
693
|
+
names:
|
|
694
|
+
- value: kibi
|
|
695
|
+
lang: en
|
|
696
|
+
power: 10
|
|
697
|
+
references:
|
|
698
|
+
- type: informative
|
|
699
|
+
authority: ucum
|
|
700
|
+
uri: ucum:prefix:code:Ki
|
|
701
|
+
- type: informative
|
|
702
|
+
authority: qudt
|
|
703
|
+
uri: http://qudt.org/vocab/prefix/Kibi
|
|
704
|
+
short: kibi
|
|
705
|
+
symbols:
|
|
706
|
+
- latex: Ki
|
|
707
|
+
unicode: Ki
|
|
708
|
+
ascii: Ki
|
|
709
|
+
html: Ki
|
|
710
|
+
id: kibi
|
|
711
|
+
mathml: "<mi>Ki</mi>"
|
|
712
|
+
- base: 2
|
|
713
|
+
identifiers:
|
|
714
|
+
- type: nist
|
|
715
|
+
id: NISTp2_20
|
|
716
|
+
- type: unitsml
|
|
717
|
+
id: p:mebi
|
|
718
|
+
names:
|
|
719
|
+
- value: mebi
|
|
720
|
+
lang: en
|
|
721
|
+
power: 20
|
|
722
|
+
references:
|
|
723
|
+
- type: informative
|
|
724
|
+
authority: ucum
|
|
725
|
+
uri: ucum:prefix:code:Mi
|
|
726
|
+
- type: informative
|
|
727
|
+
authority: qudt
|
|
728
|
+
uri: http://qudt.org/vocab/prefix/Mebi
|
|
729
|
+
short: mebi
|
|
730
|
+
symbols:
|
|
731
|
+
- latex: Mi
|
|
732
|
+
unicode: Mi
|
|
733
|
+
ascii: Mi
|
|
734
|
+
html: Mi
|
|
735
|
+
id: mebi
|
|
736
|
+
mathml: "<mi>Mi</mi>"
|
|
737
|
+
- base: 2
|
|
738
|
+
identifiers:
|
|
739
|
+
- type: nist
|
|
740
|
+
id: NISTp2_30
|
|
741
|
+
- type: unitsml
|
|
742
|
+
id: p:gibi
|
|
743
|
+
names:
|
|
744
|
+
- value: gibi
|
|
745
|
+
lang: en
|
|
746
|
+
power: 30
|
|
747
|
+
references:
|
|
748
|
+
- type: informative
|
|
749
|
+
authority: ucum
|
|
750
|
+
uri: ucum:prefix:code:Gi
|
|
751
|
+
- type: informative
|
|
752
|
+
authority: qudt
|
|
753
|
+
uri: http://qudt.org/vocab/prefix/Gibi
|
|
754
|
+
short: gibi
|
|
755
|
+
symbols:
|
|
756
|
+
- latex: Gi
|
|
757
|
+
unicode: Gi
|
|
758
|
+
ascii: Gi
|
|
759
|
+
html: Gi
|
|
760
|
+
id: gibi
|
|
761
|
+
mathml: "<mi>Gi</mi>"
|
|
762
|
+
- base: 2
|
|
763
|
+
identifiers:
|
|
764
|
+
- type: nist
|
|
765
|
+
id: NISTp2_40
|
|
766
|
+
- type: unitsml
|
|
767
|
+
id: p:tebi
|
|
768
|
+
names:
|
|
769
|
+
- value: tebi
|
|
770
|
+
lang: en
|
|
771
|
+
power: 40
|
|
772
|
+
references:
|
|
773
|
+
- type: informative
|
|
774
|
+
authority: ucum
|
|
775
|
+
uri: ucum:prefix:code:Ti
|
|
776
|
+
- type: informative
|
|
777
|
+
authority: qudt
|
|
778
|
+
uri: http://qudt.org/vocab/prefix/Tebi
|
|
779
|
+
short: tebi
|
|
780
|
+
symbols:
|
|
781
|
+
- latex: Ti
|
|
782
|
+
unicode: Ti
|
|
783
|
+
ascii: Ti
|
|
784
|
+
html: Ti
|
|
785
|
+
id: tebi
|
|
786
|
+
mathml: "<mi>Ti</mi>"
|
|
787
|
+
- base: 2
|
|
788
|
+
identifiers:
|
|
789
|
+
- type: nist
|
|
790
|
+
id: NISTp2_50
|
|
791
|
+
- type: unitsml
|
|
792
|
+
id: p:pebi
|
|
793
|
+
names:
|
|
794
|
+
- value: pebi
|
|
795
|
+
lang: en
|
|
796
|
+
power: 50
|
|
797
|
+
references:
|
|
798
|
+
- type: informative
|
|
799
|
+
authority: qudt
|
|
800
|
+
uri: http://qudt.org/vocab/prefix/Pebi
|
|
801
|
+
short: pebi
|
|
802
|
+
symbols:
|
|
803
|
+
- latex: Pi
|
|
804
|
+
unicode: Pi
|
|
805
|
+
ascii: Pi
|
|
806
|
+
html: Pi
|
|
807
|
+
id: pebi
|
|
808
|
+
mathml: "<mi>Pi</mi>"
|
|
809
|
+
- base: 2
|
|
810
|
+
identifiers:
|
|
811
|
+
- type: nist
|
|
812
|
+
id: NISTp2_60
|
|
813
|
+
- type: unitsml
|
|
814
|
+
id: p:exbi
|
|
815
|
+
names:
|
|
816
|
+
- value: exbi
|
|
817
|
+
lang: en
|
|
818
|
+
power: 60
|
|
819
|
+
references:
|
|
820
|
+
- type: informative
|
|
821
|
+
authority: qudt
|
|
822
|
+
uri: http://qudt.org/vocab/prefix/Exbi
|
|
823
|
+
short: exbi
|
|
824
|
+
symbols:
|
|
825
|
+
- latex: Ei
|
|
826
|
+
unicode: Ei
|
|
827
|
+
ascii: Ei
|
|
828
|
+
html: Ei
|
|
829
|
+
id: exbi
|
|
830
|
+
mathml: "<mi>Ei</mi>"
|
|
831
|
+
- base: 2
|
|
832
|
+
identifiers:
|
|
833
|
+
- type: nist
|
|
834
|
+
id: NISTp2_70
|
|
835
|
+
- type: unitsml
|
|
836
|
+
id: p:zebi
|
|
837
|
+
names:
|
|
838
|
+
- value: zebi
|
|
839
|
+
lang: en
|
|
840
|
+
power: 70
|
|
841
|
+
references:
|
|
842
|
+
- type: informative
|
|
843
|
+
authority: qudt
|
|
844
|
+
uri: http://qudt.org/vocab/prefix/Zebi
|
|
845
|
+
short: zebi
|
|
846
|
+
symbols:
|
|
847
|
+
- latex: Zi
|
|
848
|
+
unicode: Zi
|
|
849
|
+
ascii: Zi
|
|
850
|
+
html: Zi
|
|
851
|
+
id: zebi
|
|
852
|
+
mathml: "<mi>Zi</mi>"
|
|
853
|
+
- base: 2
|
|
854
|
+
identifiers:
|
|
855
|
+
- type: nist
|
|
856
|
+
id: NISTp2_80
|
|
857
|
+
- type: unitsml
|
|
858
|
+
id: p:yobi
|
|
859
|
+
names:
|
|
860
|
+
- value: yobi
|
|
861
|
+
lang: en
|
|
862
|
+
power: 80
|
|
863
|
+
references:
|
|
864
|
+
- type: informative
|
|
865
|
+
authority: qudt
|
|
866
|
+
uri: http://qudt.org/vocab/prefix/Yobi
|
|
867
|
+
short: yobi
|
|
868
|
+
symbols:
|
|
869
|
+
- latex: Yi
|
|
870
|
+
unicode: Yi
|
|
871
|
+
ascii: Yi
|
|
872
|
+
html: Yi
|
|
873
|
+
id: yobi
|
|
874
|
+
mathml: "<mi>Yi</mi>"
|