List of units (of measure)

hello,
is there somewhere a complete list of the for the units (of measure)?
i am generating overrides for the json model in excel because i have many signal properties to override and why not make it in bulk.
i checked on github and the list is not complete there.
thank you in advance.

Check categories.ts:

{
    name: 'Acceleration',
    formats: [
      { name: 'Meters/secĀ²', id: 'accMS2', fn: toFixedUnit('m/secĀ²') },
      { name: 'Feet/secĀ²', id: 'accFS2', fn: toFixedUnit('f/secĀ²') },
      { name: 'G unit', id: 'accG', fn: toFixedUnit('g') },
    ],
  },
  {
    name: 'Angle',
    formats: [
      { name: 'Degrees (Ā°)', id: 'degree', fn: toFixedUnit('Ā°') },
      { name: 'Radians', id: 'radian', fn: toFixedUnit('rad') },
      { name: 'Gradian', id: 'grad', fn: toFixedUnit('grad') },
      { name: 'Arc Minutes', id: 'arcmin', fn: toFixedUnit('arcmin') },
      { name: 'Arc Seconds', id: 'arcsec', fn: toFixedUnit('arcsec') },
    ],
  },
...
2 Likes