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