unitwise 2.1.0 → 2.2.0
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/.ruby-version +1 -1
- data/.travis.yml +0 -1
- data/CHANGELOG.md +20 -0
- data/Gemfile +1 -5
- data/README.md +0 -1
- data/data/derived_unit.yaml +303 -303
- data/data/prefix.yaml +24 -24
- data/lib/unitwise.rb +1 -0
- data/lib/unitwise/atom.rb +2 -2
- data/lib/unitwise/functional.rb +8 -0
- data/lib/unitwise/measurement.rb +1 -5
- data/lib/unitwise/number.rb +62 -0
- data/lib/unitwise/prefix.rb +0 -6
- data/lib/unitwise/scale.rb +2 -16
- data/lib/unitwise/standard/function.rb +2 -2
- data/lib/unitwise/standard/prefix.rb +4 -3
- data/lib/unitwise/standard/scale.rb +2 -2
- data/lib/unitwise/term.rb +2 -2
- data/lib/unitwise/unit.rb +3 -3
- data/lib/unitwise/version.rb +1 -1
- data/test/support/scale_tests.rb +16 -22
- data/test/unitwise/functional_test.rb +1 -1
- data/test/unitwise/measurement_test.rb +8 -1
- data/test/unitwise/number_test.rb +52 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85c8f9524b9cffa66bf645e212104c3985e4efa3
|
4
|
+
data.tar.gz: b8a7623a2eb3186faef2d8c11056307f454d29ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cb7314cfefef4d4f4172c8608463b4e2f31c70aecc54115b4584eff913f76301a5114be12b79c64926b5ca19d33f106916c798643eb4999f7b16bce4e911fdb
|
7
|
+
data.tar.gz: c7e97adc9d4dc60f53f6ccff5d1d8b3522361b7f0118f08ccb61a8cc58cacb005e34802f6f1219c9b4ff3546bbc7749c171e47a514a362e4dfa9fe9d4d52699d
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.1
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,26 @@ Unitwise uses semantic versioning.
|
|
7
7
|
|
8
8
|
## Unreleased
|
9
9
|
|
10
|
+
## 2.2.0 - 2017-07-14
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
|
14
|
+
- Default units now stored as BigDecimal or Integer to reduce floating point
|
15
|
+
accuracy loss.
|
16
|
+
- Added missing conversion for Degree Réaumur.
|
17
|
+
|
18
|
+
### Changed
|
19
|
+
|
20
|
+
- Performing mathematical operations or converting units will now use Rational
|
21
|
+
math to prevent accuracy loss. In most cases, this means converted/operated
|
22
|
+
on `Measurement`s will have a `Rational` `#value`. If you have an explicit
|
23
|
+
dependency on the exact `Numeric` type that `Measurement#value` returns,
|
24
|
+
consider using `#to_f` or `#to_i` instead.
|
25
|
+
|
26
|
+
### Removed
|
27
|
+
|
28
|
+
- Support for MRI 2.1
|
29
|
+
|
10
30
|
## 2.1.0 - 2017-04-28
|
11
31
|
|
12
32
|
### Removed
|
data/Gemfile
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
gem 'coveralls', '~> 0.7'
|
4
|
-
|
5
|
-
gem 'bigdecimal', '>= 1.2.6', :platform => :mri
|
6
|
-
else
|
7
|
-
gem 'bigdecimal', '<= 1.2.5', :platform => :mri
|
8
|
-
end
|
4
|
+
gem 'bigdecimal', '>= 1.2.6', :platform => :mri
|
9
5
|
|
10
6
|
gemspec
|
data/README.md
CHANGED
data/data/derived_unit.yaml
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
:primary_code: 10*
|
5
5
|
:secondary_code: 10*
|
6
6
|
:scale:
|
7
|
-
:value: 10
|
7
|
+
:value: 10
|
8
8
|
:unit_code: '1'
|
9
9
|
:classification: dimless
|
10
10
|
:property: number
|
@@ -16,7 +16,7 @@
|
|
16
16
|
:primary_code: 10^
|
17
17
|
:secondary_code: 10^
|
18
18
|
:scale:
|
19
|
-
:value: 10
|
19
|
+
:value: 10
|
20
20
|
:unit_code: '1'
|
21
21
|
:classification: dimless
|
22
22
|
:property: number
|
@@ -28,7 +28,7 @@
|
|
28
28
|
:primary_code: "[pi]"
|
29
29
|
:secondary_code: "[PI]"
|
30
30
|
:scale:
|
31
|
-
:value:
|
31
|
+
:value: !ruby/object:BigDecimal 81:0.31415926535897932384626433832795028841971693993751058209749445923e1
|
32
32
|
:unit_code: '1'
|
33
33
|
:classification: dimless
|
34
34
|
:property: number
|
@@ -40,7 +40,7 @@
|
|
40
40
|
:primary_code: "%"
|
41
41
|
:secondary_code: "%"
|
42
42
|
:scale:
|
43
|
-
:value: 1
|
43
|
+
:value: 1
|
44
44
|
:unit_code: 10*-2
|
45
45
|
:classification: dimless
|
46
46
|
:property: fraction
|
@@ -52,7 +52,7 @@
|
|
52
52
|
:primary_code: "[ppth]"
|
53
53
|
:secondary_code: "[PPTH]"
|
54
54
|
:scale:
|
55
|
-
:value: 1
|
55
|
+
:value: 1
|
56
56
|
:unit_code: 10*-3
|
57
57
|
:classification: dimless
|
58
58
|
:property: fraction
|
@@ -64,7 +64,7 @@
|
|
64
64
|
:primary_code: "[ppm]"
|
65
65
|
:secondary_code: "[PPM]"
|
66
66
|
:scale:
|
67
|
-
:value: 1
|
67
|
+
:value: 1
|
68
68
|
:unit_code: 10*-6
|
69
69
|
:classification: dimless
|
70
70
|
:property: fraction
|
@@ -76,7 +76,7 @@
|
|
76
76
|
:primary_code: "[ppb]"
|
77
77
|
:secondary_code: "[PPB]"
|
78
78
|
:scale:
|
79
|
-
:value: 1
|
79
|
+
:value: 1
|
80
80
|
:unit_code: 10*-9
|
81
81
|
:classification: dimless
|
82
82
|
:property: fraction
|
@@ -88,7 +88,7 @@
|
|
88
88
|
:primary_code: "[pptr]"
|
89
89
|
:secondary_code: "[PPTR]"
|
90
90
|
:scale:
|
91
|
-
:value: 1
|
91
|
+
:value: 1
|
92
92
|
:unit_code: 10*-12
|
93
93
|
:classification: dimless
|
94
94
|
:property: fraction
|
@@ -100,7 +100,7 @@
|
|
100
100
|
:primary_code: mol
|
101
101
|
:secondary_code: MOL
|
102
102
|
:scale:
|
103
|
-
:value:
|
103
|
+
:value: !ruby/object:BigDecimal 18:0.60221367e1
|
104
104
|
:unit_code: 10*23
|
105
105
|
:classification: si
|
106
106
|
:property: amount of substance
|
@@ -112,7 +112,7 @@
|
|
112
112
|
:primary_code: sr
|
113
113
|
:secondary_code: SR
|
114
114
|
:scale:
|
115
|
-
:value: 1
|
115
|
+
:value: 1
|
116
116
|
:unit_code: rad2
|
117
117
|
:classification: si
|
118
118
|
:property: solid angle
|
@@ -124,7 +124,7 @@
|
|
124
124
|
:primary_code: Hz
|
125
125
|
:secondary_code: HZ
|
126
126
|
:scale:
|
127
|
-
:value: 1
|
127
|
+
:value: 1
|
128
128
|
:unit_code: s-1
|
129
129
|
:classification: si
|
130
130
|
:property: frequency
|
@@ -136,7 +136,7 @@
|
|
136
136
|
:primary_code: N
|
137
137
|
:secondary_code: N
|
138
138
|
:scale:
|
139
|
-
:value: 1
|
139
|
+
:value: 1
|
140
140
|
:unit_code: kg.m/s2
|
141
141
|
:classification: si
|
142
142
|
:property: force
|
@@ -148,7 +148,7 @@
|
|
148
148
|
:primary_code: Pa
|
149
149
|
:secondary_code: PAL
|
150
150
|
:scale:
|
151
|
-
:value: 1
|
151
|
+
:value: 1
|
152
152
|
:unit_code: N/m2
|
153
153
|
:classification: si
|
154
154
|
:property: pressure
|
@@ -160,7 +160,7 @@
|
|
160
160
|
:primary_code: J
|
161
161
|
:secondary_code: J
|
162
162
|
:scale:
|
163
|
-
:value: 1
|
163
|
+
:value: 1
|
164
164
|
:unit_code: N.m
|
165
165
|
:classification: si
|
166
166
|
:property: energy
|
@@ -172,7 +172,7 @@
|
|
172
172
|
:primary_code: W
|
173
173
|
:secondary_code: W
|
174
174
|
:scale:
|
175
|
-
:value: 1
|
175
|
+
:value: 1
|
176
176
|
:unit_code: J/s
|
177
177
|
:classification: si
|
178
178
|
:property: power
|
@@ -184,7 +184,7 @@
|
|
184
184
|
:primary_code: A
|
185
185
|
:secondary_code: A
|
186
186
|
:scale:
|
187
|
-
:value: 1
|
187
|
+
:value: 1
|
188
188
|
:unit_code: C/s
|
189
189
|
:classification: si
|
190
190
|
:property: electric current
|
@@ -196,7 +196,7 @@
|
|
196
196
|
:primary_code: V
|
197
197
|
:secondary_code: V
|
198
198
|
:scale:
|
199
|
-
:value: 1
|
199
|
+
:value: 1
|
200
200
|
:unit_code: J/C
|
201
201
|
:classification: si
|
202
202
|
:property: electric potential
|
@@ -208,7 +208,7 @@
|
|
208
208
|
:primary_code: F
|
209
209
|
:secondary_code: F
|
210
210
|
:scale:
|
211
|
-
:value: 1
|
211
|
+
:value: 1
|
212
212
|
:unit_code: C/V
|
213
213
|
:classification: si
|
214
214
|
:property: electric capacitance
|
@@ -220,7 +220,7 @@
|
|
220
220
|
:primary_code: Ohm
|
221
221
|
:secondary_code: OHM
|
222
222
|
:scale:
|
223
|
-
:value: 1
|
223
|
+
:value: 1
|
224
224
|
:unit_code: V/A
|
225
225
|
:classification: si
|
226
226
|
:property: electric resistance
|
@@ -232,7 +232,7 @@
|
|
232
232
|
:primary_code: S
|
233
233
|
:secondary_code: SIE
|
234
234
|
:scale:
|
235
|
-
:value: 1
|
235
|
+
:value: 1
|
236
236
|
:unit_code: Ohm-1
|
237
237
|
:classification: si
|
238
238
|
:property: electric conductance
|
@@ -244,7 +244,7 @@
|
|
244
244
|
:primary_code: Wb
|
245
245
|
:secondary_code: WB
|
246
246
|
:scale:
|
247
|
-
:value: 1
|
247
|
+
:value: 1
|
248
248
|
:unit_code: V.s
|
249
249
|
:classification: si
|
250
250
|
:property: magentic flux
|
@@ -257,7 +257,7 @@
|
|
257
257
|
:secondary_code: CEL
|
258
258
|
:scale:
|
259
259
|
:function_code: cel
|
260
|
-
:value: 1
|
260
|
+
:value: 1
|
261
261
|
:unit_code: K
|
262
262
|
:classification: si
|
263
263
|
:property: temperature
|
@@ -269,7 +269,7 @@
|
|
269
269
|
:primary_code: T
|
270
270
|
:secondary_code: T
|
271
271
|
:scale:
|
272
|
-
:value: 1
|
272
|
+
:value: 1
|
273
273
|
:unit_code: Wb/m2
|
274
274
|
:classification: si
|
275
275
|
:property: magnetic flux density
|
@@ -281,7 +281,7 @@
|
|
281
281
|
:primary_code: H
|
282
282
|
:secondary_code: H
|
283
283
|
:scale:
|
284
|
-
:value: 1
|
284
|
+
:value: 1
|
285
285
|
:unit_code: Wb/A
|
286
286
|
:classification: si
|
287
287
|
:property: inductance
|
@@ -293,7 +293,7 @@
|
|
293
293
|
:primary_code: lm
|
294
294
|
:secondary_code: LM
|
295
295
|
:scale:
|
296
|
-
:value: 1
|
296
|
+
:value: 1
|
297
297
|
:unit_code: cd.sr
|
298
298
|
:classification: si
|
299
299
|
:property: luminous flux
|
@@ -305,7 +305,7 @@
|
|
305
305
|
:primary_code: lx
|
306
306
|
:secondary_code: LX
|
307
307
|
:scale:
|
308
|
-
:value: 1
|
308
|
+
:value: 1
|
309
309
|
:unit_code: lm/m2
|
310
310
|
:classification: si
|
311
311
|
:property: illuminance
|
@@ -317,7 +317,7 @@
|
|
317
317
|
:primary_code: Bq
|
318
318
|
:secondary_code: BQ
|
319
319
|
:scale:
|
320
|
-
:value: 1
|
320
|
+
:value: 1
|
321
321
|
:unit_code: s-1
|
322
322
|
:classification: si
|
323
323
|
:property: radioactivity
|
@@ -329,7 +329,7 @@
|
|
329
329
|
:primary_code: Gy
|
330
330
|
:secondary_code: GY
|
331
331
|
:scale:
|
332
|
-
:value: 1
|
332
|
+
:value: 1
|
333
333
|
:unit_code: J/kg
|
334
334
|
:classification: si
|
335
335
|
:property: energy dose
|
@@ -341,7 +341,7 @@
|
|
341
341
|
:primary_code: Sv
|
342
342
|
:secondary_code: SV
|
343
343
|
:scale:
|
344
|
-
:value: 1
|
344
|
+
:value: 1
|
345
345
|
:unit_code: J/kg
|
346
346
|
:classification: si
|
347
347
|
:property: dose equivalent
|
@@ -355,7 +355,7 @@
|
|
355
355
|
:primary_code: gon
|
356
356
|
:secondary_code: GON
|
357
357
|
:scale:
|
358
|
-
:value: 0.
|
358
|
+
:value: !ruby/object:BigDecimal 18:0.9e0
|
359
359
|
:unit_code: deg
|
360
360
|
:classification: iso1000
|
361
361
|
:property: plane angle
|
@@ -367,7 +367,7 @@
|
|
367
367
|
:primary_code: deg
|
368
368
|
:secondary_code: DEG
|
369
369
|
:scale:
|
370
|
-
:value: 2
|
370
|
+
:value: 2
|
371
371
|
:unit_code: "[pi].rad/360"
|
372
372
|
:classification: iso1000
|
373
373
|
:property: plane angle
|
@@ -379,7 +379,7 @@
|
|
379
379
|
:primary_code: "'"
|
380
380
|
:secondary_code: "'"
|
381
381
|
:scale:
|
382
|
-
:value: 1
|
382
|
+
:value: 1
|
383
383
|
:unit_code: deg/60
|
384
384
|
:classification: iso1000
|
385
385
|
:property: plane angle
|
@@ -391,7 +391,7 @@
|
|
391
391
|
:primary_code: "''"
|
392
392
|
:secondary_code: "''"
|
393
393
|
:scale:
|
394
|
-
:value: 1
|
394
|
+
:value: 1
|
395
395
|
:unit_code: "'/60"
|
396
396
|
:classification: iso1000
|
397
397
|
:property: plane angle
|
@@ -403,7 +403,7 @@
|
|
403
403
|
:primary_code: l
|
404
404
|
:secondary_code: L
|
405
405
|
:scale:
|
406
|
-
:value: 1
|
406
|
+
:value: 1
|
407
407
|
:unit_code: dm3
|
408
408
|
:classification: iso1000
|
409
409
|
:property: volume
|
@@ -414,7 +414,7 @@
|
|
414
414
|
:symbol: L
|
415
415
|
:primary_code: L
|
416
416
|
:scale:
|
417
|
-
:value: 1
|
417
|
+
:value: 1
|
418
418
|
:unit_code: l
|
419
419
|
:classification: iso1000
|
420
420
|
:property: volume
|
@@ -426,7 +426,7 @@
|
|
426
426
|
:primary_code: ar
|
427
427
|
:secondary_code: AR
|
428
428
|
:scale:
|
429
|
-
:value: 100
|
429
|
+
:value: 100
|
430
430
|
:unit_code: m2
|
431
431
|
:classification: iso1000
|
432
432
|
:property: area
|
@@ -438,7 +438,7 @@
|
|
438
438
|
:primary_code: min
|
439
439
|
:secondary_code: MIN
|
440
440
|
:scale:
|
441
|
-
:value: 60
|
441
|
+
:value: 60
|
442
442
|
:unit_code: s
|
443
443
|
:classification: iso1000
|
444
444
|
:property: time
|
@@ -450,7 +450,7 @@
|
|
450
450
|
:primary_code: h
|
451
451
|
:secondary_code: HR
|
452
452
|
:scale:
|
453
|
-
:value: 60
|
453
|
+
:value: 60
|
454
454
|
:unit_code: min
|
455
455
|
:classification: iso1000
|
456
456
|
:property: time
|
@@ -462,7 +462,7 @@
|
|
462
462
|
:primary_code: d
|
463
463
|
:secondary_code: D
|
464
464
|
:scale:
|
465
|
-
:value: 24
|
465
|
+
:value: 24
|
466
466
|
:unit_code: h
|
467
467
|
:classification: iso1000
|
468
468
|
:property: time
|
@@ -474,7 +474,7 @@
|
|
474
474
|
:primary_code: a_t
|
475
475
|
:secondary_code: ANN_T
|
476
476
|
:scale:
|
477
|
-
:value:
|
477
|
+
:value: !ruby/object:BigDecimal 18:0.36524219e3
|
478
478
|
:unit_code: d
|
479
479
|
:classification: iso1000
|
480
480
|
:property: time
|
@@ -486,7 +486,7 @@
|
|
486
486
|
:primary_code: a_j
|
487
487
|
:secondary_code: ANN_J
|
488
488
|
:scale:
|
489
|
-
:value:
|
489
|
+
:value: !ruby/object:BigDecimal 18:0.36525e3
|
490
490
|
:unit_code: d
|
491
491
|
:classification: iso1000
|
492
492
|
:property: time
|
@@ -498,7 +498,7 @@
|
|
498
498
|
:primary_code: a_g
|
499
499
|
:secondary_code: ANN_G
|
500
500
|
:scale:
|
501
|
-
:value:
|
501
|
+
:value: !ruby/object:BigDecimal 18:0.3652425e3
|
502
502
|
:unit_code: d
|
503
503
|
:classification: iso1000
|
504
504
|
:property: time
|
@@ -510,7 +510,7 @@
|
|
510
510
|
:primary_code: a
|
511
511
|
:secondary_code: ANN
|
512
512
|
:scale:
|
513
|
-
:value: 1
|
513
|
+
:value: 1
|
514
514
|
:unit_code: a_j
|
515
515
|
:classification: iso1000
|
516
516
|
:property: time
|
@@ -522,7 +522,7 @@
|
|
522
522
|
:primary_code: wk
|
523
523
|
:secondary_code: WK
|
524
524
|
:scale:
|
525
|
-
:value: 7
|
525
|
+
:value: 7
|
526
526
|
:unit_code: d
|
527
527
|
:classification: iso1000
|
528
528
|
:property: time
|
@@ -534,7 +534,7 @@
|
|
534
534
|
:primary_code: mo_s
|
535
535
|
:secondary_code: MO_S
|
536
536
|
:scale:
|
537
|
-
:value:
|
537
|
+
:value: !ruby/object:BigDecimal 18:0.2953059e2
|
538
538
|
:unit_code: d
|
539
539
|
:classification: iso1000
|
540
540
|
:property: time
|
@@ -546,7 +546,7 @@
|
|
546
546
|
:primary_code: mo_j
|
547
547
|
:secondary_code: MO_J
|
548
548
|
:scale:
|
549
|
-
:value: 1
|
549
|
+
:value: 1
|
550
550
|
:unit_code: a_j/12
|
551
551
|
:classification: iso1000
|
552
552
|
:property: time
|
@@ -558,7 +558,7 @@
|
|
558
558
|
:primary_code: mo_g
|
559
559
|
:secondary_code: MO_G
|
560
560
|
:scale:
|
561
|
-
:value: 1
|
561
|
+
:value: 1
|
562
562
|
:unit_code: a_g/12
|
563
563
|
:classification: iso1000
|
564
564
|
:property: time
|
@@ -570,7 +570,7 @@
|
|
570
570
|
:primary_code: mo
|
571
571
|
:secondary_code: MO
|
572
572
|
:scale:
|
573
|
-
:value: 1
|
573
|
+
:value: 1
|
574
574
|
:unit_code: mo_j
|
575
575
|
:classification: iso1000
|
576
576
|
:property: time
|
@@ -582,7 +582,7 @@
|
|
582
582
|
:primary_code: t
|
583
583
|
:secondary_code: TNE
|
584
584
|
:scale:
|
585
|
-
:value: 1000
|
585
|
+
:value: 1000
|
586
586
|
:unit_code: kg
|
587
587
|
:classification: iso1000
|
588
588
|
:property: mass
|
@@ -594,7 +594,7 @@
|
|
594
594
|
:primary_code: bar
|
595
595
|
:secondary_code: BAR
|
596
596
|
:scale:
|
597
|
-
:value: 100000
|
597
|
+
:value: 100000
|
598
598
|
:unit_code: Pa
|
599
599
|
:classification: iso1000
|
600
600
|
:property: pressure
|
@@ -606,7 +606,7 @@
|
|
606
606
|
:primary_code: u
|
607
607
|
:secondary_code: AMU
|
608
608
|
:scale:
|
609
|
-
:value:
|
609
|
+
:value: !ruby/object:BigDecimal 18:0.16605402e-23
|
610
610
|
:unit_code: g
|
611
611
|
:classification: iso1000
|
612
612
|
:property: mass
|
@@ -618,7 +618,7 @@
|
|
618
618
|
:primary_code: eV
|
619
619
|
:secondary_code: EV
|
620
620
|
:scale:
|
621
|
-
:value: 1
|
621
|
+
:value: 1
|
622
622
|
:unit_code: "[e].V"
|
623
623
|
:classification: iso1000
|
624
624
|
:property: energy
|
@@ -630,7 +630,7 @@
|
|
630
630
|
:primary_code: AU
|
631
631
|
:secondary_code: ASU
|
632
632
|
:scale:
|
633
|
-
:value:
|
633
|
+
:value: !ruby/object:BigDecimal 27:0.149597870691e6
|
634
634
|
:unit_code: Mm
|
635
635
|
:classification: iso1000
|
636
636
|
:property: length
|
@@ -642,7 +642,7 @@
|
|
642
642
|
:primary_code: pc
|
643
643
|
:secondary_code: PRS
|
644
644
|
:scale:
|
645
|
-
:value:
|
645
|
+
:value: 30856780000000000
|
646
646
|
:unit_code: m
|
647
647
|
:classification: iso1000
|
648
648
|
:property: length
|
@@ -654,7 +654,7 @@
|
|
654
654
|
:primary_code: "[c]"
|
655
655
|
:secondary_code: "[C]"
|
656
656
|
:scale:
|
657
|
-
:value: 299792458
|
657
|
+
:value: 299792458
|
658
658
|
:unit_code: m/s
|
659
659
|
:classification: const
|
660
660
|
:property: velocity
|
@@ -666,7 +666,7 @@
|
|
666
666
|
:primary_code: "[h]"
|
667
667
|
:secondary_code: "[H]"
|
668
668
|
:scale:
|
669
|
-
:value:
|
669
|
+
:value: !ruby/object:BigDecimal 18:0.66260755e-33
|
670
670
|
:unit_code: J.s
|
671
671
|
:classification: const
|
672
672
|
:property: action
|
@@ -678,7 +678,7 @@
|
|
678
678
|
:primary_code: "[k]"
|
679
679
|
:secondary_code: "[K]"
|
680
680
|
:scale:
|
681
|
-
:value:
|
681
|
+
:value: !ruby/object:BigDecimal 18:0.1380658e-22
|
682
682
|
:unit_code: J/K
|
683
683
|
:classification: const
|
684
684
|
:property: "(unclassified)"
|
@@ -690,7 +690,7 @@
|
|
690
690
|
:primary_code: "[eps_0]"
|
691
691
|
:secondary_code: "[EPS_0]"
|
692
692
|
:scale:
|
693
|
-
:value:
|
693
|
+
:value: !ruby/object:BigDecimal 27:0.8854187817e-11
|
694
694
|
:unit_code: F/m
|
695
695
|
:classification: const
|
696
696
|
:property: electric permittivity
|
@@ -702,7 +702,7 @@
|
|
702
702
|
:primary_code: "[mu_0]"
|
703
703
|
:secondary_code: "[MU_0]"
|
704
704
|
:scale:
|
705
|
-
:value: 1
|
705
|
+
:value: 1
|
706
706
|
:unit_code: 4.[pi].10*-7.N/A2
|
707
707
|
:classification: const
|
708
708
|
:property: magnetic permeability
|
@@ -714,7 +714,7 @@
|
|
714
714
|
:primary_code: "[e]"
|
715
715
|
:secondary_code: "[E]"
|
716
716
|
:scale:
|
717
|
-
:value:
|
717
|
+
:value: !ruby/object:BigDecimal 18:0.160217733e-18
|
718
718
|
:unit_code: C
|
719
719
|
:classification: const
|
720
720
|
:property: electric charge
|
@@ -726,7 +726,7 @@
|
|
726
726
|
:primary_code: "[m_e]"
|
727
727
|
:secondary_code: "[M_E]"
|
728
728
|
:scale:
|
729
|
-
:value:
|
729
|
+
:value: !ruby/object:BigDecimal 18:0.91093897e-27
|
730
730
|
:unit_code: g
|
731
731
|
:classification: const
|
732
732
|
:property: mass
|
@@ -738,7 +738,7 @@
|
|
738
738
|
:primary_code: "[m_p]"
|
739
739
|
:secondary_code: "[M_P]"
|
740
740
|
:scale:
|
741
|
-
:value:
|
741
|
+
:value: !ruby/object:BigDecimal 18:0.16726231e-23
|
742
742
|
:unit_code: g
|
743
743
|
:classification: const
|
744
744
|
:property: mass
|
@@ -750,7 +750,7 @@
|
|
750
750
|
:primary_code: "[G]"
|
751
751
|
:secondary_code: "[GC]"
|
752
752
|
:scale:
|
753
|
-
:value:
|
753
|
+
:value: !ruby/object:BigDecimal 18:0.667259e-10
|
754
754
|
:unit_code: m3.kg-1.s-2
|
755
755
|
:classification: const
|
756
756
|
:property: "(unclassified)"
|
@@ -762,7 +762,7 @@
|
|
762
762
|
:primary_code: "[g]"
|
763
763
|
:secondary_code: "[G]"
|
764
764
|
:scale:
|
765
|
-
:value:
|
765
|
+
:value: !ruby/object:BigDecimal 18:0.980665e1
|
766
766
|
:unit_code: m/s2
|
767
767
|
:classification: const
|
768
768
|
:property: acceleration
|
@@ -774,7 +774,7 @@
|
|
774
774
|
:primary_code: atm
|
775
775
|
:secondary_code: ATM
|
776
776
|
:scale:
|
777
|
-
:value: 101325
|
777
|
+
:value: 101325
|
778
778
|
:unit_code: Pa
|
779
779
|
:classification: const
|
780
780
|
:property: pressure
|
@@ -786,7 +786,7 @@
|
|
786
786
|
:primary_code: "[ly]"
|
787
787
|
:secondary_code: "[LY]"
|
788
788
|
:scale:
|
789
|
-
:value: 1
|
789
|
+
:value: 1
|
790
790
|
:unit_code: "[c].a_j"
|
791
791
|
:classification: const
|
792
792
|
:property: length
|
@@ -798,7 +798,7 @@
|
|
798
798
|
:primary_code: gf
|
799
799
|
:secondary_code: GF
|
800
800
|
:scale:
|
801
|
-
:value: 1
|
801
|
+
:value: 1
|
802
802
|
:unit_code: g.[g]
|
803
803
|
:classification: const
|
804
804
|
:property: force
|
@@ -810,7 +810,7 @@
|
|
810
810
|
:primary_code: "[lbf_av]"
|
811
811
|
:secondary_code: "[LBF_AV]"
|
812
812
|
:scale:
|
813
|
-
:value: 1
|
813
|
+
:value: 1
|
814
814
|
:unit_code: "[lb_av].[g]"
|
815
815
|
:classification: const
|
816
816
|
:property: force
|
@@ -822,7 +822,7 @@
|
|
822
822
|
:primary_code: Ky
|
823
823
|
:secondary_code: KY
|
824
824
|
:scale:
|
825
|
-
:value: 1
|
825
|
+
:value: 1
|
826
826
|
:unit_code: cm-1
|
827
827
|
:classification: cgs
|
828
828
|
:property: lineic number
|
@@ -834,7 +834,7 @@
|
|
834
834
|
:primary_code: Gal
|
835
835
|
:secondary_code: GL
|
836
836
|
:scale:
|
837
|
-
:value: 1
|
837
|
+
:value: 1
|
838
838
|
:unit_code: cm/s2
|
839
839
|
:classification: cgs
|
840
840
|
:property: acceleration
|
@@ -846,7 +846,7 @@
|
|
846
846
|
:primary_code: dyn
|
847
847
|
:secondary_code: DYN
|
848
848
|
:scale:
|
849
|
-
:value: 1
|
849
|
+
:value: 1
|
850
850
|
:unit_code: g.cm/s2
|
851
851
|
:classification: cgs
|
852
852
|
:property: force
|
@@ -858,7 +858,7 @@
|
|
858
858
|
:primary_code: erg
|
859
859
|
:secondary_code: ERG
|
860
860
|
:scale:
|
861
|
-
:value: 1
|
861
|
+
:value: 1
|
862
862
|
:unit_code: dyn.cm
|
863
863
|
:classification: cgs
|
864
864
|
:property: energy
|
@@ -870,7 +870,7 @@
|
|
870
870
|
:primary_code: P
|
871
871
|
:secondary_code: P
|
872
872
|
:scale:
|
873
|
-
:value: 1
|
873
|
+
:value: 1
|
874
874
|
:unit_code: dyn.s/cm2
|
875
875
|
:classification: cgs
|
876
876
|
:property: dynamic viscosity
|
@@ -882,7 +882,7 @@
|
|
882
882
|
:primary_code: Bi
|
883
883
|
:secondary_code: BI
|
884
884
|
:scale:
|
885
|
-
:value: 10
|
885
|
+
:value: 10
|
886
886
|
:unit_code: A
|
887
887
|
:classification: cgs
|
888
888
|
:property: electric current
|
@@ -894,7 +894,7 @@
|
|
894
894
|
:primary_code: St
|
895
895
|
:secondary_code: ST
|
896
896
|
:scale:
|
897
|
-
:value: 1
|
897
|
+
:value: 1
|
898
898
|
:unit_code: cm2/s
|
899
899
|
:classification: cgs
|
900
900
|
:property: kinematic viscosity
|
@@ -906,7 +906,7 @@
|
|
906
906
|
:primary_code: Mx
|
907
907
|
:secondary_code: MX
|
908
908
|
:scale:
|
909
|
-
:value:
|
909
|
+
:value: !ruby/object:BigDecimal 18:0.1e-7
|
910
910
|
:unit_code: Wb
|
911
911
|
:classification: cgs
|
912
912
|
:property: flux of magnetic induction
|
@@ -918,7 +918,7 @@
|
|
918
918
|
:primary_code: G
|
919
919
|
:secondary_code: GS
|
920
920
|
:scale:
|
921
|
-
:value: 0.
|
921
|
+
:value: !ruby/object:BigDecimal 18:0.1e-3
|
922
922
|
:unit_code: T
|
923
923
|
:classification: cgs
|
924
924
|
:property: magnetic flux density
|
@@ -930,7 +930,7 @@
|
|
930
930
|
:primary_code: Oe
|
931
931
|
:secondary_code: OE
|
932
932
|
:scale:
|
933
|
-
:value: 250
|
933
|
+
:value: 250
|
934
934
|
:unit_code: "/[pi].A/m"
|
935
935
|
:classification: cgs
|
936
936
|
:property: magnetic field intensity
|
@@ -942,7 +942,7 @@
|
|
942
942
|
:primary_code: Gb
|
943
943
|
:secondary_code: GB
|
944
944
|
:scale:
|
945
|
-
:value: 1
|
945
|
+
:value: 1
|
946
946
|
:unit_code: Oe.cm
|
947
947
|
:classification: cgs
|
948
948
|
:property: magnetic tension
|
@@ -954,7 +954,7 @@
|
|
954
954
|
:primary_code: sb
|
955
955
|
:secondary_code: SB
|
956
956
|
:scale:
|
957
|
-
:value: 1
|
957
|
+
:value: 1
|
958
958
|
:unit_code: cd/cm2
|
959
959
|
:classification: cgs
|
960
960
|
:property: lum. intensity density
|
@@ -966,7 +966,7 @@
|
|
966
966
|
:primary_code: Lmb
|
967
967
|
:secondary_code: LMB
|
968
968
|
:scale:
|
969
|
-
:value: 1
|
969
|
+
:value: 1
|
970
970
|
:unit_code: cd/cm2/[pi]
|
971
971
|
:classification: cgs
|
972
972
|
:property: brightness
|
@@ -978,7 +978,7 @@
|
|
978
978
|
:primary_code: ph
|
979
979
|
:secondary_code: PHT
|
980
980
|
:scale:
|
981
|
-
:value: 0.
|
981
|
+
:value: !ruby/object:BigDecimal 18:0.1e-3
|
982
982
|
:unit_code: lx
|
983
983
|
:classification: cgs
|
984
984
|
:property: illuminance
|
@@ -990,7 +990,7 @@
|
|
990
990
|
:primary_code: Ci
|
991
991
|
:secondary_code: CI
|
992
992
|
:scale:
|
993
|
-
:value: 37000000000
|
993
|
+
:value: 37000000000
|
994
994
|
:unit_code: Bq
|
995
995
|
:classification: cgs
|
996
996
|
:property: radioactivity
|
@@ -1002,7 +1002,7 @@
|
|
1002
1002
|
:primary_code: R
|
1003
1003
|
:secondary_code: ROE
|
1004
1004
|
:scale:
|
1005
|
-
:value: 0.
|
1005
|
+
:value: !ruby/object:BigDecimal 18:0.258e-3
|
1006
1006
|
:unit_code: C/kg
|
1007
1007
|
:classification: cgs
|
1008
1008
|
:property: ion dose
|
@@ -1014,7 +1014,7 @@
|
|
1014
1014
|
:primary_code: RAD
|
1015
1015
|
:secondary_code: "[RAD]"
|
1016
1016
|
:scale:
|
1017
|
-
:value: 100
|
1017
|
+
:value: 100
|
1018
1018
|
:unit_code: erg/g
|
1019
1019
|
:classification: cgs
|
1020
1020
|
:property: energy dose
|
@@ -1026,7 +1026,7 @@
|
|
1026
1026
|
:primary_code: REM
|
1027
1027
|
:secondary_code: "[REM]"
|
1028
1028
|
:scale:
|
1029
|
-
:value: 1
|
1029
|
+
:value: 1
|
1030
1030
|
:unit_code: RAD
|
1031
1031
|
:classification: cgs
|
1032
1032
|
:property: dose equivalent
|
@@ -1038,7 +1038,7 @@
|
|
1038
1038
|
:primary_code: "[in_i]"
|
1039
1039
|
:secondary_code: "[IN_I]"
|
1040
1040
|
:scale:
|
1041
|
-
:value:
|
1041
|
+
:value: !ruby/object:BigDecimal 18:0.254e1
|
1042
1042
|
:unit_code: cm
|
1043
1043
|
:classification: intcust
|
1044
1044
|
:property: length
|
@@ -1050,7 +1050,7 @@
|
|
1050
1050
|
:primary_code: "[ft_i]"
|
1051
1051
|
:secondary_code: "[FT_I]"
|
1052
1052
|
:scale:
|
1053
|
-
:value: 12
|
1053
|
+
:value: 12
|
1054
1054
|
:unit_code: "[in_i]"
|
1055
1055
|
:classification: intcust
|
1056
1056
|
:property: length
|
@@ -1062,7 +1062,7 @@
|
|
1062
1062
|
:primary_code: "[yd_i]"
|
1063
1063
|
:secondary_code: "[YD_I]"
|
1064
1064
|
:scale:
|
1065
|
-
:value: 3
|
1065
|
+
:value: 3
|
1066
1066
|
:unit_code: "[ft_i]"
|
1067
1067
|
:classification: intcust
|
1068
1068
|
:property: length
|
@@ -1074,7 +1074,7 @@
|
|
1074
1074
|
:primary_code: "[mi_i]"
|
1075
1075
|
:secondary_code: "[MI_I]"
|
1076
1076
|
:scale:
|
1077
|
-
:value: 5280
|
1077
|
+
:value: 5280
|
1078
1078
|
:unit_code: "[ft_i]"
|
1079
1079
|
:classification: intcust
|
1080
1080
|
:property: length
|
@@ -1086,7 +1086,7 @@
|
|
1086
1086
|
:primary_code: "[fth_i]"
|
1087
1087
|
:secondary_code: "[FTH_I]"
|
1088
1088
|
:scale:
|
1089
|
-
:value: 6
|
1089
|
+
:value: 6
|
1090
1090
|
:unit_code: "[ft_i]"
|
1091
1091
|
:classification: intcust
|
1092
1092
|
:property: depth of water
|
@@ -1098,7 +1098,7 @@
|
|
1098
1098
|
:primary_code: "[nmi_i]"
|
1099
1099
|
:secondary_code: "[NMI_I]"
|
1100
1100
|
:scale:
|
1101
|
-
:value: 1852
|
1101
|
+
:value: 1852
|
1102
1102
|
:unit_code: m
|
1103
1103
|
:classification: intcust
|
1104
1104
|
:property: length
|
@@ -1110,7 +1110,7 @@
|
|
1110
1110
|
:primary_code: "[kn_i]"
|
1111
1111
|
:secondary_code: "[KN_I]"
|
1112
1112
|
:scale:
|
1113
|
-
:value: 1
|
1113
|
+
:value: 1
|
1114
1114
|
:unit_code: "[nmi_i]/h"
|
1115
1115
|
:classification: intcust
|
1116
1116
|
:property: velocity
|
@@ -1121,7 +1121,7 @@
|
|
1121
1121
|
:primary_code: "[sin_i]"
|
1122
1122
|
:secondary_code: "[SIN_I]"
|
1123
1123
|
:scale:
|
1124
|
-
:value: 1
|
1124
|
+
:value: 1
|
1125
1125
|
:unit_code: "[in_i]2"
|
1126
1126
|
:classification: intcust
|
1127
1127
|
:property: area
|
@@ -1132,7 +1132,7 @@
|
|
1132
1132
|
:primary_code: "[sft_i]"
|
1133
1133
|
:secondary_code: "[SFT_I]"
|
1134
1134
|
:scale:
|
1135
|
-
:value: 1
|
1135
|
+
:value: 1
|
1136
1136
|
:unit_code: "[ft_i]2"
|
1137
1137
|
:classification: intcust
|
1138
1138
|
:property: area
|
@@ -1143,7 +1143,7 @@
|
|
1143
1143
|
:primary_code: "[syd_i]"
|
1144
1144
|
:secondary_code: "[SYD_I]"
|
1145
1145
|
:scale:
|
1146
|
-
:value: 1
|
1146
|
+
:value: 1
|
1147
1147
|
:unit_code: "[yd_i]2"
|
1148
1148
|
:classification: intcust
|
1149
1149
|
:property: area
|
@@ -1154,7 +1154,7 @@
|
|
1154
1154
|
:primary_code: "[cin_i]"
|
1155
1155
|
:secondary_code: "[CIN_I]"
|
1156
1156
|
:scale:
|
1157
|
-
:value: 1
|
1157
|
+
:value: 1
|
1158
1158
|
:unit_code: "[in_i]3"
|
1159
1159
|
:classification: intcust
|
1160
1160
|
:property: volume
|
@@ -1165,7 +1165,7 @@
|
|
1165
1165
|
:primary_code: "[cft_i]"
|
1166
1166
|
:secondary_code: "[CFT_I]"
|
1167
1167
|
:scale:
|
1168
|
-
:value: 1
|
1168
|
+
:value: 1
|
1169
1169
|
:unit_code: "[ft_i]3"
|
1170
1170
|
:classification: intcust
|
1171
1171
|
:property: volume
|
@@ -1177,7 +1177,7 @@
|
|
1177
1177
|
:primary_code: "[cyd_i]"
|
1178
1178
|
:secondary_code: "[CYD_I]"
|
1179
1179
|
:scale:
|
1180
|
-
:value: 1
|
1180
|
+
:value: 1
|
1181
1181
|
:unit_code: "[yd_i]3"
|
1182
1182
|
:classification: intcust
|
1183
1183
|
:property: volume
|
@@ -1188,7 +1188,7 @@
|
|
1188
1188
|
:primary_code: "[bf_i]"
|
1189
1189
|
:secondary_code: "[BF_I]"
|
1190
1190
|
:scale:
|
1191
|
-
:value: 144
|
1191
|
+
:value: 144
|
1192
1192
|
:unit_code: "[in_i]3"
|
1193
1193
|
:classification: intcust
|
1194
1194
|
:property: volume
|
@@ -1199,7 +1199,7 @@
|
|
1199
1199
|
:primary_code: "[cr_i]"
|
1200
1200
|
:secondary_code: "[CR_I]"
|
1201
1201
|
:scale:
|
1202
|
-
:value: 128
|
1202
|
+
:value: 128
|
1203
1203
|
:unit_code: "[ft_i]3"
|
1204
1204
|
:classification: intcust
|
1205
1205
|
:property: volume
|
@@ -1211,7 +1211,7 @@
|
|
1211
1211
|
:primary_code: "[mil_i]"
|
1212
1212
|
:secondary_code: "[MIL_I]"
|
1213
1213
|
:scale:
|
1214
|
-
:value: 0.
|
1214
|
+
:value: !ruby/object:BigDecimal 18:0.1e-2
|
1215
1215
|
:unit_code: "[in_i]"
|
1216
1216
|
:classification: intcust
|
1217
1217
|
:property: length
|
@@ -1223,7 +1223,7 @@
|
|
1223
1223
|
:primary_code: "[cml_i]"
|
1224
1224
|
:secondary_code: "[CML_I]"
|
1225
1225
|
:scale:
|
1226
|
-
:value: 1
|
1226
|
+
:value: 1
|
1227
1227
|
:unit_code: "[pi]/4.[mil_i]2"
|
1228
1228
|
:classification: intcust
|
1229
1229
|
:property: area
|
@@ -1235,7 +1235,7 @@
|
|
1235
1235
|
:primary_code: "[hd_i]"
|
1236
1236
|
:secondary_code: "[HD_I]"
|
1237
1237
|
:scale:
|
1238
|
-
:value: 4
|
1238
|
+
:value: 4
|
1239
1239
|
:unit_code: "[in_i]"
|
1240
1240
|
:classification: intcust
|
1241
1241
|
:property: height of horses
|
@@ -1247,7 +1247,7 @@
|
|
1247
1247
|
:primary_code: "[ft_us]"
|
1248
1248
|
:secondary_code: "[FT_US]"
|
1249
1249
|
:scale:
|
1250
|
-
:value: 1200
|
1250
|
+
:value: 1200
|
1251
1251
|
:unit_code: m/3937
|
1252
1252
|
:classification: us-lengths
|
1253
1253
|
:property: length
|
@@ -1258,7 +1258,7 @@
|
|
1258
1258
|
:primary_code: "[yd_us]"
|
1259
1259
|
:secondary_code: "[YD_US]"
|
1260
1260
|
:scale:
|
1261
|
-
:value: 3
|
1261
|
+
:value: 3
|
1262
1262
|
:unit_code: "[ft_us]"
|
1263
1263
|
:classification: us-lengths
|
1264
1264
|
:property: length
|
@@ -1269,7 +1269,7 @@
|
|
1269
1269
|
:primary_code: "[in_us]"
|
1270
1270
|
:secondary_code: "[IN_US]"
|
1271
1271
|
:scale:
|
1272
|
-
:value: 1
|
1272
|
+
:value: 1
|
1273
1273
|
:unit_code: "[ft_us]/12"
|
1274
1274
|
:classification: us-lengths
|
1275
1275
|
:property: length
|
@@ -1280,7 +1280,7 @@
|
|
1280
1280
|
:primary_code: "[rd_us]"
|
1281
1281
|
:secondary_code: "[RD_US]"
|
1282
1282
|
:scale:
|
1283
|
-
:value:
|
1283
|
+
:value: !ruby/object:BigDecimal 18:0.165e2
|
1284
1284
|
:unit_code: "[ft_us]"
|
1285
1285
|
:classification: us-lengths
|
1286
1286
|
:property: length
|
@@ -1293,7 +1293,7 @@
|
|
1293
1293
|
:primary_code: "[ch_us]"
|
1294
1294
|
:secondary_code: "[CH_US]"
|
1295
1295
|
:scale:
|
1296
|
-
:value: 4
|
1296
|
+
:value: 4
|
1297
1297
|
:unit_code: "[rd_us]"
|
1298
1298
|
:classification: us-lengths
|
1299
1299
|
:property: length
|
@@ -1304,7 +1304,7 @@
|
|
1304
1304
|
:primary_code: "[lk_us]"
|
1305
1305
|
:secondary_code: "[LK_US]"
|
1306
1306
|
:scale:
|
1307
|
-
:value: 1
|
1307
|
+
:value: 1
|
1308
1308
|
:unit_code: "[ch_us]/100"
|
1309
1309
|
:classification: us-lengths
|
1310
1310
|
:property: length
|
@@ -1317,7 +1317,7 @@
|
|
1317
1317
|
:primary_code: "[rch_us]"
|
1318
1318
|
:secondary_code: "[RCH_US]"
|
1319
1319
|
:scale:
|
1320
|
-
:value: 100
|
1320
|
+
:value: 100
|
1321
1321
|
:unit_code: "[ft_us]"
|
1322
1322
|
:classification: us-lengths
|
1323
1323
|
:property: length
|
@@ -1328,7 +1328,7 @@
|
|
1328
1328
|
:primary_code: "[rlk_us]"
|
1329
1329
|
:secondary_code: "[RLK_US]"
|
1330
1330
|
:scale:
|
1331
|
-
:value: 1
|
1331
|
+
:value: 1
|
1332
1332
|
:unit_code: "[rch_us]/100"
|
1333
1333
|
:classification: us-lengths
|
1334
1334
|
:property: length
|
@@ -1339,7 +1339,7 @@
|
|
1339
1339
|
:primary_code: "[fth_us]"
|
1340
1340
|
:secondary_code: "[FTH_US]"
|
1341
1341
|
:scale:
|
1342
|
-
:value: 6
|
1342
|
+
:value: 6
|
1343
1343
|
:unit_code: "[ft_us]"
|
1344
1344
|
:classification: us-lengths
|
1345
1345
|
:property: length
|
@@ -1350,7 +1350,7 @@
|
|
1350
1350
|
:primary_code: "[fur_us]"
|
1351
1351
|
:secondary_code: "[FUR_US]"
|
1352
1352
|
:scale:
|
1353
|
-
:value: 40
|
1353
|
+
:value: 40
|
1354
1354
|
:unit_code: "[rd_us]"
|
1355
1355
|
:classification: us-lengths
|
1356
1356
|
:property: length
|
@@ -1361,7 +1361,7 @@
|
|
1361
1361
|
:primary_code: "[mi_us]"
|
1362
1362
|
:secondary_code: "[MI_US]"
|
1363
1363
|
:scale:
|
1364
|
-
:value: 8
|
1364
|
+
:value: 8
|
1365
1365
|
:unit_code: "[fur_us]"
|
1366
1366
|
:classification: us-lengths
|
1367
1367
|
:property: length
|
@@ -1372,7 +1372,7 @@
|
|
1372
1372
|
:primary_code: "[acr_us]"
|
1373
1373
|
:secondary_code: "[ACR_US]"
|
1374
1374
|
:scale:
|
1375
|
-
:value: 160
|
1375
|
+
:value: 160
|
1376
1376
|
:unit_code: "[rd_us]2"
|
1377
1377
|
:classification: us-lengths
|
1378
1378
|
:property: area
|
@@ -1383,7 +1383,7 @@
|
|
1383
1383
|
:primary_code: "[srd_us]"
|
1384
1384
|
:secondary_code: "[SRD_US]"
|
1385
1385
|
:scale:
|
1386
|
-
:value: 1
|
1386
|
+
:value: 1
|
1387
1387
|
:unit_code: "[rd_us]2"
|
1388
1388
|
:classification: us-lengths
|
1389
1389
|
:property: area
|
@@ -1394,7 +1394,7 @@
|
|
1394
1394
|
:primary_code: "[smi_us]"
|
1395
1395
|
:secondary_code: "[SMI_US]"
|
1396
1396
|
:scale:
|
1397
|
-
:value: 1
|
1397
|
+
:value: 1
|
1398
1398
|
:unit_code: "[mi_us]2"
|
1399
1399
|
:classification: us-lengths
|
1400
1400
|
:property: area
|
@@ -1405,7 +1405,7 @@
|
|
1405
1405
|
:primary_code: "[sct]"
|
1406
1406
|
:secondary_code: "[SCT]"
|
1407
1407
|
:scale:
|
1408
|
-
:value: 1
|
1408
|
+
:value: 1
|
1409
1409
|
:unit_code: "[mi_us]2"
|
1410
1410
|
:classification: us-lengths
|
1411
1411
|
:property: area
|
@@ -1416,7 +1416,7 @@
|
|
1416
1416
|
:primary_code: "[twp]"
|
1417
1417
|
:secondary_code: "[TWP]"
|
1418
1418
|
:scale:
|
1419
|
-
:value: 36
|
1419
|
+
:value: 36
|
1420
1420
|
:unit_code: "[sct]"
|
1421
1421
|
:classification: us-lengths
|
1422
1422
|
:property: area
|
@@ -1427,7 +1427,7 @@
|
|
1427
1427
|
:primary_code: "[mil_us]"
|
1428
1428
|
:secondary_code: "[MIL_US]"
|
1429
1429
|
:scale:
|
1430
|
-
:value: 0.
|
1430
|
+
:value: !ruby/object:BigDecimal 18:0.1e-2
|
1431
1431
|
:unit_code: "[in_us]"
|
1432
1432
|
:classification: us-lengths
|
1433
1433
|
:property: length
|
@@ -1438,7 +1438,7 @@
|
|
1438
1438
|
:primary_code: "[in_br]"
|
1439
1439
|
:secondary_code: "[IN_BR]"
|
1440
1440
|
:scale:
|
1441
|
-
:value:
|
1441
|
+
:value: !ruby/object:BigDecimal 18:0.2539998e1
|
1442
1442
|
:unit_code: cm
|
1443
1443
|
:classification: brit-length
|
1444
1444
|
:property: length
|
@@ -1449,7 +1449,7 @@
|
|
1449
1449
|
:primary_code: "[ft_br]"
|
1450
1450
|
:secondary_code: "[FT_BR]"
|
1451
1451
|
:scale:
|
1452
|
-
:value: 12
|
1452
|
+
:value: 12
|
1453
1453
|
:unit_code: "[in_br]"
|
1454
1454
|
:classification: brit-length
|
1455
1455
|
:property: length
|
@@ -1460,7 +1460,7 @@
|
|
1460
1460
|
:primary_code: "[rd_br]"
|
1461
1461
|
:secondary_code: "[RD_BR]"
|
1462
1462
|
:scale:
|
1463
|
-
:value:
|
1463
|
+
:value: !ruby/object:BigDecimal 18:0.165e2
|
1464
1464
|
:unit_code: "[ft_br]"
|
1465
1465
|
:classification: brit-length
|
1466
1466
|
:property: length
|
@@ -1471,7 +1471,7 @@
|
|
1471
1471
|
:primary_code: "[ch_br]"
|
1472
1472
|
:secondary_code: "[CH_BR]"
|
1473
1473
|
:scale:
|
1474
|
-
:value: 4
|
1474
|
+
:value: 4
|
1475
1475
|
:unit_code: "[rd_br]"
|
1476
1476
|
:classification: brit-length
|
1477
1477
|
:property: length
|
@@ -1482,7 +1482,7 @@
|
|
1482
1482
|
:primary_code: "[lk_br]"
|
1483
1483
|
:secondary_code: "[LK_BR]"
|
1484
1484
|
:scale:
|
1485
|
-
:value: 1
|
1485
|
+
:value: 1
|
1486
1486
|
:unit_code: "[ch_br]/100"
|
1487
1487
|
:classification: brit-length
|
1488
1488
|
:property: length
|
@@ -1493,7 +1493,7 @@
|
|
1493
1493
|
:primary_code: "[fth_br]"
|
1494
1494
|
:secondary_code: "[FTH_BR]"
|
1495
1495
|
:scale:
|
1496
|
-
:value: 6
|
1496
|
+
:value: 6
|
1497
1497
|
:unit_code: "[ft_br]"
|
1498
1498
|
:classification: brit-length
|
1499
1499
|
:property: length
|
@@ -1504,7 +1504,7 @@
|
|
1504
1504
|
:primary_code: "[pc_br]"
|
1505
1505
|
:secondary_code: "[PC_BR]"
|
1506
1506
|
:scale:
|
1507
|
-
:value:
|
1507
|
+
:value: !ruby/object:BigDecimal 18:0.25e1
|
1508
1508
|
:unit_code: "[ft_br]"
|
1509
1509
|
:classification: brit-length
|
1510
1510
|
:property: length
|
@@ -1515,7 +1515,7 @@
|
|
1515
1515
|
:primary_code: "[yd_br]"
|
1516
1516
|
:secondary_code: "[YD_BR]"
|
1517
1517
|
:scale:
|
1518
|
-
:value: 3
|
1518
|
+
:value: 3
|
1519
1519
|
:unit_code: "[ft_br]"
|
1520
1520
|
:classification: brit-length
|
1521
1521
|
:property: length
|
@@ -1526,7 +1526,7 @@
|
|
1526
1526
|
:primary_code: "[mi_br]"
|
1527
1527
|
:secondary_code: "[MI_BR]"
|
1528
1528
|
:scale:
|
1529
|
-
:value: 5280
|
1529
|
+
:value: 5280
|
1530
1530
|
:unit_code: "[ft_br]"
|
1531
1531
|
:classification: brit-length
|
1532
1532
|
:property: length
|
@@ -1537,7 +1537,7 @@
|
|
1537
1537
|
:primary_code: "[nmi_br]"
|
1538
1538
|
:secondary_code: "[NMI_BR]"
|
1539
1539
|
:scale:
|
1540
|
-
:value: 6080
|
1540
|
+
:value: 6080
|
1541
1541
|
:unit_code: "[ft_br]"
|
1542
1542
|
:classification: brit-length
|
1543
1543
|
:property: length
|
@@ -1548,7 +1548,7 @@
|
|
1548
1548
|
:primary_code: "[kn_br]"
|
1549
1549
|
:secondary_code: "[KN_BR]"
|
1550
1550
|
:scale:
|
1551
|
-
:value: 1
|
1551
|
+
:value: 1
|
1552
1552
|
:unit_code: "[nmi_br]/h"
|
1553
1553
|
:classification: brit-length
|
1554
1554
|
:property: velocity
|
@@ -1559,7 +1559,7 @@
|
|
1559
1559
|
:primary_code: "[acr_br]"
|
1560
1560
|
:secondary_code: "[ACR_BR]"
|
1561
1561
|
:scale:
|
1562
|
-
:value: 4840
|
1562
|
+
:value: 4840
|
1563
1563
|
:unit_code: "[yd_br]2"
|
1564
1564
|
:classification: brit-length
|
1565
1565
|
:property: area
|
@@ -1570,7 +1570,7 @@
|
|
1570
1570
|
:primary_code: "[gal_us]"
|
1571
1571
|
:secondary_code: "[GAL_US]"
|
1572
1572
|
:scale:
|
1573
|
-
:value: 231
|
1573
|
+
:value: 231
|
1574
1574
|
:unit_code: "[in_i]3"
|
1575
1575
|
:classification: us-volumes
|
1576
1576
|
:property: fluid volume
|
@@ -1581,7 +1581,7 @@
|
|
1581
1581
|
:primary_code: "[bbl_us]"
|
1582
1582
|
:secondary_code: "[BBL_US]"
|
1583
1583
|
:scale:
|
1584
|
-
:value: 42
|
1584
|
+
:value: 42
|
1585
1585
|
:unit_code: "[gal_us]"
|
1586
1586
|
:classification: us-volumes
|
1587
1587
|
:property: fluid volume
|
@@ -1592,7 +1592,7 @@
|
|
1592
1592
|
:primary_code: "[qt_us]"
|
1593
1593
|
:secondary_code: "[QT_US]"
|
1594
1594
|
:scale:
|
1595
|
-
:value: 1
|
1595
|
+
:value: 1
|
1596
1596
|
:unit_code: "[gal_us]/4"
|
1597
1597
|
:classification: us-volumes
|
1598
1598
|
:property: fluid volume
|
@@ -1603,7 +1603,7 @@
|
|
1603
1603
|
:primary_code: "[pt_us]"
|
1604
1604
|
:secondary_code: "[PT_US]"
|
1605
1605
|
:scale:
|
1606
|
-
:value: 1
|
1606
|
+
:value: 1
|
1607
1607
|
:unit_code: "[qt_us]/2"
|
1608
1608
|
:classification: us-volumes
|
1609
1609
|
:property: fluid volume
|
@@ -1614,7 +1614,7 @@
|
|
1614
1614
|
:primary_code: "[gil_us]"
|
1615
1615
|
:secondary_code: "[GIL_US]"
|
1616
1616
|
:scale:
|
1617
|
-
:value: 1
|
1617
|
+
:value: 1
|
1618
1618
|
:unit_code: "[pt_us]/4"
|
1619
1619
|
:classification: us-volumes
|
1620
1620
|
:property: fluid volume
|
@@ -1626,7 +1626,7 @@
|
|
1626
1626
|
:primary_code: "[foz_us]"
|
1627
1627
|
:secondary_code: "[FOZ_US]"
|
1628
1628
|
:scale:
|
1629
|
-
:value: 1
|
1629
|
+
:value: 1
|
1630
1630
|
:unit_code: "[gil_us]/4"
|
1631
1631
|
:classification: us-volumes
|
1632
1632
|
:property: fluid volume
|
@@ -1637,7 +1637,7 @@
|
|
1637
1637
|
:primary_code: "[fdr_us]"
|
1638
1638
|
:secondary_code: "[FDR_US]"
|
1639
1639
|
:scale:
|
1640
|
-
:value: 1
|
1640
|
+
:value: 1
|
1641
1641
|
:unit_code: "[foz_us]/8"
|
1642
1642
|
:classification: us-volumes
|
1643
1643
|
:property: fluid volume
|
@@ -1648,7 +1648,7 @@
|
|
1648
1648
|
:primary_code: "[min_us]"
|
1649
1649
|
:secondary_code: "[MIN_US]"
|
1650
1650
|
:scale:
|
1651
|
-
:value: 1
|
1651
|
+
:value: 1
|
1652
1652
|
:unit_code: "[fdr_us]/60"
|
1653
1653
|
:classification: us-volumes
|
1654
1654
|
:property: fluid volume
|
@@ -1659,7 +1659,7 @@
|
|
1659
1659
|
:primary_code: "[crd_us]"
|
1660
1660
|
:secondary_code: "[CRD_US]"
|
1661
1661
|
:scale:
|
1662
|
-
:value: 128
|
1662
|
+
:value: 128
|
1663
1663
|
:unit_code: "[ft_i]3"
|
1664
1664
|
:classification: us-volumes
|
1665
1665
|
:property: fluid volume
|
@@ -1670,7 +1670,7 @@
|
|
1670
1670
|
:primary_code: "[bu_us]"
|
1671
1671
|
:secondary_code: "[BU_US]"
|
1672
1672
|
:scale:
|
1673
|
-
:value:
|
1673
|
+
:value: !ruby/object:BigDecimal 18:0.215042e4
|
1674
1674
|
:unit_code: "[in_i]3"
|
1675
1675
|
:classification: us-volumes
|
1676
1676
|
:property: dry volume
|
@@ -1681,7 +1681,7 @@
|
|
1681
1681
|
:primary_code: "[gal_wi]"
|
1682
1682
|
:secondary_code: "[GAL_WI]"
|
1683
1683
|
:scale:
|
1684
|
-
:value: 1
|
1684
|
+
:value: 1
|
1685
1685
|
:unit_code: "[bu_us]/8"
|
1686
1686
|
:classification: us-volumes
|
1687
1687
|
:property: dry volume
|
@@ -1692,7 +1692,7 @@
|
|
1692
1692
|
:primary_code: "[pk_us]"
|
1693
1693
|
:secondary_code: "[PK_US]"
|
1694
1694
|
:scale:
|
1695
|
-
:value: 1
|
1695
|
+
:value: 1
|
1696
1696
|
:unit_code: "[bu_us]/4"
|
1697
1697
|
:classification: us-volumes
|
1698
1698
|
:property: dry volume
|
@@ -1703,7 +1703,7 @@
|
|
1703
1703
|
:primary_code: "[dqt_us]"
|
1704
1704
|
:secondary_code: "[DQT_US]"
|
1705
1705
|
:scale:
|
1706
|
-
:value: 1
|
1706
|
+
:value: 1
|
1707
1707
|
:unit_code: "[pk_us]/8"
|
1708
1708
|
:classification: us-volumes
|
1709
1709
|
:property: dry volume
|
@@ -1714,7 +1714,7 @@
|
|
1714
1714
|
:primary_code: "[dpt_us]"
|
1715
1715
|
:secondary_code: "[DPT_US]"
|
1716
1716
|
:scale:
|
1717
|
-
:value: 1
|
1717
|
+
:value: 1
|
1718
1718
|
:unit_code: "[dqt_us]/2"
|
1719
1719
|
:classification: us-volumes
|
1720
1720
|
:property: dry volume
|
@@ -1725,7 +1725,7 @@
|
|
1725
1725
|
:primary_code: "[tbs_us]"
|
1726
1726
|
:secondary_code: "[TBS_US]"
|
1727
1727
|
:scale:
|
1728
|
-
:value: 1
|
1728
|
+
:value: 1
|
1729
1729
|
:unit_code: "[foz_us]/2"
|
1730
1730
|
:classification: us-volumes
|
1731
1731
|
:property: volume
|
@@ -1736,7 +1736,7 @@
|
|
1736
1736
|
:primary_code: "[tsp_us]"
|
1737
1737
|
:secondary_code: "[TSP_US]"
|
1738
1738
|
:scale:
|
1739
|
-
:value: 1
|
1739
|
+
:value: 1
|
1740
1740
|
:unit_code: "[tbs_us]/3"
|
1741
1741
|
:classification: us-volumes
|
1742
1742
|
:property: volume
|
@@ -1747,7 +1747,7 @@
|
|
1747
1747
|
:primary_code: "[cup_us]"
|
1748
1748
|
:secondary_code: "[CUP_US]"
|
1749
1749
|
:scale:
|
1750
|
-
:value: 16
|
1750
|
+
:value: 16
|
1751
1751
|
:unit_code: "[tbs_us]"
|
1752
1752
|
:classification: us-volumes
|
1753
1753
|
:property: volume
|
@@ -1759,7 +1759,7 @@
|
|
1759
1759
|
:primary_code: "[foz_m]"
|
1760
1760
|
:secondary_code: "[FOZ_M]"
|
1761
1761
|
:scale:
|
1762
|
-
:value: 30
|
1762
|
+
:value: 30
|
1763
1763
|
:unit_code: mL
|
1764
1764
|
:classification: us-volumes
|
1765
1765
|
:property: fluid volume
|
@@ -1770,7 +1770,7 @@
|
|
1770
1770
|
:primary_code: "[cup_m]"
|
1771
1771
|
:secondary_code: "[CUP_M]"
|
1772
1772
|
:scale:
|
1773
|
-
:value: 240
|
1773
|
+
:value: 240
|
1774
1774
|
:unit_code: mL
|
1775
1775
|
:classification: us-volumes
|
1776
1776
|
:property: volume
|
@@ -1781,7 +1781,7 @@
|
|
1781
1781
|
:primary_code: "[tsp_m]"
|
1782
1782
|
:secondary_code: "[TSP_M]"
|
1783
1783
|
:scale:
|
1784
|
-
:value: 5
|
1784
|
+
:value: 5
|
1785
1785
|
:unit_code: mL
|
1786
1786
|
:classification: us-volumes
|
1787
1787
|
:property: volume
|
@@ -1792,7 +1792,7 @@
|
|
1792
1792
|
:primary_code: "[tbs_m]"
|
1793
1793
|
:secondary_code: "[TBS_M]"
|
1794
1794
|
:scale:
|
1795
|
-
:value: 15
|
1795
|
+
:value: 15
|
1796
1796
|
:unit_code: mL
|
1797
1797
|
:classification: us-volumes
|
1798
1798
|
:property: volume
|
@@ -1803,7 +1803,7 @@
|
|
1803
1803
|
:primary_code: "[gal_br]"
|
1804
1804
|
:secondary_code: "[GAL_BR]"
|
1805
1805
|
:scale:
|
1806
|
-
:value:
|
1806
|
+
:value: !ruby/object:BigDecimal 18:0.454609e1
|
1807
1807
|
:unit_code: l
|
1808
1808
|
:classification: brit-volumes
|
1809
1809
|
:property: volume
|
@@ -1814,7 +1814,7 @@
|
|
1814
1814
|
:primary_code: "[pk_br]"
|
1815
1815
|
:secondary_code: "[PK_BR]"
|
1816
1816
|
:scale:
|
1817
|
-
:value: 2
|
1817
|
+
:value: 2
|
1818
1818
|
:unit_code: "[gal_br]"
|
1819
1819
|
:classification: brit-volumes
|
1820
1820
|
:property: volume
|
@@ -1825,7 +1825,7 @@
|
|
1825
1825
|
:primary_code: "[bu_br]"
|
1826
1826
|
:secondary_code: "[BU_BR]"
|
1827
1827
|
:scale:
|
1828
|
-
:value: 4
|
1828
|
+
:value: 4
|
1829
1829
|
:unit_code: "[pk_br]"
|
1830
1830
|
:classification: brit-volumes
|
1831
1831
|
:property: volume
|
@@ -1836,7 +1836,7 @@
|
|
1836
1836
|
:primary_code: "[qt_br]"
|
1837
1837
|
:secondary_code: "[QT_BR]"
|
1838
1838
|
:scale:
|
1839
|
-
:value: 1
|
1839
|
+
:value: 1
|
1840
1840
|
:unit_code: "[gal_br]/4"
|
1841
1841
|
:classification: brit-volumes
|
1842
1842
|
:property: volume
|
@@ -1847,7 +1847,7 @@
|
|
1847
1847
|
:primary_code: "[pt_br]"
|
1848
1848
|
:secondary_code: "[PT_BR]"
|
1849
1849
|
:scale:
|
1850
|
-
:value: 1
|
1850
|
+
:value: 1
|
1851
1851
|
:unit_code: "[qt_br]/2"
|
1852
1852
|
:classification: brit-volumes
|
1853
1853
|
:property: volume
|
@@ -1858,7 +1858,7 @@
|
|
1858
1858
|
:primary_code: "[gil_br]"
|
1859
1859
|
:secondary_code: "[GIL_BR]"
|
1860
1860
|
:scale:
|
1861
|
-
:value: 1
|
1861
|
+
:value: 1
|
1862
1862
|
:unit_code: "[pt_br]/4"
|
1863
1863
|
:classification: brit-volumes
|
1864
1864
|
:property: volume
|
@@ -1869,7 +1869,7 @@
|
|
1869
1869
|
:primary_code: "[foz_br]"
|
1870
1870
|
:secondary_code: "[FOZ_BR]"
|
1871
1871
|
:scale:
|
1872
|
-
:value: 1
|
1872
|
+
:value: 1
|
1873
1873
|
:unit_code: "[gil_br]/5"
|
1874
1874
|
:classification: brit-volumes
|
1875
1875
|
:property: volume
|
@@ -1880,7 +1880,7 @@
|
|
1880
1880
|
:primary_code: "[fdr_br]"
|
1881
1881
|
:secondary_code: "[FDR_BR]"
|
1882
1882
|
:scale:
|
1883
|
-
:value: 1
|
1883
|
+
:value: 1
|
1884
1884
|
:unit_code: "[foz_br]/8"
|
1885
1885
|
:classification: brit-volumes
|
1886
1886
|
:property: volume
|
@@ -1891,7 +1891,7 @@
|
|
1891
1891
|
:primary_code: "[min_br]"
|
1892
1892
|
:secondary_code: "[MIN_BR]"
|
1893
1893
|
:scale:
|
1894
|
-
:value: 1
|
1894
|
+
:value: 1
|
1895
1895
|
:unit_code: "[fdr_br]/60"
|
1896
1896
|
:classification: brit-volumes
|
1897
1897
|
:property: volume
|
@@ -1902,7 +1902,7 @@
|
|
1902
1902
|
:primary_code: "[gr]"
|
1903
1903
|
:secondary_code: "[GR]"
|
1904
1904
|
:scale:
|
1905
|
-
:value:
|
1905
|
+
:value: !ruby/object:BigDecimal 18:0.6479891e2
|
1906
1906
|
:unit_code: mg
|
1907
1907
|
:classification: avoirdupois
|
1908
1908
|
:property: mass
|
@@ -1914,7 +1914,7 @@
|
|
1914
1914
|
:primary_code: "[lb_av]"
|
1915
1915
|
:secondary_code: "[LB_AV]"
|
1916
1916
|
:scale:
|
1917
|
-
:value: 7000
|
1917
|
+
:value: 7000
|
1918
1918
|
:unit_code: "[gr]"
|
1919
1919
|
:classification: avoirdupois
|
1920
1920
|
:property: mass
|
@@ -1926,7 +1926,7 @@
|
|
1926
1926
|
:primary_code: "[oz_av]"
|
1927
1927
|
:secondary_code: "[OZ_AV]"
|
1928
1928
|
:scale:
|
1929
|
-
:value: 1
|
1929
|
+
:value: 1
|
1930
1930
|
:unit_code: "[lb_av]/16"
|
1931
1931
|
:classification: avoirdupois
|
1932
1932
|
:property: mass
|
@@ -1937,7 +1937,7 @@
|
|
1937
1937
|
:primary_code: "[dr_av]"
|
1938
1938
|
:secondary_code: "[DR_AV]"
|
1939
1939
|
:scale:
|
1940
|
-
:value: 1
|
1940
|
+
:value: 1
|
1941
1941
|
:unit_code: "[oz_av]/16"
|
1942
1942
|
:classification: avoirdupois
|
1943
1943
|
:property: mass
|
@@ -1950,7 +1950,7 @@
|
|
1950
1950
|
:primary_code: "[scwt_av]"
|
1951
1951
|
:secondary_code: "[SCWT_AV]"
|
1952
1952
|
:scale:
|
1953
|
-
:value: 100
|
1953
|
+
:value: 100
|
1954
1954
|
:unit_code: "[lb_av]"
|
1955
1955
|
:classification: avoirdupois
|
1956
1956
|
:property: mass
|
@@ -1963,7 +1963,7 @@
|
|
1963
1963
|
:primary_code: "[lcwt_av]"
|
1964
1964
|
:secondary_code: "[LCWT_AV]"
|
1965
1965
|
:scale:
|
1966
|
-
:value: 112
|
1966
|
+
:value: 112
|
1967
1967
|
:unit_code: "[lb_av]"
|
1968
1968
|
:classification: avoirdupois
|
1969
1969
|
:property: mass
|
@@ -1976,7 +1976,7 @@
|
|
1976
1976
|
:primary_code: "[ston_av]"
|
1977
1977
|
:secondary_code: "[STON_AV]"
|
1978
1978
|
:scale:
|
1979
|
-
:value: 20
|
1979
|
+
:value: 20
|
1980
1980
|
:unit_code: "[scwt_av]"
|
1981
1981
|
:classification: avoirdupois
|
1982
1982
|
:property: mass
|
@@ -1989,7 +1989,7 @@
|
|
1989
1989
|
:primary_code: "[lton_av]"
|
1990
1990
|
:secondary_code: "[LTON_AV]"
|
1991
1991
|
:scale:
|
1992
|
-
:value: 20
|
1992
|
+
:value: 20
|
1993
1993
|
:unit_code: "[lcwt_av]"
|
1994
1994
|
:classification: avoirdupois
|
1995
1995
|
:property: mass
|
@@ -2002,7 +2002,7 @@
|
|
2002
2002
|
:primary_code: "[stone_av]"
|
2003
2003
|
:secondary_code: "[STONE_AV]"
|
2004
2004
|
:scale:
|
2005
|
-
:value: 14
|
2005
|
+
:value: 14
|
2006
2006
|
:unit_code: "[lb_av]"
|
2007
2007
|
:classification: avoirdupois
|
2008
2008
|
:property: mass
|
@@ -2013,7 +2013,7 @@
|
|
2013
2013
|
:primary_code: "[pwt_tr]"
|
2014
2014
|
:secondary_code: "[PWT_TR]"
|
2015
2015
|
:scale:
|
2016
|
-
:value: 24
|
2016
|
+
:value: 24
|
2017
2017
|
:unit_code: "[gr]"
|
2018
2018
|
:classification: troy
|
2019
2019
|
:property: mass
|
@@ -2024,7 +2024,7 @@
|
|
2024
2024
|
:primary_code: "[oz_tr]"
|
2025
2025
|
:secondary_code: "[OZ_TR]"
|
2026
2026
|
:scale:
|
2027
|
-
:value: 20
|
2027
|
+
:value: 20
|
2028
2028
|
:unit_code: "[pwt_tr]"
|
2029
2029
|
:classification: troy
|
2030
2030
|
:property: mass
|
@@ -2035,7 +2035,7 @@
|
|
2035
2035
|
:primary_code: "[lb_tr]"
|
2036
2036
|
:secondary_code: "[LB_TR]"
|
2037
2037
|
:scale:
|
2038
|
-
:value: 12
|
2038
|
+
:value: 12
|
2039
2039
|
:unit_code: "[oz_tr]"
|
2040
2040
|
:classification: troy
|
2041
2041
|
:property: mass
|
@@ -2046,7 +2046,7 @@
|
|
2046
2046
|
:primary_code: "[sc_ap]"
|
2047
2047
|
:secondary_code: "[SC_AP]"
|
2048
2048
|
:scale:
|
2049
|
-
:value: 20
|
2049
|
+
:value: 20
|
2050
2050
|
:unit_code: "[gr]"
|
2051
2051
|
:classification: apoth
|
2052
2052
|
:property: mass
|
@@ -2059,7 +2059,7 @@
|
|
2059
2059
|
:primary_code: "[dr_ap]"
|
2060
2060
|
:secondary_code: "[DR_AP]"
|
2061
2061
|
:scale:
|
2062
|
-
:value: 3
|
2062
|
+
:value: 3
|
2063
2063
|
:unit_code: "[sc_ap]"
|
2064
2064
|
:classification: apoth
|
2065
2065
|
:property: mass
|
@@ -2070,7 +2070,7 @@
|
|
2070
2070
|
:primary_code: "[oz_ap]"
|
2071
2071
|
:secondary_code: "[OZ_AP]"
|
2072
2072
|
:scale:
|
2073
|
-
:value: 8
|
2073
|
+
:value: 8
|
2074
2074
|
:unit_code: "[dr_ap]"
|
2075
2075
|
:classification: apoth
|
2076
2076
|
:property: mass
|
@@ -2081,7 +2081,7 @@
|
|
2081
2081
|
:primary_code: "[lb_ap]"
|
2082
2082
|
:secondary_code: "[LB_AP]"
|
2083
2083
|
:scale:
|
2084
|
-
:value: 12
|
2084
|
+
:value: 12
|
2085
2085
|
:unit_code: "[oz_ap]"
|
2086
2086
|
:classification: apoth
|
2087
2087
|
:property: mass
|
@@ -2092,7 +2092,7 @@
|
|
2092
2092
|
:primary_code: "[oz_m]"
|
2093
2093
|
:secondary_code: "[OZ_M]"
|
2094
2094
|
:scale:
|
2095
|
-
:value: 28
|
2095
|
+
:value: 28
|
2096
2096
|
:unit_code: g
|
2097
2097
|
:classification: apoth
|
2098
2098
|
:property: mass
|
@@ -2103,7 +2103,7 @@
|
|
2103
2103
|
:primary_code: "[lne]"
|
2104
2104
|
:secondary_code: "[LNE]"
|
2105
2105
|
:scale:
|
2106
|
-
:value: 1
|
2106
|
+
:value: 1
|
2107
2107
|
:unit_code: "[in_i]/12"
|
2108
2108
|
:classification: typeset
|
2109
2109
|
:property: length
|
@@ -2114,7 +2114,7 @@
|
|
2114
2114
|
:primary_code: "[pnt]"
|
2115
2115
|
:secondary_code: "[PNT]"
|
2116
2116
|
:scale:
|
2117
|
-
:value: 1
|
2117
|
+
:value: 1
|
2118
2118
|
:unit_code: "[lne]/6"
|
2119
2119
|
:classification: typeset
|
2120
2120
|
:property: length
|
@@ -2125,7 +2125,7 @@
|
|
2125
2125
|
:primary_code: "[pca]"
|
2126
2126
|
:secondary_code: "[PCA]"
|
2127
2127
|
:scale:
|
2128
|
-
:value: 12
|
2128
|
+
:value: 12
|
2129
2129
|
:unit_code: "[pnt]"
|
2130
2130
|
:classification: typeset
|
2131
2131
|
:property: length
|
@@ -2136,7 +2136,7 @@
|
|
2136
2136
|
:primary_code: "[pnt_pr]"
|
2137
2137
|
:secondary_code: "[PNT_PR]"
|
2138
2138
|
:scale:
|
2139
|
-
:value: 0.
|
2139
|
+
:value: !ruby/object:BigDecimal 18:0.13837e-1
|
2140
2140
|
:unit_code: "[in_i]"
|
2141
2141
|
:classification: typeset
|
2142
2142
|
:property: length
|
@@ -2147,7 +2147,7 @@
|
|
2147
2147
|
:primary_code: "[pca_pr]"
|
2148
2148
|
:secondary_code: "[PCA_PR]"
|
2149
2149
|
:scale:
|
2150
|
-
:value: 12
|
2150
|
+
:value: 12
|
2151
2151
|
:unit_code: "[pnt_pr]"
|
2152
2152
|
:classification: typeset
|
2153
2153
|
:property: length
|
@@ -2160,7 +2160,7 @@
|
|
2160
2160
|
:primary_code: "[pied]"
|
2161
2161
|
:secondary_code: "[PIED]"
|
2162
2162
|
:scale:
|
2163
|
-
:value:
|
2163
|
+
:value: !ruby/object:BigDecimal 18:0.3248e2
|
2164
2164
|
:unit_code: cm
|
2165
2165
|
:classification: typeset
|
2166
2166
|
:property: length
|
@@ -2173,7 +2173,7 @@
|
|
2173
2173
|
:primary_code: "[pouce]"
|
2174
2174
|
:secondary_code: "[POUCE]"
|
2175
2175
|
:scale:
|
2176
|
-
:value: 1
|
2176
|
+
:value: 1
|
2177
2177
|
:unit_code: "[pied]/12"
|
2178
2178
|
:classification: typeset
|
2179
2179
|
:property: length
|
@@ -2186,7 +2186,7 @@
|
|
2186
2186
|
:primary_code: "[ligne]"
|
2187
2187
|
:secondary_code: "[LIGNE]"
|
2188
2188
|
:scale:
|
2189
|
-
:value: 1
|
2189
|
+
:value: 1
|
2190
2190
|
:unit_code: "[pouce]/12"
|
2191
2191
|
:classification: typeset
|
2192
2192
|
:property: length
|
@@ -2199,7 +2199,7 @@
|
|
2199
2199
|
:primary_code: "[didot]"
|
2200
2200
|
:secondary_code: "[DIDOT]"
|
2201
2201
|
:scale:
|
2202
|
-
:value: 1
|
2202
|
+
:value: 1
|
2203
2203
|
:unit_code: "[ligne]/6"
|
2204
2204
|
:classification: typeset
|
2205
2205
|
:property: length
|
@@ -2212,7 +2212,7 @@
|
|
2212
2212
|
:primary_code: "[cicero]"
|
2213
2213
|
:secondary_code: "[CICERO]"
|
2214
2214
|
:scale:
|
2215
|
-
:value: 12
|
2215
|
+
:value: 12
|
2216
2216
|
:unit_code: "[didot]"
|
2217
2217
|
:classification: typeset
|
2218
2218
|
:property: length
|
@@ -2225,7 +2225,7 @@
|
|
2225
2225
|
:secondary_code: "[DEGF]"
|
2226
2226
|
:scale:
|
2227
2227
|
:function_code: degf
|
2228
|
-
:value: 5
|
2228
|
+
:value: 5
|
2229
2229
|
:unit_code: K/9
|
2230
2230
|
:classification: heat
|
2231
2231
|
:property: temperature
|
@@ -2237,7 +2237,7 @@
|
|
2237
2237
|
:primary_code: "[degR]"
|
2238
2238
|
:secondary_code: "[degR]"
|
2239
2239
|
:scale:
|
2240
|
-
:value: 5
|
2240
|
+
:value: 5
|
2241
2241
|
:unit_code: K/9
|
2242
2242
|
:classification: heat
|
2243
2243
|
:property: temperature
|
@@ -2250,7 +2250,7 @@
|
|
2250
2250
|
:secondary_code: "[degRe]"
|
2251
2251
|
:scale:
|
2252
2252
|
:function_code: degre
|
2253
|
-
:value: 5
|
2253
|
+
:value: 5
|
2254
2254
|
:unit_code: K/4
|
2255
2255
|
:classification: heat
|
2256
2256
|
:property: temperature
|
@@ -2262,7 +2262,7 @@
|
|
2262
2262
|
:primary_code: cal_[15]
|
2263
2263
|
:secondary_code: CAL_[15]
|
2264
2264
|
:scale:
|
2265
|
-
:value:
|
2265
|
+
:value: !ruby/object:BigDecimal 18:0.41858e1
|
2266
2266
|
:unit_code: J
|
2267
2267
|
:classification: heat
|
2268
2268
|
:property: energy
|
@@ -2274,7 +2274,7 @@
|
|
2274
2274
|
:primary_code: cal_[20]
|
2275
2275
|
:secondary_code: CAL_[20]
|
2276
2276
|
:scale:
|
2277
|
-
:value:
|
2277
|
+
:value: !ruby/object:BigDecimal 18:0.41819e1
|
2278
2278
|
:unit_code: J
|
2279
2279
|
:classification: heat
|
2280
2280
|
:property: energy
|
@@ -2286,7 +2286,7 @@
|
|
2286
2286
|
:primary_code: cal_m
|
2287
2287
|
:secondary_code: CAL_M
|
2288
2288
|
:scale:
|
2289
|
-
:value:
|
2289
|
+
:value: !ruby/object:BigDecimal 18:0.419002e1
|
2290
2290
|
:unit_code: J
|
2291
2291
|
:classification: heat
|
2292
2292
|
:property: energy
|
@@ -2298,7 +2298,7 @@
|
|
2298
2298
|
:primary_code: cal_IT
|
2299
2299
|
:secondary_code: CAL_IT
|
2300
2300
|
:scale:
|
2301
|
-
:value:
|
2301
|
+
:value: !ruby/object:BigDecimal 18:0.41868e1
|
2302
2302
|
:unit_code: J
|
2303
2303
|
:classification: heat
|
2304
2304
|
:property: energy
|
@@ -2310,7 +2310,7 @@
|
|
2310
2310
|
:primary_code: cal_th
|
2311
2311
|
:secondary_code: CAL_TH
|
2312
2312
|
:scale:
|
2313
|
-
:value:
|
2313
|
+
:value: !ruby/object:BigDecimal 18:0.4184e1
|
2314
2314
|
:unit_code: J
|
2315
2315
|
:classification: heat
|
2316
2316
|
:property: energy
|
@@ -2322,7 +2322,7 @@
|
|
2322
2322
|
:primary_code: cal
|
2323
2323
|
:secondary_code: CAL
|
2324
2324
|
:scale:
|
2325
|
-
:value: 1
|
2325
|
+
:value: 1
|
2326
2326
|
:unit_code: cal_th
|
2327
2327
|
:classification: heat
|
2328
2328
|
:property: energy
|
@@ -2334,7 +2334,7 @@
|
|
2334
2334
|
:primary_code: "[Cal]"
|
2335
2335
|
:secondary_code: "[CAL]"
|
2336
2336
|
:scale:
|
2337
|
-
:value: 1
|
2337
|
+
:value: 1
|
2338
2338
|
:unit_code: kcal_th
|
2339
2339
|
:classification: heat
|
2340
2340
|
:property: energy
|
@@ -2346,7 +2346,7 @@
|
|
2346
2346
|
:primary_code: "[Btu_39]"
|
2347
2347
|
:secondary_code: "[BTU_39]"
|
2348
2348
|
:scale:
|
2349
|
-
:value:
|
2349
|
+
:value: !ruby/object:BigDecimal 18:0.105967e1
|
2350
2350
|
:unit_code: kJ
|
2351
2351
|
:classification: heat
|
2352
2352
|
:property: energy
|
@@ -2358,7 +2358,7 @@
|
|
2358
2358
|
:primary_code: "[Btu_59]"
|
2359
2359
|
:secondary_code: "[BTU_59]"
|
2360
2360
|
:scale:
|
2361
|
-
:value:
|
2361
|
+
:value: !ruby/object:BigDecimal 18:0.10548e1
|
2362
2362
|
:unit_code: kJ
|
2363
2363
|
:classification: heat
|
2364
2364
|
:property: energy
|
@@ -2370,7 +2370,7 @@
|
|
2370
2370
|
:primary_code: "[Btu_60]"
|
2371
2371
|
:secondary_code: "[BTU_60]"
|
2372
2372
|
:scale:
|
2373
|
-
:value:
|
2373
|
+
:value: !ruby/object:BigDecimal 18:0.105468e1
|
2374
2374
|
:unit_code: kJ
|
2375
2375
|
:classification: heat
|
2376
2376
|
:property: energy
|
@@ -2382,7 +2382,7 @@
|
|
2382
2382
|
:primary_code: "[Btu_m]"
|
2383
2383
|
:secondary_code: "[BTU_M]"
|
2384
2384
|
:scale:
|
2385
|
-
:value:
|
2385
|
+
:value: !ruby/object:BigDecimal 18:0.105587e1
|
2386
2386
|
:unit_code: kJ
|
2387
2387
|
:classification: heat
|
2388
2388
|
:property: energy
|
@@ -2394,7 +2394,7 @@
|
|
2394
2394
|
:primary_code: "[Btu_IT]"
|
2395
2395
|
:secondary_code: "[BTU_IT]"
|
2396
2396
|
:scale:
|
2397
|
-
:value:
|
2397
|
+
:value: !ruby/object:BigDecimal 27:0.105505585262e1
|
2398
2398
|
:unit_code: kJ
|
2399
2399
|
:classification: heat
|
2400
2400
|
:property: energy
|
@@ -2406,7 +2406,7 @@
|
|
2406
2406
|
:primary_code: "[Btu_th]"
|
2407
2407
|
:secondary_code: "[BTU_TH]"
|
2408
2408
|
:scale:
|
2409
|
-
:value:
|
2409
|
+
:value: !ruby/object:BigDecimal 18:0.105435e1
|
2410
2410
|
:unit_code: kJ
|
2411
2411
|
:classification: heat
|
2412
2412
|
:property: energy
|
@@ -2418,7 +2418,7 @@
|
|
2418
2418
|
:primary_code: "[Btu]"
|
2419
2419
|
:secondary_code: "[BTU]"
|
2420
2420
|
:scale:
|
2421
|
-
:value: 1
|
2421
|
+
:value: 1
|
2422
2422
|
:unit_code: "[Btu_th]"
|
2423
2423
|
:classification: heat
|
2424
2424
|
:property: energy
|
@@ -2429,7 +2429,7 @@
|
|
2429
2429
|
:primary_code: "[HP]"
|
2430
2430
|
:secondary_code: "[HP]"
|
2431
2431
|
:scale:
|
2432
|
-
:value: 550
|
2432
|
+
:value: 550
|
2433
2433
|
:unit_code: "[ft_i].[lbf_av]/s"
|
2434
2434
|
:classification: heat
|
2435
2435
|
:property: power
|
@@ -2441,7 +2441,7 @@
|
|
2441
2441
|
:primary_code: tex
|
2442
2442
|
:secondary_code: TEX
|
2443
2443
|
:scale:
|
2444
|
-
:value: 1
|
2444
|
+
:value: 1
|
2445
2445
|
:unit_code: g/km
|
2446
2446
|
:classification: heat
|
2447
2447
|
:property: linear mass density (of textile thread)
|
@@ -2453,7 +2453,7 @@
|
|
2453
2453
|
:primary_code: "[den]"
|
2454
2454
|
:secondary_code: "[DEN]"
|
2455
2455
|
:scale:
|
2456
|
-
:value: 1
|
2456
|
+
:value: 1
|
2457
2457
|
:unit_code: g/9/km
|
2458
2458
|
:classification: heat
|
2459
2459
|
:property: linear mass density (of textile thread)
|
@@ -2465,7 +2465,7 @@
|
|
2465
2465
|
:primary_code: m[H2O]
|
2466
2466
|
:secondary_code: M[H2O]
|
2467
2467
|
:scale:
|
2468
|
-
:value:
|
2468
|
+
:value: !ruby/object:BigDecimal 18:0.980665e1
|
2469
2469
|
:unit_code: kPa
|
2470
2470
|
:classification: clinical
|
2471
2471
|
:property: pressure
|
@@ -2477,7 +2477,7 @@
|
|
2477
2477
|
:primary_code: m[Hg]
|
2478
2478
|
:secondary_code: M[HG]
|
2479
2479
|
:scale:
|
2480
|
-
:value:
|
2480
|
+
:value: !ruby/object:BigDecimal 18:0.133322e3
|
2481
2481
|
:unit_code: kPa
|
2482
2482
|
:classification: clinical
|
2483
2483
|
:property: pressure
|
@@ -2489,7 +2489,7 @@
|
|
2489
2489
|
:primary_code: "[in_i'H2O]"
|
2490
2490
|
:secondary_code: "[IN_I'H2O]"
|
2491
2491
|
:scale:
|
2492
|
-
:value: 1
|
2492
|
+
:value: 1
|
2493
2493
|
:unit_code: m[H2O].[in_i]/m
|
2494
2494
|
:classification: clinical
|
2495
2495
|
:property: pressure
|
@@ -2501,7 +2501,7 @@
|
|
2501
2501
|
:primary_code: "[in_i'Hg]"
|
2502
2502
|
:secondary_code: "[IN_I'HG]"
|
2503
2503
|
:scale:
|
2504
|
-
:value: 1
|
2504
|
+
:value: 1
|
2505
2505
|
:unit_code: m[Hg].[in_i]/m
|
2506
2506
|
:classification: clinical
|
2507
2507
|
:property: pressure
|
@@ -2513,7 +2513,7 @@
|
|
2513
2513
|
:primary_code: "[PRU]"
|
2514
2514
|
:secondary_code: "[PRU]"
|
2515
2515
|
:scale:
|
2516
|
-
:value: 1
|
2516
|
+
:value: 1
|
2517
2517
|
:unit_code: mm[Hg].s/ml
|
2518
2518
|
:classification: clinical
|
2519
2519
|
:property: fluid resistance
|
@@ -2525,7 +2525,7 @@
|
|
2525
2525
|
:primary_code: "[wood'U]"
|
2526
2526
|
:secondary_code: "[WOOD'U]"
|
2527
2527
|
:scale:
|
2528
|
-
:value: 1
|
2528
|
+
:value: 1
|
2529
2529
|
:unit_code: mm[Hg].min/L
|
2530
2530
|
:classification: clinical
|
2531
2531
|
:property: fluid resistance
|
@@ -2537,7 +2537,7 @@
|
|
2537
2537
|
:primary_code: "[diop]"
|
2538
2538
|
:secondary_code: "[DIOP]"
|
2539
2539
|
:scale:
|
2540
|
-
:value: 1
|
2540
|
+
:value: 1
|
2541
2541
|
:unit_code: "/m"
|
2542
2542
|
:classification: clinical
|
2543
2543
|
:property: refraction of a lens
|
@@ -2550,7 +2550,7 @@
|
|
2550
2550
|
:secondary_code: "[P'DIOP]"
|
2551
2551
|
:scale:
|
2552
2552
|
:function_code: 100tan
|
2553
|
-
:value: 1
|
2553
|
+
:value: 1
|
2554
2554
|
:unit_code: deg
|
2555
2555
|
:classification: clinical
|
2556
2556
|
:property: refraction of a prism
|
@@ -2563,7 +2563,7 @@
|
|
2563
2563
|
:secondary_code: "%[SLOPE]"
|
2564
2564
|
:scale:
|
2565
2565
|
:function_code: 100tan
|
2566
|
-
:value: 1
|
2566
|
+
:value: 1
|
2567
2567
|
:unit_code: deg
|
2568
2568
|
:classification: clinical
|
2569
2569
|
:property: slope
|
@@ -2574,7 +2574,7 @@
|
|
2574
2574
|
:primary_code: "[mesh_i]"
|
2575
2575
|
:secondary_code: "[MESH_I]"
|
2576
2576
|
:scale:
|
2577
|
-
:value: 1
|
2577
|
+
:value: 1
|
2578
2578
|
:unit_code: "/[in_i]"
|
2579
2579
|
:classification: clinical
|
2580
2580
|
:property: lineic number
|
@@ -2588,7 +2588,7 @@
|
|
2588
2588
|
:primary_code: "[Ch]"
|
2589
2589
|
:secondary_code: "[CH]"
|
2590
2590
|
:scale:
|
2591
|
-
:value: 1
|
2591
|
+
:value: 1
|
2592
2592
|
:unit_code: mm/3
|
2593
2593
|
:classification: clinical
|
2594
2594
|
:property: gauge of catheters
|
@@ -2600,7 +2600,7 @@
|
|
2600
2600
|
:primary_code: "[drp]"
|
2601
2601
|
:secondary_code: "[DRP]"
|
2602
2602
|
:scale:
|
2603
|
-
:value: 1
|
2603
|
+
:value: 1
|
2604
2604
|
:unit_code: ml/20
|
2605
2605
|
:classification: clinical
|
2606
2606
|
:property: volume
|
@@ -2612,7 +2612,7 @@
|
|
2612
2612
|
:primary_code: "[hnsf'U]"
|
2613
2613
|
:secondary_code: "[HNSF'U]"
|
2614
2614
|
:scale:
|
2615
|
-
:value: 1
|
2615
|
+
:value: 1
|
2616
2616
|
:unit_code: '1'
|
2617
2617
|
:classification: clinical
|
2618
2618
|
:property: x-ray attenuation
|
@@ -2624,7 +2624,7 @@
|
|
2624
2624
|
:primary_code: "[MET]"
|
2625
2625
|
:secondary_code: "[MET]"
|
2626
2626
|
:scale:
|
2627
|
-
:value:
|
2627
|
+
:value: !ruby/object:BigDecimal 18:0.35e1
|
2628
2628
|
:unit_code: mL/min/kg
|
2629
2629
|
:classification: clinical
|
2630
2630
|
:property: metabolic cost of physical activity
|
@@ -2637,7 +2637,7 @@
|
|
2637
2637
|
:secondary_code: "[HP'_X]"
|
2638
2638
|
:scale:
|
2639
2639
|
:function_code: hpX
|
2640
|
-
:value: 1
|
2640
|
+
:value: 1
|
2641
2641
|
:unit_code: '1'
|
2642
2642
|
:classification: clinical
|
2643
2643
|
:property: homeopathic potency (retired)
|
@@ -2650,7 +2650,7 @@
|
|
2650
2650
|
:secondary_code: "[HP'_C]"
|
2651
2651
|
:scale:
|
2652
2652
|
:function_code: hpC
|
2653
|
-
:value: 1
|
2653
|
+
:value: 1
|
2654
2654
|
:unit_code: '1'
|
2655
2655
|
:classification: clinical
|
2656
2656
|
:property: homeopathic potency (retired)
|
@@ -2663,7 +2663,7 @@
|
|
2663
2663
|
:secondary_code: "[HP'_M]"
|
2664
2664
|
:scale:
|
2665
2665
|
:function_code: hpM
|
2666
|
-
:value: 1
|
2666
|
+
:value: 1
|
2667
2667
|
:unit_code: '1'
|
2668
2668
|
:classification: clinical
|
2669
2669
|
:property: homeopathic potency (retired)
|
@@ -2676,7 +2676,7 @@
|
|
2676
2676
|
:secondary_code: "[HP'_Q]"
|
2677
2677
|
:scale:
|
2678
2678
|
:function_code: hpQ
|
2679
|
-
:value: 1
|
2679
|
+
:value: 1
|
2680
2680
|
:unit_code: '1'
|
2681
2681
|
:classification: clinical
|
2682
2682
|
:property: homeopathic potency (retired)
|
@@ -2688,7 +2688,7 @@
|
|
2688
2688
|
:primary_code: "[hp_X]"
|
2689
2689
|
:secondary_code: "[HP_X]"
|
2690
2690
|
:scale:
|
2691
|
-
:value: 1
|
2691
|
+
:value: 1
|
2692
2692
|
:unit_code: '1'
|
2693
2693
|
:classification: clinical
|
2694
2694
|
:property: homeopathic potency (Hahnemann)
|
@@ -2700,7 +2700,7 @@
|
|
2700
2700
|
:primary_code: "[hp_C]"
|
2701
2701
|
:secondary_code: "[HP_C]"
|
2702
2702
|
:scale:
|
2703
|
-
:value: 1
|
2703
|
+
:value: 1
|
2704
2704
|
:unit_code: '1'
|
2705
2705
|
:classification: clinical
|
2706
2706
|
:property: homeopathic potency (Hahnemann)
|
@@ -2712,7 +2712,7 @@
|
|
2712
2712
|
:primary_code: "[hp_M]"
|
2713
2713
|
:secondary_code: "[HP_M]"
|
2714
2714
|
:scale:
|
2715
|
-
:value: 1
|
2715
|
+
:value: 1
|
2716
2716
|
:unit_code: '1'
|
2717
2717
|
:classification: clinical
|
2718
2718
|
:property: homeopathic potency (Hahnemann)
|
@@ -2724,7 +2724,7 @@
|
|
2724
2724
|
:primary_code: "[hp_Q]"
|
2725
2725
|
:secondary_code: "[HP_Q]"
|
2726
2726
|
:scale:
|
2727
|
-
:value: 1
|
2727
|
+
:value: 1
|
2728
2728
|
:unit_code: '1'
|
2729
2729
|
:classification: clinical
|
2730
2730
|
:property: homeopathic potency (Hahnemann)
|
@@ -2736,7 +2736,7 @@
|
|
2736
2736
|
:primary_code: "[kp_X]"
|
2737
2737
|
:secondary_code: "[KP_X]"
|
2738
2738
|
:scale:
|
2739
|
-
:value: 1
|
2739
|
+
:value: 1
|
2740
2740
|
:unit_code: '1'
|
2741
2741
|
:classification: clinical
|
2742
2742
|
:property: homeopathic potency (Korsakov)
|
@@ -2748,7 +2748,7 @@
|
|
2748
2748
|
:primary_code: "[kp_C]"
|
2749
2749
|
:secondary_code: "[KP_C]"
|
2750
2750
|
:scale:
|
2751
|
-
:value: 1
|
2751
|
+
:value: 1
|
2752
2752
|
:unit_code: '1'
|
2753
2753
|
:classification: clinical
|
2754
2754
|
:property: homeopathic potency (Korsakov)
|
@@ -2760,7 +2760,7 @@
|
|
2760
2760
|
:primary_code: "[kp_M]"
|
2761
2761
|
:secondary_code: "[KP_M]"
|
2762
2762
|
:scale:
|
2763
|
-
:value: 1
|
2763
|
+
:value: 1
|
2764
2764
|
:unit_code: '1'
|
2765
2765
|
:classification: clinical
|
2766
2766
|
:property: homeopathic potency (Korsakov)
|
@@ -2772,7 +2772,7 @@
|
|
2772
2772
|
:primary_code: "[kp_Q]"
|
2773
2773
|
:secondary_code: "[KP_Q]"
|
2774
2774
|
:scale:
|
2775
|
-
:value: 1
|
2775
|
+
:value: 1
|
2776
2776
|
:unit_code: '1'
|
2777
2777
|
:classification: clinical
|
2778
2778
|
:property: homeopathic potency (Korsakov)
|
@@ -2784,7 +2784,7 @@
|
|
2784
2784
|
:primary_code: eq
|
2785
2785
|
:secondary_code: EQ
|
2786
2786
|
:scale:
|
2787
|
-
:value: 1
|
2787
|
+
:value: 1
|
2788
2788
|
:unit_code: mol
|
2789
2789
|
:classification: chemical
|
2790
2790
|
:property: amount of substance
|
@@ -2796,7 +2796,7 @@
|
|
2796
2796
|
:primary_code: osm
|
2797
2797
|
:secondary_code: OSM
|
2798
2798
|
:scale:
|
2799
|
-
:value: 1
|
2799
|
+
:value: 1
|
2800
2800
|
:unit_code: mol
|
2801
2801
|
:classification: chemical
|
2802
2802
|
:property: amount of substance (dissolved particles)
|
@@ -2809,7 +2809,7 @@
|
|
2809
2809
|
:secondary_code: "[PH]"
|
2810
2810
|
:scale:
|
2811
2811
|
:function_code: pH
|
2812
|
-
:value: 1
|
2812
|
+
:value: 1
|
2813
2813
|
:unit_code: mol/l
|
2814
2814
|
:classification: chemical
|
2815
2815
|
:property: acidity
|
@@ -2821,7 +2821,7 @@
|
|
2821
2821
|
:primary_code: g%
|
2822
2822
|
:secondary_code: G%
|
2823
2823
|
:scale:
|
2824
|
-
:value: 1
|
2824
|
+
:value: 1
|
2825
2825
|
:unit_code: g/dl
|
2826
2826
|
:classification: chemical
|
2827
2827
|
:property: mass concentration
|
@@ -2833,7 +2833,7 @@
|
|
2833
2833
|
:primary_code: "[S]"
|
2834
2834
|
:secondary_code: "[S]"
|
2835
2835
|
:scale:
|
2836
|
-
:value: 1
|
2836
|
+
:value: 1
|
2837
2837
|
:unit_code: 10*-13.s
|
2838
2838
|
:classification: chemical
|
2839
2839
|
:property: sedimentation coefficient
|
@@ -2845,7 +2845,7 @@
|
|
2845
2845
|
:primary_code: "[HPF]"
|
2846
2846
|
:secondary_code: "[HPF]"
|
2847
2847
|
:scale:
|
2848
|
-
:value: 1
|
2848
|
+
:value: 1
|
2849
2849
|
:unit_code: '1'
|
2850
2850
|
:classification: chemical
|
2851
2851
|
:property: view area in microscope
|
@@ -2857,7 +2857,7 @@
|
|
2857
2857
|
:primary_code: "[LPF]"
|
2858
2858
|
:secondary_code: "[LPF]"
|
2859
2859
|
:scale:
|
2860
|
-
:value: 100
|
2860
|
+
:value: 100
|
2861
2861
|
:unit_code: '1'
|
2862
2862
|
:classification: chemical
|
2863
2863
|
:property: view area in microscope
|
@@ -2869,7 +2869,7 @@
|
|
2869
2869
|
:primary_code: kat
|
2870
2870
|
:secondary_code: KAT
|
2871
2871
|
:scale:
|
2872
|
-
:value: 1
|
2872
|
+
:value: 1
|
2873
2873
|
:unit_code: mol/s
|
2874
2874
|
:classification: chemical
|
2875
2875
|
:property: catalytic activity
|
@@ -2881,7 +2881,7 @@
|
|
2881
2881
|
:primary_code: U
|
2882
2882
|
:secondary_code: U
|
2883
2883
|
:scale:
|
2884
|
-
:value: 1
|
2884
|
+
:value: 1
|
2885
2885
|
:unit_code: umol/min
|
2886
2886
|
:classification: chemical
|
2887
2887
|
:property: catalytic activity
|
@@ -2893,7 +2893,7 @@
|
|
2893
2893
|
:primary_code: "[iU]"
|
2894
2894
|
:secondary_code: "[IU]"
|
2895
2895
|
:scale:
|
2896
|
-
:value: 1
|
2896
|
+
:value: 1
|
2897
2897
|
:unit_code: '1'
|
2898
2898
|
:classification: chemical
|
2899
2899
|
:property: arbitrary
|
@@ -2905,7 +2905,7 @@
|
|
2905
2905
|
:primary_code: "[IU]"
|
2906
2906
|
:secondary_code: "[IU]"
|
2907
2907
|
:scale:
|
2908
|
-
:value: 1
|
2908
|
+
:value: 1
|
2909
2909
|
:unit_code: "[iU]"
|
2910
2910
|
:classification: chemical
|
2911
2911
|
:property: arbitrary
|
@@ -2917,7 +2917,7 @@
|
|
2917
2917
|
:primary_code: "[arb'U]"
|
2918
2918
|
:secondary_code: "[ARB'U]"
|
2919
2919
|
:scale:
|
2920
|
-
:value: 1
|
2920
|
+
:value: 1
|
2921
2921
|
:unit_code: '1'
|
2922
2922
|
:classification: chemical
|
2923
2923
|
:property: arbitrary
|
@@ -2929,7 +2929,7 @@
|
|
2929
2929
|
:primary_code: "[USP'U]"
|
2930
2930
|
:secondary_code: "[USP'U]"
|
2931
2931
|
:scale:
|
2932
|
-
:value: 1
|
2932
|
+
:value: 1
|
2933
2933
|
:unit_code: '1'
|
2934
2934
|
:classification: chemical
|
2935
2935
|
:property: arbitrary
|
@@ -2940,7 +2940,7 @@
|
|
2940
2940
|
:primary_code: "[GPL'U]"
|
2941
2941
|
:secondary_code: "[GPL'U]"
|
2942
2942
|
:scale:
|
2943
|
-
:value: 1
|
2943
|
+
:value: 1
|
2944
2944
|
:unit_code: '1'
|
2945
2945
|
:classification: chemical
|
2946
2946
|
:property: biologic activity of anticardiolipin IgG
|
@@ -2951,7 +2951,7 @@
|
|
2951
2951
|
:primary_code: "[MPL'U]"
|
2952
2952
|
:secondary_code: "[MPL'U]"
|
2953
2953
|
:scale:
|
2954
|
-
:value: 1
|
2954
|
+
:value: 1
|
2955
2955
|
:unit_code: '1'
|
2956
2956
|
:classification: chemical
|
2957
2957
|
:property: biologic activity of anticardiolipin IgM
|
@@ -2962,7 +2962,7 @@
|
|
2962
2962
|
:primary_code: "[APL'U]"
|
2963
2963
|
:secondary_code: "[APL'U]"
|
2964
2964
|
:scale:
|
2965
|
-
:value: 1
|
2965
|
+
:value: 1
|
2966
2966
|
:unit_code: '1'
|
2967
2967
|
:classification: chemical
|
2968
2968
|
:property: biologic activity of anticardiolipin IgA
|
@@ -2973,7 +2973,7 @@
|
|
2973
2973
|
:primary_code: "[beth'U]"
|
2974
2974
|
:secondary_code: "[BETH'U]"
|
2975
2975
|
:scale:
|
2976
|
-
:value: 1
|
2976
|
+
:value: 1
|
2977
2977
|
:unit_code: '1'
|
2978
2978
|
:classification: chemical
|
2979
2979
|
:property: biologic activity of factor VIII inhibitor
|
@@ -2984,7 +2984,7 @@
|
|
2984
2984
|
:primary_code: "[anti'Xa'U]"
|
2985
2985
|
:secondary_code: "[ANTI'XA'U]"
|
2986
2986
|
:scale:
|
2987
|
-
:value: 1
|
2987
|
+
:value: 1
|
2988
2988
|
:unit_code: '1'
|
2989
2989
|
:classification: chemical
|
2990
2990
|
:property: biologic activity of factor Xa inhibitor (heparin)
|
@@ -2995,7 +2995,7 @@
|
|
2995
2995
|
:primary_code: "[todd'U]"
|
2996
2996
|
:secondary_code: "[TODD'U]"
|
2997
2997
|
:scale:
|
2998
|
-
:value: 1
|
2998
|
+
:value: 1
|
2999
2999
|
:unit_code: '1'
|
3000
3000
|
:classification: chemical
|
3001
3001
|
:property: biologic activity antistreptolysin O
|
@@ -3006,7 +3006,7 @@
|
|
3006
3006
|
:primary_code: "[dye'U]"
|
3007
3007
|
:secondary_code: "[DYE'U]"
|
3008
3008
|
:scale:
|
3009
|
-
:value: 1
|
3009
|
+
:value: 1
|
3010
3010
|
:unit_code: '1'
|
3011
3011
|
:classification: chemical
|
3012
3012
|
:property: biologic activity of amylase
|
@@ -3017,7 +3017,7 @@
|
|
3017
3017
|
:primary_code: "[smgy'U]"
|
3018
3018
|
:secondary_code: "[SMGY'U]"
|
3019
3019
|
:scale:
|
3020
|
-
:value: 1
|
3020
|
+
:value: 1
|
3021
3021
|
:unit_code: '1'
|
3022
3022
|
:classification: chemical
|
3023
3023
|
:property: biologic activity of amylase
|
@@ -3028,7 +3028,7 @@
|
|
3028
3028
|
:primary_code: "[bdsk'U]"
|
3029
3029
|
:secondary_code: "[BDSK'U]"
|
3030
3030
|
:scale:
|
3031
|
-
:value: 1
|
3031
|
+
:value: 1
|
3032
3032
|
:unit_code: '1'
|
3033
3033
|
:classification: chemical
|
3034
3034
|
:property: biologic activity of phosphatase
|
@@ -3039,7 +3039,7 @@
|
|
3039
3039
|
:primary_code: "[ka'U]"
|
3040
3040
|
:secondary_code: "[KA'U]"
|
3041
3041
|
:scale:
|
3042
|
-
:value: 1
|
3042
|
+
:value: 1
|
3043
3043
|
:unit_code: '1'
|
3044
3044
|
:classification: chemical
|
3045
3045
|
:property: biologic activity of phosphatase
|
@@ -3050,7 +3050,7 @@
|
|
3050
3050
|
:primary_code: "[knk'U]"
|
3051
3051
|
:secondary_code: "[KNK'U]"
|
3052
3052
|
:scale:
|
3053
|
-
:value: 1
|
3053
|
+
:value: 1
|
3054
3054
|
:unit_code: '1'
|
3055
3055
|
:classification: chemical
|
3056
3056
|
:property: arbitrary biologic activity
|
@@ -3061,7 +3061,7 @@
|
|
3061
3061
|
:primary_code: "[mclg'U]"
|
3062
3062
|
:secondary_code: "[MCLG'U]"
|
3063
3063
|
:scale:
|
3064
|
-
:value: 1
|
3064
|
+
:value: 1
|
3065
3065
|
:unit_code: '1'
|
3066
3066
|
:classification: chemical
|
3067
3067
|
:property: arbitrary biologic activity
|
@@ -3072,7 +3072,7 @@
|
|
3072
3072
|
:primary_code: "[tb'U]"
|
3073
3073
|
:secondary_code: "[TB'U]"
|
3074
3074
|
:scale:
|
3075
|
-
:value: 1
|
3075
|
+
:value: 1
|
3076
3076
|
:unit_code: '1'
|
3077
3077
|
:classification: chemical
|
3078
3078
|
:property: biologic activity of tuberculin
|
@@ -3084,7 +3084,7 @@
|
|
3084
3084
|
:primary_code: "[CCID_50]"
|
3085
3085
|
:secondary_code: "[CCID_50]"
|
3086
3086
|
:scale:
|
3087
|
-
:value: 1
|
3087
|
+
:value: 1
|
3088
3088
|
:unit_code: '1'
|
3089
3089
|
:classification: chemical
|
3090
3090
|
:property: biologic activity (infectivity) of an infectious agent preparation
|
@@ -3096,7 +3096,7 @@
|
|
3096
3096
|
:primary_code: "[TCID_50]"
|
3097
3097
|
:secondary_code: "[TCID_50]"
|
3098
3098
|
:scale:
|
3099
|
-
:value: 1
|
3099
|
+
:value: 1
|
3100
3100
|
:unit_code: '1'
|
3101
3101
|
:classification: chemical
|
3102
3102
|
:property: biologic activity (infectivity) of an infectious agent preparation
|
@@ -3108,7 +3108,7 @@
|
|
3108
3108
|
:primary_code: "[EID_50]"
|
3109
3109
|
:secondary_code: "[EID_50]"
|
3110
3110
|
:scale:
|
3111
|
-
:value: 1
|
3111
|
+
:value: 1
|
3112
3112
|
:unit_code: '1'
|
3113
3113
|
:classification: chemical
|
3114
3114
|
:property: biologic activity (infectivity) of an infectious agent preparation
|
@@ -3120,7 +3120,7 @@
|
|
3120
3120
|
:primary_code: "[PFU]"
|
3121
3121
|
:secondary_code: "[PFU]"
|
3122
3122
|
:scale:
|
3123
|
-
:value: 1
|
3123
|
+
:value: 1
|
3124
3124
|
:unit_code: '1'
|
3125
3125
|
:classification: chemical
|
3126
3126
|
:property: amount of an infectious agent
|
@@ -3132,7 +3132,7 @@
|
|
3132
3132
|
:primary_code: "[FFU]"
|
3133
3133
|
:secondary_code: "[FFU]"
|
3134
3134
|
:scale:
|
3135
|
-
:value: 1
|
3135
|
+
:value: 1
|
3136
3136
|
:unit_code: '1'
|
3137
3137
|
:classification: chemical
|
3138
3138
|
:property: amount of an infectious agent
|
@@ -3144,7 +3144,7 @@
|
|
3144
3144
|
:primary_code: "[CFU]"
|
3145
3145
|
:secondary_code: "[CFU]"
|
3146
3146
|
:scale:
|
3147
|
-
:value: 1
|
3147
|
+
:value: 1
|
3148
3148
|
:unit_code: '1'
|
3149
3149
|
:classification: chemical
|
3150
3150
|
:property: amount of a proliferating organism
|
@@ -3156,7 +3156,7 @@
|
|
3156
3156
|
:primary_code: "[IR]"
|
3157
3157
|
:secondary_code: "[IR]"
|
3158
3158
|
:scale:
|
3159
|
-
:value: 1
|
3159
|
+
:value: 1
|
3160
3160
|
:unit_code: '1'
|
3161
3161
|
:classification: chemical
|
3162
3162
|
:property: amount of an allergen callibrated through in-vivo testing using the Stallergenes®
|
@@ -3169,7 +3169,7 @@
|
|
3169
3169
|
:primary_code: "[BAU]"
|
3170
3170
|
:secondary_code: "[BAU]"
|
3171
3171
|
:scale:
|
3172
|
-
:value: 1
|
3172
|
+
:value: 1
|
3173
3173
|
:unit_code: '1'
|
3174
3174
|
:classification: chemical
|
3175
3175
|
:property: amount of an allergen callibrated through in-vivo testing based on the
|
@@ -3182,7 +3182,7 @@
|
|
3182
3182
|
:primary_code: "[AU]"
|
3183
3183
|
:secondary_code: "[AU]"
|
3184
3184
|
:scale:
|
3185
|
-
:value: 1
|
3185
|
+
:value: 1
|
3186
3186
|
:unit_code: '1'
|
3187
3187
|
:classification: chemical
|
3188
3188
|
:property: procedure defined amount of an allergen using some reference standard
|
@@ -3194,7 +3194,7 @@
|
|
3194
3194
|
:primary_code: "[Amb'a'1'U]"
|
3195
3195
|
:secondary_code: "[AMB'A'1'U]"
|
3196
3196
|
:scale:
|
3197
|
-
:value: 1
|
3197
|
+
:value: 1
|
3198
3198
|
:unit_code: '1'
|
3199
3199
|
:classification: chemical
|
3200
3200
|
:property: procedure defined amount of the major allergen of ragweed.
|
@@ -3206,7 +3206,7 @@
|
|
3206
3206
|
:primary_code: "[PNU]"
|
3207
3207
|
:secondary_code: "[PNU]"
|
3208
3208
|
:scale:
|
3209
|
-
:value: 1
|
3209
|
+
:value: 1
|
3210
3210
|
:unit_code: '1'
|
3211
3211
|
:classification: chemical
|
3212
3212
|
:property: procedure defined amount of a protein substance
|
@@ -3218,7 +3218,7 @@
|
|
3218
3218
|
:primary_code: "[Lf]"
|
3219
3219
|
:secondary_code: "[LF]"
|
3220
3220
|
:scale:
|
3221
|
-
:value: 1
|
3221
|
+
:value: 1
|
3222
3222
|
:unit_code: '1'
|
3223
3223
|
:classification: chemical
|
3224
3224
|
:property: procedure defined amount of an antigen substance
|
@@ -3229,7 +3229,7 @@
|
|
3229
3229
|
:primary_code: "[D'ag'U]"
|
3230
3230
|
:secondary_code: "[D'AG'U]"
|
3231
3231
|
:scale:
|
3232
|
-
:value: 1
|
3232
|
+
:value: 1
|
3233
3233
|
:unit_code: '1'
|
3234
3234
|
:classification: chemical
|
3235
3235
|
:property: procedure defined amount of a poliomyelitis d-antigen substance
|
@@ -3240,7 +3240,7 @@
|
|
3240
3240
|
:primary_code: "[FEU]"
|
3241
3241
|
:secondary_code: "[FEU]"
|
3242
3242
|
:scale:
|
3243
|
-
:value: 1
|
3243
|
+
:value: 1
|
3244
3244
|
:unit_code: '1'
|
3245
3245
|
:classification: chemical
|
3246
3246
|
:property: amount of fibrinogen broken down into the measured d-dimers
|
@@ -3251,7 +3251,7 @@
|
|
3251
3251
|
:primary_code: "[ELU]"
|
3252
3252
|
:secondary_code: "[ELU]"
|
3253
3253
|
:scale:
|
3254
|
-
:value: 1
|
3254
|
+
:value: 1
|
3255
3255
|
:unit_code: '1'
|
3256
3256
|
:classification: chemical
|
3257
3257
|
:property: arbitrary ELISA unit
|
@@ -3262,7 +3262,7 @@
|
|
3262
3262
|
:primary_code: "[EU]"
|
3263
3263
|
:secondary_code: "[EU]"
|
3264
3264
|
:scale:
|
3265
|
-
:value: 1
|
3265
|
+
:value: 1
|
3266
3266
|
:unit_code: '1'
|
3267
3267
|
:classification: chemical
|
3268
3268
|
:property: Ehrlich unit
|
@@ -3275,7 +3275,7 @@
|
|
3275
3275
|
:secondary_code: NEP
|
3276
3276
|
:scale:
|
3277
3277
|
:function_code: ln
|
3278
|
-
:value: 1
|
3278
|
+
:value: 1
|
3279
3279
|
:unit_code: '1'
|
3280
3280
|
:classification: levels
|
3281
3281
|
:property: level
|
@@ -3288,7 +3288,7 @@
|
|
3288
3288
|
:secondary_code: B
|
3289
3289
|
:scale:
|
3290
3290
|
:function_code: lg
|
3291
|
-
:value: 1
|
3291
|
+
:value: 1
|
3292
3292
|
:unit_code: '1'
|
3293
3293
|
:classification: levels
|
3294
3294
|
:property: level
|
@@ -3301,7 +3301,7 @@
|
|
3301
3301
|
:secondary_code: B[SPL]
|
3302
3302
|
:scale:
|
3303
3303
|
:function_code: 2lg
|
3304
|
-
:value: 2
|
3304
|
+
:value: 2
|
3305
3305
|
:unit_code: 10*-5.Pa
|
3306
3306
|
:classification: levels
|
3307
3307
|
:property: pressure level
|
@@ -3314,7 +3314,7 @@
|
|
3314
3314
|
:secondary_code: B[V]
|
3315
3315
|
:scale:
|
3316
3316
|
:function_code: 2lg
|
3317
|
-
:value: 1
|
3317
|
+
:value: 1
|
3318
3318
|
:unit_code: V
|
3319
3319
|
:classification: levels
|
3320
3320
|
:property: electric potential level
|
@@ -3327,7 +3327,7 @@
|
|
3327
3327
|
:secondary_code: B[MV]
|
3328
3328
|
:scale:
|
3329
3329
|
:function_code: 2lg
|
3330
|
-
:value: 1
|
3330
|
+
:value: 1
|
3331
3331
|
:unit_code: mV
|
3332
3332
|
:classification: levels
|
3333
3333
|
:property: electric potential level
|
@@ -3340,7 +3340,7 @@
|
|
3340
3340
|
:secondary_code: B[UV]
|
3341
3341
|
:scale:
|
3342
3342
|
:function_code: 2lg
|
3343
|
-
:value: 1
|
3343
|
+
:value: 1
|
3344
3344
|
:unit_code: uV
|
3345
3345
|
:classification: levels
|
3346
3346
|
:property: electric potential level
|
@@ -3353,7 +3353,7 @@
|
|
3353
3353
|
:secondary_code: B[10.NV]
|
3354
3354
|
:scale:
|
3355
3355
|
:function_code: 2lg
|
3356
|
-
:value: 10
|
3356
|
+
:value: 10
|
3357
3357
|
:unit_code: nV
|
3358
3358
|
:classification: levels
|
3359
3359
|
:property: electric potential level
|
@@ -3366,7 +3366,7 @@
|
|
3366
3366
|
:secondary_code: B[W]
|
3367
3367
|
:scale:
|
3368
3368
|
:function_code: lg
|
3369
|
-
:value: 1
|
3369
|
+
:value: 1
|
3370
3370
|
:unit_code: W
|
3371
3371
|
:classification: levels
|
3372
3372
|
:property: power level
|
@@ -3379,7 +3379,7 @@
|
|
3379
3379
|
:secondary_code: B[KW]
|
3380
3380
|
:scale:
|
3381
3381
|
:function_code: lg
|
3382
|
-
:value: 1
|
3382
|
+
:value: 1
|
3383
3383
|
:unit_code: kW
|
3384
3384
|
:classification: levels
|
3385
3385
|
:property: power level
|
@@ -3391,7 +3391,7 @@
|
|
3391
3391
|
:primary_code: st
|
3392
3392
|
:secondary_code: STR
|
3393
3393
|
:scale:
|
3394
|
-
:value: 1
|
3394
|
+
:value: 1
|
3395
3395
|
:unit_code: m3
|
3396
3396
|
:classification: misc
|
3397
3397
|
:property: volume
|
@@ -3403,7 +3403,7 @@
|
|
3403
3403
|
:primary_code: Ao
|
3404
3404
|
:secondary_code: AO
|
3405
3405
|
:scale:
|
3406
|
-
:value: 0.
|
3406
|
+
:value: !ruby/object:BigDecimal 18:0.1e0
|
3407
3407
|
:unit_code: nm
|
3408
3408
|
:classification: misc
|
3409
3409
|
:property: length
|
@@ -3415,7 +3415,7 @@
|
|
3415
3415
|
:primary_code: b
|
3416
3416
|
:secondary_code: BRN
|
3417
3417
|
:scale:
|
3418
|
-
:value: 100
|
3418
|
+
:value: 100
|
3419
3419
|
:unit_code: fm2
|
3420
3420
|
:classification: misc
|
3421
3421
|
:property: action area
|
@@ -3427,7 +3427,7 @@
|
|
3427
3427
|
:primary_code: att
|
3428
3428
|
:secondary_code: ATT
|
3429
3429
|
:scale:
|
3430
|
-
:value: 1
|
3430
|
+
:value: 1
|
3431
3431
|
:unit_code: kgf/cm2
|
3432
3432
|
:classification: misc
|
3433
3433
|
:property: pressure
|
@@ -3439,7 +3439,7 @@
|
|
3439
3439
|
:primary_code: mho
|
3440
3440
|
:secondary_code: MHO
|
3441
3441
|
:scale:
|
3442
|
-
:value: 1
|
3442
|
+
:value: 1
|
3443
3443
|
:unit_code: S
|
3444
3444
|
:classification: misc
|
3445
3445
|
:property: electric conductance
|
@@ -3451,7 +3451,7 @@
|
|
3451
3451
|
:primary_code: "[psi]"
|
3452
3452
|
:secondary_code: "[PSI]"
|
3453
3453
|
:scale:
|
3454
|
-
:value: 1
|
3454
|
+
:value: 1
|
3455
3455
|
:unit_code: "[lbf_av]/[in_i]2"
|
3456
3456
|
:classification: misc
|
3457
3457
|
:property: pressure
|
@@ -3463,7 +3463,7 @@
|
|
3463
3463
|
:primary_code: circ
|
3464
3464
|
:secondary_code: CIRC
|
3465
3465
|
:scale:
|
3466
|
-
:value: 2
|
3466
|
+
:value: 2
|
3467
3467
|
:unit_code: "[pi].rad"
|
3468
3468
|
:classification: misc
|
3469
3469
|
:property: plane angle
|
@@ -3475,7 +3475,7 @@
|
|
3475
3475
|
:primary_code: sph
|
3476
3476
|
:secondary_code: SPH
|
3477
3477
|
:scale:
|
3478
|
-
:value: 4
|
3478
|
+
:value: 4
|
3479
3479
|
:unit_code: "[pi].sr"
|
3480
3480
|
:classification: misc
|
3481
3481
|
:property: solid angle
|
@@ -3487,7 +3487,7 @@
|
|
3487
3487
|
:primary_code: "[car_m]"
|
3488
3488
|
:secondary_code: "[CAR_M]"
|
3489
3489
|
:scale:
|
3490
|
-
:value: 0.
|
3490
|
+
:value: !ruby/object:BigDecimal 18:0.2e0
|
3491
3491
|
:unit_code: g
|
3492
3492
|
:classification: misc
|
3493
3493
|
:property: mass
|
@@ -3499,7 +3499,7 @@
|
|
3499
3499
|
:primary_code: "[car_Au]"
|
3500
3500
|
:secondary_code: "[CAR_AU]"
|
3501
3501
|
:scale:
|
3502
|
-
:value: 1
|
3502
|
+
:value: 1
|
3503
3503
|
:unit_code: "/24"
|
3504
3504
|
:classification: misc
|
3505
3505
|
:property: mass fraction
|
@@ -3510,7 +3510,7 @@
|
|
3510
3510
|
:primary_code: "[smoot]"
|
3511
3511
|
:secondary_code: "[SMOOT]"
|
3512
3512
|
:scale:
|
3513
|
-
:value: 67
|
3513
|
+
:value: 67
|
3514
3514
|
:unit_code: "[in_i]"
|
3515
3515
|
:classification: misc
|
3516
3516
|
:property: length
|
@@ -3522,7 +3522,7 @@
|
|
3522
3522
|
:secondary_code: "[M/S2/HZ^(1/2)]"
|
3523
3523
|
:scale:
|
3524
3524
|
:function_code: sqrt
|
3525
|
-
:value: 1
|
3525
|
+
:value: 1
|
3526
3526
|
:unit_code: m2/s4/Hz
|
3527
3527
|
:classification: misc
|
3528
3528
|
:property: amplitude spectral density
|
@@ -3535,7 +3535,7 @@
|
|
3535
3535
|
:secondary_code: BIT_S
|
3536
3536
|
:scale:
|
3537
3537
|
:function_code: ld
|
3538
|
-
:value: 1
|
3538
|
+
:value: 1
|
3539
3539
|
:unit_code: '1'
|
3540
3540
|
:classification: infotech
|
3541
3541
|
:property: amount of information
|
@@ -3547,7 +3547,7 @@
|
|
3547
3547
|
:primary_code: bit
|
3548
3548
|
:secondary_code: BIT
|
3549
3549
|
:scale:
|
3550
|
-
:value: 1
|
3550
|
+
:value: 1
|
3551
3551
|
:unit_code: '1'
|
3552
3552
|
:classification: infotech
|
3553
3553
|
:property: amount of information
|
@@ -3559,7 +3559,7 @@
|
|
3559
3559
|
:primary_code: By
|
3560
3560
|
:secondary_code: BY
|
3561
3561
|
:scale:
|
3562
|
-
:value: 8
|
3562
|
+
:value: 8
|
3563
3563
|
:unit_code: bit
|
3564
3564
|
:classification: infotech
|
3565
3565
|
:property: amount of information
|
@@ -3571,7 +3571,7 @@
|
|
3571
3571
|
:primary_code: Bd
|
3572
3572
|
:secondary_code: BD
|
3573
3573
|
:scale:
|
3574
|
-
:value: 1
|
3574
|
+
:value: 1
|
3575
3575
|
:unit_code: "/s"
|
3576
3576
|
:classification: infotech
|
3577
3577
|
:property: signal transmission rate
|