diff --git a/.github/workflows/lint-yaml.yaml b/.github/workflows/lint-yaml.yaml
index b9cc415..0783a43 100644
--- a/.github/workflows/lint-yaml.yaml
+++ b/.github/workflows/lint-yaml.yaml
@@ -22,12 +22,17 @@ jobs:
- name: Check YAML normalization
id: check_yaml
run: |
- bundle exec unitsdb-utils normalize --all --dir ..
+ bundle exec unitsdb _modify normalize --all --database .
- name: Check field uniqueness
id: check_uniqueness
run: |
- bundle exec unitsdb-utils check_uniqueness --all --dir ..
+ bundle exec unitsdb validate identifiers --database .
+
+ - name: Validate references
+ id: check_references
+ run: |
+ bundle exec unitsdb validate references --database .
- name: Comment on Normalization Issues
if: failure() && steps.check_yaml.outputs.issues_found == 'true'
@@ -43,9 +48,28 @@ jobs:
Please run the normalization script before submitting your PR:
```bash
- cd scripts
bundle install
- bundle exec unitsdb-utils normalize --all --dir ..
+ bundle exec unitsdb _modify normalize --all --database .
+ ```
+
+ See the [contribution guidelines](../blob/main/README.adoc#contributing) for more information.
+ reactions: 'eyes'
+
+ - name: Comment on Reference Issues
+ if: failure() && steps.check_references.conclusion == 'failure'
+ uses: peter-evans/create-or-update-comment@v4
+ with:
+ issue-number: ${{ github.event.pull_request.number }}
+ body: |
+ ## Reference Validation Failed
+
+ The YAML files contain invalid references between entities.
+
+ Please ensure all references point to existing entities by running:
+
+ ```bash
+ bundle install
+ bundle exec unitsdb validate references --database .
```
See the [contribution guidelines](../blob/main/README.adoc#contributing) for more information.
@@ -69,9 +93,8 @@ jobs:
You can check for duplicates by running:
```bash
- cd scripts
bundle install
- bundle exec unitsdb-utils check_uniqueness --all --dir ..
+ bundle exec unitsdb validate identifiers --database .
```
See the [contribution guidelines](../blob/main/README.adoc#contributing) for more information.
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..338df3a
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,6 @@
+# frozen_string_literal: true
+
+source "https://rubygems.org"
+
+gem "unitsdb"
+gem "json-schema"
diff --git a/README.adoc b/README.adoc
index b6b8187..9b1d50a 100644
--- a/README.adoc
+++ b/README.adoc
@@ -252,13 +252,16 @@ names:
==== References
+===== General
+
A reference object represents a link to an external resource or standard
that provides additional context or information about the entity.
Currently, UnitsDB units, quantities and prefixes link to:
-* the SI Digital Framework
-* UCUM
+* https://si-digital-framework.org[BIPM SI Digital Framework] (normative references)
+* https://ucum.org/[UCUM] (informative references)
+* https://qudt.org[QUDT] (informative references)
A reference contains the following attributes:
@@ -271,33 +274,58 @@ A reference contains the following attributes:
[source,yaml]
----
references:
-- uri: http://si-digital-framework.org/SI/units/metre
- type: normative
+- type: normative
+ uri: http://si-digital-framework.org/SI/units/metre
authority: si-digital-framework
- type: informative
- authority: ucum
uri: ucum:base-unit:code:m
+ authority: ucum
+- type: informative
+ uri: http://qudt.org/vocab/unit/M
+ authority: qudt
----
====
+
+===== SI Digital Framework
+
The SI Digital Framework reference is a normative reference to the
official SI unit definitions.
SI references are added to:
-* units.yaml for units
-* quantities.yaml for quantities
-* prefixes.yaml for prefixes
-* dimensions.yaml for dimensions
+* `units.yaml` for units
+* `quantities.yaml` for quantities
+* `prefixes.yaml` for prefixes
+* `dimensions.yaml` for dimensions
+===== UCUM
+
The UCUM URI format is a custom one used inside UnitsML with the pattern
`ucum:{type}:{klass}:code:{unit_code}`, and is listed as informative.
UCUM references are added to:
-* units.yaml for units
-* prefixes.yaml for prefixes
+* `units.yaml` for units
+* `prefixes.yaml` for prefixes
+
+The UCUM file is located at: `spec/fixtures/ucum/ucum-essence.xml`
+
+
+===== QUDT
+
+The QUDT URI format is a custom one used inside UnitsML with the pattern
+`http://qudt.org/{version}/vocab/{vocab_type}/{code}`, and is listed as informative.
+
+QUDT references are added to:
+
+* `units.yaml` for units (`http://qudt.org/{version}/vocab/unit`)
+* `quantities.yaml` for quantities (`http://qudt.org/{version}/vocab/quantitykind`)
+* `dimensions.yaml` for dimensions (`http://qudt.org/{version}/vocab/dimensionvector`)
+* `unit_systems.yaml` for unit systems (`http://qudt.org/{version}/vocab/sou`)
+
+The current version mapped to QUDT is `3.1.2`.
=== Dimensions
@@ -1062,6 +1090,160 @@ Both release formats include version information in their filenames (e.g.,
`unitsdb-2.0.0.yaml` and `unitsdb-2.0.0.zip`).
+
+== Instructions for maintainers
+
+=== Pre-publication
+
+Before publishing a new version of the UnitsDB, ensure that the following steps
+are completed:
+
+. Run the normalization command to ensure all YAML files are consistent and
+ properly formatted.
+. Run the validation commands to check for any issues with internal references,
+ identifiers and external references.
+
+=== Normalize dataset
+
+[source,sh]
+----
+bundle exec unitsdb _modify normalize --all --database=spec/fixtures/unitsdb --sort=nist
+----
+
+=== Validate dataset
+
+Check for duplicate identifiers:
+
+[source,sh]
+----
+bundle exec unitsdb validate identifiers --database=spec/fixtures/unitsdb
+----
+
+Check for duplicate internal references (e.g. units referencing quantities,
+quantities referencing dimensions):
+
+[source,sh]
+----
+bundle exec unitsdb validate references --database=spec/fixtures/unitsdb
+----
+
+Check for duplicate SI references:
+
+[source,sh]
+----
+bundle exec unitsdb validate si_references --database=spec/fixtures/unitsdb
+----
+
+Check for duplicate UCUM references:
+
+[source,sh]
+----
+bundle exec unitsdb validate ucum_references --database=spec/fixtures/unitsdb
+----
+
+
+Check for duplicate QUDT references:
+
+[source,sh]
+----
+bundle exec unitsdb validate qudt_references --database=spec/fixtures/unitsdb
+----
+
+QUDT references can be duplicated as some units do not uniquely map to a
+QUDT URI. This is acceptable as long as the duplicates are documented in the
+README file.
+
+These are the duplicated units:
+
+[source]
+----
+QUDT URI: http://qudt.org/vocab/unit/IN3
+Used by 2 entities:
+ - NISTu168 (cubic inch (en)) at index 81
+ - NISTu209 (inch cubed (en)) at index 122
+
+QUDT URI: http://qudt.org/vocab/unit/TSP
+Used by 3 entities:
+ - NISTu303 (teaspoon (en)) at index 234
+ - NISTu306 (teaspoon (FDA) (en)) at index 237
+
+QUDT URI: http://qudt.org/vocab/unit/YD
+Used by 2 entities:
+ - NISTu314 (yard (based on US survey foot) (en)) at index 246
+ - NISTu84 (yard (en)) at index 362
+
+QUDT URI: http://qudt.org/vocab/unit/IN
+Used by 2 entities:
+ - NISTu316 (inch (based on US survey foot) (en)) at index 248
+ - NISTu8 (inch (en)) at index 360
+----
+
+These are the duplicated quantities:
+
+[source]
+----
+QUDT URI: http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea
+Used by 2 entities:
+ - NISTq127 (mass moment of inertia (en)) at index 31
+ - NISTq144 (second axial moment of area (en)) at index 50
+
+QUDT URI: http://qudt.org/vocab/quantitykind/Capacitance
+Used by 2 entities:
+ - NISTq169 (electric capacitance (en)) at index 75
+ - NISTq27 (capacitance (en)) at index 120
+
+QUDT URI: http://qudt.org/vocab/quantitykind/Inductance
+Used by 2 entities:
+ - NISTq171 (electric inductance (en)) at index 78
+ - NISTq32 (inductance (en)) at index 126
+----
+
+UnitsDB and QUDT take a different approach to dimensions:
+
+* QUDT focuses on the exponents of the dimensions, allowing only for
+ a single dimension to have the same exponent combination.
+
+* UnitsDB allows for multiple dimensions to have the same exponent combination,
+ as long as they are associated with different quantities.
+
+Naturally, multiple UnitsDB Dimensions can be mapped to a single QUDT Dimension,
+hence there are no duplicate dimensions.
+
+The dimension mapping warnings are as follows (acceptable):
+
+[source]
+----
+QUDT URI: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
+Used by 12 entities:
+ - NISTd100 (traffic intensity (en)) at index 2
+ - NISTd102 (information content (en)) at index 4
+ - NISTd64 (solid angle (en)) at index 63
+ - NISTd67 (logarithmic ratio (en)) at index 66
+ - NISTd80 (ratio quantity (en)) at index 81
+ - NISTd83 (level of field quantity (en)) at index 82
+ - NISTd84 (field power level (en)) at index 83
+ - NISTd85 (mass mole fraction (en)) at index 84
+ - NISTd9 (plane angle (en)) at index 85
+ - NISTd94 (acidity index (en)) at index 86
+ - NISTd95 (storage capacity (en)) at index 87
+ - NISTd98 (phase (en)) at index 90
+
+QUDT URI: http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0
+Used by 2 entities:
+ - NISTd101 (symbol rate (en)) at index 3
+ - NISTd24 (frequency (en)) at index 19
+
+QUDT URI: http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0
+Used by 2 entities:
+ - NISTd63 (compressibility (en)) at index 62
+ - NISTd70 (isothermal compressibility (en)) at index 70
+
+QUDT URI: http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0
+Used by 2 entities:
+ - NISTd96 (fluence (en)) at index 88
+ - NISTd99 (fuel efficiency (en)) at index 91
+----
+
== Copyright and license
Copyright CalConnect. Incorporates public domain work from NIST.
diff --git a/dimensions.yaml b/dimensions.yaml
index 4c29491..13ffc31 100644
--- a/dimensions.yaml
+++ b/dimensions.yaml
@@ -20,6 +20,10 @@ dimensions:
names:
- value: length
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0
short: length
- identifiers:
- type: nist
@@ -32,6 +36,10 @@ dimensions:
names:
- value: volume
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0
short: volume
- dimensionless: true
identifiers:
@@ -42,6 +50,10 @@ dimensions:
names:
- value: traffic intensity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: traffic_intensity
- identifiers:
- type: nist
@@ -51,6 +63,10 @@ dimensions:
names:
- value: symbol rate
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0
time:
power: -1
symbol: T
@@ -64,6 +80,10 @@ dimensions:
names:
- value: information content
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: information_content
- identifiers:
- type: nist
@@ -76,6 +96,10 @@ dimensions:
names:
- value: velocity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0
time:
power: -1
symbol: T
@@ -91,6 +115,10 @@ dimensions:
names:
- value: force
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -109,6 +137,10 @@ dimensions:
names:
- value: magnetic flux density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -127,6 +159,10 @@ dimensions:
names:
- value: pressure
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -145,6 +181,10 @@ dimensions:
names:
- value: energy
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -163,6 +203,10 @@ dimensions:
names:
- value: power
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1
time:
power: -3
symbol: T
@@ -181,6 +225,10 @@ dimensions:
names:
- value: electric charge
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0
time:
power: 1
symbol: T
@@ -199,6 +247,10 @@ dimensions:
names:
- value: electric potential difference
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0
time:
power: -3
symbol: T
@@ -220,6 +272,10 @@ dimensions:
names:
- value: capacitance
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0
time:
power: 4
symbol: T
@@ -235,6 +291,10 @@ dimensions:
names:
- value: mass
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0
mass:
power: 1
symbol: M
@@ -260,6 +320,10 @@ dimensions:
names:
- value: electric resistance
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0
time:
power: -3
symbol: T
@@ -281,6 +345,10 @@ dimensions:
names:
- value: electric conductance
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0
time:
power: 3
symbol: T
@@ -302,6 +370,10 @@ dimensions:
names:
- value: magnetic flux
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -323,6 +395,10 @@ dimensions:
names:
- value: inductance
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -338,6 +414,10 @@ dimensions:
names:
- value: frequency
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0
time:
power: -1
symbol: T
@@ -353,13 +433,17 @@ dimensions:
names:
- value: absorbed dose
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0
time:
power: -2
symbol: T
short: absorbed_dose
- amount_of_substance:
power: 1
- symbol: "N"
+ symbol: N
identifiers:
- type: nist
id: NISTd26
@@ -368,6 +452,10 @@ dimensions:
names:
- value: catalytic activity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0
time:
power: -1
symbol: T
@@ -386,6 +474,10 @@ dimensions:
names:
- value: illuminance
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0
short: illuminance
- identifiers:
- type: nist
@@ -398,6 +490,10 @@ dimensions:
names:
- value: acceleration
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0
time:
power: -2
symbol: T
@@ -413,6 +509,10 @@ dimensions:
names:
- value: wavenumber
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0
short: wavenumber
- identifiers:
- type: nist
@@ -422,6 +522,10 @@ dimensions:
names:
- value: time
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0
time:
power: 1
symbol: T
@@ -444,6 +548,10 @@ dimensions:
names:
- value: mass density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0
mass:
power: 1
symbol: M
@@ -459,6 +567,10 @@ dimensions:
names:
- value: specific volume
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0
mass:
power: -1
symbol: M
@@ -477,6 +589,10 @@ dimensions:
names:
- value: current density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0
short: current_density
- electric_current:
power: 1
@@ -492,10 +608,14 @@ dimensions:
names:
- value: magnetic field strength
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0
short: magnetic_field_strength
- amount_of_substance:
power: 1
- symbol: "N"
+ symbol: N
identifiers:
- type: nist
id: NISTd34
@@ -507,6 +627,10 @@ dimensions:
names:
- value: concentration
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0
short: concentration
- identifiers:
- type: nist
@@ -516,6 +640,10 @@ dimensions:
names:
- value: angular acceleration
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-2D0
time:
power: -2
symbol: T
@@ -531,6 +659,10 @@ dimensions:
names:
- value: dynamic viscosity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0
time:
power: -1
symbol: T
@@ -546,6 +678,10 @@ dimensions:
names:
- value: surface tension
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -561,6 +697,10 @@ dimensions:
names:
- value: heat flux density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0
time:
power: -3
symbol: T
@@ -579,6 +719,10 @@ dimensions:
names:
- value: heat capacity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0
thermodynamic_temperature:
power: -1
symbol: Theta
@@ -607,6 +751,10 @@ dimensions:
names:
- value: electric current
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1
short: electric_current
- identifiers:
- type: nist
@@ -619,6 +767,10 @@ dimensions:
names:
- value: specific heat capacity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0
thermodynamic_temperature:
power: -1
symbol: Theta
@@ -637,6 +789,10 @@ dimensions:
names:
- value: thermal conductivity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0
thermodynamic_temperature:
power: -1
symbol: Theta
@@ -661,6 +817,10 @@ dimensions:
names:
- value: electric field strength
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0
time:
power: -3
symbol: T
@@ -682,6 +842,10 @@ dimensions:
names:
- value: electric charge density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0
time:
power: 1
symbol: T
@@ -700,6 +864,10 @@ dimensions:
names:
- value: electric flux density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0
time:
power: 1
symbol: T
@@ -718,6 +886,10 @@ dimensions:
names:
- value: permittivity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0
time:
power: 4
symbol: T
@@ -739,6 +911,10 @@ dimensions:
names:
- value: permeability
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -748,7 +924,7 @@ dimensions:
short: permeability
- amount_of_substance:
power: -1
- symbol: "N"
+ symbol: N
identifiers:
- type: nist
id: NISTd47
@@ -760,6 +936,10 @@ dimensions:
names:
- value: molar energy
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0
time:
power: -2
symbol: T
@@ -769,7 +949,7 @@ dimensions:
short: molar_energy
- amount_of_substance:
power: -1
- symbol: "N"
+ symbol: N
identifiers:
- type: nist
id: NISTd48
@@ -781,6 +961,10 @@ dimensions:
names:
- value: molar entropy
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0
thermodynamic_temperature:
power: -1
symbol: Theta
@@ -802,6 +986,10 @@ dimensions:
names:
- value: exposure
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0
time:
power: 1
symbol: T
@@ -817,6 +1005,10 @@ dimensions:
names:
- value: temperature
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0
thermodynamic_temperature:
power: 1
symbol: Theta
@@ -839,6 +1031,10 @@ dimensions:
names:
- value: absorbed dose rate
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0
time:
power: -3
symbol: T
@@ -854,6 +1050,10 @@ dimensions:
names:
- value: surface density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0
mass:
power: 1
symbol: M
@@ -869,6 +1069,10 @@ dimensions:
names:
- value: fluidity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0
time:
power: 1
symbol: T
@@ -917,7 +1121,7 @@ dimensions:
short: magnetizability
- amount_of_substance:
power: 1
- symbol: "N"
+ symbol: N
identifiers:
- type: nist
id: NISTd55
@@ -944,6 +1148,10 @@ dimensions:
names:
- value: kinematic viscosity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0
time:
power: -1
symbol: T
@@ -959,6 +1167,10 @@ dimensions:
names:
- value: area moment of inertia
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0
short: area_moment_of_inertia
- identifiers:
- type: nist
@@ -971,6 +1183,10 @@ dimensions:
names:
- value: linear density
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0
mass:
power: 1
symbol: M
@@ -986,17 +1202,21 @@ dimensions:
names:
- value: mass moment of inertia
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0
mass:
power: 1
symbol: M
short: mass_moment_of_inertia
- amount_of_substance:
power: 1
- symbol: "N"
+ symbol: N
symbols:
- latex: "\\ensuremath{\\mathsf{N}}"
unicode: "\U0001D5AD"
- ascii: "N"
+ ascii: N
html: "𝖭"
id: dim_N
mathml: "N"
@@ -1008,6 +1228,10 @@ dimensions:
names:
- value: substance amount
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0
short: substance_amount
- identifiers:
- type: nist
@@ -1020,6 +1244,10 @@ dimensions:
names:
- value: action
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0
time:
power: -1
symbol: T
@@ -1038,6 +1266,10 @@ dimensions:
names:
- value: momentum
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0
time:
power: -1
symbol: T
@@ -1056,6 +1288,10 @@ dimensions:
names:
- value: gravitational constant
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0
time:
power: -2
symbol: T
@@ -1074,6 +1310,10 @@ dimensions:
names:
- value: compressibility
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0
time:
power: 2
symbol: T
@@ -1093,6 +1333,10 @@ dimensions:
plane_angle:
power: 1
symbol: phi
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: solid_angle
- identifiers:
- type: nist
@@ -1102,6 +1346,10 @@ dimensions:
names:
- value: mass flow rate
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0
time:
power: -1
symbol: T
@@ -1120,6 +1368,10 @@ dimensions:
names:
- value: volume flow rate
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0
time:
power: -1
symbol: T
@@ -1133,6 +1385,10 @@ dimensions:
names:
- value: logarithmic ratio
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: logarithmic_ratio
- identifiers:
- type: nist
@@ -1142,6 +1398,10 @@ dimensions:
names:
- value: linear expansion coefficient
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0
thermodynamic_temperature:
power: -1
symbol: Theta
@@ -1157,6 +1417,10 @@ dimensions:
names:
- value: pressure coefficient
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0
thermodynamic_temperature:
power: -1
symbol: Theta
@@ -1185,6 +1449,10 @@ dimensions:
names:
- value: luminous intensity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0
short: luminous_intensity
- identifiers:
- type: nist
@@ -1197,6 +1465,10 @@ dimensions:
names:
- value: isothermal compressibility
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0
time:
power: 2
symbol: T
@@ -1212,6 +1484,10 @@ dimensions:
names:
- value: heat transfer coefficient
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0
thermodynamic_temperature:
power: -1
symbol: Theta
@@ -1236,6 +1512,10 @@ dimensions:
names:
- value: electric dipole moment
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0
time:
power: 1
symbol: T
@@ -1254,6 +1534,10 @@ dimensions:
names:
- value: magnetic dipole moment
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0
short: magnetic_dipole_moment
- electric_current:
power: -1
@@ -1266,6 +1550,10 @@ dimensions:
names:
- value: electric field gradient
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0
time:
power: -3
symbol: T
@@ -1287,6 +1575,10 @@ dimensions:
names:
- value: electric quadrupole moment
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0
time:
power: 1
symbol: T
@@ -1323,6 +1615,10 @@ dimensions:
names:
- value: hyperpolarizability 1st
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0
time:
power: 7
symbol: T
@@ -1344,6 +1640,10 @@ dimensions:
names:
- value: hyperpolarizability 2nd
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0
time:
power: 10
symbol: T
@@ -1353,7 +1653,7 @@ dimensions:
short: hyperpolarizability_2nd
- amount_of_substance:
power: 1
- symbol: "N"
+ symbol: N
identifiers:
- type: nist
id: NISTd79
@@ -1362,6 +1662,10 @@ dimensions:
names:
- value: molality
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0
mass:
power: 1
symbol: M
@@ -1377,6 +1681,10 @@ dimensions:
names:
- value: area
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0
short: area
- dimensionless: true
identifiers:
@@ -1387,6 +1695,10 @@ dimensions:
names:
- value: ratio quantity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: ratio_quantity
- dimensionless: true
identifiers:
@@ -1397,6 +1709,10 @@ dimensions:
names:
- value: level of field quantity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: level_of_field_quantity
- dimensionless: true
identifiers:
@@ -1407,6 +1723,10 @@ dimensions:
names:
- value: field power level
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: field_power_level
- dimensionless: true
identifiers:
@@ -1417,6 +1737,10 @@ dimensions:
names:
- value: mass mole fraction
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: mass_mole_fraction
- dimensionless: true
identifiers:
@@ -1437,6 +1761,10 @@ dimensions:
html: "𝞅"
id: dim_phi
mathml: "φ"
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: plane_angle
- dimensionless: true
identifiers:
@@ -1447,6 +1775,10 @@ dimensions:
names:
- value: acidity index
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: acidity_index
- dimensionless: true
identifiers:
@@ -1457,6 +1789,10 @@ dimensions:
names:
- value: storage capacity
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: storage_capacity
- identifiers:
- type: nist
@@ -1469,6 +1805,10 @@ dimensions:
names:
- value: fluence
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0
short: fluence
- identifiers:
- type: nist
@@ -1481,6 +1821,10 @@ dimensions:
names:
- value: fluence_rate
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0
time:
power: -1
symbol: T
@@ -1497,6 +1841,10 @@ dimensions:
plane_angle:
power: 1
symbol: phi
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0
short: phase
- identifiers:
- type: nist
@@ -1509,4 +1857,8 @@ dimensions:
names:
- value: fuel efficiency
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0
short: fuel_efficiency
diff --git a/prefixes.yaml b/prefixes.yaml
index 941dfd9..91c9483 100644
--- a/prefixes.yaml
+++ b/prefixes.yaml
@@ -19,6 +19,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:d
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Deci
short: deci
symbols:
- latex: d
@@ -44,6 +47,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:p
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Pico
short: pico
symbols:
- latex: p
@@ -69,6 +75,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:f
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Femto
short: femto
symbols:
- latex: f
@@ -94,6 +103,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:a
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Atto
short: atto
symbols:
- latex: a
@@ -119,6 +131,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:c
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Centi
short: centi
symbols:
- latex: c
@@ -144,6 +159,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:z
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Zepto
short: zepto
symbols:
- latex: z
@@ -169,6 +187,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:y
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Yocto
short: yocto
symbols:
- latex: "y"
@@ -191,6 +212,9 @@ prefixes:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/prefixes/ronto
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Ronto
short: ronto
symbols:
- latex: r
@@ -216,6 +240,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:m
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Milli
short: milli
symbols:
- latex: m
@@ -238,6 +265,9 @@ prefixes:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/prefixes/quecto
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Quecto
short: quecto
symbols:
- latex: q
@@ -263,6 +293,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:u
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Micro
short: micro
symbols:
- latex: "$mu$"
@@ -288,6 +321,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:n
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Nano
short: nano
symbols:
- latex: "n"
@@ -335,6 +371,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:da
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Deca
short: deka
symbols:
- latex: da
@@ -360,6 +399,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:T
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Tera
short: tera
symbols:
- latex: T
@@ -385,6 +427,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:P
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Peta
short: peta
symbols:
- latex: P
@@ -410,6 +455,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:E
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Exa
short: exa
symbols:
- latex: E
@@ -435,6 +483,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:h
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Hecto
short: hecto
symbols:
- latex: h
@@ -460,6 +511,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:Z
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Zetta
short: zetta
symbols:
- latex: Z
@@ -485,12 +539,15 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:Y
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Yotta
short: yotta
symbols:
- - latex: "Y"
- unicode: "Y"
- ascii: "Y"
- html: "Y"
+ - latex: Y
+ unicode: Y
+ ascii: Y
+ html: Y
id: yotta
mathml: "Y"
- base: 10
@@ -507,6 +564,9 @@ prefixes:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/prefixes/ronna
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Ronna
short: ronna
symbols:
- latex: R
@@ -532,6 +592,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:k
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Kilo
short: kilo
symbols:
- latex: k
@@ -554,6 +617,9 @@ prefixes:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/prefixes/quetta
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Quetta
short: quetta
symbols:
- latex: Q
@@ -579,6 +645,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:M
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Mega
short: mega
symbols:
- latex: M
@@ -604,6 +673,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:G
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/Giga
short: giga
symbols:
- latex: G
@@ -626,6 +698,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:Ki
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Kibi
short: kibi
symbols:
- latex: Ki
@@ -648,6 +723,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:Mi
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Mebi
short: mebi
symbols:
- latex: Mi
@@ -670,6 +748,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:Gi
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Gibi
short: gibi
symbols:
- latex: Gi
@@ -692,6 +773,9 @@ prefixes:
- type: informative
authority: ucum
uri: ucum:prefix:code:Ti
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Tebi
short: tebi
symbols:
- latex: Ti
@@ -710,6 +794,10 @@ prefixes:
- value: pebi
lang: en
power: 50
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Pebi
short: pebi
symbols:
- latex: Pi
@@ -728,6 +816,10 @@ prefixes:
- value: exbi
lang: en
power: 60
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Exbi
short: exbi
symbols:
- latex: Ei
@@ -746,6 +838,10 @@ prefixes:
- value: zebi
lang: en
power: 70
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Zebi
short: zebi
symbols:
- latex: Zi
@@ -764,6 +860,10 @@ prefixes:
- value: yobi
lang: en
power: 80
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/prefix/Yobi
short: yobi
symbols:
- latex: Yi
diff --git a/quantities.yaml b/quantities.yaml
index c544858..3b24822 100644
--- a/quantities.yaml
+++ b/quantities.yaml
@@ -20,6 +20,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/LENG
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Length
short: length
- dimension_reference:
type: nist
@@ -39,6 +42,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/VOLU
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Volume
short: volume
- dimension_reference:
type: nist
@@ -52,6 +58,10 @@ quantities:
- value: diameter
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Diameter
short: diameter
- dimension_reference:
type: nist
@@ -78,6 +88,10 @@ quantities:
- value: cartesian coordinates
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/CartesianCoordinates
short: cartesian_coordinates
- dimension_reference:
type: nist
@@ -91,6 +105,10 @@ quantities:
- value: position vector
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PositionVector
short: position_vector
- dimension_reference:
type: nist
@@ -104,6 +122,10 @@ quantities:
- value: displacement
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Displacement
short: displacement
- dimension_reference:
type: nist
@@ -117,6 +139,10 @@ quantities:
- value: radius of curvature
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RadiusOfCurvature
short: radius_of_curvature
- dimension_reference:
type: nist
@@ -130,6 +156,10 @@ quantities:
- value: curvature
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Curvature
short: curvature
- dimension_reference:
type: nist
@@ -156,6 +186,10 @@ quantities:
- value: acceleration of free fall
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AccelerationOfGravity
short: acceleration_of_free_fall
- dimension_reference:
type: nist
@@ -171,6 +205,10 @@ quantities:
- value: period
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Period
short: period_duration
- dimension_reference:
type: nist
@@ -190,6 +228,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ANGS
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SolidAngle
short: solid_angle
- dimension_reference:
type: nist
@@ -229,6 +270,10 @@ quantities:
- value: rotational frequency
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RotationalFrequency
short: rotational_frequency
- dimension_reference:
type: nist
@@ -242,6 +287,10 @@ quantities:
- value: angular frequency
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AngularFrequency
short: angular_frequency
- dimension_reference:
type: nist
@@ -255,6 +304,10 @@ quantities:
- value: wavelength
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Wavelength
short: wavelength
- dimension_reference:
type: nist
@@ -270,6 +323,10 @@ quantities:
- value: angular repetency
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AngularWavenumber
short: angular_wavenumber
- dimension_reference:
type: nist
@@ -347,6 +404,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/VELO
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Speed
short: velocity
- dimension_reference:
type: nist
@@ -394,6 +454,10 @@ quantities:
- value: attenuation coefficient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AttenuationCoefficient
short: attenuation_coefficient
- dimension_reference:
type: nist
@@ -407,6 +471,10 @@ quantities:
- value: phase coefficient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PhaseCoefficient
short: phase_coefficient
- dimension_reference:
type: nist
@@ -420,6 +488,10 @@ quantities:
- value: propagation coefficient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PropagationCoefficient
short: propagation_coefficient
- dimension_reference:
type: nist
@@ -435,6 +507,10 @@ quantities:
- value: relative density
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RelativeMassDensity
short: relative_mass_density
- dimension_reference:
type: nist
@@ -450,6 +526,10 @@ quantities:
- value: lineic mass
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LinearDensity
short: linear_density
- dimension_reference:
type: nist
@@ -465,6 +545,10 @@ quantities:
- value: moment of inertia
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea
short: mass_moment_of_inertia
- dimension_reference:
type: nist
@@ -478,6 +562,10 @@ quantities:
- value: weight
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Weight
short: weight
- dimension_reference:
type: nist
@@ -491,6 +579,10 @@ quantities:
- value: impulse
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Impulse
short: impulse
- dimension_reference:
type: nist
@@ -510,6 +602,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/FORC
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Force
short: force
- dimension_reference:
type: nist
@@ -523,6 +618,10 @@ quantities:
- value: gravitational constant
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/GravitationalAttraction
short: gravitational_constant
- dimension_reference:
type: nist
@@ -536,6 +635,10 @@ quantities:
- value: momentum
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Momentum
short: momentum
- dimension_reference:
type: nist
@@ -551,6 +654,10 @@ quantities:
- value: angular momentum
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AngularMomentum
short: moment_of_momentum
- dimension_reference:
type: nist
@@ -564,6 +671,10 @@ quantities:
- value: angular impulse
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AngularImpulse
short: angular_impulse
- dimension_reference:
type: nist
@@ -577,6 +688,10 @@ quantities:
- value: normal stress
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/NormalStress
short: normal_stress
- dimension_reference:
type: nist
@@ -590,6 +705,10 @@ quantities:
- value: shear stress
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ShearStress
short: shear_stress
- dimension_reference:
type: nist
@@ -603,6 +722,10 @@ quantities:
- value: linear strain
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LinearStrain
short: linear_strain
- dimension_reference:
type: nist
@@ -616,6 +739,10 @@ quantities:
- value: shear strain
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ShearStrain
short: shear_strain
- dimension_reference:
type: nist
@@ -629,6 +756,10 @@ quantities:
- value: volume strain
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/VolumeStrain
short: volume_strain
- dimension_reference:
type: nist
@@ -642,6 +773,10 @@ quantities:
- value: compressibility
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Compressibility
short: compressibility
- dimension_reference:
type: nist
@@ -674,6 +809,10 @@ quantities:
- value: Poisson number
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PoissonRatio
short: poisson_number
- dimension_reference:
type: nist
@@ -687,6 +826,10 @@ quantities:
- value: modulus of elasticity
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ModulusOfElasticity
short: modulus_of_elasticity
- dimension_reference:
type: nist
@@ -702,6 +845,10 @@ quantities:
- value: shear modulus
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ShearModulus
short: modulus_of_rigidity
- dimension_reference:
type: nist
@@ -717,6 +864,10 @@ quantities:
- value: bulk modulus
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/BulkModulus
short: modulus_of_compression
- dimension_reference:
type: nist
@@ -730,6 +881,10 @@ quantities:
- value: second axial moment of area
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SecondAxialMomentOfArea
short: second_axial_moment_of_area
- dimension_reference:
type: nist
@@ -743,6 +898,10 @@ quantities:
- value: second polar moment of area
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SecondPolarMomentOfArea
short: second_polar_moment_of_area
- dimension_reference:
type: nist
@@ -756,6 +915,10 @@ quantities:
- value: section modulus
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SectionModulus
short: section_modulus
- dimension_reference:
type: nist
@@ -769,6 +932,10 @@ quantities:
- value: dynamic friction factor
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/DynamicFriction
short: dynamic_friction_factor
- dimension_reference:
type: nist
@@ -801,6 +968,10 @@ quantities:
- value: mass flow rate
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MassFlowRate
short: mass_flow_rate
- dimension_reference:
type: nist
@@ -814,6 +985,10 @@ quantities:
- value: volume flow rate
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/VolumeFlowRate
short: volume_flow_rate
- dimension_reference:
type: nist
@@ -827,6 +1002,10 @@ quantities:
- value: Lagrange function
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LagrangeFunction
short: lagrange_function
- dimension_reference:
type: nist
@@ -840,6 +1019,10 @@ quantities:
- value: Hamilton function
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/HamiltonFunction
short: hamilton_function
- dimension_reference:
type: nist
@@ -853,6 +1036,10 @@ quantities:
- value: action
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Action
short: action
- dimension_reference:
type: nist
@@ -868,6 +1055,10 @@ quantities:
- value: second moment of area
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PolarMomentOfInertia
short: area_moment_of_inertia
- dimension_reference:
type: nist
@@ -881,6 +1072,10 @@ quantities:
- value: linear expansion coefficient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LinearExpansionCoefficient
short: linear_expansion_coefficient
- dimension_reference:
type: nist
@@ -894,6 +1089,10 @@ quantities:
- value: cubic expansion coefficient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/CubicExpansionCoefficient
short: cubic_expansion_coefficient
- dimension_reference:
type: nist
@@ -907,6 +1106,10 @@ quantities:
- value: relative pressure coefficient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RelativePressureCoefficient
short: relative_pressure_coefficient
- dimension_reference:
type: nist
@@ -920,6 +1123,10 @@ quantities:
- value: pressure coefficient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PressureCoefficient
short: pressure_coefficient
- dimension_reference:
type: nist
@@ -933,6 +1140,10 @@ quantities:
- value: stress
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Stress
short: stress
- dimension_reference:
type: nist
@@ -946,6 +1157,10 @@ quantities:
- value: isothermal compressibility
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/IsothermalCompressibility
short: isothermal_compressibility
- dimension_reference:
type: nist
@@ -959,6 +1174,10 @@ quantities:
- value: magnetomotive force (Cardelli) (-SP811)
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MagnetomotiveForce
short: magnetomotive_force
- dimension_reference:
type: nist
@@ -972,6 +1191,10 @@ quantities:
- value: electric dipole moment
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricDipoleMoment
short: electric_dipole_moment
- dimension_reference:
type: nist
@@ -985,6 +1208,10 @@ quantities:
- value: magnetizability
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Magnetization
short: magnetizability
- dimension_reference:
type: nist
@@ -998,6 +1225,10 @@ quantities:
- value: magnetic dipole moment
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MagneticDipoleMoment
short: magnetic_dipole_moment
- dimension_reference:
type: nist
@@ -1011,6 +1242,10 @@ quantities:
- value: electric field gradient
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricField
short: electric_field_gradient
- dimension_reference:
type: nist
@@ -1024,6 +1259,10 @@ quantities:
- value: electric potential
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricPotential
short: electric_potential
- dimension_reference:
type: nist
@@ -1037,6 +1276,10 @@ quantities:
- value: electric quadrupole moment
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricQuadrupoleMoment
short: electric_quadrupole_moment
- dimension_reference:
type: nist
@@ -1050,6 +1293,10 @@ quantities:
- value: polarizability
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Polarizability
short: polarizability
- dimension_reference:
type: nist
@@ -1063,6 +1310,10 @@ quantities:
- value: electric capacitance
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Capacitance
short: electric_capacitance
- dimension_reference:
type: nist
@@ -1082,6 +1333,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ENGY
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Energy
short: energy
- dimension_reference:
type: nist
@@ -1095,6 +1349,10 @@ quantities:
- value: electric current intensity
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricCurrentIntensity
short: electric_current_intensity
- dimension_reference:
type: nist
@@ -1108,6 +1366,10 @@ quantities:
- value: electric inductance
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Inductance
short: electric_inductance
- dimension_reference:
type: nist
@@ -1147,6 +1409,10 @@ quantities:
- value: index of acidity
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Acidity
short: index_of_acidity
- dimension_reference:
type: nist
@@ -1160,6 +1426,10 @@ quantities:
- value: Fahrenheit temperature
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/FahrenheitTemperature
short: fahrenheit_temperature
- dimension_reference:
type: nist
@@ -1173,6 +1443,10 @@ quantities:
- value: mass divided by length
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LineicMass
short: mass_divided_by_length
- dimension_reference:
type: nist
@@ -1201,6 +1475,10 @@ quantities:
- value: molality of solute B
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MolalityOfSolute
short: molality_of_solute_B
- dimension_reference:
type: nist
@@ -1214,6 +1492,10 @@ quantities:
- value: work
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Work
short: work
- dimension_reference:
type: nist
@@ -1227,6 +1509,10 @@ quantities:
- value: coefficient of heat transfer
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/CoefficientOfHeatTransfer
short: coefficient_of_heat_transfer
- dimension_reference:
type: nist
@@ -1240,6 +1526,10 @@ quantities:
- value: surface coefficient of heat transfer
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SurfaceCoefficientOfHeatTransfer
short: surface_coefficient_of_heat_transfer
- dimension_reference:
type: nist
@@ -1253,6 +1543,10 @@ quantities:
- value: kinetic energy
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/KineticEnergy
short: kinetic_energy
- dimension_reference:
type: nist
@@ -1266,6 +1560,10 @@ quantities:
- value: mechanical energy
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MechanicalEnergy
short: mechanical_energy
- dimension_reference:
type: nist
@@ -1279,6 +1577,10 @@ quantities:
- value: torque
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Torque
short: torque
- dimension_reference:
type: nist
@@ -1292,6 +1594,10 @@ quantities:
- value: bending moment of force
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/BendingMomentOfForce
short: bending_moment_of_force
- dimension_reference:
type: nist
@@ -1307,6 +1613,10 @@ quantities:
- value: mole fraction
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MassFraction
short: mass_fraction
- dimension_reference:
type: nist
@@ -1320,6 +1630,10 @@ quantities:
- value: apparent power
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ApparentPower
short: apparent_power
- dimension_reference:
type: nist
@@ -1367,6 +1681,10 @@ quantities:
- value: heat
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Heat
short: amount_of_heat
- dimension_reference:
type: nist
@@ -1386,6 +1704,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/FLUE
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/EnergyFluence
short: fluence
- dimension_reference:
type: nist
@@ -1405,6 +1726,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/FLUR
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/EnergyFluenceRate
short: fluence_rate
- dimension_reference:
type: nist
@@ -1462,6 +1786,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/KRMR
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/KermaRate
short: kerma_rate
- dimension_reference:
type: nist
@@ -1519,6 +1846,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/XPOS
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Exposure
short: exposure
- dimension_reference:
type: nist
@@ -1547,6 +1877,10 @@ quantities:
- value: relative humidity
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RelativeHumidity
short: relative_humidity
- dimension_reference:
type: nist
@@ -1566,6 +1900,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/MASS
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Mass
short: mass
- dimension_reference:
type: nist
@@ -1585,6 +1922,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/POWR
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Power
short: power
- dimension_reference:
type: nist
@@ -1611,6 +1951,10 @@ quantities:
- value: traffic intensity
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/TrafficIntensity
short: traffic_intensity
- dimension_reference:
type: nist
@@ -1639,6 +1983,10 @@ quantities:
- value: information entropy
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/InformationContent
short: information_content
- dimension_reference:
type: nist
@@ -1652,6 +2000,10 @@ quantities:
- value: radiant flux
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RadiantFlux
short: radiant_flux
- dimension_reference:
type: nist
@@ -1671,6 +2023,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELCH
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricCharge
short: electric_charge
- dimension_reference:
type: nist
@@ -1703,6 +2058,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELPD
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricPotentialDifference
short: electric_potential_difference
- dimension_reference:
type: nist
@@ -1729,6 +2087,10 @@ quantities:
- value: electromotive force
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectromotiveForce
short: electromotive_force
- dimension_reference:
type: nist
@@ -1748,6 +2110,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELCA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Capacitance
short: capacitance
- dimension_reference:
type: nist
@@ -1767,6 +2132,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELRE
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Resistance
short: electric_resistance
- dimension_reference:
type: nist
@@ -1786,6 +2154,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELCO
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Conductance
short: electric_conductance
- dimension_reference:
type: nist
@@ -1807,6 +2178,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/TIME
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Time
short: time
- dimension_reference:
type: nist
@@ -1826,6 +2200,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/MGFL
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MagneticFlux
short: magnetic_flux
- dimension_reference:
type: nist
@@ -1847,6 +2224,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/SUDE
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AreaMass
short: surface_density
- dimension_reference:
type: nist
@@ -1866,6 +2246,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELIN
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Inductance
short: inductance
- dimension_reference:
type: nist
@@ -1885,6 +2268,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/MACO
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MassConcentration
short: mass_concentration
- dimension_reference:
type: nist
@@ -1904,6 +2290,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/TEMC
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/CelsiusTemperature
short: celsius_temperature
- dimension_reference:
type: nist
@@ -1923,6 +2312,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ARRN
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Activity
short: activity_referred_to_a_radionuclide
- dimension_reference:
type: nist
@@ -1942,6 +2334,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ABDO
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AbsorbedDose
short: absorbed_dose
- dimension_reference:
type: nist
@@ -1955,6 +2350,10 @@ quantities:
- value: specific energy imparted
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SpecificEnergyImparted
short: specific_energy_imparted
- dimension_reference:
type: nist
@@ -1974,6 +2373,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/KRMA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Kerma
short: kerma
- dimension_reference:
type: nist
@@ -1993,6 +2395,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/DOEQ
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/DoseEquivalent
short: dose_equivalent
- dimension_reference:
type: nist
@@ -2012,6 +2417,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELCU
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricCurrent
short: electric_current
- dimension_reference:
type: nist
@@ -2083,6 +2491,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/CATA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/CatalyticActivity
short: catalytic_activity
- dimension_reference:
type: nist
@@ -2102,6 +2513,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/FREQ
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Frequency
short: frequency
- dimension_reference:
type: nist
@@ -2121,6 +2535,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/LUFL
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LuminousFlux
short: luminous_flux
- dimension_reference:
type: nist
@@ -2140,6 +2557,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ILLU
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Illuminance
short: illuminance
- dimension_reference:
type: nist
@@ -2153,6 +2573,10 @@ quantities:
- value: distance
lang: en
quantity_type: base
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Distance
short: distance
- dimension_reference:
type: nist
@@ -2172,6 +2596,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ACCE
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Acceleration
short: acceleration
- dimension_reference:
type: nist
@@ -2191,6 +2618,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/TEMT
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ThermodynamicTemperature
short: temperature
- dimension_reference:
type: nist
@@ -2212,6 +2642,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/WANU
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Repetency
short: wavenumber
- dimension_reference:
type: nist
@@ -2233,6 +2666,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/DENS
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Density
short: density
- dimension_reference:
type: nist
@@ -2254,6 +2690,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/SPVO
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SpecificVolume
short: specific_volume
- dimension_reference:
type: nist
@@ -2273,6 +2712,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/CUDE
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Conductivity
short: current_density
- dimension_reference:
type: nist
@@ -2292,6 +2734,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/MAFD
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MagneticFieldStrength_H
short: magnetic_field_strength
- dimension_reference:
type: nist
@@ -2313,6 +2758,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/AMSC
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MolecularConcentration
short: amount_concentration
- dimension_reference:
type: nist
@@ -2332,6 +2780,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/LUMA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Luminance
short: luminance
- dimension_reference:
type: nist
@@ -2351,6 +2802,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/VELA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AngularVelocity
short: angular_velocity
- dimension_reference:
type: nist
@@ -2370,6 +2824,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ACCA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AngularAcceleration
short: angular_acceleration
- dimension_reference:
type: nist
@@ -2389,6 +2846,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/DYVI
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/DynamicViscosity
short: dynamic_viscosity
- dimension_reference:
type: nist
@@ -2408,6 +2868,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/AMSU
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AmountOfSubstance
short: substance_amount
- dimension_reference:
type: nist
@@ -2427,6 +2890,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/TORQ
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MomentOfForce
short: moment_of_force
- dimension_reference:
type: nist
@@ -2446,6 +2912,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/SUTE
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SurfaceTension
short: surface_tension
- dimension_reference:
type: nist
@@ -2465,6 +2934,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/HEFD
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/HeatFluxDensity
short: heat_flux_density
- dimension_reference:
type: nist
@@ -2484,6 +2956,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/HECA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/HeatCapacity
short: heat_capacity
- dimension_reference:
type: nist
@@ -2503,6 +2978,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/SHEC
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SpecificHeatCapacity
short: specific_heat_capacity
- dimension_reference:
type: nist
@@ -2522,6 +3000,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/SENG
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SpecificEnergy
short: specific_energy
- dimension_reference:
type: nist
@@ -2541,6 +3022,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/TCON
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ThermalConductivity
short: thermal_conductivity
- dimension_reference:
type: nist
@@ -2560,6 +3044,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ENGD
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/EnergyDensity
short: energy_density
- dimension_reference:
type: nist
@@ -2579,6 +3066,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELFS
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricFieldStrength
short: electric_field_strength
- dimension_reference:
type: nist
@@ -2598,6 +3088,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELCD
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricChargeDensity
short: electric_charge_density
- dimension_reference:
type: nist
@@ -2617,6 +3110,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/LUIN
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LuminousIntensity
short: luminous_intensity
- dimension_reference:
type: nist
@@ -2636,6 +3132,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ELFD
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricFluxDensity
short: electric_flux_density
- dimension_reference:
type: nist
@@ -2655,6 +3154,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/PRMI
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Permittivity
short: permittivity
- dimension_reference:
type: nist
@@ -2674,6 +3176,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/PRME
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectromagneticPermeability
short: permeability
- dimension_reference:
type: nist
@@ -2693,6 +3198,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/MOEG
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MolarEnergy
short: molar_energy
- dimension_reference:
type: nist
@@ -2712,6 +3220,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/MOEN
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MolarEntropy
short: molar_entropy
- dimension_reference:
type: nist
@@ -2725,6 +3236,10 @@ quantities:
- value: exposure (x and gamma rays)
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ExposureOfIonizingRadiation
short: exposure_x_and_gamma_rays
- dimension_reference:
type: nist
@@ -2744,6 +3259,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ABDR
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AbsorbedDoseRate
short: absorbed_dose_rate
- dimension_reference:
type: nist
@@ -2757,6 +3275,10 @@ quantities:
- value: potential energy
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PotentialEnergy
short: potential_energy
- dimension_reference:
type: nist
@@ -2770,6 +3292,10 @@ quantities:
- value: irradiance
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Irradiance
short: irradiance
- dimension_reference:
type: nist
@@ -2783,6 +3309,10 @@ quantities:
- value: entropy
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Entropy
short: entropy
- dimension_reference:
type: nist
@@ -2802,6 +3332,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/AREA
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Area
short: area
- dimension_reference:
type: nist
@@ -2815,6 +3348,10 @@ quantities:
- value: specific entropy
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/SpecificEntropy
short: specific_entropy
- dimension_reference:
type: nist
@@ -2834,6 +3371,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/SUCD
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/AreaChargeDensity
short: surface_charge_density
- dimension_reference:
type: nist
@@ -2847,6 +3387,10 @@ quantities:
- value: electric displacement
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/ElectricDisplacement
short: electric_displacement
- dimension_reference:
type: nist
@@ -2860,6 +3404,10 @@ quantities:
- value: molar heat capacity
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MolarHeatCapacity
short: molar_heat_capacity
- dimension_reference:
type: nist
@@ -2879,6 +3427,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/CTAC
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/CatalyticActivityConcentration
short: catalytic_activity_concentration
- dimension_reference:
type: nist
@@ -2898,6 +3449,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/KIVI
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/KinematicViscosity
short: kinematic_viscosity
- dimension_reference:
type: nist
@@ -2911,6 +3465,10 @@ quantities:
- value: magnetic field
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/MagneticField
short: magnetic_field
- dimension_reference:
type: nist
@@ -2930,6 +3488,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/RAIN
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RadiantIntensity
short: radiant_intensity
- dimension_reference:
type: nist
@@ -2949,6 +3510,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/RADI
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Radiance
short: radiance
- dimension_reference:
type: nist
@@ -2970,6 +3534,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/ANGP
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PlaneAngle
short: plane_angle
- dimension_reference:
type: nist
@@ -2991,6 +3558,9 @@ quantities:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/quantities/RLGB
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/LinearLogarithmicRatio
short: logarithmic_ratio_quantities
- dimension_reference:
type: nist
@@ -3006,6 +3576,10 @@ quantities:
- value: reciprocal of dynamic viscosity
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Fluidity
short: fluidity
- dimension_reference:
type: nist
@@ -3032,6 +3606,10 @@ quantities:
- value: refractive index
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RefractiveIndex
short: refractive_index
- dimension_reference:
type: nist
@@ -3045,6 +3623,10 @@ quantities:
- value: relative permeability
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/PermeabilityRatio
short: relative_permeability
- dimension_reference:
type: nist
@@ -3058,6 +3640,10 @@ quantities:
- value: breadth
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Breadth
short: breadth
- dimension_reference:
type: nist
@@ -3071,6 +3657,10 @@ quantities:
- value: height
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Height
short: height
- dimension_reference:
type: nist
@@ -3084,6 +3674,10 @@ quantities:
- value: thickness
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Thickness
short: thickness
- dimension_reference:
type: nist
@@ -3097,6 +3691,10 @@ quantities:
- value: radius
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/Radius
short: radius
- dimension_reference:
type: nist
@@ -3110,4 +3708,8 @@ quantities:
- value: radial distance
lang: en
quantity_type: derived
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/quantitykind/RadialDistance
short: radial_distance
diff --git a/schemas/dimensions-schema.yaml b/schemas/dimensions-schema.yaml
index fa850a2..1d88df5 100644
--- a/schemas/dimensions-schema.yaml
+++ b/schemas/dimensions-schema.yaml
@@ -138,11 +138,12 @@ definitions:
properties:
type:
type: string
- enum: ["standard", "specification", "publication", "website"]
+ enum: ["informative", "normative"]
description: "Type of reference"
authority:
type: string
description: "Authoritative body or organization"
+ enum: ["si-digital-framework", "qudt", "ucum", "nist"]
uri:
type: string
format: "uri"
@@ -150,8 +151,3 @@ definitions:
title:
type: string
description: "Title of the reference"
- year:
- type: integer
- minimum: 1000
- maximum: 9999
- description: "Publication year"
diff --git a/schemas/prefixes-schema.yaml b/schemas/prefixes-schema.yaml
index d58cc7d..4910c11 100644
--- a/schemas/prefixes-schema.yaml
+++ b/schemas/prefixes-schema.yaml
@@ -140,11 +140,12 @@ definitions:
properties:
type:
type: string
- enum: ["standard", "specification", "publication", "website", "normative", "informative"]
+ enum: ["informative", "normative"]
description: "Type of reference"
authority:
type: string
description: "Authoritative body or organization"
+ enum: ["si-digital-framework", "qudt", "ucum", "nist"]
uri:
type: string
format: "uri"
@@ -152,8 +153,3 @@ definitions:
title:
type: string
description: "Title of the reference"
- year:
- type: integer
- minimum: 1000
- maximum: 9999
- description: "Publication year"
diff --git a/schemas/quantities-schema.yaml b/schemas/quantities-schema.yaml
index f563204..7e3a213 100644
--- a/schemas/quantities-schema.yaml
+++ b/schemas/quantities-schema.yaml
@@ -102,10 +102,12 @@ definitions:
properties:
type:
type: string
+ enum: ["informative", "normative"]
description: "Type of reference"
authority:
type: string
description: "Authoritative body or organization"
+ enum: ["si-digital-framework", "qudt", "ucum", "nist"]
uri:
type: string
format: "uri"
@@ -113,8 +115,3 @@ definitions:
title:
type: string
description: "Title of the reference"
- year:
- type: integer
- minimum: 1000
- maximum: 9999
- description: "Publication year"
diff --git a/schemas/scales-schema.yaml b/schemas/scales-schema.yaml
index 5634a5b..b4e5c3c 100644
--- a/schemas/scales-schema.yaml
+++ b/schemas/scales-schema.yaml
@@ -91,10 +91,12 @@ definitions:
properties:
type:
type: string
+ enum: ["informative", "normative"]
description: "Type of reference"
authority:
type: string
description: "Authoritative body or organization"
+ enum: ["si-digital-framework", "qudt", "ucum", "nist"]
uri:
type: string
format: "uri"
@@ -102,8 +104,3 @@ definitions:
title:
type: string
description: "Title of the reference"
- year:
- type: integer
- minimum: 1000
- maximum: 9999
- description: "Publication year"
diff --git a/schemas/unit_systems-schema.yaml b/schemas/unit_systems-schema.yaml
index d1707df..365614b 100644
--- a/schemas/unit_systems-schema.yaml
+++ b/schemas/unit_systems-schema.yaml
@@ -101,11 +101,12 @@ definitions:
properties:
type:
type: string
- enum: ["standard", "specification", "publication", "website"]
+ enum: ["informative", "normative"]
description: "Type of reference"
authority:
type: string
description: "Authoritative body or organization"
+ enum: ["si-digital-framework", "qudt", "ucum", "nist"]
uri:
type: string
format: "uri"
@@ -113,8 +114,3 @@ definitions:
title:
type: string
description: "Title of the reference"
- year:
- type: integer
- minimum: 1000
- maximum: 9999
- description: "Publication year"
diff --git a/schemas/units-schema.yaml b/schemas/units-schema.yaml
index 5c017b1..a10bf52 100644
--- a/schemas/units-schema.yaml
+++ b/schemas/units-schema.yaml
@@ -200,11 +200,12 @@ definitions:
properties:
type:
type: string
- enum: ["normative", "informative"]
+ enum: ["informative", "normative"]
description: "Type of reference"
authority:
type: string
description: "Authoritative body or organization"
+ enum: ["si-digital-framework", "qudt", "ucum", "nist"]
uri:
type: string
format: "uri"
@@ -212,8 +213,3 @@ definitions:
title:
type: string
description: "Title of the reference"
- year:
- type: integer
- minimum: 1000
- maximum: 9999
- description: "Publication year"
diff --git a/spec/units_spec.rb b/spec/units_spec.rb
index a70682a..481a27a 100644
--- a/spec/units_spec.rb
+++ b/spec/units_spec.rb
@@ -12,7 +12,9 @@
it "parses successfully" do
symbols = unit_data["symbols"].flatten.compact
symbols.each do |symbols_hash|
- expect { Plurimath::Math.parse(symbols_hash["mathml"], :mathml) }.not_to raise_error
+ expect do
+ Plurimath::Math.parse(symbols_hash["mathml"], :mathml)
+ end.not_to raise_error
end
end
end
diff --git a/unit_systems.yaml b/unit_systems.yaml
index 8d2dbc0..364fedd 100644
--- a/unit_systems.yaml
+++ b/unit_systems.yaml
@@ -11,6 +11,10 @@ unit_systems:
names:
- value: SI base units
lang: en
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/sou/SI
short: si-base
- acceptable: true
identifiers:
diff --git a/units.yaml b/units.yaml
index d4908d6..1f1b199 100644
--- a/units.yaml
+++ b/units.yaml
@@ -50,6 +50,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:m
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -163,6 +166,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:sr
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/SR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -198,6 +204,10 @@ units:
quantity_references:
- type: nist
id: NISTq39
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/REM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -232,6 +242,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:a
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/YR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -258,6 +271,10 @@ units:
quantity_references:
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT-PER-MIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -293,6 +310,10 @@ units:
quantity_references:
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -328,6 +349,10 @@ units:
quantity_references:
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -372,6 +397,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:N
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/N
scale_reference:
type: unitsml
id: continuous_ratio
@@ -398,10 +426,10 @@ units:
short: newton
symbols:
- latex: "\\ensuremath{\\mathrm{N}}"
- unicode: "N"
- ascii: "N"
- html: "N"
- id: "N"
+ unicode: N
+ ascii: N
+ html: N
+ id: N
mathml: "N"
- identifiers:
- type: nist
@@ -418,6 +446,10 @@ units:
id: NISTq185
- type: nist
id: NISTq60
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/N-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -453,6 +485,10 @@ units:
quantity_references:
- type: nist
id: NISTq133
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/N-M-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -493,6 +529,10 @@ units:
quantity_references:
- type: nist
id: NISTq61
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/N-PER-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -528,6 +568,10 @@ units:
quantity_references:
- type: nist
id: NISTq130
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/N-M2-PER-KiloGM2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -571,6 +615,10 @@ units:
quantity_references:
- type: nist
id: NISTq129
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/N-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -606,6 +654,10 @@ units:
quantity_references:
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MI-PER-HR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -641,6 +693,10 @@ units:
quantity_references:
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MI-PER-MIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -676,6 +732,10 @@ units:
quantity_references:
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MI-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -715,6 +775,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:misc:code:st
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/STR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -746,6 +809,10 @@ units:
quantity_references:
- type: nist
id: NISTq14
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GAMMA
scale_reference:
type: unitsml
id: continuous_ratio
@@ -790,6 +857,10 @@ units:
id: NISTq19
- type: nist
id: NISTq77
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/THERM_EC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -820,6 +891,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:R
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/R
scale_reference:
type: unitsml
id: continuous_ratio
@@ -852,6 +926,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:G
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GAUSS
scale_reference:
type: unitsml
id: continuous_ratio
@@ -905,6 +982,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Pa
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PA
scale_reference:
type: unitsml
id: continuous_ratio
@@ -947,6 +1027,10 @@ units:
quantity_references:
- type: nist
id: NISTq59
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PA-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -982,6 +1066,10 @@ units:
quantity_references:
- type: nist
id: NISTq159
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PA-PER-K
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1021,6 +1109,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Ky
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KY
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1048,6 +1139,10 @@ units:
quantity_references:
- type: nist
id: NISTq85
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CentiST
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1128,6 +1223,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[mil_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MilLength
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1172,6 +1270,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:sb
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/STILB
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1248,6 +1349,10 @@ units:
id: NISTq185
- type: nist
id: NISTq60
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM_F-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1290,6 +1395,10 @@ units:
id: NISTq20
- type: nist
id: NISTq21
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HP_Electric
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1320,6 +1429,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:P
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/POISE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1346,6 +1458,10 @@ units:
quantity_references:
- type: nist
id: NISTq91
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/RHE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1428,6 +1544,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:J
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1470,6 +1589,10 @@ units:
quantity_references:
- type: nist
id: NISTq67
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J-PER-M3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1505,6 +1628,10 @@ units:
quantity_references:
- type: nist
id: NISTq65
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J-PER-KiloGM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1545,6 +1672,10 @@ units:
id: NISTq64
- type: nist
id: NISTq80
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J-PER-KiloGM-K
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1588,6 +1719,10 @@ units:
quantity_references:
- type: nist
id: NISTq154
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1625,6 +1760,10 @@ units:
id: NISTq63
- type: nist
id: NISTq79
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J-PER-K
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1660,6 +1799,10 @@ units:
quantity_references:
- type: nist
id: NISTq73
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J-PER-MOL
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1697,6 +1840,10 @@ units:
id: NISTq74
- type: nist
id: NISTq83
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/J-PER-MOL-K
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1740,6 +1887,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:l
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/L
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1778,6 +1928,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[nmi_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MI_N
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1808,6 +1961,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:heat:code:[degF]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DEG_F
scale_reference:
type: unitsml
id: continuous_interval
@@ -1840,6 +1996,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:const:code:atm
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ATM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1872,6 +2031,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:misc:code:att
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ATM_T
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1909,6 +2071,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:W
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1951,6 +2116,10 @@ units:
quantity_references:
- type: nist
id: NISTq88
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W-PER-SR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -1986,6 +2155,10 @@ units:
quantity_references:
- type: nist
id: NISTq66
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W-PER-M-K
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2020,6 +2193,10 @@ units:
id: NISTq62
- type: nist
id: NISTq78
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W-PER-M2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2055,6 +2232,10 @@ units:
quantity_references:
- type: nist
id: NISTq89
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W-PER-M2-SR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2106,6 +2287,10 @@ units:
id: NISTq19
- type: nist
id: NISTq77
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2145,6 +2330,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:St
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ST
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2175,6 +2363,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Gal
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GALILEO
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2205,6 +2396,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Oe
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/OERSTED
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2242,6 +2436,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:'
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ARCMIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2282,6 +2479,9 @@ units:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/units/arcsecond
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ARCSEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2363,6 +2563,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:C
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/C
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2400,6 +2603,10 @@ units:
id: NISTq81
- type: nist
id: NISTq82
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/C-PER-M2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2435,6 +2642,10 @@ units:
quantity_references:
- type: nist
id: NISTq69
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/C-PER-M3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2472,6 +2683,10 @@ units:
id: NISTq197
- type: nist
id: NISTq75
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/C-PER-KiloGM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2516,6 +2731,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[kn_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2557,6 +2775,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:levels:code:Np
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/NP
scale_reference:
type: unitsml
id: logarithmic_field
@@ -2596,6 +2817,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:levels:code:B
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/B
scale_reference:
type: unitsml
id: logarithmic_field
@@ -2623,6 +2847,10 @@ units:
quantity_references:
- type: nist
id: NISTq90
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DeciB
scale_reference:
type: unitsml
id: logarithmic_ratio
@@ -2663,6 +2891,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MilliM_HG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2695,6 +2927,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:d
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DARCY
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2731,6 +2966,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:gon
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GON
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2770,6 +3008,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:V
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/V
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2816,6 +3057,10 @@ units:
quantity_references:
- type: nist
id: NISTq68
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/V-PER-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2853,6 +3098,10 @@ units:
id: NISTq107
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloM-PER-HR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2891,6 +3140,10 @@ units:
quantity_references:
- type: nist
id: NISTq120
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/NP-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2930,6 +3183,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[syd_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/YD2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2965,6 +3221,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-lengths:code:[smi_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MI2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -2998,6 +3257,10 @@ units:
quantity_references:
- type: nist
id: NISTq17
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TonEnergy
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3024,6 +3287,10 @@ units:
quantity_references:
- type: nist
id: NISTq49
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT-PER-SEC2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3063,6 +3330,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[cin_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3098,6 +3368,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[cft_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3138,6 +3411,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:F
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3184,6 +3460,10 @@ units:
quantity_references:
- type: nist
id: NISTq71
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FARAD-PER-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3223,6 +3503,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[cyd_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/YD3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3262,6 +3545,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:brit-volumes:code:[gal_br]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GAL_IMP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3294,6 +3580,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[pt_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PINT_UK
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3328,6 +3617,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[foz_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/OZ_VOL_UK
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3458,6 +3750,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[bbl_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BBL
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3490,6 +3785,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[bu_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BU_US
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3525,6 +3823,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Ohm
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/OHM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3607,6 +3908,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:const:code:[ly]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/LY
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3639,6 +3943,9 @@ units:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/units/astronomicalunit
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/AU
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3669,6 +3976,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:pc
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PARSEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3697,6 +4007,10 @@ units:
id: NISTq144
- type: nist
id: NISTq145
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/M4
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3728,6 +4042,10 @@ units:
quantity_references:
- type: nist
id: NISTq51
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM-PER-L
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3766,6 +4084,10 @@ units:
quantity_references:
- type: nist
id: NISTq51
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TONNE-PER-M3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3810,6 +4132,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:S
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/S
scale_reference:
type: unitsml
id: continuous_ratio
@@ -3860,6 +4185,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:const:code:gf
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GM_F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4008,6 +4336,10 @@ units:
quantity_references:
- type: nist
id: NISTq8
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/M2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4039,6 +4371,10 @@ units:
quantity_references:
- type: nist
id: NISTq85
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/M2-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4077,6 +4413,10 @@ units:
id: NISTq10
- type: nist
id: NISTq146
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/M3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4147,6 +4487,10 @@ units:
quantity_references:
- type: nist
id: NISTq151
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/M3-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4190,6 +4534,9 @@ units:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/units/kilogram
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4233,6 +4580,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Wb
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/WB
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4321,6 +4671,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:avoirdupois:code:[oz_av]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/OZ-FT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4375,6 +4728,10 @@ units:
quantity_references:
- type: nist
id: NISTq51
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/LB-PER-FT3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4416,6 +4773,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:const:code:[lbf_av]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/LB_F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4456,6 +4816,10 @@ units:
id: NISTq60
- type: nist
id: NISTq77
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT-LB_F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4495,6 +4859,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:misc:code:[psi]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/LB_F-PER-IN2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4536,6 +4903,10 @@ units:
quantity_references:
- type: nist
id: NISTq155
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN4
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4567,6 +4938,10 @@ units:
quantity_references:
- type: nist
id: NISTq146
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4607,6 +4982,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:T
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/T
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4649,6 +5027,10 @@ units:
quantity_references:
- type: nist
id: NISTq85
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT2-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4685,6 +5067,10 @@ units:
quantity_references:
- type: nist
id: NISTq20
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT-LB_F-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4733,6 +5119,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:misc:code:[car_m]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CARAT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4763,6 +5152,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:heat:code:tex
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TEX
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4789,6 +5181,10 @@ units:
quantity_references:
- type: nist
id: NISTq15
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TORR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4874,6 +5270,10 @@ units:
quantity_references:
- type: nist
id: NISTq20
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM_F-M-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4919,6 +5319,10 @@ units:
quantity_references:
- type: nist
id: NISTq20
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HP_Metric
scale_reference:
type: unitsml
id: continuous_ratio
@@ -4954,6 +5358,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:H
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/H
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5000,6 +5407,10 @@ units:
quantity_references:
- type: nist
id: NISTq72
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/H-PER-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5037,6 +5448,10 @@ units:
id: NISTq180
- type: nist
id: NISTq181
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W-PER-M2-K
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5074,6 +5489,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Lmb
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/LA
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5104,6 +5522,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Gb
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GI
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5130,6 +5551,10 @@ units:
quantity_references:
- type: nist
id: NISTq162
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DEBYE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5182,6 +5607,10 @@ units:
quantity_references:
- type: nist
id: NISTq2
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/SLUG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5226,6 +5655,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:heat:code:cal_th
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CAL_TH
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5264,6 +5696,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:avoirdupois:code:[ston_av]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TON_SHORT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5296,6 +5731,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:avoirdupois:code:[lton_av]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TON_LONG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5333,6 +5771,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Cel
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DEG_C
scale_reference:
type: unitsml
id: continuous_interval
@@ -5405,6 +5846,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:avoirdupois:code:[oz_av]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/OZ
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5469,6 +5913,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:troy:code:[pwt_tr]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PENNYWEIGHT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5563,6 +6010,10 @@ units:
id: NISTq128
- type: nist
id: NISTq13
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PDL
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5589,6 +6040,10 @@ units:
quantity_references:
- type: nist
id: NISTq2
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KIP_F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5643,6 +6098,10 @@ units:
quantity_references:
- type: nist
id: NISTq15
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BARYE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5678,6 +6137,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:eV
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/EV
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5708,6 +6170,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:u
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/U
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5734,6 +6199,10 @@ units:
quantity_references:
- type: nist
id: NISTq12
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/C
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5845,6 +6314,10 @@ units:
quantity_references:
- type: nist
id: NISTq22
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/E
scale_reference:
type: unitsml
id: continuous_ratio
@@ -5958,6 +6431,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Bq
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BQ
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6258,6 +6734,10 @@ units:
id: NISTq1
- type: nist
id: NISTq48
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6435,6 +6915,10 @@ units:
quantity_references:
- type: nist
id: NISTq28
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/OHM_Stat
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6463,6 +6947,10 @@ units:
quantity_references:
- type: nist
id: NISTq169
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FARAD_Stat
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6491,6 +6979,10 @@ units:
quantity_references:
- type: nist
id: NISTq170
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/A_Stat
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6523,6 +7015,10 @@ units:
id: NISTq24
- type: nist
id: NISTq26
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/V_Stat
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6551,6 +7047,10 @@ units:
quantity_references:
- type: nist
id: NISTq171
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/H_Stat
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6586,6 +7086,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:g
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6594,11 +7097,11 @@ units:
unit_reference:
type: nist
id: NISTu2
- root: true
- short: gram
unit_system_reference:
- type: unitsml
id: si-base
+ root: true
+ short: gram
symbols:
- latex: "\\ensuremath{\\mathrm{g}}"
unicode: g
@@ -6619,6 +7122,10 @@ units:
quantity_references:
- type: nist
id: NISTq29
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MHO_Stat
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6649,6 +7156,10 @@ units:
id: NISTq22
- type: nist
id: NISTq23
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/C_Stat
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6843,6 +7354,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:pc
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PARSEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6873,6 +7387,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:pc
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PARSEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6942,6 +7459,10 @@ units:
quantity_references:
- type: nist
id: NISTq126
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM-PER-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -6980,6 +7501,10 @@ units:
quantity_references:
- type: nist
id: NISTq31
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM-PER-M2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7058,6 +7583,10 @@ units:
quantity_references:
- type: nist
id: NISTq127
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM-M2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7099,6 +7628,10 @@ units:
id: NISTq132
- type: nist
id: NISTq132
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM-M2-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7143,6 +7676,10 @@ units:
quantity_references:
- type: nist
id: NISTq150
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7194,6 +7731,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Gy
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GRAY
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7231,6 +7771,10 @@ units:
id: NISTq194
- type: nist
id: NISTq76
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GRAY-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7268,6 +7812,10 @@ units:
id: NISTq1
- type: nist
id: NISTq48
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7300,6 +7848,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-lengths:code:[rd_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ROD
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7332,6 +7883,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[fth_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FATH
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7362,6 +7916,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[cml_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MIL_Circ
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7392,6 +7949,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:heat:code:[HP]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7420,6 +7980,10 @@ units:
quantity_references:
- type: nist
id: NISTq20
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HP_Boiler
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7448,6 +8012,10 @@ units:
quantity_references:
- type: nist
id: NISTq20
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HP_H2O
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7474,6 +8042,10 @@ units:
quantity_references:
- type: nist
id: NISTq20
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7504,6 +8076,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:heat:code:[degR]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DEG_R
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7536,6 +8111,9 @@ units:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/units/dalton
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DA
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7576,6 +8154,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Sv
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/SV
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7896,6 +8477,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:s
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7943,6 +8527,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:chemical:code:kat
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KAT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -7978,6 +8565,10 @@ units:
quantity_references:
- type: nist
id: NISTq84
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KAT-PER-M3
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8019,6 +8610,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[qt_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/QT_UK
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8113,6 +8707,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[tsp_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TSP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8143,6 +8740,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[tbs_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TBSP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8175,6 +8775,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[tsp_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TBSP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8207,6 +8810,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[tsp_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TSP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8239,6 +8845,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[cup_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CUP
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8340,6 +8949,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:Hz
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HZ
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8381,6 +8993,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-lengths:code:[ch_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CH
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8445,6 +9060,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-lengths:code:[fur_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FUR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8479,6 +9097,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[mi_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MI_US
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8511,6 +9132,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[yd_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/YD
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8545,6 +9169,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[ft_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT_US
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8577,6 +9204,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[in_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8609,6 +9239,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-lengths:code:[acr_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/AC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8641,6 +9274,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CentiM_HG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8669,6 +9306,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CentiM_HG_0DEG_C
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8704,6 +9345,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:lm
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/LM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8803,6 +9447,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN_H2O
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8894,6 +9542,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT_H2O
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8952,6 +9604,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN_HG_32DEG_F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -8992,6 +9648,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN_HG_60DEG_F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9036,6 +9696,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN_HG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9083,6 +9747,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:lx
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/LUX
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9124,6 +9791,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT_HG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9172,6 +9843,10 @@ units:
id: NISTq19
- type: nist
id: NISTq77
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/THM_US
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9202,6 +9877,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:chemical:code:[pH]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PH
scale_reference:
type: unitsml
id: logarithmic_ratio
@@ -9262,6 +9940,10 @@ units:
quantity_references:
- type: nist
id: NISTq19
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BTU_MEAN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9374,6 +10056,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:a_t
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/YR_TROPICAL
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9408,6 +10093,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:a
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/YR_Sidereal
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9442,6 +10130,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:d
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DAY_Sidereal
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9476,6 +10167,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:h
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HR_Sidereal
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9510,6 +10204,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:'
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MIN_Sidereal
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9541,6 +10238,9 @@ units:
- type: nist
id: NISTq3
references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/S
- type: informative
authority: ucum
uri: ucum:base-unit:code:s
@@ -9570,6 +10270,10 @@ units:
quantity_references:
- type: nist
id: NISTq1
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PT_BIG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9596,6 +10300,10 @@ units:
quantity_references:
- type: nist
id: NISTq3
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/SH
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9626,6 +10334,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:heat:code:[den]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DENIER
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9660,6 +10371,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[mil_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MilLength
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9688,6 +10402,10 @@ units:
quantity_references:
- type: nist
id: NISTq6
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MOL_LB
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9718,6 +10436,10 @@ units:
quantity_references:
- type: nist
id: NISTq20
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TON_FG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9748,6 +10470,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:infotech:code:bit_s
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BIT
scale_reference:
type: unitsml
id: discrete
@@ -9778,6 +10503,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:infotech:code:By
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BYTE
scale_reference:
type: unitsml
id: discrete
@@ -9838,6 +10566,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[min_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9870,6 +10601,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[cup_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CUP_US
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9936,6 +10670,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:us-volumes:code:[gil_us]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GI_US
scale_reference:
type: unitsml
id: continuous_ratio
@@ -9996,6 +10733,10 @@ units:
quantity_references:
- type: nist
id: NISTq151
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT3-PER-MIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10032,6 +10773,10 @@ units:
quantity_references:
- type: nist
id: NISTq151
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT3-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10077,6 +10822,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:'
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10115,6 +10863,10 @@ units:
quantity_references:
- type: nist
id: NISTq151
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN3-PER-MIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10152,6 +10904,10 @@ units:
quantity_references:
- type: nist
id: NISTq1
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MicroIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10189,6 +10945,10 @@ units:
id: NISTq15
- type: nist
id: NISTq16
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MilliBAR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10310,6 +11070,10 @@ units:
quantity_references:
- type: nist
id: NISTq10
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MilliL
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10350,6 +11114,10 @@ units:
quantity_references:
- type: nist
id: NISTq55
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MOL-PER-L
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10400,6 +11168,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:h
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10539,6 +11310,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:d
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DAY
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10645,6 +11419,10 @@ units:
quantity_references:
- type: nist
id: NISTq199
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PERCENT_RH
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10703,6 +11481,10 @@ units:
quantity_references:
- type: nist
id: NISTq200
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DECADE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10729,6 +11511,10 @@ units:
quantity_references:
- type: nist
id: NISTq201
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ERLANG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10759,6 +11545,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:infotech:code:Bd
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BAUD
scale_reference:
type: unitsml
id: discrete
@@ -10785,6 +11574,10 @@ units:
quantity_references:
- type: nist
id: NISTq203
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/SHANNON
scale_reference:
type: unitsml
id: discrete
@@ -10811,6 +11604,10 @@ units:
quantity_references:
- type: nist
id: NISTq203
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HART
scale_reference:
type: unitsml
id: discrete
@@ -10843,6 +11640,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:misc:code:Ao
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ANGSTROM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -10915,6 +11715,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:A
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/A
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11015,6 +11818,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:dimless:code:[ppm]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PPM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11096,6 +11902,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:ar
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ARE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11128,6 +11937,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:misc:code:b
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BARN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11160,6 +11972,9 @@ units:
- type: normative
authority: si-digital-framework
uri: http://si-digital-framework.org/SI/units/hectare
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/HA
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11190,6 +12005,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[sft_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11225,6 +12043,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[sin_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11258,6 +12079,10 @@ units:
quantity_references:
- type: nist
id: NISTq4
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/A_Ab
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11286,6 +12111,10 @@ units:
id: NISTq22
- type: nist
id: NISTq23
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/C_Ab
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11314,6 +12143,10 @@ units:
quantity_references:
- type: nist
id: NISTq27
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FARAD_Ab
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11353,6 +12186,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:K
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/K
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11387,6 +12223,10 @@ units:
quantity_references:
- type: nist
id: NISTq32
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/H_Ab
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11441,6 +12281,10 @@ units:
quantity_references:
- type: nist
id: NISTq28
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/OHM_Ab
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11473,6 +12317,10 @@ units:
id: NISTq25
- type: nist
id: NISTq26
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/V_Ab
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11501,6 +12349,10 @@ units:
id: NISTq22
- type: nist
id: NISTq23
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/A-HR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11540,6 +12392,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Bi
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BIOT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11573,6 +12428,10 @@ units:
quantity_references:
- type: nist
id: NISTq10
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/AC-FT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11612,6 +12471,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Mx
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MX
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11682,6 +12544,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:si:code:mol
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MOL
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11743,6 +12608,10 @@ units:
quantity_references:
- type: nist
id: NISTq179
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MOL-PER-KiloGM
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11845,6 +12714,10 @@ units:
id: NISTq93
- type: nist
id: NISTq94
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ONE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11885,6 +12758,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:erg
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ERG
scale_reference:
type: unitsml
id: continuous_ratio
@@ -11996,6 +12872,10 @@ units:
id: NISTq19
- type: nist
id: NISTq77
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloW-HR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12044,6 +12924,10 @@ units:
id: NISTq19
- type: nist
id: NISTq77
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/W-HR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12088,6 +12972,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:cd
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CD
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12153,6 +13040,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:dyn
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/DYN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12180,6 +13070,10 @@ units:
quantity_references:
- type: nist
id: NISTq13
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloGM_F
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12214,6 +13108,10 @@ units:
quantity_references:
- type: nist
id: NISTq13
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/KiloPOND
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12331,6 +13229,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[ft_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/FT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12375,6 +13276,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[in_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/IN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12419,6 +13323,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[mi_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/MI
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12451,6 +13358,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:intcust:code:[yd_i]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/YD
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12481,6 +13391,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:ph
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/PHOT
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12517,6 +13430,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:avoirdupois:code:[gr]
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/GRAIN
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12556,6 +13472,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:t
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/TON_Metric
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12584,6 +13503,10 @@ units:
id: NISTq20
- type: nist
id: NISTq21
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/ERG-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12630,6 +13553,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:rad
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/RAD
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12665,6 +13591,10 @@ units:
quantity_references:
- type: nist
id: NISTq115
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/RAD-PER-M
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12702,6 +13632,10 @@ units:
id: NISTq113
- type: nist
id: NISTq57
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/RAD-PER-SEC
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12737,6 +13671,10 @@ units:
quantity_references:
- type: nist
id: NISTq58
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/RAD-PER-SEC2
scale_reference:
type: unitsml
id: continuous_ratio
@@ -12778,6 +13716,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:iso1000:code:bar
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/BAR
scale_reference:
type: unitsml
id: continuous_ratio
@@ -13012,6 +13953,10 @@ units:
quantity_references:
- type: nist
id: NISTq59
+ references:
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CentiPOISE
scale_reference:
type: unitsml
id: continuous_ratio
@@ -13050,6 +13995,9 @@ units:
- type: informative
authority: ucum
uri: ucum:unit:cgs:code:Ci
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/CI
scale_reference:
type: unitsml
id: continuous_ratio
@@ -13082,6 +14030,9 @@ units:
- type: informative
authority: ucum
uri: ucum:base-unit:code:rad
+ - type: informative
+ authority: qudt
+ uri: http://qudt.org/vocab/unit/RAD_R
scale_reference:
type: unitsml
id: continuous_ratio
diff --git a/validate_schemas.rb b/validate_schemas.rb
index cadf732..d0c1197 100755
--- a/validate_schemas.rb
+++ b/validate_schemas.rb
@@ -1,13 +1,13 @@
#!/usr/bin/env ruby
-require 'yaml'
-require 'json-schema'
-require 'json'
-require 'pathname'
+require "yaml"
+require "json-schema"
+require "json"
+require "pathname"
class SchemaValidator
def initialize
- @schemas_dir = Pathname.new('schemas')
+ @schemas_dir = Pathname.new("schemas")
@errors_found = false
end
@@ -17,19 +17,19 @@ def validate_all
# Define the mapping of YAML files to their schemas
file_schema_map = {
- 'units.yaml' => 'units-schema.yaml',
- 'quantities.yaml' => 'quantities-schema.yaml',
- 'scales.yaml' => 'scales-schema.yaml',
- 'prefixes.yaml' => 'prefixes-schema.yaml',
- 'unit_systems.yaml' => 'unit_systems-schema.yaml',
- 'dimensions.yaml' => 'dimensions-schema.yaml'
+ "units.yaml" => "units-schema.yaml",
+ "quantities.yaml" => "quantities-schema.yaml",
+ "scales.yaml" => "scales-schema.yaml",
+ "prefixes.yaml" => "prefixes-schema.yaml",
+ "unit_systems.yaml" => "unit_systems-schema.yaml",
+ "dimensions.yaml" => "dimensions-schema.yaml",
}
file_schema_map.each do |yaml_file, schema_file|
validate_file(yaml_file, schema_file)
end
- puts "\n" + "=" * 50
+ puts "\n#{'=' * 50}"
if @errors_found
puts "❌ Validation completed with errors"
exit 1
@@ -68,8 +68,8 @@ def validate_file(yaml_file, schema_file)
# Validate
errors = JSON::Validator.fully_validate(schema_json, yaml_data,
- errors_as_objects: true,
- validate_schema: true)
+ errors_as_objects: true,
+ validate_schema: true)
if errors.empty?
puts "✅ #{yaml_file} - Valid"
@@ -84,17 +84,16 @@ def validate_file(yaml_file, schema_file)
# Try to provide more context about the location
if error[:fragment] && !error[:fragment].empty?
- path_parts = error[:fragment].split('/')
+ path_parts = error[:fragment].split("/")
puts " Location: #{describe_path(path_parts, yaml_data)}"
end
# Show the failing value if available
- if error[:failed_attribute] && error[:failed_attribute] != 'schema'
+ if error[:failed_attribute] && error[:failed_attribute] != "schema"
puts " Failed validation: #{error[:failed_attribute]}"
end
end
end
-
rescue YAML::SyntaxError => e
puts "❌ YAML syntax error in #{yaml_file}:"
puts " Line #{e.line}: #{e.problem}"
@@ -114,9 +113,9 @@ def describe_path(path_parts, data)
description_parts = []
path_parts.each do |part|
- next if part.empty? || part == '#'
+ next if part.empty? || part == "#"
- if part =~ /^\d+$/
+ if /^\d+$/.match?(part)
# Array index
index = part.to_i
if current.is_a?(Array) && current[index]
@@ -126,45 +125,41 @@ def describe_path(path_parts, data)
description_parts << "index #{index} (out of bounds)"
break
end
- else
+ elsif current.is_a?(Hash) && current.key?(part)
# Object property
- if current.is_a?(Hash) && current.key?(part)
- description_parts << "property '#{part}'"
- current = current[part]
- else
- description_parts << "missing property '#{part}'"
- break
- end
+ description_parts << "property '#{part}'"
+ current = current[part]
+ else
+ description_parts << "missing property '#{part}'"
+ break
end
end
- description_parts.join(' -> ')
+ description_parts.join(" -> ")
end
end
# Additional helper methods for detailed error reporting
class SchemaValidator
def self.check_dependencies
- begin
- require 'json-schema'
- rescue LoadError
- puts "❌ Missing required gem: json-schema"
- puts " Install with: gem install json-schema"
- exit 1
- end
+ require "json-schema"
+ rescue LoadError
+ puts "❌ Missing required gem: json-schema"
+ puts " Install with: gem install json-schema"
+ exit 1
end
def self.run_with_options
check_dependencies
- if ARGV.include?('--help') || ARGV.include?('-h')
+ if ARGV.include?("--help") || ARGV.include?("-h")
show_help
exit 0
end
validator = new
- if ARGV.include?('--verbose') || ARGV.include?('-v')
+ if ARGV.include?("--verbose") || ARGV.include?("-v")
puts "Ruby version: #{RUBY_VERSION}"
puts "JSON Schema gem version: #{JSON::Schema::VERSION}"
puts "Working directory: #{Dir.pwd}"