diff --git a/apps/data-management/e2e/specs/metadata.spec.ts b/apps/data-management/e2e/specs/metadata.spec.ts index 21cfc4603..ec2dcf6a8 100644 --- a/apps/data-management/e2e/specs/metadata.spec.ts +++ b/apps/data-management/e2e/specs/metadata.spec.ts @@ -218,7 +218,7 @@ test.describe('metadata management', () => { await fillCombobox(page, 'Variable Type *', 'E2E Variable Type') await page - .getByLabel('Definition *') + .getByLabel('Definition') .fill('https://www.example.com/e2e-observed-property') await page .getByLabel('Description *') @@ -268,8 +268,14 @@ test.describe('metadata management', () => { .getByRole('button', { name: /Add new processing level/i }) .click() + await page.getByLabel('Name *').fill('E2E Processing Level') await page.getByLabel('Code *').fill(levelCode) - await page.getByLabel('Definition').fill('E2E processing level definition') + await page + .getByLabel('Description *') + .fill('E2E processing level description') + await page + .getByLabel('Definition') + .fill('https://example.com/processing-levels/e2e') await page.getByRole('button', { name: 'Save' }).click() const levelRow = page.locator('tr').filter({ hasText: levelCode }).first() @@ -311,7 +317,9 @@ test.describe('metadata management', () => { await fillCombobox(page, 'Unit Type *', 'E2E Unit Type') await page.getByLabel('Symbol *').fill(`e2e${stamp}`) - await page.getByLabel('Definition *').fill('E2E unit definition') + await page + .getByLabel('Definition') + .fill(`https://example.com/units/e2e-${stamp}`) await page.getByLabel('Name *').fill(unitName) await page.getByRole('button', { name: 'Save' }).click() diff --git a/apps/data-management/src/components/Datastream/DatastreamForm.vue b/apps/data-management/src/components/Datastream/DatastreamForm.vue index d717e85d8..16e86aea1 100644 --- a/apps/data-management/src/components/Datastream/DatastreamForm.vue +++ b/apps/data-management/src/components/Datastream/DatastreamForm.vue @@ -330,12 +330,15 @@ diff --git a/apps/data-management/src/components/Datastream/DatastreamInformationPanels.vue b/apps/data-management/src/components/Datastream/DatastreamInformationPanels.vue index c5c960815..f7a30ea2f 100644 --- a/apps/data-management/src/components/Datastream/DatastreamInformationPanels.vue +++ b/apps/data-management/src/components/Datastream/DatastreamInformationPanels.vue @@ -238,9 +238,10 @@ onMounted(async () => { const pl = d.processingLevel processingLevelItems.value = [ + { label: 'Name', value: pl.name }, { label: 'Code', value: pl.code }, + { label: 'Description', value: pl.description }, { label: 'Definition', value: pl.definition }, - { label: 'Explanation', value: pl.explanation }, ] }) diff --git a/apps/data-management/src/components/Datastream/DatastreamOverviewCard.vue b/apps/data-management/src/components/Datastream/DatastreamOverviewCard.vue index 358a9d9b2..3bc351d27 100644 --- a/apps/data-management/src/components/Datastream/DatastreamOverviewCard.vue +++ b/apps/data-management/src/components/Datastream/DatastreamOverviewCard.vue @@ -12,7 +12,7 @@
- {{ datastream.processingLevel.definition }} + {{ datastream.processingLevel.name }}
Processing Level
diff --git a/apps/data-management/src/components/Datastream/DatastreamSelectorCard.vue b/apps/data-management/src/components/Datastream/DatastreamSelectorCard.vue index 57b80f9a5..2ad84fe4d 100644 --- a/apps/data-management/src/components/Datastream/DatastreamSelectorCard.vue +++ b/apps/data-management/src/components/Datastream/DatastreamSelectorCard.vue @@ -190,7 +190,7 @@ const headers = [ { title: 'ID', key: 'id' }, { title: 'Name', key: 'name' }, { title: 'Observed property', key: 'observedPropertyName' }, - { title: 'Processing level', key: 'processingLevelDefinition' }, + { title: 'Processing level', key: 'processingLevelName' }, { title: 'Description', key: 'description', sortable: false }, { title: 'Observation type', key: 'observationType' }, @@ -241,7 +241,7 @@ const tableItems = computed(() => ...ds, observedPropertyName: ds.observedProperty?.name, methodName: ds.method.name, - processingLevelDefinition: ds.processingLevel.definition, + processingLevelName: ds.processingLevel.name, unit: ds.unit.name, phenomenonBeginTime: formatTime(ds.phenomenonBeginTime), phenomenonEndTime: formatTime(ds.phenomenonEndTime), diff --git a/apps/data-management/src/components/Datastream/DatastreamTable.vue b/apps/data-management/src/components/Datastream/DatastreamTable.vue index bd832653d..73ea28123 100644 --- a/apps/data-management/src/components/Datastream/DatastreamTable.vue +++ b/apps/data-management/src/components/Datastream/DatastreamTable.vue @@ -1274,7 +1274,7 @@ const visibleDatastreams = computed(() => { ...d, OPName: op ? `${op.name} (${op.code})` : '', processingLevelCode: pl?.code ?? '', - processingLevelName: pl?.definition ?? '', + processingLevelName: pl?.name ?? '', methodName: method?.name ?? '', unitName: unit?.name ?? '', searchText: ',', diff --git a/apps/data-management/src/components/Metadata/ObservedPropertyFormCard.vue b/apps/data-management/src/components/Metadata/ObservedPropertyFormCard.vue index 362fb91a5..22fb57996 100644 --- a/apps/data-management/src/components/Metadata/ObservedPropertyFormCard.vue +++ b/apps/data-management/src/components/Metadata/ObservedPropertyFormCard.vue @@ -23,11 +23,11 @@ class="pb-4" /> - + label="Definition" + :rules="item.definition ? rules.urlFormat : []" + /> { const name = item.value.name if (name && OPNames.includes(name)) { - item.value.definition = OPNameTypes[name].definition - item.value.description = OPNameTypes[name].description + item.value.definition = '' + item.value.description = `${OPNameTypes[name].definition}. ${OPNameTypes[name].description}` } } diff --git a/apps/data-management/src/components/Metadata/ProcessingLevelFormCard.vue b/apps/data-management/src/components/Metadata/ProcessingLevelFormCard.vue index 6718fb402..7f3438682 100644 --- a/apps/data-management/src/components/Metadata/ProcessingLevelFormCard.vue +++ b/apps/data-management/src/components/Metadata/ProcessingLevelFormCard.vue @@ -14,6 +14,12 @@ validate-on="blur" > + + - diff --git a/apps/data-management/src/components/Metadata/ProcessingLevelTable.vue b/apps/data-management/src/components/Metadata/ProcessingLevelTable.vue index 6a6462a86..dae39306a 100644 --- a/apps/data-management/src/components/Metadata/ProcessingLevelTable.vue +++ b/apps/data-management/src/components/Metadata/ProcessingLevelTable.vue @@ -102,9 +102,10 @@ const ProcLevelHeaders = computed(() => { sortable?: boolean align?: 'end' }[] = [ + { title: 'Name', key: 'name' }, { title: 'Code', key: 'code' }, + { title: 'Description', key: 'description' }, { title: 'Definition', key: 'definition' }, - { title: 'Explanation', key: 'explanation' }, ] if (props.scope === 'all') base.push({ title: 'Scope', key: 'scope', sortable: false }) @@ -113,6 +114,6 @@ const ProcLevelHeaders = computed(() => { }) const sortedItems = computed(() => - items.value.sort((a, b) => a.code.localeCompare(b.code)) + items.value.sort((a, b) => a.name.localeCompare(b.name)) ) diff --git a/apps/data-management/src/components/Metadata/UnitFormCard.vue b/apps/data-management/src/components/Metadata/UnitFormCard.vue index 83bb0f160..f3a2705f0 100644 --- a/apps/data-management/src/components/Metadata/UnitFormCard.vue +++ b/apps/data-management/src/components/Metadata/UnitFormCard.vue @@ -24,8 +24,8 @@ /> ).processingLevel if (!pl) return props.datastream.processingLevelId || '-' - return [pl.code, pl.definition].filter(Boolean).join(' - ') || '-' + return [pl.code, pl.name].filter(Boolean).join(' - ') || '-' } function unit() { diff --git a/apps/data-management/src/components/VisualizeData/DataVisDatasetsTable.vue b/apps/data-management/src/components/VisualizeData/DataVisDatasetsTable.vue index fdd2b379f..a17d3e672 100644 --- a/apps/data-management/src/components/VisualizeData/DataVisDatasetsTable.vue +++ b/apps/data-management/src/components/VisualizeData/DataVisDatasetsTable.vue @@ -163,7 +163,7 @@ Processing level - {{ item.qualityControlLevelDefinition || '—' }} + {{ item.processingLevelName || '—' }}
{ ...ds, siteCodeName: monitoringSite?.code, observedPropertyName: observedPropertyDisplay, - qualityControlLevelDefinition: processingLevel?.definition, + processingLevelName: processingLevel?.name, } }) }) @@ -359,7 +359,7 @@ const selectableHeaders = computed(() => { const sortBy = [ { key: 'siteCodeName' }, { key: 'observedPropertyName' }, - { key: 'qualityControlLevelDefinition' }, + { key: 'processingLevelName' }, ] const selectedHeaders = computed({ get: () => diff --git a/apps/data-management/src/components/VisualizeData/DataVisFiltersDrawer.vue b/apps/data-management/src/components/VisualizeData/DataVisFiltersDrawer.vue index 8127205f5..434c15d72 100644 --- a/apps/data-management/src/components/VisualizeData/DataVisFiltersDrawer.vue +++ b/apps/data-management/src/components/VisualizeData/DataVisFiltersDrawer.vue @@ -247,7 +247,7 @@ const totalObservedPropertyNamesCount = computed(() => { const totalProcessingLevelNamesCount = computed(() => { const names = new Set() processingLevels.value.forEach((pl) => { - if (pl.definition) names.add(pl.definition) + if (pl.name) names.add(pl.name) }) return names.size }) @@ -287,11 +287,11 @@ const sortedProcessingLevelNames = computed(() => { return } - const definition = dataVisStore.processingLevelById.get( + const name = dataVisStore.processingLevelById.get( ds.processingLevelId - )?.definition - if (definition) { - names.add(definition) + )?.name + if (name) { + names.add(name) } }) diff --git a/apps/data-management/src/composables/useMetadata.ts b/apps/data-management/src/composables/useMetadata.ts index 2d9da71e6..4fe790d59 100644 --- a/apps/data-management/src/composables/useMetadata.ts +++ b/apps/data-management/src/composables/useMetadata.ts @@ -38,7 +38,7 @@ export function useMetadata(localWorkspace?: Ref) { const formattedProcessingLevels = computed(() => processingLevels.value.map((pl) => ({ ...pl, - title: `${pl.code}: ${pl.definition}`, + title: `${pl.code}: ${pl.name}`, })) ) diff --git a/apps/data-management/src/store/dataVisualization.ts b/apps/data-management/src/store/dataVisualization.ts index 538177b62..3f1bcdb1e 100644 --- a/apps/data-management/src/store/dataVisualization.ts +++ b/apps/data-management/src/store/dataVisualization.ts @@ -59,7 +59,7 @@ export const useDataVisStore = defineStore('dataVisualization', () => { }, { title: 'Processing Level', - key: 'qualityControlLevelDefinition', + key: 'processingLevelName', visible: true, }, { @@ -154,7 +154,7 @@ export const useDataVisStore = defineStore('dataVisualization', () => { const PLName = processingLevelById.value.get( datastream.processingLevelId - )?.definition + )?.name return ( PLName !== undefined && selectedProcessingLevelNameSet.value.has(PLName) ) diff --git a/apps/docs/docs/developing-and-contributing/how-to/using-the-typescript-client.md b/apps/docs/docs/developing-and-contributing/how-to/using-the-typescript-client.md index 89cc9714b..3e436c2ca 100644 --- a/apps/docs/docs/developing-and-contributing/how-to/using-the-typescript-client.md +++ b/apps/docs/docs/developing-and-contributing/how-to/using-the-typescript-client.md @@ -321,7 +321,8 @@ import { ObservedProperty } from "@hydroserver/client"; const observedProperty = new ObservedProperty(); observedProperty.workspaceId = "00000000-0000-0000-0000-000000000000"; observedProperty.name = "Temperature"; -observedProperty.definition = "Air temperature"; +observedProperty.definition = + "http://vocabulary.odm2.org/variablename/airTemperature/"; observedProperty.description = "Near-surface air temperature"; observedProperty.type = "Climate"; observedProperty.code = "AirTemp"; @@ -350,7 +351,7 @@ const unit = new Unit(); unit.workspaceId = "00000000-0000-0000-0000-000000000000"; unit.name = "Degree Celsius"; unit.symbol = "C"; -unit.definition = "Degree Celsius"; +unit.definition = "https://qudt.org/vocab/unit/DEG_C"; unit.type = "Temperature"; const created = await hs.units.createItem(unit); @@ -407,8 +408,8 @@ import { ProcessingLevel } from "@hydroserver/client"; const processingLevel = new ProcessingLevel(); processingLevel.workspaceId = "00000000-0000-0000-0000-000000000000"; processingLevel.code = "0"; -processingLevel.definition = "Raw"; -processingLevel.explanation = +processingLevel.name = "Raw"; +processingLevel.description = "Data have not been processed or quality controlled."; const created = await hs.processingLevels.createItem(processingLevel); diff --git a/apps/docs/docs/introduction/key-concepts/datastreams.md b/apps/docs/docs/introduction/key-concepts/datastreams.md index c88cd337d..23e57036a 100644 --- a/apps/docs/docs/introduction/key-concepts/datastreams.md +++ b/apps/docs/docs/introduction/key-concepts/datastreams.md @@ -23,17 +23,17 @@ In HydroServer, we describe datastream metadata in two groups: Below is a brief definition of each available linked metadata group a datastream can be linked to: -**- Unit** refers to the measurement units of the data (like liters, meters, etc.). Each unit has a name, description, symbol (like 'C' for degrees celsius), and type. Units for HydroServer are derived from +**- Unit** refers to the measurement units of the data (like liters, meters, etc.). Each unit has a name, symbol (like 'C' for degrees Celsius), type, and optional external definition URI. Units for HydroServer are derived from [ODM2's Units controlled vocabularies list for Units](http://vocabulary.odm2.org/units/). -**- Processing Level** indicates the degree of processing or analysis that the data within that datastream has undergone, which includes a code, definition, and explanation. Users are free to use their own conventions, but a new HydroServer instance provides the following defaults that can be loaded from templates like the other linked metadata: +**- Processing Level** indicates the degree of processing or analysis that the data within that datastream has undergone, which includes a code, name, description, and optional external definition URI. Users are free to use their own conventions, but a new HydroServer instance provides the following defaults that can be loaded from templates like the other linked metadata: -- 0: Raw data +- 0: Raw - 1: Quality controlled data - 2: Derived products - 3: Interpreted products - 4: Knowledge products -- 9999: Unknown +- -9999: Unknown **- Observed Property** is the specific characteristic or attribute being observed, like temperature or flow rate. As with Units, we have adopted [ODM2's Observed Property controlled vocabularies list](http://vocabulary.odm2.org/variablename/). diff --git a/apps/docs/docs/references/data-dictionary.md b/apps/docs/docs/references/data-dictionary.md index e0f903ab7..c66386c4b 100644 --- a/apps/docs/docs/references/data-dictionary.md +++ b/apps/docs/docs/references/data-dictionary.md @@ -65,9 +65,9 @@ An ObservedProperty specifies the phenomenon of an Observation, such as flow, te | M | id | A primary key unique identifier for the ObservedProperty. | UUID | | O | workspace_id | A foreign key identifier for the Workspace that owns the ObservedProperty. If omitted, the ObservedProperty is shared system-wide. | UUID | | M | name | A descriptive name for the ObservedProperty. | String | -| M | definition | A text definition of the ObservedProperty or a URL pointing to a controlled definition. | Text | +| O | definition | A URI pointing to an externally controlled definition of the ObservedProperty. | URI | | M | description | A text description of the ObservedProperty. | Text | -| M | observed_property_type | The type of ObservedProperty. | String | +| M | type | The type of ObservedProperty. | String | | M | code | A brief text code identifying the ObservedProperty. | String | ## Organization @@ -119,8 +119,9 @@ The degree of quality control or processing to which a Datastream has been subje | M | id | A primary key unique identifier for the ProcessingLevel. | UUID | | O | workspace_id | A foreign key identifier for the Workspace that owns the ProcessingLevel. If omitted, the ProcessingLevel is shared system-wide. | UUID | | M | code | A brief text code identifying the ProcessingLevel. | String | -| O | definition | A text definition of the ProcessingLevel. | Text | -| O | explanation | A longer text explanation of the ProcessingLevel. | Text | +| M | name | A descriptive name for the ProcessingLevel. | String | +| M | description | A text description of the ProcessingLevel. | Text | +| O | definition | A URI pointing to an externally controlled definition of the ProcessingLevel. | URI | ## ResultQualifier @@ -194,8 +195,8 @@ The unit of measure associated with the Observations within a Datastream. | O | workspace_id | A foreign key identifier for the Workspace that owns the Unit. If omitted, the Unit is shared system-wide. | UUID | | M | name | A descriptive name for the Unit. | String | | M | symbol | An abbreviation or symbol used for the Unit. | String | -| M | definition | A URL or text definition for the Unit. | Text | -| M | unit_type | The type of Unit. | String | +| O | definition | A URI pointing to an externally controlled definition of the Unit. | URI | +| M | type | The type of Unit. | String | ## Workspace diff --git a/apps/docs/docs/references/diagrams/HydroServer_Data_Model.drawio b/apps/docs/docs/references/diagrams/HydroServer_Data_Model.drawio index f77f3c169..f61a32e43 100644 --- a/apps/docs/docs/references/diagrams/HydroServer_Data_Model.drawio +++ b/apps/docs/docs/references/diagrams/HydroServer_Data_Model.drawio @@ -995,7 +995,7 @@ - + @@ -1044,7 +1044,7 @@ - + @@ -1057,7 +1057,20 @@ - + + + + + + + + + + + + + + @@ -1120,7 +1133,7 @@ - + @@ -1227,7 +1240,7 @@ - + diff --git a/apps/docs/docs/user-guides/how-to/using-the-python-client.md b/apps/docs/docs/user-guides/how-to/using-the-python-client.md index 04aa6dfdd..9ea02c7b1 100644 --- a/apps/docs/docs/user-guides/how-to/using-the-python-client.md +++ b/apps/docs/docs/user-guides/how-to/using-the-python-client.md @@ -275,9 +275,9 @@ hs_api.methods.create(name, description, type, code=None, definition=None, |---|---|---| | `uid` | `UUID` | No | | `name` | `str` | Yes | -| `definition` | `str` | Yes | +| `definition` | `str \| None` | Yes | | `description` | `str` | Yes | -| `observed_property_type` | `str` | Yes | +| `type` | `str` | Yes | | `code` | `str` | Yes | | `workspace_id` | `UUID \| None` | No | | `workspace` | `Workspace \| None` | No | Computed | @@ -285,8 +285,8 @@ hs_api.methods.create(name, description, type, code=None, definition=None, ```python hs_api.observedproperties.list(workspace=None) -> HydroServerCollection[ObservedProperty] hs_api.observedproperties.get(uid) -> ObservedProperty -hs_api.observedproperties.create(workspace, name, definition, description, - observed_property_type, code, uid=None) -> ObservedProperty +hs_api.observedproperties.create(name, description, type, code, definition=None, + workspace=None, uid=None) -> ObservedProperty ``` ### Units @@ -298,15 +298,15 @@ hs_api.observedproperties.create(workspace, name, definition, description, | `uid` | `UUID` | No | | `name` | `str` | Yes | | `symbol` | `str` | Yes | -| `definition` | `str` | Yes | -| `unit_type` | `str` | Yes | +| `definition` | `str \| None` | Yes | +| `type` | `str` | Yes | | `workspace_id` | `UUID \| None` | No | | `workspace` | `Workspace \| None` | No | Computed | ```python hs_api.units.list(workspace=None) -> HydroServerCollection[Unit] hs_api.units.get(uid) -> Unit -hs_api.units.create(workspace, name, symbol, definition, unit_type, uid=None) -> Unit +hs_api.units.create(name, symbol, type, definition=None, workspace=None, uid=None) -> Unit ``` ### Processing Levels @@ -317,15 +317,16 @@ hs_api.units.create(workspace, name, symbol, definition, unit_type, uid=None) -> |---|---|---| | `uid` | `UUID` | No | | `code` | `str` | Yes | +| `name` | `str` | Yes | +| `description` | `str` | Yes | | `definition` | `str \| None` | Yes | -| `explanation` | `str \| None` | Yes | | `workspace_id` | `UUID \| None` | No | | `workspace` | `Workspace \| None` | No | Computed | ```python hs_api.processinglevels.list(workspace=None) -> HydroServerCollection[ProcessingLevel] hs_api.processinglevels.get(uid) -> ProcessingLevel -hs_api.processinglevels.create(workspace, code, definition=None, explanation=None, uid=None) -> ProcessingLevel +hs_api.processinglevels.create(code, name, description, definition=None, workspace=None, uid=None) -> ProcessingLevel ``` ### Result Qualifiers diff --git a/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-1-setting-up-your-site-and-datastreams.md b/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-1-setting-up-your-site-and-datastreams.md index 23ebde051..259c8308d 100644 --- a/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-1-setting-up-your-site-and-datastreams.md +++ b/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-1-setting-up-your-site-and-datastreams.md @@ -97,7 +97,7 @@ discharge_observed_property = hs_api.observedproperties.create( name='Discharge', definition='http://vocabulary.odm2.org/variablename/discharge/', description='Discharge is the flow rate of water per unit time.', - observed_property_type='Hydrology', + type='Hydrology', code='discharge' ) ``` @@ -110,7 +110,7 @@ discharge_unit = hs_api.units.create( name='Cubic meters per second', symbol='m3^s', definition='https://qudt.org/vocab/unit/M3-PER-SEC', - unit_type='Flow rate' + type='Flow rate' ) ``` @@ -122,8 +122,8 @@ Processing levels describe how much quality control or processing the data has b raw_processing_level = hs_api.processinglevels.create( workspace=workspace, code='0', - definition='Raw', - explanation='Data have not been processed or quality controlled.', + name='Raw', + description='Data have not been processed or quality controlled.', ) ``` diff --git a/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-3-automating-data-ingestion.md b/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-3-automating-data-ingestion.md index c5e67de58..27da3b0f9 100644 --- a/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-3-automating-data-ingestion.md +++ b/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-3-automating-data-ingestion.md @@ -47,7 +47,7 @@ gage_height_property = hs_api.observedproperties.create( name='Gage Height', definition='http://vocabulary.odm2.org/variablename/gageHeight/', description='Height of the water surface above a local datum.', - observed_property_type='Hydrology', + type='Hydrology', code='GAGE_HEIGHT', ) @@ -57,15 +57,15 @@ feet_unit = hs_api.units.create( name='Foot', symbol='ft', definition='https://qudt.org/vocab/unit/FT', - unit_type='Length', + type='Length', ) # Processing level (reuse the one we created in Part 1, or recreate it) raw_processing_level = hs_api.processinglevels.create( workspace=workspace, code='0', - definition='Raw', - explanation='Data have not been processed or quality controlled.', + name='Raw', + description='Data have not been processed or quality controlled.', ) # Datastream diff --git a/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-4-creating-data-products.md b/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-4-creating-data-products.md index 77e2034f9..61f60408d 100644 --- a/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-4-creating-data-products.md +++ b/apps/docs/docs/user-guides/tutorials/getting-started-with-hydroserverpy/part-4-creating-data-products.md @@ -18,8 +18,8 @@ Each transformation needs an output datastream to write its results into. We'll derived_processing_level = hs_api.processinglevels.create( workspace=workspace, code='1', - definition='Derived', - explanation='Data have been computed or derived from raw measurements.', + name='Derived', + description='Data have been computed or derived from raw measurements.', ) # Meters unit for the unit conversion output @@ -28,7 +28,7 @@ meters_unit = hs_api.units.create( name='Meter', symbol='m', definition='https://qudt.org/vocab/unit/M', - unit_type='Length', + type='Length', ) # Output datastream for the daily aggregation diff --git a/apps/docs/docs/user-guides/tutorials/hydroserver-101/part-2-creating-your-first-datastream.md b/apps/docs/docs/user-guides/tutorials/hydroserver-101/part-2-creating-your-first-datastream.md index f6e46a020..2e6f09396 100644 --- a/apps/docs/docs/user-guides/tutorials/hydroserver-101/part-2-creating-your-first-datastream.md +++ b/apps/docs/docs/user-guides/tutorials/hydroserver-101/part-2-creating-your-first-datastream.md @@ -34,10 +34,10 @@ If you'd like to follow along exactly, we'll be creating a datastream that repre **Observed Property** - name: Temperature -- definition: Temperature +- definition: http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=VariableNameCV - description: Originally from the CUAHSI HIS VariableNameCV. See: http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=VariableNameCV. -- variable type: Hydrology -- variable code: temp +- type: Hydrology +- code: temp sensor form diff --git a/apps/qc-app/e2e/support/fixtures.ts b/apps/qc-app/e2e/support/fixtures.ts index a29bff6d0..fa7a97fff 100644 --- a/apps/qc-app/e2e/support/fixtures.ts +++ b/apps/qc-app/e2e/support/fixtures.ts @@ -74,8 +74,9 @@ export const processingLevels = [ id: PROC_LEVEL_ID, workspaceId: WORKSPACE_ID, code: 'Raw', - definition: 'Raw data', - explanation: 'Unprocessed readings', + name: 'Raw', + description: 'Unprocessed readings', + definition: 'https://example.com/processing-levels/raw', }, ] @@ -86,7 +87,7 @@ export const observedProperties = [ name: 'Streamflow', type: 'Hydrology', code: 'Q', - definition: 'Stream discharge', + definition: 'https://example.com/observed-properties/streamflow', description: 'Flow rate at the gauge', }, { @@ -95,7 +96,7 @@ export const observedProperties = [ name: 'Water Temperature', type: 'Hydrology', code: 'T', - definition: 'Water temperature', + definition: 'https://example.com/observed-properties/water-temperature', description: 'In-stream water temperature', }, ] @@ -106,7 +107,7 @@ export const units = [ workspaceId: WORKSPACE_ID, name: 'cubic meters per second', symbol: 'm³/s', - definition: 'SI unit of volumetric flow rate', + definition: 'https://qudt.org/vocab/unit/M3-PER-SEC', type: 'Flow', }, { @@ -114,7 +115,7 @@ export const units = [ workspaceId: WORKSPACE_ID, name: 'degrees Celsius', symbol: '°C', - definition: 'SI unit of temperature', + definition: 'https://qudt.org/vocab/unit/DEG_C', type: 'Temperature', }, ] @@ -162,20 +163,21 @@ export const datastreams = [ id: OBSERVED_PROP_ID, name: 'Streamflow', code: 'Q', - definition: 'Stream discharge', + definition: 'https://example.com/observed-properties/streamflow', type: 'Hydrology', }, processingLevel: { id: PROC_LEVEL_ID, code: 'Raw', - definition: 'Raw data', - explanation: 'Unprocessed readings', + name: 'Raw', + description: 'Unprocessed readings', + definition: 'https://example.com/processing-levels/raw', }, unit: { id: UNIT_ID, name: 'cubic meters per second', symbol: 'm³/s', - definition: 'SI unit of volumetric flow rate', + definition: 'https://qudt.org/vocab/unit/M3-PER-SEC', type: 'Flow', }, }, @@ -216,20 +218,21 @@ export const datastreams = [ id: OBSERVED_PROP_ID_B, name: 'Water Temperature', code: 'T', - definition: 'Water temperature', + definition: 'https://example.com/observed-properties/water-temperature', type: 'Hydrology', }, processingLevel: { id: PROC_LEVEL_ID, code: 'Raw', - definition: 'Raw data', - explanation: 'Unprocessed readings', + name: 'Raw', + description: 'Unprocessed readings', + definition: 'https://example.com/processing-levels/raw', }, unit: { id: UNIT_ID_B, name: 'degrees Celsius', symbol: '°C', - definition: 'SI unit of temperature', + definition: 'https://qudt.org/vocab/unit/DEG_C', type: 'Temperature', }, }, diff --git a/apps/qc-app/src/components/VisualizeData/DataVisDatasetsTable.vue b/apps/qc-app/src/components/VisualizeData/DataVisDatasetsTable.vue index 763442eb2..bfa3be818 100644 --- a/apps/qc-app/src/components/VisualizeData/DataVisDatasetsTable.vue +++ b/apps/qc-app/src/components/VisualizeData/DataVisDatasetsTable.vue @@ -303,7 +303,7 @@ const tableItems = computed(() => { siteCodeName: ds.monitoringSite?.code ?? '', siteName: ds.monitoringSite?.name ?? '', observedPropertyName: ds.observedProperty?.name ?? '', - qualityControlLevelDefinition: ds.processingLevel?.definition ?? '', + processingLevelName: ds.processingLevel?.name ?? '', } }) }) @@ -364,7 +364,7 @@ const headers = reactive([ }, { title: 'Processing level', - key: 'qualityControlLevelDefinition', + key: 'processingLevelName', visible: true, }, { diff --git a/apps/qc-app/src/components/VisualizeData/DatastreamFilters.vue b/apps/qc-app/src/components/VisualizeData/DatastreamFilters.vue index 972b36848..da1b86694 100644 --- a/apps/qc-app/src/components/VisualizeData/DatastreamFilters.vue +++ b/apps/qc-app/src/components/VisualizeData/DatastreamFilters.vue @@ -136,8 +136,8 @@ const searchProcessingLevel = ref('') const sortedProcessingLevelNames = computed(() => { const filteredPLs = processingLevels.value.filter( (pl) => - pl.definition - ?.toLowerCase() + pl.name + .toLowerCase() .includes(searchProcessingLevel.value.toLowerCase()) && datastreams.value.some( (ds) => @@ -146,7 +146,7 @@ const sortedProcessingLevelNames = computed(() => { matchesSelectedObservedProperty(ds) ) ) - const names = filteredPLs.map((pl) => pl.definition) + const names = filteredPLs.map((pl) => pl.name) return [...new Set(names)].sort() }) diff --git a/apps/qc-app/src/components/VisualizeData/DatastreamInformationCard.vue b/apps/qc-app/src/components/VisualizeData/DatastreamInformationCard.vue index dcaf2b78c..9bf2baa95 100644 --- a/apps/qc-app/src/components/VisualizeData/DatastreamInformationCard.vue +++ b/apps/qc-app/src/components/VisualizeData/DatastreamInformationCard.vue @@ -57,7 +57,7 @@ color="deep-purple" variant="tonal" prepend-icon="mdi-layers" - :title="`Filter table by processing level: ${datastream.processingLevel.definition}`" + :title="`Filter table by processing level: ${datastream.processingLevel.name}`" @click="filterByProcessingLevel" > {{ datastream.processingLevel.code || '–' }} @@ -258,9 +258,9 @@ function filterByObservedProperty() { } function filterByProcessingLevel() { - const def = props.datastream.processingLevel?.definition - if (!def) return - selectedProcessingLevelNames.value = [def] + const name = props.datastream.processingLevel?.name + if (!name) return + selectedProcessingLevelNames.value = [name] emit('close') } @@ -394,9 +394,10 @@ const processingLevelItems = computed(() => { const pl = d.value.processingLevel if (!pl) return [] return [ + { label: 'Name', value: pl.name }, { label: 'Code', value: pl.code }, + { label: 'Description', value: pl.description }, { label: 'Definition', value: pl.definition }, - { label: 'Explanation', value: pl.explanation }, ] }) diff --git a/apps/qc-app/src/components/VisualizeData/__tests__/DatastreamFilters.spec.ts b/apps/qc-app/src/components/VisualizeData/__tests__/DatastreamFilters.spec.ts index c9f72082a..0b102f28c 100644 --- a/apps/qc-app/src/components/VisualizeData/__tests__/DatastreamFilters.spec.ts +++ b/apps/qc-app/src/components/VisualizeData/__tests__/DatastreamFilters.spec.ts @@ -7,7 +7,7 @@ import { createTestVuetify } from '@/utils/test/vuetify' const monitoringSiteA = { id: 't-a', name: 'Alpha' } const monitoringSiteB = { id: 't-b', name: 'Beta' } const opX = { id: 'op-x', name: 'Temp' } -const plY = { id: 'pl-y', definition: 'Raw' } +const plY = { id: 'pl-y', name: 'Raw' } const monitoringSites = ref([monitoringSiteA, monitoringSiteB]) const datastreams = ref([ diff --git a/apps/qc-app/src/store/__tests__/dataVisualization.spec.ts b/apps/qc-app/src/store/__tests__/dataVisualization.spec.ts index 0d797160a..fdb85b09e 100644 --- a/apps/qc-app/src/store/__tests__/dataVisualization.spec.ts +++ b/apps/qc-app/src/store/__tests__/dataVisualization.spec.ts @@ -53,7 +53,7 @@ const makeDs = (overrides: Record = {}) => ({ name: 'Stream 1', monitoringSite: { id: 'monitoringSite-1' }, observedProperty: { name: 'Temperature' }, - processingLevel: { definition: 'Raw' }, + processingLevel: { name: 'Raw' }, ...overrides, }) @@ -102,12 +102,12 @@ describe('useDataVisStore.filteredDatastreams', () => { expect(store.filteredDatastreams.map((d) => d.id)).toEqual(['b']) }) - it('filters by processing level definition', async () => { + it('filters by processing level name', async () => { const { useDataVisStore } = await import('@/store/dataVisualization') const store = useDataVisStore() store.datastreams = [ - makeDs({ id: 'a', processingLevel: { definition: 'Raw' } }), - makeDs({ id: 'b', processingLevel: { definition: 'QC' } }), + makeDs({ id: 'a', processingLevel: { name: 'Raw' } }), + makeDs({ id: 'b', processingLevel: { name: 'QC' } }), ] as any store.selectedProcessingLevelNames = ['QC'] expect(store.filteredDatastreams.map((d) => d.id)).toEqual(['b']) diff --git a/apps/qc-app/src/store/dataVisualization.ts b/apps/qc-app/src/store/dataVisualization.ts index 9aed7ec25..f6de8aae7 100644 --- a/apps/qc-app/src/store/dataVisualization.ts +++ b/apps/qc-app/src/store/dataVisualization.ts @@ -260,8 +260,8 @@ export const useDataVisStore = defineStore('dataVisualization', () => { datastream: Datastream & DatastreamExtended ) { if (selectedProcessingLevelNames.value.length === 0) return true - const def = datastream.processingLevel?.definition - return !!def && selectedProcessingLevelNames.value.includes(def) + const name = datastream.processingLevel?.name + return !!name && selectedProcessingLevelNames.value.includes(name) } function matchesSelectedMonitoringSite(datastream: Datastream & DatastreamExtended) { diff --git a/django/contracts/openapi/data.openapi.json b/django/contracts/openapi/data.openapi.json index 9fd1bf81f..7de037805 100644 --- a/django/contracts/openapi/data.openapi.json +++ b/django/contracts/openapi/data.openapi.json @@ -6878,13 +6878,20 @@ "ObservedPropertyDetailResponse": { "properties": { "code": { - "maxLength": 255, + "maxLength": 500, "title": "Code", "type": "string" }, "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "description": { "title": "Description", @@ -6901,7 +6908,7 @@ "type": "string" }, "type": { - "maxLength": 255, + "maxLength": 500, "title": "Type", "type": "string" }, @@ -6918,7 +6925,6 @@ }, "required": [ "name", - "definition", "description", "type", "code", @@ -6931,13 +6937,20 @@ "ObservedPropertyPatchBody": { "properties": { "code": { - "maxLength": 255, + "maxLength": 500, "title": "Code", "type": "string" }, "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "description": { "title": "Description", @@ -6949,7 +6962,7 @@ "type": "string" }, "type": { - "maxLength": 255, + "maxLength": 500, "title": "Type", "type": "string" } @@ -6960,13 +6973,20 @@ "ObservedPropertyPostBody": { "properties": { "code": { - "maxLength": 255, + "maxLength": 500, "title": "Code", "type": "string" }, "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "description": { "title": "Description", @@ -6990,7 +7010,7 @@ "type": "string" }, "type": { - "maxLength": 255, + "maxLength": 500, "title": "Type", "type": "string" }, @@ -7009,7 +7029,6 @@ }, "required": [ "name", - "definition", "description", "type", "code", @@ -7154,13 +7173,20 @@ "ObservedPropertySummaryResponse": { "properties": { "code": { - "maxLength": 255, + "maxLength": 500, "title": "Code", "type": "string" }, "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "description": { "title": "Description", @@ -7177,7 +7203,7 @@ "type": "string" }, "type": { - "maxLength": 255, + "maxLength": 500, "title": "Type", "type": "string" }, @@ -7196,7 +7222,6 @@ }, "required": [ "name", - "definition", "description", "type", "code", @@ -7477,22 +7502,20 @@ ], "title": "Definition" }, - "explanation": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Explanation" + "description": { + "title": "Description", + "type": "string" }, "id": { "format": "uuid", "title": "Id", "type": "string" }, + "name": { + "maxLength": 255, + "title": "Name", + "type": "string" + }, "workspace": { "anyOf": [ { @@ -7506,6 +7529,8 @@ }, "required": [ "code", + "name", + "description", "id", "workspace" ], @@ -7530,16 +7555,14 @@ ], "title": "Definition" }, - "explanation": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Explanation" + "description": { + "title": "Description", + "type": "string" + }, + "name": { + "maxLength": 255, + "title": "Name", + "type": "string" } }, "title": "ProcessingLevelPatchBody", @@ -7563,16 +7586,9 @@ ], "title": "Definition" }, - "explanation": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Explanation" + "description": { + "title": "Description", + "type": "string" }, "id": { "anyOf": [ @@ -7586,6 +7602,11 @@ ], "title": "Id" }, + "name": { + "maxLength": 255, + "title": "Name", + "type": "string" + }, "workspaceId": { "anyOf": [ { @@ -7600,7 +7621,9 @@ } }, "required": [ - "code" + "code", + "name", + "description" ], "title": "ProcessingLevelPostBody", "type": "object" @@ -7660,7 +7683,9 @@ "items": { "enum": [ "code", - "-code" + "name", + "-code", + "-name" ], "type": "string" }, @@ -7743,22 +7768,20 @@ ], "title": "Definition" }, - "explanation": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Explanation" + "description": { + "title": "Description", + "type": "string" }, "id": { "format": "uuid", "title": "Id", "type": "string" }, + "name": { + "maxLength": 255, + "title": "Name", + "type": "string" + }, "workspaceId": { "anyOf": [ { @@ -7774,6 +7797,8 @@ }, "required": [ "code", + "name", + "description", "id", "workspaceId" ], @@ -10447,8 +10472,15 @@ "UnitDetailResponse": { "properties": { "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "id": { "format": "uuid", @@ -10484,7 +10516,6 @@ "required": [ "name", "symbol", - "definition", "type", "id", "workspace" @@ -10495,8 +10526,15 @@ "UnitPatchBody": { "properties": { "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "name": { "maxLength": 255, @@ -10520,8 +10558,15 @@ "UnitPostBody": { "properties": { "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "id": { "anyOf": [ @@ -10566,7 +10611,6 @@ "required": [ "name", "symbol", - "definition", "type" ], "title": "UnitPostBody", @@ -10708,8 +10752,15 @@ "UnitSummaryResponse": { "properties": { "definition": { - "title": "Definition", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Definition" }, "id": { "format": "uuid", @@ -10747,7 +10798,6 @@ "required": [ "name", "symbol", - "definition", "type", "id", "workspaceId" @@ -10928,25 +10978,20 @@ }, "VisualizationProcessingLevelResponse": { "properties": { - "definition": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Definition" - }, "id": { "format": "uuid", "title": "Id", "type": "string" + }, + "name": { + "maxLength": 255, + "title": "Name", + "type": "string" } }, "required": [ - "id" + "id", + "name" ], "title": "VisualizationProcessingLevelResponse", "type": "object" @@ -20631,7 +20676,9 @@ "items": { "enum": [ "code", - "-code" + "name", + "-code", + "-name" ], "type": "string" }, diff --git a/django/core/sta/admin.py b/django/core/sta/admin.py index e4a13c277..6d97f915d 100644 --- a/django/core/sta/admin.py +++ b/django/core/sta/admin.py @@ -87,7 +87,7 @@ def load_default_data(self, request): class ProcessingLevelAdmin(admin.ModelAdmin, VocabularyAdmin): - list_display = ("id", "code", "workspace__name") + list_display = ("id", "name", "code", "workspace__name") change_list_template = "admin/sta/processinglevel/change_list.html" def get_urls(self): diff --git a/django/core/sta/fixtures/default_processing_levels.yaml b/django/core/sta/fixtures/default_processing_levels.yaml index 7b77adde8..e9bacd11c 100644 --- a/django/core/sta/fixtures/default_processing_levels.yaml +++ b/django/core/sta/fixtures/default_processing_levels.yaml @@ -3,8 +3,8 @@ pk: d3fca6a6-a576-40a4-9360-0a855e0e8d24 fields: code: '0' - definition: Raw data - explanation: >- + name: Raw + description: >- Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the @@ -15,8 +15,8 @@ pk: fa49811b-d8e8-44db-872a-94cbb5ef5740 fields: code: '3' - definition: Interpreted products - explanation: >- + name: Interpreted products + description: >- Interpreted products that require researcher driven analysis and interpretation, model-based interpretation using other data and/or strong prior assumptions. An example is basin average precipitation derived from @@ -26,15 +26,15 @@ pk: f24fbde3-5b19-40ad-b36e-d28f60aa36c4 fields: code: '-9999' - definition: Unknown - explanation: The quality control level is unknown + name: Unknown + description: The quality control level is unknown workspace_id: null - model: sta.processinglevel pk: ede66c0c-7752-4306-80b0-139e732c6f9d fields: code: '4' - definition: Knowledge products - explanation: >- + name: Knowledge products + description: >- Knowledge products that require researcher driven scientific interpretation and multidisciplinary data integration and include model-based interpretation using other data and/or strong prior @@ -45,8 +45,8 @@ pk: 5efef0da-ba32-4ae6-8d68-709a37c4a8dd fields: code: '1' - definition: Quality controlled data - explanation: >- + name: Quality controlled data + description: >- Quality controlled data that have passed quality assurance procedures such as routine estimation of timing and sensor calibration or visual inspection and removal of obvious errors. An example is USGS published @@ -57,9 +57,9 @@ pk: b292e0de-3ba8-4b0b-842e-9add4dc99792 fields: code: '2' - definition: Derived products - explanation: >- + name: Derived products + description: >- Derived products that require scientific and technical interpretation and may include multiple-sensor data. An example is basin average precipitation derived from rain gauges using an interpolation procedure. - workspace_id: null \ No newline at end of file + workspace_id: null diff --git a/django/core/sta/fixtures/default_units.yaml b/django/core/sta/fixtures/default_units.yaml index ad7798c09..56a08b13a 100644 --- a/django/core/sta/fixtures/default_units.yaml +++ b/django/core/sta/fixtures/default_units.yaml @@ -7,7 +7,7 @@ definition: >- http://qudt.org/vocab/unit#Bit; http://unitsofmeasure.org/ucum.html#para-48 - unit_type: Amount of information + type: Amount of information workspace_id: null - model: sta.unit pk: 79c2a1fc-454a-4641-8202-750a3214e890 @@ -15,7 +15,7 @@ name: Pula symbol: BWP definition: 'http://qudt.org/vocab/unit#Pula' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 1470c985-a31e-4e36-bd92-c733a053d120 @@ -23,7 +23,7 @@ name: Potential Vorticity Unit symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Potential vorticity + type: Potential vorticity workspace_id: null - model: sta.unit pk: b9f7ca40-4f1d-4966-a0cb-fdc521a9cea5 @@ -31,7 +31,7 @@ name: Square Meter symbol: m^2 definition: 'http://qudt.org/vocab/unit#SquareMeter' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: d819b292-ee0c-443b-ace7-a093ac88b3a7 @@ -41,7 +41,7 @@ definition: >- http://qudt.org/vocab/unit#InternationalUnit; http://unitsofmeasure.org/ucum.html#para-45 - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: 5bd371aa-ff7d-436d-a1c4-a47b3ce60a87 @@ -51,7 +51,7 @@ definition: >- http://qudt.org/vocab/unit#Carat, http://unitsofmeasure.org/ucum.html#para-47 - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: acd65515-0b0f-48ca-9dab-92461cfaae90 @@ -59,7 +59,7 @@ name: ElectronVolt Second symbol: eV s definition: 'http://qudt.org/vocab/unit#ElectronVoltSecond' - unit_type: Angular momentum + type: Angular momentum workspace_id: null - model: sta.unit pk: fcc82c51-8fb5-491f-8763-67daf6bdc830 @@ -67,7 +67,7 @@ name: 'Fluid Ounce, Metric' symbol: foz_m definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: d4ce8602-90dd-4299-9551-5dbfb14403f1 @@ -75,7 +75,7 @@ name: Megabit per Second symbol: mbps definition: 'http://qudt.org/vocab/unit#MegabitsPerSecond' - unit_type: Data rate + type: Data rate workspace_id: null - model: sta.unit pk: 5b106880-5b6a-4b32-8646-f7459cf80df0 @@ -85,7 +85,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 091ec0f4-65fe-4d8c-a6c3-89e626c27f1e @@ -93,7 +93,7 @@ name: Degree per Second symbol: deg/s definition: 'http://qudt.org/vocab/unit#DegreePerSecond' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: be038a5f-673b-420b-9764-d4127634d6bb @@ -104,7 +104,7 @@ http://qudt.org/vocab/unit#Sievert; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Dose equivalent + type: Dose equivalent workspace_id: null - model: sta.unit pk: c9600e49-bcea-4f8a-a680-d49a6bd4cf67 @@ -114,7 +114,7 @@ definition: >- http://qudt.org/vocab/unit#DryGallonUS; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: cef07035-d60b-4098-9e3b-b10e48f71de0 @@ -122,7 +122,7 @@ name: 'Knot, British' symbol: kn_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: d7488242-3111-4193-b69c-fe87fd88822d @@ -130,7 +130,7 @@ name: Dobra symbol: STD definition: 'http://qudt.org/vocab/unit#Dobra' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 1c4ea680-3b8e-4426-ab33-cf3e6089daa4 @@ -138,7 +138,7 @@ name: Kina symbol: PGK definition: 'http://qudt.org/vocab/unit#Kina' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 7ee7a6cd-a35a-44b6-b0cd-dbff67d8b30a @@ -146,7 +146,7 @@ name: Watt per Square Foot symbol: W/ft^2 definition: 'http://qudt.org/vocab/unit#WattPerSquareFoot' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 8fa59f7a-4b40-4aa5-9dd4-49c2c5ec7b64 @@ -154,7 +154,7 @@ name: Microinch symbol: in^-6 definition: 'http://qudt.org/vocab/unit#MicroInch' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: dae62fda-fdee-4830-b760-b93785a9fa25 @@ -162,7 +162,7 @@ name: Centimeter symbol: cm definition: 'http://qudt.org/vocab/unit#Centimeter' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 45752e4d-03f2-4fbd-909a-e8fde3898fc3 @@ -170,7 +170,7 @@ name: Planck Charge symbol: Q_p definition: 'http://qudt.org/vocab/unit#PlanckCharge' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 74bf6a1b-a2e8-40f5-9af3-295fb0d38c37 @@ -180,7 +180,7 @@ definition: >- http://environment.data.gov.au/def/unit/LitrePerSecond; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 5695bd78-67c8-4a80-8772-bfca92aa891b @@ -192,7 +192,7 @@ http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Illuminance + type: Illuminance workspace_id: null - model: sta.unit pk: 6c7d3472-a7b1-4c06-ad78-a2b53dbd8d68 @@ -200,7 +200,7 @@ name: Pace symbol: pc_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: eb6a3704-5fdb-4aeb-b0cb-4d4eb57e4dd4 @@ -208,7 +208,7 @@ name: Cicero symbol: cicero definition: 'http://unitsofmeasure.org/ucum.html#para-42' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 0c95ed0f-e0ea-478b-a1c6-7976272d06d4 @@ -216,7 +216,7 @@ name: Hectare Meter symbol: hec m definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 9949fefe-589c-44de-a7e2-50edc1ff7d16 @@ -224,7 +224,7 @@ name: Pound per Gallon symbol: lb/gal definition: 'http://qudt.org/vocab/unit#PoundPerGallon' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 4e0510da-5d27-4cdb-b0cb-993ff8c4b970 @@ -232,7 +232,7 @@ name: Milliequivalent per Hectogram symbol: meq/hg definition: 'http://environment.data.gov.au/def/unit/MilliEquivalentPerHectoGram' - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: bfddfdc4-a198-4383-9be6-05afe597ad3a @@ -242,7 +242,7 @@ definition: >- http://qudt.org/vocab/unit#Statohm; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electrical resistance + type: Electrical resistance workspace_id: null - model: sta.unit pk: 8d25c153-5647-4e02-97e8-461eaaa4f837 @@ -250,7 +250,7 @@ name: Squared Degree Celsius symbol: (DegC)^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: 79e1965c-4a28-427b-ad92-e86c7eb0a1ac @@ -260,7 +260,7 @@ definition: >- http://qudt.org/vocab/unit#Stathenry; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Inductance + type: Inductance workspace_id: null - model: sta.unit pk: f70c6510-f5b3-40c5-a2a6-ee25bdcc755a @@ -270,7 +270,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 03991df7-5803-4179-83bf-6c4bdbe06dd8 @@ -280,7 +280,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: d1102202-4d32-42d8-9b58-cfd050286943 @@ -289,7 +289,7 @@ symbol: Perm 23C definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Fluid permeance + type: Fluid permeance workspace_id: null - model: sta.unit pk: 121dde58-30af-4030-b2d7-69dcb519a16b @@ -297,7 +297,7 @@ name: Square Coulomb Meter per Joule symbol: C^2 m^2 J^-1 definition: 'http://qudt.org/vocab/unit#SquareCoulombMeterPerJoule' - unit_type: Polarizability + type: Polarizability workspace_id: null - model: sta.unit pk: 597515f7-3c5e-4f99-95f8-8b02dfe625f7 @@ -305,7 +305,7 @@ name: Number symbol: '#' definition: 'http://qudt.org/vocab/unit#Number' - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: 7350f784-b312-463a-a480-065b6d0e12bd @@ -313,7 +313,7 @@ name: Degree per Hour symbol: deg/h definition: 'http://qudt.org/vocab/unit#DegreePerHour' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: 8df327ac-bfb6-4a14-a8df-b20ca25fdaa1 @@ -323,7 +323,7 @@ definition: >- http://qudt.org/vocab/unit#Gray; http://unitsofmeasure.org/ucum.html#para-30 - unit_type: Absorbed dose + type: Absorbed dose workspace_id: null - model: sta.unit pk: 64fc026e-93fe-4bb5-8022-0a8cf7f85b35 @@ -331,7 +331,7 @@ name: Pound per Minute symbol: lb/min definition: 'http://qudt.org/vocab/unit#PoundPerMinute' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 5a2964e4-e6e8-4aae-98d4-bee65f7f8089 @@ -341,7 +341,7 @@ definition: >- http://qudt.org/vocab/unit#KilogramForce; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 7e8cf68a-fd80-4cdd-aed9-6e11a31bd1a8 @@ -351,7 +351,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 718c564e-6072-4c4c-a275-435e6807f1a7 @@ -359,7 +359,7 @@ name: Pound per Foot Second symbol: lb/(ft-s) definition: 'http://qudt.org/vocab/unit#PoundPerFootSecond' - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: b8777294-5b49-4fb8-acbb-d56643a3759b @@ -369,7 +369,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 36afc78f-daf1-4542-bedc-b432e1f4c832 @@ -377,7 +377,7 @@ name: Kilohertz symbol: KHz definition: 'http://qudt.org/vocab/unit#KiloHertz' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 6f8b6391-eee8-4cc1-9782-6a8542cd921e @@ -388,7 +388,7 @@ http://environment.data.gov.au/def/unit/MilliVolt; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Electromotive force + type: Electromotive force workspace_id: null - model: sta.unit pk: c3565819-d033-4110-a413-0d45ba816eb2 @@ -396,7 +396,7 @@ name: Millihenry symbol: milliH definition: 'http://qudt.org/vocab/unit#MilliHenry' - unit_type: Inductance + type: Inductance workspace_id: null - model: sta.unit pk: 323f76ed-e6fa-4fc8-95fb-f5de280ebcab @@ -405,7 +405,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 75d927c4-3840-4c41-a690-3da704a51342 @@ -413,7 +413,7 @@ name: Franc Congolais symbol: CDF definition: 'http://qudt.org/vocab/unit#FrancCongolais' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 4d1004b9-e5c1-41dd-9d5f-602f8344e2af @@ -421,7 +421,7 @@ name: 'Acre, British' symbol: acr_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: b8176a34-edd6-4cba-ab06-d55395e6c169 @@ -429,7 +429,7 @@ name: Pound Degree Fahrenheit symbol: lb-degF definition: 'http://qudt.org/vocab/unit#PoundDegreeFahrenheit' - unit_type: Mass temperature + type: Mass temperature workspace_id: null - model: sta.unit pk: 90850a1b-5a21-48a1-9259-276d86dc5fa1 @@ -437,7 +437,7 @@ name: Count per 500 Milliliter symbol: '#/500 ml' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: b92a2247-4f86-4b89-9941-c7db5096babf @@ -445,7 +445,7 @@ name: Gram Degree Celsius symbol: g-degC definition: 'http://qudt.org/vocab/unit#GramDegreeCelsius' - unit_type: Mass temperature + type: Mass temperature workspace_id: null - model: sta.unit pk: da75ceb5-82ca-479d-ac40-af99d1e31373 @@ -456,7 +456,7 @@ http://qudt.org/vocab/unit#Maxwell; http://unitsofmeasure.org/ucum.html#para-33; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Magnetic flux + type: Magnetic flux workspace_id: null - model: sta.unit pk: faa2dea8-d59c-4b9e-936c-313b85ccc863 @@ -467,7 +467,7 @@ http://unitsofmeasure.org/ucum.html#para-39; http://www.unidata.ucar.edu/software/udunits/; http://qudt.org/vocab/unit#TonLong - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 1093a344-d4db-4e30-b5ba-1a8bf211fa2f @@ -475,7 +475,7 @@ name: Tanzanian Shilling symbol: TZS definition: 'http://qudt.org/vocab/unit#TanzanianShilling' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 0cc0bf19-5a04-4cbd-a1ad-e0d9e0b3e622 @@ -483,7 +483,7 @@ name: Solomon Islands Dollar symbol: SBD definition: 'http://qudt.org/vocab/unit#SolomonIslandsDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 0bfe6d91-b39d-42a6-9d00-185816b9f8b3 @@ -491,7 +491,7 @@ name: Milligram per Cubic Meter per Day symbol: mg/m^3 d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric productivity + type: Volumetric productivity workspace_id: null - model: sta.unit pk: fe4a4c58-0bda-4628-bb37-9565af6c25a6 @@ -499,7 +499,7 @@ name: Reciprocal Meter symbol: m^-1 definition: '' - unit_type: Inverse length + type: Inverse length workspace_id: null - model: sta.unit pk: 65eba8e1-ae3e-46d4-a15a-f30b9d702fb5 @@ -507,7 +507,7 @@ name: Gallon per Day per Square Foot symbol: gpd/ft^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flux + type: Volumetric flux workspace_id: null - model: sta.unit pk: 127e37c1-99ee-4c2b-b409-dd8b2eb9ac87 @@ -517,7 +517,7 @@ definition: >- http://qudt.org/vocab/unit#MileUSStatute; http://unitsofmeasure.org/ucum.html#para-35 - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 729453f2-f62c-4f3d-911d-cbb52f9d7f45 @@ -525,7 +525,7 @@ name: Kilometer per Second symbol: km/s definition: 'http://qudt.org/vocab/unit#KilometerPerSecond' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 4fb9d82e-3e29-4390-b255-33ef843ebce7 @@ -534,7 +534,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: 05fc41c0-c470-46bb-a4d0-cec0fe62e43b @@ -544,7 +544,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: 763a148c-0004-492c-a1c3-894147583735 @@ -552,7 +552,7 @@ name: Croatian Kuna symbol: HRK definition: 'http://qudt.org/vocab/unit#CroatianKuna' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 012884f2-3c27-4f33-942b-0c9f100908a4 @@ -562,7 +562,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-42; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 89c7c6e0-e555-46db-afcd-bdeb4f87d461 @@ -570,7 +570,7 @@ name: Djibouti Franc symbol: DJF definition: 'http://qudt.org/vocab/unit#DjiboutiFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 5f3712ad-028a-4a2a-8f53-cf24374b3ba3 @@ -578,7 +578,7 @@ name: Gram per Liter symbol: g/L definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 3b916527-507b-4ab5-9101-7a8fbddc42ce @@ -586,7 +586,7 @@ name: Decibel Carrier Unit symbol: dBc definition: 'http://qudt.org/vocab/unit#DecibelCarrier' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: b1972515-4739-4051-9304-916ee6848d8b @@ -594,7 +594,7 @@ name: Foot Pound Force per Hour symbol: ft-lbf/hr definition: 'http://qudt.org/vocab/unit#FootPoundForcePerHour' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 301745a7-0bca-4e99-8650-8510b147b2be @@ -604,7 +604,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: bf38f8db-3c26-49b5-83a5-a3b6c83f34e7 @@ -614,7 +614,7 @@ definition: >- http://qudt.org/vocab/unit#FootLambert; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: 00d07bc2-3a5c-4d71-b3e1-a9837ff9734e @@ -625,7 +625,7 @@ http://qudt.org/vocab/unit#Stokes; http://unitsofmeasure.org/ucum.html#para-33; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Diffusivity + type: Diffusivity workspace_id: null - model: sta.unit pk: 939d15e6-cfd1-4993-a7a1-d9aa3473cf74 @@ -633,7 +633,7 @@ name: Inch per Second symbol: '' definition: 'http://qudt.org/vocab/unit#InchPerSecond' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 34945889-811d-48e7-bf4c-d6294a4bf3e5 @@ -641,7 +641,7 @@ name: Rwanda Franc symbol: RWF definition: 'http://qudt.org/vocab/unit#RwandaFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 46772ec7-c488-4de5-b09d-96b0696c6ace @@ -649,7 +649,7 @@ name: Metric ton per day symbol: tonne/day definition: '' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 10e5d32f-b005-44ab-aee8-2897faa8393b @@ -659,7 +659,7 @@ definition: >- http://qudt.org/vocab/unit#Gal; http://unitsofmeasure.org/ucum.html#para-33 - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: 58c2c6fe-c157-4a58-806a-20c21b0a3e95 @@ -669,7 +669,7 @@ definition: >- http://qudt.org/vocab/unit#AtmosphereStandard; http://unitsofmeasure.org/ucum.html#para-32 - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 2398a6cf-2ab7-4614-b626-135a43ca8199 @@ -677,7 +677,7 @@ name: Count per 1000 Square Meter symbol: '#/1000 m^2' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: c4b1287d-6e3f-4807-8b8d-891fc420fd22 @@ -687,7 +687,7 @@ definition: >- http://qudt.org/vocab/unit#Statmho; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electrical conductance + type: Electrical conductance workspace_id: null - model: sta.unit pk: de40a98f-c8e8-477c-b69c-b0601b9d1827 @@ -697,7 +697,7 @@ definition: >- http://qudt.org/vocab/unit#OunceForce; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 1ab1a46a-61e2-4060-b13c-3cb41d098c58 @@ -705,7 +705,7 @@ name: Siemens Square Meter per Mole symbol: Sm^2/mol definition: '' - unit_type: Molar conductivity + type: Molar conductivity workspace_id: null - model: sta.unit pk: 7b19a781-432d-4e4f-9c28-f77adbcf6c37 @@ -718,7 +718,7 @@ http://unitsofmeasure.org/ucum.html#para-31; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-accepted.xml; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 0d08c103-f451-4b28-a6a4-54f2e9a8a6e8 @@ -726,7 +726,7 @@ name: 'Ounce, Metric' symbol: oz_m definition: 'http://unitsofmeasure.org/ucum.html#para-41' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 6b7b4595-8b82-4880-969e-2ca677fa6cf0 @@ -734,7 +734,7 @@ name: Watt per Square Meter Steradian symbol: W/(m^2-sr) definition: 'http://qudt.org/vocab/unit#WattPerSquareMeterSteradian' - unit_type: Radiance + type: Radiance workspace_id: null - model: sta.unit pk: 8b51f32d-49f9-4a60-aa90-504c454c742f @@ -742,7 +742,7 @@ name: Per Cubic Meter symbol: /m^3 definition: 'http://qudt.org/vocab/unit#PerCubicMeter' - unit_type: Inverse volume + type: Inverse volume workspace_id: null - model: sta.unit pk: ea1f130e-b944-4703-bc3a-430f80b63da1 @@ -750,7 +750,7 @@ name: Mesh symbol: mesh_i definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Inverse length + type: Inverse length workspace_id: null - model: sta.unit pk: 4209dacd-7188-4a19-ac70-924b33fac77e @@ -758,7 +758,7 @@ name: Picogram per Gram symbol: pg/g definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 24ec471b-0b3b-41df-a122-6daec3e489a6 @@ -766,7 +766,7 @@ name: Acre Foot per Month symbol: ac ft/mo definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 6f7639c4-336d-49f7-8811-ac18bbe13447 @@ -774,7 +774,7 @@ name: Inch per Hour symbol: in/hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 4ef8e31c-32fd-4adc-9c2c-3eab30dac149 @@ -782,7 +782,7 @@ name: Nautical Mile per Minute symbol: nmi/min definition: 'http://qudt.org/vocab/unit#NauticalMilePerMinute' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 4b14c3a8-fefe-45ff-ba80-37544c52bf29 @@ -790,7 +790,7 @@ name: Abampere symbol: abA definition: 'http://qudt.org/vocab/unit#Abampere' - unit_type: Electrical current + type: Electrical current workspace_id: null - model: sta.unit pk: 33670493-2593-4581-97aa-98194c665a2b @@ -798,7 +798,7 @@ name: Count per Minute symbol: '#/min' definition: '' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: af4a6444-dcd4-4ea7-8950-88c64f63015c @@ -806,7 +806,7 @@ name: Joule per Kilogram Kelvin per Pascal symbol: '' definition: 'http://qudt.org/vocab/unit#JoulePerKilogramKelvinPerPascal' - unit_type: Specific heat pressure + type: Specific heat pressure workspace_id: null - model: sta.unit pk: a40578e4-8db9-41ac-a241-81c78a6bc717 @@ -814,7 +814,7 @@ name: Planck Power symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckPower' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 5a8c3d47-157b-4a32-a8cb-b9ebf85c52e2 @@ -824,7 +824,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Specific surface area + type: Specific surface area workspace_id: null - model: sta.unit pk: 7824d65f-10eb-4148-bf30-1e1520d507c9 @@ -832,7 +832,7 @@ name: Seychelles Rupee symbol: SCR definition: 'http://qudt.org/vocab/unit#SeychellesRupee' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f65ae242-61f2-4dbb-9bf4-108c42cb67d5 @@ -842,7 +842,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: c77f2aa8-66bc-4edf-9390-d3a4c4bdfd96 @@ -850,7 +850,7 @@ name: Megawatt symbol: MW definition: '' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: a9b1aa2d-15e1-4760-8968-245712863e46 @@ -858,7 +858,7 @@ name: Grad symbol: grad definition: 'http://qudt.org/vocab/unit#Grad' - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 4dadc099-f45f-4e0b-b079-b96abc52372d @@ -868,7 +868,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 51f2f9b5-8ceb-43ad-9b41-bb06e753491e @@ -879,7 +879,7 @@ http://qudt.org/vocab/unit#OunceTroy; http://unitsofmeasure.org/ucum.html#para-40; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 6fb12c32-2143-40c2-a498-54b65ef7830e @@ -889,7 +889,7 @@ definition: >- http://qudt.org/vocab/unit#JoulePerSquareMeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: f614a5a0-10f2-4213-9132-1aae9e8cf79f @@ -901,7 +901,7 @@ https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://qudt.org/vocab/unit#PoundMass; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 8228e670-9462-4551-b7be-9da396c28b5e @@ -909,7 +909,7 @@ name: 'Mile, British' symbol: mi_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 46461635-7eb3-4069-a3bc-8f8ce24822e1 @@ -917,7 +917,7 @@ name: In Vivo Fluorescence Unit symbol: IVFU definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Fluorescence + type: Fluorescence workspace_id: null - model: sta.unit pk: a3794f8a-6b86-45f8-8341-f6bca69bc795 @@ -925,7 +925,7 @@ name: Picocurie symbol: pCi definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Radioactivity + type: Radioactivity workspace_id: null - model: sta.unit pk: b5397236-5d69-41bf-9fea-b3c0ec91604c @@ -935,7 +935,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: 5e4ebf63-48fb-44f0-a926-4a669f7cfa83 @@ -943,7 +943,7 @@ name: Bulgarian Lev symbol: BGN definition: 'http://qudt.org/vocab/unit#BulgarianLev' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 5ff4819c-9e3e-4e7e-83b0-72a61956cfe2 @@ -953,7 +953,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 12a27399-ad26-4ac4-9185-3ce5b5907917 @@ -961,7 +961,7 @@ name: Quartic Coulomb Meter per Cubic Energy symbol: C^4 m^4 J^-3 definition: 'http://qudt.org/vocab/unit#QuarticCoulombMeterPerCubicEnergy' - unit_type: Quartic electrical dipole moment per cubic energy + type: Quartic electrical dipole moment per cubic energy workspace_id: null - model: sta.unit pk: 73a79982-11bb-4a5b-9ca8-2426411f2599 @@ -972,7 +972,7 @@ http://qudt.org/vocab/unit#GallonUS; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://unitsofmeasure.org/ucum.html#para-37 - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 7f372954-9a24-4ae0-a864-fad419fffc74 @@ -983,7 +983,7 @@ http://qudt.org/vocab/unit#AtmosphereTechnical; http://unitsofmeasure.org/ucum.html#para-47; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 5485de9f-7157-4fbf-b35c-749d85ec0037 @@ -991,7 +991,7 @@ name: Nanofarad symbol: nF definition: 'http://qudt.org/vocab/unit#NanoFarad' - unit_type: Electrical capacitance + type: Electrical capacitance workspace_id: null - model: sta.unit pk: ab36095f-4e2e-4288-b68a-4a9ac89dcc33 @@ -1002,7 +1002,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://environment.data.gov.au/def/unit/MicroMolPerSecondPerMetreSquared; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Particle flux + type: Particle flux workspace_id: null - model: sta.unit pk: 05f66dbb-0453-470b-8e3a-a6e6a3c832df @@ -1010,7 +1010,7 @@ name: Joule per Mole Kelvin symbol: J/(mol-K) definition: 'http://qudt.org/vocab/unit#JoulePerMoleKelvin' - unit_type: Molar heat capacity + type: Molar heat capacity workspace_id: null - model: sta.unit pk: c515d2fd-c5b1-4b4f-8a6f-e04fc3d01214 @@ -1018,7 +1018,7 @@ name: Arizona Miner's Inch symbol: Az Miner Inch definition: 'https://en.wikipedia.org/wiki/Miner''s_inch' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 1617347a-0c9c-41aa-8e9c-09a54f9fb80e @@ -1026,7 +1026,7 @@ name: Pound per Hour symbol: lb/hr definition: 'http://qudt.org/vocab/unit#PoundPerHour' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 0b16e422-e290-4ff3-9805-5c0b5495d898 @@ -1034,7 +1034,7 @@ name: United Arab Emirates Dirham symbol: AED definition: 'http://qudt.org/vocab/unit#UAEDirham' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 441eca8b-eb41-4441-8393-9ab24451ed66 @@ -1042,7 +1042,7 @@ name: Millimole per Cubic Meter Squared symbol: (mmol/m^3)^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: 960ab1a1-5933-46af-a1aa-87848bb7405d @@ -1052,7 +1052,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: cfbcc38a-b8cd-43bc-8269-0a84371bf761 @@ -1060,7 +1060,7 @@ name: Radian per Second Squared symbol: rad/s^2 definition: 'http://qudt.org/vocab/unit#RadianPerSecondSquared' - unit_type: Angular acceleration + type: Angular acceleration workspace_id: null - model: sta.unit pk: f2e1160f-a68b-4a19-a353-b058922928f4 @@ -1068,7 +1068,7 @@ name: Coulomb symbol: C definition: 'http://qudt.org/vocab/unit#Coulomb' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 2148b236-0c5c-4492-8c03-8b0b7be04da7 @@ -1076,7 +1076,7 @@ name: Ampere per Degree symbol: A/deg definition: 'http://qudt.org/vocab/unit#AmperePerDegree' - unit_type: Electrical current per angle + type: Electrical current per angle workspace_id: null - model: sta.unit pk: b5d05f25-361f-48f9-a72d-41a6de2556e9 @@ -1084,7 +1084,7 @@ name: Second Square Foot symbol: s-ft^2 definition: 'http://qudt.org/vocab/unit#SecondSquareFoot' - unit_type: Area time + type: Area time workspace_id: null - model: sta.unit pk: 12398d9f-a2ad-4869-9079-0c235e7d665b @@ -1095,7 +1095,7 @@ http://environment.data.gov.au/def/unit/MicrogramsPerKilogram; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 6d158637-2624-4c93-aea0-a7c91d078670 @@ -1103,7 +1103,7 @@ name: BTU per Pound Mole symbol: Btu/(lb-mol) definition: 'http://qudt.org/vocab/unit#BtuPerPoundMole' - unit_type: Molar energy + type: Molar energy workspace_id: null - model: sta.unit pk: 87dbe7f9-08a7-4a0b-892e-8dfaf7c36677 @@ -1111,7 +1111,7 @@ name: Planck Mass symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckMass' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 11182e79-e04a-4b35-b979-d5fc89c3acf3 @@ -1121,7 +1121,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Electrical charge volume density + type: Electrical charge volume density workspace_id: null - model: sta.unit pk: 6b670a7b-a0d4-4de9-9759-ded4d99082e8 @@ -1132,7 +1132,7 @@ http://qudt.org/vocab/unit#AcreFoot; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: b2678ef4-4f75-4132-b41e-445332b79946 @@ -1143,7 +1143,7 @@ http://qudt.org/vocab/unit#Tex; http://unitsofmeasure.org/ucum.html#para-43; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass per length + type: Mass per length workspace_id: null - model: sta.unit pk: 585f203a-fa84-4279-9ea1-67dbc0638a97 @@ -1151,7 +1151,7 @@ name: Slug per Cubic Foot symbol: slug/ft^3 definition: 'http://qudt.org/vocab/unit#SlugPerCubicFoot' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 69865bf2-0d02-4f80-876a-2a5650ae53fd @@ -1161,7 +1161,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-47; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: f27db26e-35b3-4caa-967a-c174bc3bd480 @@ -1169,7 +1169,7 @@ name: Gram per 0.1 Square Meter symbol: g/0.1 m^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: d7920c63-f198-4c5a-85a0-2831ecbb6b80 @@ -1177,7 +1177,7 @@ name: Picogram symbol: pg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: d4e34b52-1205-4937-9010-d89cea88a1ab @@ -1185,7 +1185,7 @@ name: Armenian Dram symbol: AMD definition: 'http://qudt.org/vocab/unit#ArmenianDram' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c9f22cf2-925c-4ce9-866d-1631bf99c473 @@ -1193,7 +1193,7 @@ name: Pataca symbol: MOP definition: 'http://qudt.org/vocab/unit#Pataca' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 22f099e9-8d7f-4b22-8ee7-2f13f0c3db08 @@ -1201,7 +1201,7 @@ name: 'Link for Gunter''s Chain, US Survey' symbol: lk_us definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: aa31de43-dddc-48ea-9d5c-1d6b19bc2ace @@ -1209,7 +1209,7 @@ name: Btu Inch symbol: Btu-in definition: 'http://qudt.org/vocab/unit#BtuInch' - unit_type: Length energy + type: Length energy workspace_id: null - model: sta.unit pk: 210cc276-e019-435b-be09-dcfc3a00aa7f @@ -1217,7 +1217,7 @@ name: Cubic Meter per Second symbol: m^3/s definition: 'http://qudt.org/vocab/unit#CubicMeterPerSecond' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 1b1702d8-cc48-4afe-b5af-39f11ef2d368 @@ -1225,7 +1225,7 @@ name: Pound Force Second per Square Inch symbol: lbf-s/in^2 definition: 'http://qudt.org/vocab/unit#PoundForceSecondPerSquareInch' - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: 467980ca-a544-46c2-93e8-04ab4d66c591 @@ -1233,7 +1233,7 @@ name: Cape Verde Escudo symbol: CVE definition: 'http://qudt.org/vocab/unit#CapeVerdeEscudo' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b9575ccc-426f-4947-9e46-d8f3a5d54a85 @@ -1243,7 +1243,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 6be1eb7b-b351-4244-9c35-4a3a3f11c97c @@ -1251,7 +1251,7 @@ name: Pound per Cubic Inch symbol: lb/in^3 definition: 'http://qudt.org/vocab/unit#PoundPerCubicInch' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 69378dc9-479e-4459-8c05-51aa9f18e53c @@ -1259,7 +1259,7 @@ name: Tonnes per Hectare symbol: t/ha definition: 'http://environment.data.gov.au/def/unit/TonnesPerHectare' - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: 53b471af-1bb8-49f8-97b6-d1cd9b3484e6 @@ -1267,7 +1267,7 @@ name: Clo symbol: clo definition: 'http://qudt.org/vocab/unit#Clo' - unit_type: Thermal insulance + type: Thermal insulance workspace_id: null - model: sta.unit pk: cbf924ca-9633-4d91-9b0c-c4fc917c9e1f @@ -1275,7 +1275,7 @@ name: Inch per Week symbol: in/week definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: b8e28b64-8521-4751-8125-02e49e4163f0 @@ -1283,7 +1283,7 @@ name: Ligne symbol: ligne definition: 'http://unitsofmeasure.org/ucum.html#para-42' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 33a9bd8b-2b7a-4fe7-8a04-6b664961c103 @@ -1291,7 +1291,7 @@ name: Section symbol: sct definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 4767b794-ef98-4a06-94de-6806b2da0694 @@ -1301,7 +1301,7 @@ definition: >- http://qudt.org/vocab/unit#Gram; http://unitsofmeasure.org/ucum.html#para-28 - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: eb4725ba-0a86-4f03-9e69-d150fcd2bd55 @@ -1309,7 +1309,7 @@ name: Cubic Meter per Kilogram Second Squared symbol: m^3 kg^-1 s^-2 definition: 'http://qudt.org/vocab/unit#CubicMeterPerKilogramSecondSquared' - unit_type: Gravitational attraction + type: Gravitational attraction workspace_id: null - model: sta.unit pk: 656efd9b-6dc5-4de0-802b-c77680228286 @@ -1317,7 +1317,7 @@ name: Gram per Milliliter symbol: g/mL definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 3217265d-ac3c-42ab-ad68-9923df49d672 @@ -1326,7 +1326,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Fluidity + type: Fluidity workspace_id: null - model: sta.unit pk: 27f2e029-29a9-4de3-bbec-4e53bc38d4f5 @@ -1334,7 +1334,7 @@ name: Foot per Hour symbol: ft/hr definition: 'http://qudt.org/vocab/unit#FootPerHour' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 2c615c31-be6c-4416-90a1-33b556a36a16 @@ -1345,7 +1345,7 @@ http://qudt.org/vocab/unit#Tablespoon; http://unitsofmeasure.org/ucum.html#para-37; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 6452c275-fa82-4ab1-b313-a6efdcc8d36e @@ -1353,7 +1353,7 @@ name: Abmho symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Electrical conductance + type: Electrical conductance workspace_id: null - model: sta.unit pk: 5ded66d7-6bb5-40c9-9b64-9d516fb17e8f @@ -1361,7 +1361,7 @@ name: Pascal per Minute symbol: P / min definition: 'http://qudt.org/vocab/unit#PascalPerMinute' - unit_type: Pressure or stress rate + type: Pressure or stress rate workspace_id: null - model: sta.unit pk: 63ae1155-3785-4ea8-b310-0026519eccbb @@ -1369,7 +1369,7 @@ name: Megapascal symbol: MPa definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: d68ed6d2-81e6-4ec2-912b-455ca92056c7 @@ -1377,7 +1377,7 @@ name: Revolution per Hour symbol: rev/h definition: 'http://qudt.org/vocab/unit#RevolutionPerHour' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: 585eabfa-0198-4550-829b-3a5ff2fd3839 @@ -1387,7 +1387,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-39; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: b552b6c7-9142-4222-8650-30674cf9f65b @@ -1397,7 +1397,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 7ea429e2-5feb-483c-9345-72117c405582 @@ -1405,7 +1405,7 @@ name: Siemen per Meter symbol: S/m definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: 224a315e-7e7d-4b09-a9af-dbe4b458012d @@ -1413,7 +1413,7 @@ name: Kelvin per Watt symbol: K/W definition: 'http://qudt.org/vocab/unit#KelvinPerWatt' - unit_type: Thermal resistance + type: Thermal resistance workspace_id: null - model: sta.unit pk: d1d0bd82-26cd-4d53-acb5-2b682176654d @@ -1421,7 +1421,7 @@ name: Pound Sterling symbol: GBP definition: 'http://qudt.org/vocab/unit#PoundSterling' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 934441e2-4343-4de8-9471-cfc1d4d874f2 @@ -1432,7 +1432,7 @@ http://qudt.org/vocab/unit#Siemens; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electrical conductance + type: Electrical conductance workspace_id: null - model: sta.unit pk: c10750b9-fa84-423d-8e8d-2203e4673d9a @@ -1440,7 +1440,7 @@ name: Btu Inch per Square Foot Hour Degree Fahrenheit symbol: Btu-in/(hr-ft^2-degF) definition: 'http://qudt.org/vocab/unit#BtuInchPerSquareFootHourDegreeFahrenheit' - unit_type: Thermal conductivity + type: Thermal conductivity workspace_id: null - model: sta.unit pk: 1a37a59b-8d52-46fd-83c3-a28f69575fd8 @@ -1448,7 +1448,7 @@ name: Ton per Kiloton symbol: tCaCO3/Kt definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: afb13766-4053-434d-9728-617926bf8268 @@ -1456,7 +1456,7 @@ name: Langley per Minute symbol: Ly/min definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: a962bb7a-9741-4d08-a947-f112a5c1bbb3 @@ -1464,7 +1464,7 @@ name: Abampere per Square Centimeter symbol: abA / cm^2 definition: 'http://qudt.org/vocab/unit#AbamperePerSquareCentimeter' - unit_type: Electrical current density + type: Electrical current density workspace_id: null - model: sta.unit pk: 368467c5-9cc6-42c4-9c52-6665d0ab7cf6 @@ -1472,7 +1472,7 @@ name: Iranian Rial symbol: IRR definition: 'http://qudt.org/vocab/unit#IranianRial' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 10028998-4277-41ee-b7b6-53b7cc74fe6b @@ -1482,7 +1482,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 44fe0633-9798-43f7-ad31-e90e03ac48bc @@ -1493,7 +1493,7 @@ http://qudt.org/vocab/unit#Katal; http://unitsofmeasure.org/ucum.html#para-45; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Catalytic activity + type: Catalytic activity workspace_id: null - model: sta.unit pk: 6c071119-fafe-4b32-8924-47f8348833ae @@ -1504,7 +1504,7 @@ http://unitsofmeasure.org/ucum.html#para-31; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 1948dd0d-219a-4448-b333-ab257e2b7ed2 @@ -1514,7 +1514,7 @@ definition: >- http://qudt.org/vocab/unit#SquareMile; http://unitsofmeasure.org/ucum.html#para-35 - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 3239a810-2b20-4eed-8fe5-234468b4ea73 @@ -1522,7 +1522,7 @@ name: Wood Unit symbol: wood'U definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Fluid resistance + type: Fluid resistance workspace_id: null - model: sta.unit pk: 27011155-03f0-491d-9a5b-a8bbdb88047d @@ -1530,7 +1530,7 @@ name: Nakfa symbol: ERN definition: 'http://qudt.org/vocab/unit#Nakfa' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b0a91b6d-5508-4d25-8a5d-103d7224a283 @@ -1538,7 +1538,7 @@ name: Count per Liter symbol: '#/L' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 9c4e1406-f678-4caa-bbc3-ffac5de5c73a @@ -1546,7 +1546,7 @@ name: Btu Foot per Square Foot Hour Degree Fahrenheit symbol: Btu-ft/(hr-ft^2-degF) definition: 'http://qudt.org/vocab/unit#BtuFootPerSquareFootHourDegreeFahrenheit' - unit_type: Thermal conductivity + type: Thermal conductivity workspace_id: null - model: sta.unit pk: 7b6e7255-9b1d-4253-883c-9455cd02e4dd @@ -1554,7 +1554,7 @@ name: 'Calorie, Mean' symbol: cal_m definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 8df259aa-9bc3-4c69-ba00-b43c44177e32 @@ -1562,7 +1562,7 @@ name: Microgram Meter per Liter symbol: µg m/L definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Length integrated mass concentration + type: Length integrated mass concentration workspace_id: null - model: sta.unit pk: 34b5833e-e038-4d8e-8898-aa7cf86e52b0 @@ -1573,7 +1573,7 @@ http://qudt.org/vocab/unit#Kelvin; http://unitsofmeasure.org/ucum.html#para-28; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-base.xml - unit_type: Temperature + type: Temperature workspace_id: null - model: sta.unit pk: 129def56-d3cf-4502-ba66-18219d78ec92 @@ -1581,7 +1581,7 @@ name: Erg Second symbol: erg s definition: 'http://qudt.org/vocab/unit#ErgSecond' - unit_type: Angular momentum + type: Angular momentum workspace_id: null - model: sta.unit pk: d115dcfc-0c75-43aa-9e84-6043ca898390 @@ -1591,7 +1591,7 @@ definition: >- http://qudt.org/vocab/unit#AstronomicalUnit; http://unitsofmeasure.org/ucum.html#para-31 - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 41fc19f8-5f81-4062-b6ca-52d6f0557222 @@ -1601,7 +1601,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: eb6ee649-fdf7-4c84-8e4a-8787ce93c7e5 @@ -1609,7 +1609,7 @@ name: Millimole per Square Meter per Hour symbol: mmol/m^2 hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Particle flux + type: Particle flux workspace_id: null - model: sta.unit pk: 5c67de53-9a3b-428d-866d-bea48146b462 @@ -1618,7 +1618,7 @@ symbol: Perm 0C definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Fluid permeance + type: Fluid permeance workspace_id: null - model: sta.unit pk: b99dcec1-fa1d-4c12-8f22-21ea69230aed @@ -1628,7 +1628,7 @@ definition: >- http://qudt.org/vocab/unit#Statcoulomb; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 7df2ee30-b9d1-4f82-93bd-6dac5995cc01 @@ -1636,7 +1636,7 @@ name: Osmole symbol: osm definition: 'http://unitsofmeasure.org/ucum.html#para-45' - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: f625e687-4633-4bb8-be22-c2d823b7cd7a @@ -1644,7 +1644,7 @@ name: Hectare symbol: ha definition: 'http://qudt.org/vocab/unit#Hectare' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 96e315cf-3c73-4509-aea2-0bbdd589ab23 @@ -1657,7 +1657,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 28faaa6a-d8b8-49cd-8813-0a96b09acc90 @@ -1665,7 +1665,7 @@ name: Per Tesla Second symbol: s^-1 T^-1 definition: 'http://qudt.org/vocab/unit#PerTeslaSecond' - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: 1e3969be-d1ed-4391-a100-7e9385e0689a @@ -1673,7 +1673,7 @@ name: Ampere Hour symbol: A-hr definition: 'http://qudt.org/vocab/unit#AmpereHour' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 40b724dd-4b46-4f8d-ad4a-2c73a24ac25c @@ -1681,7 +1681,7 @@ name: Per Mole symbol: mol^-1 definition: 'http://qudt.org/vocab/unit#PerMole' - unit_type: Inverse count + type: Inverse count workspace_id: null - model: sta.unit pk: 710df9d2-d67c-42bc-9a90-98b915975c4e @@ -1689,7 +1689,7 @@ name: Cubic Foot per Minute symbol: ft^3/min definition: 'http://qudt.org/vocab/unit#CubicFootPerMinute' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 9ab214a3-7875-448a-a930-cda3e6dc3f41 @@ -1697,7 +1697,7 @@ name: Gallon US per Month symbol: gpm definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: e2c5f819-a065-494d-9cdc-1d8a720ab733 @@ -1705,7 +1705,7 @@ name: Joule per Cubic Meter symbol: J/m^3 definition: 'http://qudt.org/vocab/unit#JoulePerCubicMeter' - unit_type: Energy density + type: Energy density workspace_id: null - model: sta.unit pk: 8acba556-705f-49e0-a752-ca6f8ec101cc @@ -1713,7 +1713,7 @@ name: Fiji Dollar symbol: FJD definition: 'http://qudt.org/vocab/unit#FijiDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 0097e252-1495-4cfe-90f1-af6bd87bb646 @@ -1721,7 +1721,7 @@ name: Percent By Volume symbol: '% by vol' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration volume per volume + type: Concentration volume per volume workspace_id: null - model: sta.unit pk: f4e8cdbc-0de5-4535-a45b-97eee7da99fd @@ -1729,7 +1729,7 @@ name: Foot per Second Squared symbol: ft/s^2 definition: 'http://qudt.org/vocab/unit#FootPerSecondSquared' - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: 3e708fc2-3ed7-4baa-8356-abc075f503e8 @@ -1737,7 +1737,7 @@ name: Millimole per Square Meter per Second symbol: mmol/m^2 s definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Particle flux + type: Particle flux workspace_id: null - model: sta.unit pk: 02f03c52-21b5-445e-8191-cddeab8b8a95 @@ -1745,7 +1745,7 @@ name: Rotation per Second symbol: rps definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: 5425fe15-407f-4401-a9fd-173012423719 @@ -1753,7 +1753,7 @@ name: Bel symbol: B definition: 'http://unitsofmeasure.org/ucum.html#para-46' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: aefb1d7e-7bb0-40cd-986c-7505579f2e47 @@ -1761,7 +1761,7 @@ name: Henry per Meter symbol: H/m definition: 'http://qudt.org/vocab/unit#HenryPerMeter' - unit_type: Magnetic permeability + type: Magnetic permeability workspace_id: null - model: sta.unit pk: aed48178-316c-4c76-910c-e9470021504f @@ -1772,7 +1772,7 @@ http://environment.data.gov.au/def/unit/MicrogramsPerLitre; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: b9265147-7f0a-4922-b6cd-092008dea2f3 @@ -1780,7 +1780,7 @@ name: Czech Koruna symbol: CZK definition: 'http://qudt.org/vocab/unit#CzechKoruna' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ecf5dec0-ccdc-4c0c-a144-e1213b418a24 @@ -1788,7 +1788,7 @@ name: Swedish Krona symbol: SEK definition: 'http://qudt.org/vocab/unit#SwedishKrona' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 812dc598-969a-4e81-97c2-aa0b0deeca3d @@ -1796,7 +1796,7 @@ name: Candle symbol: cd definition: 'http://qudt.org/vocab/unit#Candle' - unit_type: Luminous intensity + type: Luminous intensity workspace_id: null - model: sta.unit pk: 80e851f6-2322-4b23-b207-e7c759ae4db6 @@ -1804,7 +1804,7 @@ name: Percent Slope symbol: '%slope' definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Length fraction + type: Length fraction workspace_id: null - model: sta.unit pk: d2cfa881-e63e-4cd9-96ff-22a8634c0506 @@ -1812,7 +1812,7 @@ name: Didot symbol: didot definition: 'http://unitsofmeasure.org/ucum.html#para-42' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 2a9e338e-13a6-42ce-8326-264ae3b0cf19 @@ -1820,7 +1820,7 @@ name: Falkland Islands Pound symbol: FKP definition: 'http://qudt.org/vocab/unit#FalklandIslandsPound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 90d0430a-d881-4114-9534-37fef2b600ac @@ -1830,7 +1830,7 @@ definition: >- http://qudt.org/vocab/unit#ThermUS; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 3d5949db-e15b-480c-8968-c3384c7f1acb @@ -1840,7 +1840,7 @@ definition: >- http://qudt.org/vocab/unit#Statvolt; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electromotive force + type: Electromotive force workspace_id: null - model: sta.unit pk: 18472a58-8d6a-4672-b63e-2b5a45469ba1 @@ -1848,7 +1848,7 @@ name: Norwegian Krone symbol: NOK definition: 'http://qudt.org/vocab/unit#NorwegianKrone' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f317210e-c620-4f86-90be-3c15a332973c @@ -1856,7 +1856,7 @@ name: Per Square Giga ElectronVolt symbol: GeV^-2 definition: 'http://qudt.org/vocab/unit#PerSquareGigaElectronVolt' - unit_type: Inverse square energy + type: Inverse square energy workspace_id: null - model: sta.unit pk: 0fcc7663-fd7b-4130-a2ec-389a3c5de793 @@ -1864,7 +1864,7 @@ name: Erg per Square Centimeter Second symbol: erg/(cm^2-s) definition: 'http://qudt.org/vocab/unit#ErgPerSquareCentimeterSecond' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 330025c0-a4d7-4267-82b7-dec93a6083be @@ -1872,7 +1872,7 @@ name: Carat of Gold Alloys symbol: car_Au definition: 'http://unitsofmeasure.org/ucum.html#para-47' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 8c3b1d7c-4562-48e1-915e-5d5d1a8bdd02 @@ -1880,7 +1880,7 @@ name: US Dollar symbol: USD definition: 'http://qudt.org/vocab/unit#USDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 58ebd951-cb32-4f9c-8c75-cbe9ca845f1d @@ -1888,7 +1888,7 @@ name: Foot Pound Force Second symbol: lbf*s definition: 'http://qudt.org/vocab/unit#FootPoundForceSecond' - unit_type: Angular momentum + type: Angular momentum workspace_id: null - model: sta.unit pk: 54cf0cca-a415-4cc8-b28e-2c092e429e9b @@ -1896,7 +1896,7 @@ name: Hertz per Kelvin symbol: Hz K^-1 definition: 'http://qudt.org/vocab/unit#HertzPerKelvin' - unit_type: Inverse time temperature + type: Inverse time temperature workspace_id: null - model: sta.unit pk: 63d64d23-9bdd-489e-b6a2-e7486e2c9ce3 @@ -1904,7 +1904,7 @@ name: Milligram per Milliliter symbol: mg/mL definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 39a2d24f-ff05-4ad6-a771-341a7093a679 @@ -1912,7 +1912,7 @@ name: Kroon symbol: EEK definition: 'http://qudt.org/vocab/unit#Kroon' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 625b27e5-ea46-482d-9e5e-ef1e7615903e @@ -1923,7 +1923,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://environment.data.gov.au/def/unit/Tritium_Unit; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: ff57007a-1a50-49ff-9e39-5b0d7df7f988 @@ -1935,7 +1935,7 @@ http://www.unidata.ucar.edu/software/udunits/; http://unitsofmeasure.org/ucum.html#para-31; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 33ee029a-a70f-48ff-ae15-b73a8257a8a5 @@ -1943,7 +1943,7 @@ name: United States Dollar (Next Day) (Funds Code) symbol: USN definition: 'http://qudt.org/vocab/unit#USDollar-NextDay' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: e876ef09-c025-465e-8c5c-416d4b77bbb6 @@ -1951,7 +1951,7 @@ name: Molar symbol: M definition: '' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: ede096e9-ceeb-4255-a8a0-762ec23c542a @@ -1961,7 +1961,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: aacd71b1-2cab-4a94-9766-f82d1b4f3e59 @@ -1969,7 +1969,7 @@ name: MegaElectronVolt symbol: MeV definition: 'http://qudt.org/vocab/unit#MegaElectronVolt' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: ef0fd0ba-b22c-48f4-831d-ce6519e65da8 @@ -1977,7 +1977,7 @@ name: Kilogram Meter Squared symbol: kg-m^2 definition: 'http://qudt.org/vocab/unit#KilogramMeterSquared' - unit_type: Angular mass + type: Angular mass workspace_id: null - model: sta.unit pk: 7e894603-8f78-40f4-b329-3e9a2607e7d0 @@ -1987,7 +1987,7 @@ definition: >- http://qudt.org/vocab/unit#HorsepowerMetric; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 5ef81d04-53f5-41be-9492-1bb570d28d42 @@ -1995,7 +1995,7 @@ name: Vietnamese ??Ng symbol: VND definition: 'http://qudt.org/vocab/unit#VietnameseDong' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: cb3c3740-50a9-4a44-8b95-6be30066c4c6 @@ -2003,7 +2003,7 @@ name: Meter of Mercury symbol: mHg definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 2526e7d0-d0f7-4cb9-a927-84e034bc2e22 @@ -2013,7 +2013,7 @@ definition: >- http://qudt.org/vocab/unit#Statfarad; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Electrical capacitance + type: Electrical capacitance workspace_id: null - model: sta.unit pk: 529591c6-2b51-41de-a5d8-a678dba06412 @@ -2021,7 +2021,7 @@ name: Charrière French symbol: Ch definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 2ecc54b9-32c6-4d89-a6a7-415b291da0a8 @@ -2029,7 +2029,7 @@ name: Langley per Hour symbol: Ly/hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: cb85173e-a742-4388-bae9-487f429fd51b @@ -2037,7 +2037,7 @@ name: Calorie per Square Centimeter per Minute symbol: cal/cm^2 min definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: fa528c25-2a66-462a-af22-426f184bee89 @@ -2045,7 +2045,7 @@ name: Atmosphere symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: dc7a241c-1fbb-47a8-95ac-644e2a83e4e6 @@ -2056,7 +2056,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://environment.data.gov.au/def/unit/PerMil; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: acd9d586-9f0d-4fcd-b202-3345559f297f @@ -2064,7 +2064,7 @@ name: Count symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: 02d2e1e3-948a-4567-a582-ce2785b6ed16 @@ -2074,7 +2074,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 1b2eb0d5-2790-40f9-b113-0a71669df62d @@ -2084,7 +2084,7 @@ definition: >- http://qudt.org/vocab/unit#Revolution; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 98739274-cfe4-4015-abff-5bba117a66e1 @@ -2092,7 +2092,7 @@ name: Debye symbol: D definition: 'http://qudt.org/vocab/unit#Debye' - unit_type: Electrical dipole moment + type: Electrical dipole moment workspace_id: null - model: sta.unit pk: a0867c3f-00ce-4998-b1be-6625738e41df @@ -2100,7 +2100,7 @@ name: Meter per Pixel symbol: meters per pixel definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Satellite resolution + type: Satellite resolution workspace_id: null - model: sta.unit pk: 27429aed-1bb3-48ff-a8fb-cfa4f6ec2858 @@ -2111,7 +2111,7 @@ http://qudt.org/vocab/unit#Poise; http://unitsofmeasure.org/ucum.html#para-33; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: 627a6e4d-f956-4c54-99c0-4aecace3f472 @@ -2119,7 +2119,7 @@ name: Saint Helena Pound symbol: SHP definition: 'http://qudt.org/vocab/unit#SaintHelenaPound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9d20fb8f-05cb-4b91-a058-4e36788d0c29 @@ -2129,7 +2129,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://unitsofmeasure.org/ucum.html#para-30 - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: d09a8c57-d615-4e22-bd44-51584e8e5350 @@ -2137,7 +2137,7 @@ name: Oersted Centimeter symbol: Oe-cm definition: 'http://qudt.org/vocab/unit#OerstedCentimeter' - unit_type: Magnetomotive force + type: Magnetomotive force workspace_id: null - model: sta.unit pk: 18d939d7-2cdb-4946-869d-ab64e68c2ba7 @@ -2145,7 +2145,7 @@ name: Abfarad symbol: abF definition: 'http://qudt.org/vocab/unit#Abfarad' - unit_type: Electrical capacitance + type: Electrical capacitance workspace_id: null - model: sta.unit pk: 9a40577a-a959-4676-8a1f-c37995c3fb42 @@ -2153,7 +2153,7 @@ name: Tunisian Dinar symbol: TND definition: 'http://qudt.org/vocab/unit#TunisianDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: df34bd28-c22e-4a36-a508-143e2fefe8e7 @@ -2161,7 +2161,7 @@ name: Joule per Kelvin symbol: J/K definition: 'http://qudt.org/vocab/unit#JoulePerKelvin' - unit_type: Heat capacity + type: Heat capacity workspace_id: null - model: sta.unit pk: 0f4fa86a-904a-4654-99cb-e18b2dd40957 @@ -2169,7 +2169,7 @@ name: Centipoise symbol: cP definition: 'http://qudt.org/vocab/unit#Centipoise' - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: d25accfc-3820-43db-94c8-080b3f667e8d @@ -2177,7 +2177,7 @@ name: Kilogram per Second symbol: kg/s definition: 'http://qudt.org/vocab/unit#KilogramPerSecond' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 85fbe796-e653-4fe4-80c1-4b2635325335 @@ -2185,7 +2185,7 @@ name: Milligram per Cubic Meter per Hour symbol: mg/m^3 hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric productivity + type: Volumetric productivity workspace_id: null - model: sta.unit pk: c4dbb9f6-c61e-4fc0-a9db-676c86541ab6 @@ -2193,7 +2193,7 @@ name: Pound Force per Square Foot symbol: lbf/ft^2 definition: 'http://qudt.org/vocab/unit#PoundForcePerSquareFoot' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 1489719a-f0f9-4ae0-9ea9-d93aa31ce46c @@ -2201,7 +2201,7 @@ name: Ampere per Square Meter symbol: A/m^2 definition: 'http://qudt.org/vocab/unit#AmperePerSquareMeter' - unit_type: Electrical current density + type: Electrical current density workspace_id: null - model: sta.unit pk: a03a4ee7-b645-4893-a705-3fc3617cb422 @@ -2214,7 +2214,7 @@ https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Temperature + type: Temperature workspace_id: null - model: sta.unit pk: 5b008c65-dce4-405c-9c5d-febfe8539a90 @@ -2222,7 +2222,7 @@ name: Bits per Second symbol: bps definition: 'http://qudt.org/vocab/unit#BitsPerSecond' - unit_type: Data rate + type: Data rate workspace_id: null - model: sta.unit pk: 3c68a478-ed07-4e0f-a935-eca75efcdb54 @@ -2233,7 +2233,7 @@ http://qudt.org/vocab/unit#OunceImperial; http://unitsofmeasure.org/ucum.html#para-38; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: d064f8b5-6fbc-48b9-ac7f-cf54db218197 @@ -2241,7 +2241,7 @@ name: Milliliter per Liter per Hour symbol: mL/L/hr definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: 6321af21-7869-464f-9e11-3dda57498d61 @@ -2251,7 +2251,7 @@ definition: >- http://qudt.org/vocab/unit#Point; http://unitsofmeasure.org/ucum.html#para-42 - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: f047d12e-cc10-4e06-af8a-20a88ce7d10a @@ -2259,7 +2259,7 @@ name: Square Foot per Second symbol: ft^2/s definition: 'http://qudt.org/vocab/unit#SquareFootPerSecond' - unit_type: Diffusivity + type: Diffusivity workspace_id: null - model: sta.unit pk: 52453c8e-a246-4844-bba2-b5ee8935c9ce @@ -2267,7 +2267,7 @@ name: Jamaican Dollar symbol: JMD definition: 'http://qudt.org/vocab/unit#JamaicanDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 095ce50e-79c7-45a3-8a74-851a3fd95767 @@ -2275,7 +2275,7 @@ name: Gold Franc (Special Settlement Currency) symbol: XFO definition: 'http://qudt.org/vocab/unit#GoldFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 46a5fbaa-3aa0-4a7d-a6ab-0c9ae7d631de @@ -2283,7 +2283,7 @@ name: Octet symbol: octet definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Amount of information + type: Amount of information workspace_id: null - model: sta.unit pk: ac5ffe21-c860-441f-ac8e-6db2fb9ec87b @@ -2291,7 +2291,7 @@ name: "British Thermal Unit At 39\_°F" symbol: Btu_39 definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 10c9efe3-6130-49c1-8c00-6db07dc8d2a9 @@ -2299,7 +2299,7 @@ name: Swiss Franc symbol: CHF definition: 'http://qudt.org/vocab/unit#SwissFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 08d08f2c-9c39-46a0-a82d-a6cd6036d895 @@ -2309,7 +2309,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-41; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: e462e0d1-a200-4d91-a285-c1fd9e306ba5 @@ -2317,7 +2317,7 @@ name: Lek symbol: ALL definition: 'http://qudt.org/vocab/unit#Lek' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: a0422e46-62e2-4d64-8d65-c71d160a5fd4 @@ -2327,7 +2327,7 @@ definition: >- http://qudt.org/vocab/unit#SquareFoot; http://unitsofmeasure.org/ucum.html#para-34 - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: bc77a31d-1df5-4ed7-a5c7-eebab0a7b5e2 @@ -2335,7 +2335,7 @@ name: 'Fluid Dram, British' symbol: fdr_br definition: 'http://unitsofmeasure.org/ucum.html#para-38' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 4f2650c0-2db3-423c-becf-e95123500a09 @@ -2345,7 +2345,7 @@ definition: >- http://qudt.org/vocab/unit#TonAssay; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 1bcf82df-6f4c-4a8f-a9b1-0334a9430aee @@ -2353,7 +2353,7 @@ name: Peso Uruguayo symbol: UYU definition: 'http://qudt.org/vocab/unit#UruguayPeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: a825de4e-887b-45d9-8e26-a92f3c1421ec @@ -2361,7 +2361,7 @@ name: Meter Squared per Second Squared symbol: m^2/s^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Specific energy + type: Specific energy workspace_id: null - model: sta.unit pk: 5f610a9e-1509-462e-964f-e9c45d8f1b76 @@ -2369,7 +2369,7 @@ name: Btu per Pound symbol: Btu/lb definition: 'http://qudt.org/vocab/unit#BtuPerPound' - unit_type: Specific energy + type: Specific energy workspace_id: null - model: sta.unit pk: c427d2f4-625d-4d8d-a0cd-4b4072f0635b @@ -2382,7 +2382,7 @@ http://unitsofmeasure.org/ucum.html#para-31; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-accepted.xml; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 9c9b99c5-7f8d-4d18-827e-8a06dbc2677c @@ -2390,7 +2390,7 @@ name: Pond symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 097a9ca4-0d7b-4eb9-a72c-801e6f9a680d @@ -2398,7 +2398,7 @@ name: Belize Dollar symbol: BZD definition: 'http://qudt.org/vocab/unit#BelizeDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: d68f7a20-1f84-4061-a434-3cba874894ec @@ -2406,7 +2406,7 @@ name: Ounce per Square Yard symbol: oz/yd^2 definition: 'http://qudt.org/vocab/unit#OuncePerSquareYard' - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: c7c9bd19-84e3-4c00-9f38-b1fdea72a7e0 @@ -2414,7 +2414,7 @@ name: Unit per Centimeter symbol: units/cm definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Inverse length + type: Inverse length workspace_id: null - model: sta.unit pk: e71b7400-d8fc-4032-b4a8-c7d02949743e @@ -2424,7 +2424,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://environment.data.gov.au/def/unit/KilogramsPerHectare - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: e100ff41-db40-474c-98dd-227cd288e5c2 @@ -2432,7 +2432,7 @@ name: Chilean Peso symbol: CLP definition: 'http://qudt.org/vocab/unit#ChileanPeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c7d65cc1-4e64-41b7-adf1-e32d5e7bb96c @@ -2440,7 +2440,7 @@ name: Year symbol: a definition: 'http://unitsofmeasure.org/ucum.html#para-31' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: cd2d8cee-de6e-41c2-937d-84dca9aac723 @@ -2448,7 +2448,7 @@ name: Mauritius Rupee symbol: MUR definition: 'http://qudt.org/vocab/unit#MauritiusRupee' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 414d92fa-1677-44ec-b8d1-b5449f23bcf7 @@ -2456,7 +2456,7 @@ name: Joule per Cubic Meter Kelvin symbol: J/(m^3 K) definition: 'http://qudt.org/vocab/unit#JoulePerCubicMeterKelvin' - unit_type: Volumetric heat capacity + type: Volumetric heat capacity workspace_id: null - model: sta.unit pk: e2c49b6e-c828-4be9-806c-6d5fc99b2ff4 @@ -2464,7 +2464,7 @@ name: Megahertz symbol: MHz definition: 'http://qudt.org/vocab/unit#MegaHertz' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 408177fb-7e3a-4e6b-945b-43dda45fafb5 @@ -2472,7 +2472,7 @@ name: Square Meter per Kilometer symbol: m^2/km definition: '' - unit_type: Area per length + type: Area per length workspace_id: null - model: sta.unit pk: a8fe12a9-5976-47a3-8b66-8202a91d79b4 @@ -2484,7 +2484,7 @@ http://qudt.org/vocab/unit#MillimeterOfMercuryAbsolute; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: f20562a1-9d3c-4cf1-b5e7-aa980bfaf51b @@ -2492,7 +2492,7 @@ name: Platinum (One Troy Ounce) symbol: XPT definition: 'http://qudt.org/vocab/unit#Platinum-OunceTroy' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: fcb3e678-f134-4d22-8198-f702250d20f8 @@ -2500,7 +2500,7 @@ name: Micromole per Kilogram symbol: µmol/kg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 58a753a6-f6c7-445d-8a35-f3fd427ae12c @@ -2510,7 +2510,7 @@ definition: >- http://qudt.org/vocab/unit#Kilowatt; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: d5e34b48-1c75-454c-af3d-9138b9cc2cd9 @@ -2521,7 +2521,7 @@ http://qudt.org/vocab/unit#Bushel; http://unitsofmeasure.org/ucum.html#para-37; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 1bc0cdfc-315e-45db-9e72-032cceae30fb @@ -2529,7 +2529,7 @@ name: Foot Pound Force per Minute symbol: ft-lbf/min definition: 'http://qudt.org/vocab/unit#FootPoundForcePerMinute' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 495fbebd-e15c-4a59-971e-27f542741e6b @@ -2537,7 +2537,7 @@ name: Pound per Foot symbol: lb/ft definition: 'http://qudt.org/vocab/unit#PoundPerFoot' - unit_type: Mass per length + type: Mass per length workspace_id: null - model: sta.unit pk: af617d17-33b8-4de3-beef-3ce0013af5b0 @@ -2545,7 +2545,7 @@ name: Saudi Riyal symbol: SAR definition: 'http://qudt.org/vocab/unit#SaudiRiyal' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 500679ac-6204-4b7c-9774-59a62d076946 @@ -2553,7 +2553,7 @@ name: Bel Millivolt symbol: BmV definition: 'http://unitsofmeasure.org/ucum.html#para-46' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: bf213175-8ee7-470a-aa8b-ca5e3128bc7f @@ -2561,7 +2561,7 @@ name: Cubic Foot symbol: cfs; cft_i definition: 'http://qudt.org/vocab/unit#CubicFoot' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 8427bb88-8b0e-41b5-bac6-37b66071dcec @@ -2569,7 +2569,7 @@ name: Dalasi symbol: GMD definition: 'http://qudt.org/vocab/unit#Dalasi' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 56a879ab-e708-4a60-80c9-2b3324b56aa3 @@ -2577,7 +2577,7 @@ name: Degree Celsius per Minute symbol: degC / m definition: 'http://qudt.org/vocab/unit#DegreeCelsiusPerMinute' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 1d56f59e-1c49-4ee1-8849-eabc75ff064f @@ -2585,7 +2585,7 @@ name: Admi Color Unit symbol: ADMI definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Color + type: Color workspace_id: null - model: sta.unit pk: 098a3d59-bfeb-4f15-817f-9f669ffdfab4 @@ -2593,7 +2593,7 @@ name: Statcoulomb per Mole symbol: statC/mol definition: 'http://qudt.org/vocab/unit#StatcoulombPerMole' - unit_type: Electrical charge per count + type: Electrical charge per count workspace_id: null - model: sta.unit pk: 3a85404e-ae05-4741-ac9f-b981c5052d7f @@ -2601,7 +2601,7 @@ name: Burundian Franc symbol: BIF definition: 'http://qudt.org/vocab/unit#BurundianFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 813ee6f3-f639-4092-9ed3-98c9d3938c87 @@ -2609,7 +2609,7 @@ name: Watt per Meter Kelvin symbol: W/(m*K) definition: 'http://qudt.org/vocab/unit#WattPerMeterKelvin' - unit_type: Thermal conductivity + type: Thermal conductivity workspace_id: null - model: sta.unit pk: 95f1f04b-2e60-4e81-93fd-ba09b5b48f26 @@ -2619,7 +2619,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: f39be686-90ac-4761-b67a-a21d3028cd89 @@ -2627,7 +2627,7 @@ name: Joule per Mole symbol: J/mol definition: 'http://qudt.org/vocab/unit#JoulePerMole' - unit_type: Molar energy + type: Molar energy workspace_id: null - model: sta.unit pk: 9b9eac45-895d-45f4-85c0-ceb49f23fda4 @@ -2635,7 +2635,7 @@ name: Erg per Cubic Centimeter symbol: '' definition: 'http://qudt.org/vocab/unit#ErgPerCubicCentimeter' - unit_type: Energy density + type: Energy density workspace_id: null - model: sta.unit pk: fba56f68-2641-48dd-9116-2c8812f86d9d @@ -2645,7 +2645,7 @@ definition: >- http://qudt.org/vocab/unit#BritishThermalUnitThermochemical; http://unitsofmeasure.org/ucum.html#para-43 - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 507b23d4-95e7-43b3-a1fe-ab1a48cfe8dc @@ -2653,7 +2653,7 @@ name: Cordoba Oro symbol: NIO definition: 'http://qudt.org/vocab/unit#CordobaOro' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 5285176b-2775-4180-baa0-1980bb8ad784 @@ -2661,7 +2661,7 @@ name: Cubic Centimeter per Gram symbol: cm^3/g definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Specific volume + type: Specific volume workspace_id: null - model: sta.unit pk: b84c04b2-0eb9-4399-9b01-910b7c3cf01b @@ -2669,7 +2669,7 @@ name: Planck Pressure symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckPressure' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: cd219d59-2c7a-454d-a139-ce2b7d390902 @@ -2677,7 +2677,7 @@ name: Singapore Dollar symbol: SGD definition: 'http://qudt.org/vocab/unit#SingaporeDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ced32eda-c7b3-40ab-a264-9ddbb50c40e2 @@ -2685,7 +2685,7 @@ name: Planck Force symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckForce' - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 5b8aef2b-7625-4f6d-a0c6-4ed563cdc40f @@ -2693,7 +2693,7 @@ name: Manat symbol: TMM definition: 'http://qudt.org/vocab/unit#Manat' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: a5660f36-fa43-4839-b097-d9cbffa5eb12 @@ -2701,7 +2701,7 @@ name: Mole Degree Celsius symbol: mol-degC definition: 'http://qudt.org/vocab/unit#MoleDegreeCelsius' - unit_type: Temperature count + type: Temperature count workspace_id: null - model: sta.unit pk: 2d4d676a-5aa7-4984-876f-f0b873b9b8b7 @@ -2709,7 +2709,7 @@ name: Btu per Square Foot Second Degree Fahrenheit symbol: Btu/(ft^2-s-degF) definition: 'http://qudt.org/vocab/unit#BtuPerSquareFootSecondDegreeFahrenheit' - unit_type: Heat transfer coefficient + type: Heat transfer coefficient workspace_id: null - model: sta.unit pk: ded7f726-cdca-4119-9d34-71ea23f56dd0 @@ -2717,7 +2717,7 @@ name: Kilocalorie per Gram symbol: kcal/gm definition: 'http://qudt.org/vocab/unit#KilocaloriePerGram' - unit_type: Specific energy + type: Specific energy workspace_id: null - model: sta.unit pk: bb0bbabc-4b55-47d7-8ada-35d35636a34e @@ -2726,7 +2726,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 2dac5b1a-a2ae-4f03-aa79-5a08bcd6d0dd @@ -2734,7 +2734,7 @@ name: Event symbol: '' definition: '' - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: ff5db5c2-32fb-4047-8104-9a9398b0512f @@ -2742,7 +2742,7 @@ name: Square Rod symbol: srd_us definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 8a1864b5-7c1b-42db-bfd5-f8c0e013b0e6 @@ -2750,7 +2750,7 @@ name: United States Dollar (Same Day) (Funds Code) symbol: '' definition: 'http://qudt.org/vocab/unit#USDollar-SameDay' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: bd32172d-2e11-4b08-9225-cbe102e1079c @@ -2758,7 +2758,7 @@ name: Kilowatt per Square Meter symbol: kW/m^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: badbffee-164e-4f70-be58-8db99d6b6f04 @@ -2766,7 +2766,7 @@ name: Milligram per Cubic Meter Squared symbol: (mg/m^3)^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: 62adf3ab-75be-4f24-b555-c922e5f3eeac @@ -2774,7 +2774,7 @@ name: Degree Celsius Centimeter symbol: cm-degC definition: 'http://qudt.org/vocab/unit#DegreeCelsiusCentimeter' - unit_type: Length temperature + type: Length temperature workspace_id: null - model: sta.unit pk: ae581bf0-4c99-4a69-a374-88bd354d8fa5 @@ -2782,7 +2782,7 @@ name: Syrian Pound symbol: SYP definition: 'http://qudt.org/vocab/unit#SyrianPound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 788f9a91-a7c2-4e7d-b776-7f3c72d7f5ce @@ -2790,7 +2790,7 @@ name: Barn symbol: b definition: 'http://qudt.org/vocab/unit#Barn' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 9f610f84-3a6d-43c7-bc30-0c794cc1c8db @@ -2798,7 +2798,7 @@ name: Mach symbol: '' definition: 'http://qudt.org/vocab/unit#Mach' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 6f3c31e6-110b-4102-b917-cae0a5a0e6d4 @@ -2806,7 +2806,7 @@ name: Liter per Hour symbol: L/hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 8e933e52-4b8f-4c6e-9cf0-17994ed5e1f2 @@ -2814,7 +2814,7 @@ name: Quad symbol: quad definition: 'http://qudt.org/vocab/unit#Quad' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: c9f3e9b2-d3c4-4ee9-8328-ff40667e2879 @@ -2822,7 +2822,7 @@ name: Ampere per Radian symbol: '' definition: 'http://qudt.org/vocab/unit#AmperePerRadian' - unit_type: Electrical current per angle + type: Electrical current per angle workspace_id: null - model: sta.unit pk: bf91756f-76ed-4c95-a13b-b5e5b4188c61 @@ -2832,7 +2832,7 @@ definition: >- http://qudt.org/vocab/unit#SquareYard; http://unitsofmeasure.org/ucum.html#para-34 - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 4dab44cb-7df8-40f0-8814-54b940153f9d @@ -2840,7 +2840,7 @@ name: Newton Meter Second symbol: Nms definition: '' - unit_type: Angular momentum + type: Angular momentum workspace_id: null - model: sta.unit pk: 7638afdb-6311-42c9-ad5b-0b3c4aeca2d1 @@ -2848,7 +2848,7 @@ name: Picogram per Kilogram symbol: pg/kg definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 16be6b3b-d62c-439d-a64c-80ac7914508b @@ -2856,7 +2856,7 @@ name: Planck Volt symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckVolt' - unit_type: Electromotive force + type: Electromotive force workspace_id: null - model: sta.unit pk: 9084a471-f1db-441e-bc82-470ef76b168e @@ -2866,7 +2866,7 @@ definition: >- http://qudt.org/vocab/unit#CentimeterPerSecond; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: fd98ea44-214c-46c1-a098-67cc54ab3fd3 @@ -2874,7 +2874,7 @@ name: Short Ton per Cubic Yard symbol: ton/yd definition: 'http://qudt.org/vocab/unit#TonShortPerCubicYard' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 57666286-c3c3-4366-8952-7a29eb82e800 @@ -2882,7 +2882,7 @@ name: Foot Pound Force per Second symbol: ft-lbf/s definition: 'http://qudt.org/vocab/unit#FootPoundForcePerSecond' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 89a1f3c8-0a2a-4205-8142-286e769da1bb @@ -2890,7 +2890,7 @@ name: Curie symbol: Ci definition: 'http://qudt.org/vocab/unit#Curie' - unit_type: Radioactivity + type: Radioactivity workspace_id: null - model: sta.unit pk: 2cd4788b-3031-40bb-8ae4-1f309b728863 @@ -2898,7 +2898,7 @@ name: Per Meter Kelvin symbol: m^-1 K^-1 definition: 'http://qudt.org/vocab/unit#PerMeterKelvin' - unit_type: Inverse length temperature + type: Inverse length temperature workspace_id: null - model: sta.unit pk: 45a05b36-39e4-4cef-adfa-90d21c35679a @@ -2906,7 +2906,7 @@ name: Kilogram per Hectare per Day symbol: kg/ha d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: 1cd8daf0-0770-4003-8b12-af12cf58bd6f @@ -2914,7 +2914,7 @@ name: Count per Milliliter symbol: '#/ml' definition: '' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 3881a12f-099b-4023-90c3-7e0457cc9d43 @@ -2922,7 +2922,7 @@ name: Cubic Meter symbol: m^3 definition: 'http://qudt.org/vocab/unit#CubicMeter' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 9fbd6b63-c8e6-44ba-ad3d-9a7f4ca89c3e @@ -2933,7 +2933,7 @@ http://qudt.org/vocab/unit#Stere; http://unitsofmeasure.org/ucum.html#para-47; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 4395b47f-6be6-4a01-a45c-a79c49122b6d @@ -2941,7 +2941,7 @@ name: Township symbol: twp definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 45fd84dd-018d-42d1-8a8d-5c2dd6a6b90b @@ -2949,7 +2949,7 @@ name: Planck Length symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckLength' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: edb15d8e-af32-4403-a10c-7c77943bf796 @@ -2959,7 +2959,7 @@ definition: >- http://qudt.org/vocab/unit#NauticalMilePerHour; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 4bfdf407-1e32-4e05-b284-f13890e68221 @@ -2967,7 +2967,7 @@ name: Kilogram Mole Kelvin symbol: kg-mol-K definition: '' - unit_type: Mass count temperature + type: Mass count temperature workspace_id: null - model: sta.unit pk: 98298556-a4b3-4e86-8e52-961fdd08c839 @@ -2975,7 +2975,7 @@ name: Pound Mole symbol: lb-mol definition: 'http://qudt.org/vocab/unit#PoundMole' - unit_type: Mass count + type: Mass count workspace_id: null - model: sta.unit pk: 711d66bf-1377-4f19-8bf1-1680dd4da13f @@ -2983,7 +2983,7 @@ name: Barie symbol: barie definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 854ec717-2fd6-4bd1-a66a-80b86957dd53 @@ -2991,7 +2991,7 @@ name: Kilocalorie per Mole symbol: kcal/mol definition: 'http://qudt.org/vocab/unit#KilocaloriePerMole' - unit_type: Molar energy + type: Molar energy workspace_id: null - model: sta.unit pk: ad92c99e-0187-4aa8-a177-3852c2c5ae56 @@ -2999,7 +2999,7 @@ name: Centistokes symbol: cSt definition: 'http://qudt.org/vocab/unit#Centistokes' - unit_type: Diffusivity + type: Diffusivity workspace_id: null - model: sta.unit pk: 86573d37-ded6-4300-b5f8-f02901d9ef86 @@ -3007,7 +3007,7 @@ name: Cubic Coulomb Meter per Square Joule symbol: C^3 m^3 J^-2 definition: 'http://qudt.org/vocab/unit#CubicCoulombMeterPerSquareJoule' - unit_type: Hyperpolarizability + type: Hyperpolarizability workspace_id: null - model: sta.unit pk: 0ebd56f8-c36a-4777-b22e-03768123fe88 @@ -3015,7 +3015,7 @@ name: Square Meter per Second symbol: m^2 s^-1 definition: 'http://qudt.org/vocab/unit#SquareMeterPerSecond' - unit_type: Diffusivity + type: Diffusivity workspace_id: null - model: sta.unit pk: d9c2db2b-e85d-4482-a546-11585c079fd1 @@ -3023,7 +3023,7 @@ name: Kilovolt-ampere symbol: kVA definition: '' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: de8f7d99-3bd4-44cd-a263-cc01e3dc50f8 @@ -3033,7 +3033,7 @@ definition: >- http://qudt.org/vocab/unit#Slug; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: cea5fa2f-dec2-48e7-990e-9aa025a925b2 @@ -3041,7 +3041,7 @@ name: Palladium (One Troy Ounce) symbol: XPD definition: 'http://qudt.org/vocab/unit#Palladium-OunceTroy' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: a2d0d9c1-343e-4f78-a983-d5270e243910 @@ -3049,7 +3049,7 @@ name: Decibel symbol: dB definition: 'http://qudt.org/vocab/unit#Decibel' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: 00e274a8-16b6-46cb-a3eb-c41dd6ca6e8a @@ -3057,7 +3057,7 @@ name: Cubic Inch symbol: in^3; cin_i definition: 'http://qudt.org/vocab/unit#CubicInch' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: f1b3fa78-7b26-499b-b9e4-2f99b149d736 @@ -3065,7 +3065,7 @@ name: Planck Energy Density symbol: '' definition: '' - unit_type: Energy density + type: Energy density workspace_id: null - model: sta.unit pk: 3cafb6c5-7ecf-4a79-916a-706229239ab8 @@ -3073,7 +3073,7 @@ name: Iceland Krona symbol: ISK definition: 'http://qudt.org/vocab/unit#IcelandKrona' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 0bb57cc4-60e6-43d3-8d7f-b7dc967722e8 @@ -3081,7 +3081,7 @@ name: Planck Frequency symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckFrequency' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: a3af6125-d798-4a71-b1da-68e6940d19c0 @@ -3089,7 +3089,7 @@ name: Joule per Kilogram symbol: J/kg definition: 'http://qudt.org/vocab/unit#JoulePerKilogram' - unit_type: Specific energy + type: Specific energy workspace_id: null - model: sta.unit pk: 0c9f484c-4efb-4662-b2a3-959905134cd6 @@ -3097,7 +3097,7 @@ name: Liberian Dollar symbol: LRD definition: 'http://qudt.org/vocab/unit#LiberianDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: efc9e040-b800-4c98-bee8-ea7c3bc72e70 @@ -3105,7 +3105,7 @@ name: Pound Force Second per Square Foot symbol: lbf-s/ft^2 definition: 'http://qudt.org/vocab/unit#PoundForceSecondPerSquareFoot' - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: 62df6cac-a866-4160-83bb-bfeb5071f70e @@ -3113,7 +3113,7 @@ name: 'Peck, British' symbol: pk_br definition: 'http://unitsofmeasure.org/ucum.html#para-38' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 7e7d1dec-4a26-4b12-9e8e-e24754547178 @@ -3121,7 +3121,7 @@ name: Iraqi Dinar symbol: IQD definition: 'http://qudt.org/vocab/unit#IraqiDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 8b61318a-2f20-4768-b159-ba5b354d4d90 @@ -3129,7 +3129,7 @@ name: Planck Density symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckDensity' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 32294134-234b-4f66-9332-662a00bbae89 @@ -3137,7 +3137,7 @@ name: Mile per Minute symbol: mi/min definition: 'http://qudt.org/vocab/unit#MilePerMinute' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 328baa06-bb63-49c4-b442-1240d0aad6df @@ -3145,7 +3145,7 @@ name: Cubic Yard symbol: yd^3; cyd_i definition: 'http://qudt.org/vocab/unit#CubicYard' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 0479a720-440f-4e48-9660-d855f43388d4 @@ -3153,7 +3153,7 @@ name: Japanese Yen symbol: JPY definition: 'http://qudt.org/vocab/unit#JapaneseYen' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 5731c858-b7f0-4451-ada5-d681ee2d2ebf @@ -3161,7 +3161,7 @@ name: Surinam Dollar symbol: SRD definition: 'http://qudt.org/vocab/unit#SurinamDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: efb13af5-1533-4369-b2a0-af6541f96ca6 @@ -3169,7 +3169,7 @@ name: Ban symbol: ban definition: 'http://qudt.org/vocab/unit#Ban' - unit_type: Amount of information + type: Amount of information workspace_id: null - model: sta.unit pk: d0cdc9b4-6ef8-4965-bd71-7a72eb1bc5bb @@ -3177,7 +3177,7 @@ name: Short Ton per Hour symbol: ton/hr definition: 'http://qudt.org/vocab/unit#TonShortPerHour' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: ec382d70-fb80-4ec3-90df-f06b8e771a70 @@ -3185,7 +3185,7 @@ name: Foot Pound Force per Square Foot symbol: ft-lbf/ft^2 definition: 'http://qudt.org/vocab/unit#FootPoundForcePerSquareFoot' - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: 817a2dfa-a17e-4a71-93f3-566ed41f4d98 @@ -3193,7 +3193,7 @@ name: Planck Intensity symbol: '' definition: '' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 1141b4cd-4a01-4143-b2e4-f30a1f07077e @@ -3201,7 +3201,7 @@ name: Watt Square Meter symbol: W m^2 definition: 'http://qudt.org/vocab/unit#WattSquareMeter' - unit_type: Power area + type: Power area workspace_id: null - model: sta.unit pk: 5c227d12-3142-4a1d-bd45-81837a7153f2 @@ -3209,7 +3209,7 @@ name: Bahamian Dollar symbol: BSD definition: 'http://qudt.org/vocab/unit#BahamianDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f1307d5d-983e-4c15-b25b-15b86f9e817c @@ -3217,7 +3217,7 @@ name: Count per 100 Milliliter symbol: '#/100 mL' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: ec112969-0b91-43f6-a8b3-e7dad13cb7bf @@ -3225,7 +3225,7 @@ name: Pied symbol: pied definition: 'http://unitsofmeasure.org/ucum.html#para-42' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 5c4a8771-8418-4e56-9266-f7d87ed28c82 @@ -3235,7 +3235,7 @@ definition: >- http://qudt.org/vocab/unit#Kilogram; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 94e611c0-a8ac-4f67-8187-8dd8ca044dc5 @@ -3243,7 +3243,7 @@ name: Microeinstein per Square Meter symbol: µE/m^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: ea5871e4-f8f1-4163-ad4c-b342ea1cab35 @@ -3251,7 +3251,7 @@ name: Count per Deciliter symbol: '#/dl' definition: '' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: a6e8822d-83e9-4015-b749-2f4f1d0eadcd @@ -3259,7 +3259,7 @@ name: Tesla Meter symbol: m T definition: 'http://qudt.org/vocab/unit#TeslaMeter' - unit_type: Magnetic flux per length + type: Magnetic flux per length workspace_id: null - model: sta.unit pk: 9afee7b5-60e1-4add-952c-e710ba97a937 @@ -3267,7 +3267,7 @@ name: Leone symbol: SLL definition: 'http://qudt.org/vocab/unit#Leone' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 93526a25-a0c0-466e-bb80-eefb12483fee @@ -3275,7 +3275,7 @@ name: Zambian Kwacha symbol: ZMK definition: 'http://qudt.org/vocab/unit#ZambianKwacha' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c6f85fbe-dd47-4861-af38-66e24532db6c @@ -3283,7 +3283,7 @@ name: Square Centimeter symbol: cm^2 definition: 'http://qudt.org/vocab/unit#SquareCentimeter' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: c4d3ac51-dacc-47fb-b167-6048625d5bde @@ -3291,7 +3291,7 @@ name: Tugrik symbol: MNT definition: 'http://qudt.org/vocab/unit#Tugrik' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 58b62b6a-6bf5-4d80-bc1a-ac19a55e38b7 @@ -3301,7 +3301,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Specific radioactivity + type: Specific radioactivity workspace_id: null - model: sta.unit pk: 1109872b-6a34-4a70-8dc4-c9e298a27d78 @@ -3309,7 +3309,7 @@ name: Centimeter Second Degree Celsius symbol: cm-s-degC definition: 'http://qudt.org/vocab/unit#CentimeterSecondDegreeCelsius' - unit_type: Length temperature time + type: Length temperature time workspace_id: null - model: sta.unit pk: b38277a6-df24-4da6-8372-dcf018b17ed2 @@ -3317,7 +3317,7 @@ name: Becquerel symbol: Bq definition: 'http://qudt.org/vocab/unit#Becquerel' - unit_type: Radioactivity + type: Radioactivity workspace_id: null - model: sta.unit pk: 01db89c2-2136-4005-a6dc-c9519e6a4136 @@ -3325,7 +3325,7 @@ name: Gram per Square Meter per Hour symbol: g/m^2 hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: c3d7c41a-a1e7-4b10-84df-9c622c1a5b3f @@ -3333,7 +3333,7 @@ name: Btu per Pound Mole Degree Fahrenheit symbol: Btu/(lb-mol-degF) definition: 'http://qudt.org/vocab/unit#BtuPerPoundMoleDegreeFahrenheit' - unit_type: Molar heat capacity + type: Molar heat capacity workspace_id: null - model: sta.unit pk: 80c57f67-af6d-4534-90c6-91a56c096bc2 @@ -3344,7 +3344,7 @@ http://qudt.org/vocab/unit#LightYear; http://www.unidata.ucar.edu/software/udunits/; http://unitsofmeasure.org/ucum.html#para-32 - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: eb2eb638-e83e-4b8c-9ac5-4448fd802b0f @@ -3352,7 +3352,7 @@ name: Btu per Hour symbol: Btu/hr definition: 'http://qudt.org/vocab/unit#BtuPerHour' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 18fc3b10-1a84-4285-87d2-4161c68f3c51 @@ -3360,7 +3360,7 @@ name: Statampere per Square Centimeter symbol: statA / cm^2 definition: 'http://qudt.org/vocab/unit#StatamperePerSquareCentimeter' - unit_type: Electrical current density + type: Electrical current density workspace_id: null - model: sta.unit pk: d724dd00-e203-4e30-91d4-a0892d36b8ef @@ -3368,7 +3368,7 @@ name: 'Inch, US Survey' symbol: in_us definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: e9d4f942-d78d-4c63-a2b0-83bad5d4b21a @@ -3376,7 +3376,7 @@ name: Euro symbol: EUR definition: 'http://qudt.org/vocab/unit#Euro' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b596e3a7-c0a6-4c65-9463-e2284651efb3 @@ -3384,7 +3384,7 @@ name: Megajoule per Square Meter symbol: MJ/m^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: b5fbe6c2-74e6-4304-b95b-9ab3dc7f844e @@ -3392,7 +3392,7 @@ name: Kuwaiti Dinar symbol: KWD definition: 'http://qudt.org/vocab/unit#KuwaitiDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f4ced321-9c5c-4814-a014-8fb815723d67 @@ -3400,7 +3400,7 @@ name: Guinea Franc symbol: GNF definition: 'http://qudt.org/vocab/unit#GuineaFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 1fdf6d90-27a4-48b8-8f2d-003b3df1edea @@ -3410,7 +3410,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 3f92c1fa-ab0f-40cc-ad0d-712d9e9e01bb @@ -3418,7 +3418,7 @@ name: Millitorr symbol: utorr definition: 'http://qudt.org/vocab/unit#MilliTorr' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 2256a3c2-b643-4828-980e-5e4d53b4ab6a @@ -3426,7 +3426,7 @@ name: Pound Force per Foot symbol: lbf/ft definition: 'http://qudt.org/vocab/unit#PoundForcePerFoot' - unit_type: Force per length + type: Force per length workspace_id: null - model: sta.unit pk: 2c2baf39-4339-440a-90a5-e9599ca2e77e @@ -3434,7 +3434,7 @@ name: Ounce Force Inch symbol: ozf-in definition: 'http://qudt.org/vocab/unit#OunceForceInch' - unit_type: Torque + type: Torque workspace_id: null - model: sta.unit pk: 719ba7e2-68c2-4665-9440-82b772339c17 @@ -3442,7 +3442,7 @@ name: North Korean Won symbol: KPW definition: 'http://qudt.org/vocab/unit#NorthKoreanWon' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ea1c4611-f9c4-48c6-8e14-28900b9d6ec5 @@ -3452,7 +3452,7 @@ definition: >- http://qudt.org/vocab/unit#Shake; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: dea6032a-34e4-4cce-95fe-8fe7918cba60 @@ -3461,7 +3461,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 4d703f8a-2912-4966-b99a-c32ec5b37a70 @@ -3469,7 +3469,7 @@ name: "British Thermal Unit At 60\_°F" symbol: Btu_60 definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 93545694-ad4a-4ad7-ac03-d3815ec39475 @@ -3477,7 +3477,7 @@ name: Watt per Square Meter Quartic Kelvin symbol: W m^-2 K^-4 definition: 'http://qudt.org/vocab/unit#WattPerSquareMeterQuarticKelvin' - unit_type: Power per area quartic temperature + type: Power per area quartic temperature workspace_id: null - model: sta.unit pk: b5526792-d7d3-41c4-bf4b-2c9fbb95133d @@ -3487,7 +3487,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 4327a5ee-36d5-4d15-8129-039d72fe1686 @@ -3495,7 +3495,7 @@ name: Coulomb per Square Meter symbol: C/m^2 definition: 'http://qudt.org/vocab/unit#CoulombPerSquareMeter' - unit_type: Electrical flux density + type: Electrical flux density workspace_id: null - model: sta.unit pk: ae12ec47-d0b3-49d0-83af-2660bc4822eb @@ -3505,7 +3505,7 @@ definition: >- http://qudt.org/vocab/unit#KilogramPerSquareMeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: 1b8153de-855e-4604-90b5-45e066906bd0 @@ -3513,7 +3513,7 @@ name: Square Foot Hour Degree Fahrenheit symbol: ft^2-hr-degF definition: 'http://qudt.org/vocab/unit#SquareFootHourDegreeFahrenheit' - unit_type: Area time temperature + type: Area time temperature workspace_id: null - model: sta.unit pk: 836999cb-1d03-442a-9ef7-7acf924b34ab @@ -3521,7 +3521,7 @@ name: Megaliter per Day symbol: Ml/d definition: 'http://environment.data.gov.au/def/unit/MegalitrePerDay' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 1b5dade0-fd27-451e-b7ab-895b96d6e4ec @@ -3531,7 +3531,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration volume per volume + type: Concentration volume per volume workspace_id: null - model: sta.unit pk: 5f5d36a8-689c-43bd-b3f0-1f497a071005 @@ -3539,7 +3539,7 @@ name: Kilocalorie symbol: kcal definition: 'http://qudt.org/vocab/unit#Kilocalorie' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 1e72813c-b03e-4c4e-b1d1-e36082175772 @@ -3547,7 +3547,7 @@ name: Cubic Meter per Kelvin symbol: m^3/K definition: 'http://qudt.org/vocab/unit#CubicMeterPerKelvin' - unit_type: Volume thermal expansion + type: Volume thermal expansion workspace_id: null - model: sta.unit pk: b568680b-1131-4621-ba0a-29a7aff11584 @@ -3555,7 +3555,7 @@ name: New Zealand Dollar symbol: NZD definition: 'http://qudt.org/vocab/unit#NewZealandDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9ebbf1f9-6335-4676-9d60-fb6636906076 @@ -3565,7 +3565,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 55ed55bc-fab5-41eb-a31a-038ce94c39b7 @@ -3573,7 +3573,7 @@ name: United States Pharmacopeia Unit symbol: USP'U definition: 'http://unitsofmeasure.org/ucum.html#para-45' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 5b5c5058-584c-45e5-876f-bb9a17b04a03 @@ -3581,7 +3581,7 @@ name: Metric ton per Second symbol: tonne/s definition: '' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 8c4961f7-d712-4e4a-ad6e-ab8b7ed08288 @@ -3589,7 +3589,7 @@ name: Pound Mole Degree Fahrenheit symbol: lb-mol-degF definition: 'http://qudt.org/vocab/unit#PoundMoleDegreeFahrenheit' - unit_type: Mass count temperature + type: Mass count temperature workspace_id: null - model: sta.unit pk: 58a86c98-81fb-4f09-8aef-22259092bfd9 @@ -3597,7 +3597,7 @@ name: Pakistan Rupee symbol: PKR definition: 'http://qudt.org/vocab/unit#PakistanRupee' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 1fe91f4d-d4e4-4f46-a2fc-e448718e81e2 @@ -3605,7 +3605,7 @@ name: Costa Rican Colon symbol: CRC definition: 'http://qudt.org/vocab/unit#CostaRicanColon' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: be84b86c-c61d-47b9-b261-eee9ce07a5fa @@ -3615,7 +3615,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-48; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 5d401886-8e97-420a-b1b1-3dec8a5c33e8 @@ -3623,7 +3623,7 @@ name: South African Rand symbol: ZAR definition: 'http://qudt.org/vocab/unit#SouthAfricanRand' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 52edbcfb-b3ac-4821-8c60-b53d41f4824d @@ -3633,7 +3633,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 65735aed-7569-48a1-b517-b38161256504 @@ -3641,7 +3641,7 @@ name: Kilocalorie per Square Centimeter Minute symbol: kcal/(cm^2-min) definition: 'http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeterMinute' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: c8c37a11-7867-490c-8862-35f95d1c26a6 @@ -3649,7 +3649,7 @@ name: Femtogram per Kilogram symbol: fg/kg definition: '' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 17b21fcc-8990-42b5-819c-ef413845713f @@ -3657,7 +3657,7 @@ name: Count per Gram symbol: '#/g' definition: '' - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 5fa83376-ae3d-4fab-b52a-920ab6110812 @@ -3665,7 +3665,7 @@ name: Ouguiya symbol: MRO definition: 'http://qudt.org/vocab/unit#Ouguiya' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c8286a89-b94c-4e0b-81c9-2d02030697a7 @@ -3673,7 +3673,7 @@ name: Stone symbol: stone_av definition: 'http://unitsofmeasure.org/ucum.html#para-39' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: e83fa68e-5ce0-4447-b187-ed9499179a1d @@ -3681,7 +3681,7 @@ name: Decisiemen per Meter symbol: dS/m definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: 3ab49fa2-3855-4a5a-8886-5bd2af182c18 @@ -3689,7 +3689,7 @@ name: Planck Area symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckArea' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 2290f1e9-48dc-44b1-b753-2252009c0be2 @@ -3700,7 +3700,7 @@ http://qudt.org/vocab/unit#PoundTroy; http://unitsofmeasure.org/ucum.html#para-40; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: f9e2c503-02cf-4d55-9fe3-e0e73863f844 @@ -3708,7 +3708,7 @@ name: Milliliter symbol: mL definition: 'http://environment.data.gov.au/def/unit/Millilitre' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 37005b7f-9a0c-474d-a579-70cfed322af9 @@ -3720,7 +3720,7 @@ mhttp://unitsofmeasure.org/ucum.html#para-28; http://www.unidata.ucar.edu/software/udunits/; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 6f75a093-eda8-43c4-a2f0-6c69f7cfe542 @@ -3728,7 +3728,7 @@ name: Pound per Cubic Foot symbol: lb/ft^3 definition: 'http://qudt.org/vocab/unit#PoundPerCubicFoot' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: da794595-5b25-464c-bf4c-4316a9cc71fe @@ -3736,7 +3736,7 @@ name: Foot per Minute symbol: ft/min definition: 'http://qudt.org/vocab/unit#FootPerMinute' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 1a050b38-3dbd-4b29-b409-49d1d72a7c55 @@ -3744,7 +3744,7 @@ name: Decisiemen per Centimeter symbol: dS/cm definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: 4eb1ab84-dfe1-4016-bf5f-ff8d82b21f45 @@ -3752,7 +3752,7 @@ name: Nit symbol: nt definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: fe9552bd-654b-42b7-82af-613f6c6430cb @@ -3763,7 +3763,7 @@ http://qudt.org/vocab/unit#Parsec; http://unitsofmeasure.org/ucum.html#para-31; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: f5642431-d217-422e-b91d-4e77443d2cc3 @@ -3773,7 +3773,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-38; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: bc989673-b969-4e3e-8e68-b9697fdb66c2 @@ -3781,7 +3781,7 @@ name: Arpentlin symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: c4cebc05-238b-494a-ab22-c8728417ff1a @@ -3789,7 +3789,7 @@ name: Pound Force per Pound symbol: lbf/lb definition: 'http://qudt.org/vocab/unit#PoundForcePerPound' - unit_type: Thrust to mass ratio + type: Thrust to mass ratio workspace_id: null - model: sta.unit pk: 01d93614-0aff-496c-9865-efadb747377b @@ -3797,7 +3797,7 @@ name: Abhenry symbol: abH definition: 'http://qudt.org/vocab/unit#Abhenry' - unit_type: Inductance + type: Inductance workspace_id: null - model: sta.unit pk: 58495f09-f9f7-42b6-9348-af29b8ca09e5 @@ -3808,7 +3808,7 @@ http://qudt.org/vocab/unit#Lumen; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Luminous flux + type: Luminous flux workspace_id: null - model: sta.unit pk: fe834fab-d653-4be0-9d7a-c4f619b95419 @@ -3818,7 +3818,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 7e466e04-e233-47d9-b565-63f082e218ed @@ -3829,7 +3829,7 @@ http://qudt.org/vocab/unit#GallonUSPerMinute; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: a76ff9fa-8d0b-47be-b562-36510670d63a @@ -3837,7 +3837,7 @@ name: Jackson Candle Unit symbol: JCU definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: a4177c54-39cf-42f5-a8bf-f429f48c5e51 @@ -3847,7 +3847,7 @@ definition: >- http://environment.data.gov.au/def/unit/MolPercent; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Concentration count per count + type: Concentration count per count workspace_id: null - model: sta.unit pk: 764a81f9-d73c-4ee4-ad7f-e41962b3b56a @@ -3855,7 +3855,7 @@ name: Gram per Minute symbol: g/min definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 8c96ef72-e462-454a-bb09-51a50383f9f9 @@ -3863,7 +3863,7 @@ name: Slovak Koruna symbol: SKK definition: 'http://qudt.org/vocab/unit#SlovakKoruna' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 06afd127-0008-46ca-a3b5-3a9293122bf8 @@ -3871,7 +3871,7 @@ name: Disintegration per Minute per Gram symbol: dpm/g definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Specific radioactivity + type: Specific radioactivity workspace_id: null - model: sta.unit pk: f3ed79c6-aaa1-414f-96c0-3fa0ce1b764b @@ -3879,7 +3879,7 @@ name: Btu per Pound Degree Fahrenheit symbol: Btu/(lb-degF) definition: 'http://qudt.org/vocab/unit#BtuPerPoundDegreeFahrenheit' - unit_type: Specific heat capacity + type: Specific heat capacity workspace_id: null - model: sta.unit pk: c0fec802-2aeb-4371-b0f6-ebc53c236a16 @@ -3890,7 +3890,7 @@ http://unitsofmeasure.org/ucum.html#para-31; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 998732a2-925a-495b-92b8-4813a179c8d0 @@ -3898,7 +3898,7 @@ name: Bel Kilowatt symbol: BkW definition: 'http://unitsofmeasure.org/ucum.html#para-46' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: 77b3d79f-4b57-47a5-8f3f-0323e7dee209 @@ -3906,7 +3906,7 @@ name: Cedi symbol: GHS definition: 'http://qudt.org/vocab/unit#Cedi' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 2a093ab7-93b4-48bc-afcf-9538e6707159 @@ -3914,7 +3914,7 @@ name: Btu per Pound Degree Rankine symbol: Btu/(lb-degR) definition: 'http://qudt.org/vocab/unit#BtuPerPoundDegreeRankine' - unit_type: Specific heat capacity + type: Specific heat capacity workspace_id: null - model: sta.unit pk: b32f7bc9-b1e0-408e-931a-92f2eaedb362 @@ -3922,7 +3922,7 @@ name: Btu per Degree Rankine symbol: Btu/degR definition: 'http://qudt.org/vocab/unit#BtuPerDegreeRankine' - unit_type: Heat capacity + type: Heat capacity workspace_id: null - model: sta.unit pk: 9fbc6be1-0978-4c76-ae3f-89bde8bdca53 @@ -3930,7 +3930,7 @@ name: Degree Fahrenheit per Minute symbol: degF / m definition: 'http://qudt.org/vocab/unit#DegreeFahrenheitPerMinute' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 1ad41771-fe24-46e6-b87d-4bd8ee103575 @@ -3938,7 +3938,7 @@ name: Sphere symbol: sph definition: 'http://unitsofmeasure.org/ucum.html#para-47' - unit_type: Solid angle + type: Solid angle workspace_id: null - model: sta.unit pk: f870176b-6d0c-4532-90a9-5c4a8786d79c @@ -3946,7 +3946,7 @@ name: Second Squared symbol: s^2 definition: 'http://qudt.org/vocab/unit#SecondTimeSquared' - unit_type: Time squared + type: Time squared workspace_id: null - model: sta.unit pk: 42eae0b3-0ac4-4510-a397-7ce507acbcb6 @@ -3954,7 +3954,7 @@ name: Pound Force per Square Inch Second symbol: lbf / in^2-s definition: 'http://qudt.org/vocab/unit#PoundForcePerSquareInchSecond' - unit_type: Pressure or stress rate + type: Pressure or stress rate workspace_id: null - model: sta.unit pk: ef87a060-9e56-4d07-a312-8bef5e1aec04 @@ -3964,7 +3964,7 @@ definition: >- http://qudt.org/vocab/unit#MeterPerSecond; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 34281051-9b86-4367-a36d-e5826e9a0970 @@ -3972,7 +3972,7 @@ name: Meter per Meter symbol: '-' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Length fraction + type: Length fraction workspace_id: null - model: sta.unit pk: 1a5e4282-a5c8-4cb6-96d1-49f253204407 @@ -3980,7 +3980,7 @@ name: East Caribbean Dollar symbol: XCD definition: 'http://qudt.org/vocab/unit#EastCaribbeanDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 97cb7bea-668d-4e4d-96f9-d46f030ab2ad @@ -3991,7 +3991,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/; http://unitsofmeasure.org/ucum.html#para-31 - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 72041cb2-983d-4bd7-b4e0-615e2a664e15 @@ -3999,7 +3999,7 @@ name: Kelvin per Tesla symbol: K T^-1 definition: 'http://qudt.org/vocab/unit#KelvinPerTesla' - unit_type: Temperature per magnetic flux density + type: Temperature per magnetic flux density workspace_id: null - model: sta.unit pk: bb496507-d491-40b1-b939-3fcade509240 @@ -4009,7 +4009,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: ceb795f4-8ec7-4f97-b582-3f6d16f07ea8 @@ -4017,7 +4017,7 @@ name: Megahertz per Tesla symbol: MHz T^-1 definition: 'http://qudt.org/vocab/unit#MegaHertzPerTesla' - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: 2b3638a9-63f9-4daf-a143-220c6147b04c @@ -4025,7 +4025,7 @@ name: Hryvnia symbol: UAH definition: 'http://qudt.org/vocab/unit#Hryvnia' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 105f1e2a-9879-496a-b625-43fb48b63045 @@ -4035,7 +4035,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-37; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: aaebe1c1-93f7-4eba-9799-f9c423ccd87e @@ -4043,7 +4043,7 @@ name: Degree Fahrenheit per Hour symbol: degF / h definition: 'http://qudt.org/vocab/unit#DegreeFahrenheitPerHour' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 5a5f0fe2-e5a6-4ac8-b6c0-f94a16d925b7 @@ -4051,7 +4051,7 @@ name: Kilogram per Mole symbol: kg mol^-1 definition: 'http://qudt.org/vocab/unit#KilogramPerMole' - unit_type: Molar mass + type: Molar mass workspace_id: null - model: sta.unit pk: 3d4d5883-8a10-49b0-a10c-555530a62766 @@ -4059,7 +4059,7 @@ name: Hong Kong Dollar symbol: HKD definition: 'http://qudt.org/vocab/unit#HongKongDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 5e48389d-0811-4f45-a4ba-d418916b321c @@ -4067,7 +4067,7 @@ name: Square Meter Kelvin symbol: m^2-K definition: 'http://qudt.org/vocab/unit#SquareMeterKelvin' - unit_type: Area temperature + type: Area temperature workspace_id: null - model: sta.unit pk: 0e0cf068-9884-47c2-a6cd-dee025f9ecd0 @@ -4075,7 +4075,7 @@ name: Kilogram per Square Meter per Second symbol: kg/m^2/s definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: 417a4c69-0813-4615-98f1-d4b4a4db0b1c @@ -4083,7 +4083,7 @@ name: Ampere per Meter symbol: A/m definition: 'http://qudt.org/vocab/unit#AmperePerMeter' - unit_type: Magnetic field strength + type: Magnetic field strength workspace_id: null - model: sta.unit pk: e37e55b7-e7f7-4156-add3-752fb666df1e @@ -4091,7 +4091,7 @@ name: Hour Square Foot symbol: hr-ft^2 definition: 'http://qudt.org/vocab/unit#HourSquareFoot' - unit_type: Area time + type: Area time workspace_id: null - model: sta.unit pk: b770aabc-2500-42e5-b9c4-ca540fd741c6 @@ -4099,7 +4099,7 @@ name: Kilogram per 1000 Square Meter symbol: kg/1000 m^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: bfc5427a-8a84-4f65-8c88-5975d11ae8c1 @@ -4111,7 +4111,7 @@ http://qudt.org/vocab/unit#TonMetric; http://qudt.org/vocab/unit#MetricTon; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 3893cfd4-b25c-40a3-abef-888b6971c155 @@ -4121,7 +4121,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: 8e422b52-2405-47ab-b7b7-dcca90b4db44 @@ -4131,7 +4131,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 660a8b36-ed9a-4d9c-b76f-f370a38314f7 @@ -4139,7 +4139,7 @@ name: Pound Degree Rankine symbol: lb-degR definition: 'http://qudt.org/vocab/unit#PoundDegreeRankine' - unit_type: Mass temperature + type: Mass temperature workspace_id: null - model: sta.unit pk: 3f613ad0-9479-464d-ba32-00ab8bde749e @@ -4149,7 +4149,7 @@ definition: >- http://qudt.org/vocab/unit#Fathom; http://unitsofmeasure.org/ucum.html#para-34 - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 6e5cdd25-1104-41c8-ac70-37b18a8333ef @@ -4157,7 +4157,7 @@ name: Presence or Absence symbol: PrsAbs definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 46ab7aa3-7090-40b0-ac94-f586a37ab4fb @@ -4165,7 +4165,7 @@ name: Hectopascal symbol: hPa definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: e7ca0844-1be7-48cb-800e-50b41ff914e2 @@ -4175,7 +4175,7 @@ definition: >- http://qudt.org/vocab/unit#Torr; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 87a1e2ac-a25b-4e1d-9050-5f2144a637a2 @@ -4183,7 +4183,7 @@ name: Milliequivalent symbol: meq definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 855979cf-eebd-489e-a186-cab7011d63db @@ -4191,7 +4191,7 @@ name: Vatu symbol: VUV definition: 'http://qudt.org/vocab/unit#Vatu' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 4e26b4fa-cb50-49d0-bd3d-af45fdcc5e6f @@ -4199,7 +4199,7 @@ name: Nuevo Sol symbol: PEN definition: 'http://qudt.org/vocab/unit#NuevoSol' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: bde4ca16-370a-4522-9be4-0d5ddb37b4d5 @@ -4209,7 +4209,7 @@ definition: >- http://qudt.org/vocab/unit#Mho; http://unitsofmeasure.org/ucum.html#para-47 - unit_type: Electrical conductance + type: Electrical conductance workspace_id: null - model: sta.unit pk: 84551a45-b7d1-4d41-b32c-7b5b60dbf1aa @@ -4217,7 +4217,7 @@ name: Kiloohm Centimeter symbol: kOhm-cm definition: '' - unit_type: Electrical resistivity + type: Electrical resistivity workspace_id: null - model: sta.unit pk: 332649a7-1f8d-474b-a9a9-a82256f9bf3a @@ -4225,7 +4225,7 @@ name: Lumen per Watt symbol: '' definition: 'http://qudt.org/vocab/unit#LumenPerWatt' - unit_type: Luminous efficacy + type: Luminous efficacy workspace_id: null - model: sta.unit pk: 516c76ea-be90-4792-8fc5-443d9c302ad3 @@ -4233,7 +4233,7 @@ name: Coulomb per Kilogram symbol: C/kg definition: 'http://qudt.org/vocab/unit#CoulombPerKilogram' - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: 352d5b7a-9dc1-4213-9d09-ca6487498e96 @@ -4241,7 +4241,7 @@ name: Square Centimeter Second symbol: cm^2-s definition: 'http://qudt.org/vocab/unit#SquareCentimeterSecond' - unit_type: Area time + type: Area time workspace_id: null - model: sta.unit pk: c45d8f78-a562-4125-bee9-bc4f10884b9f @@ -4249,7 +4249,7 @@ name: Megaliter per Calendar Month symbol: Ml/mo_c definition: 'http://environment.data.gov.au/def/unit/MegalitrePerMonth' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 46dbeb48-3913-4418-8c0a-18a2922e426f @@ -4257,7 +4257,7 @@ name: Algerian Dinar symbol: DZD definition: 'http://qudt.org/vocab/unit#AlgerianDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: be534e43-ee73-4fdc-b566-227461caed74 @@ -4265,7 +4265,7 @@ name: Revolution per Second Squared symbol: '' definition: 'http://qudt.org/vocab/unit#RevolutionPerSecondSquared' - unit_type: Angular acceleration + type: Angular acceleration workspace_id: null - model: sta.unit pk: b209444b-aadf-4177-8a10-9730a27a03a0 @@ -4273,7 +4273,7 @@ name: Planck Impedance symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckResistance' - unit_type: Electrical resistance + type: Electrical resistance workspace_id: null - model: sta.unit pk: a855b627-3f0a-4565-bb84-fbefb6172ab4 @@ -4283,7 +4283,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-46; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: 416c7f7c-be94-4b48-80d6-fc22899ec52e @@ -4291,7 +4291,7 @@ name: 'Yard, British' symbol: yd_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: efe3c963-bca0-4aed-9660-e654b58dff3b @@ -4299,7 +4299,7 @@ name: Latvian Lats symbol: LVL definition: 'http://qudt.org/vocab/unit#LatvianLats' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b229ec19-2f1c-4c04-bf75-2a4422ce60be @@ -4310,7 +4310,7 @@ http://qudt.org/vocab/unit#PennyWeight; http://unitsofmeasure.org/ucum.html#para-40; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: f80688da-df06-459b-9d16-37a2c41f76db @@ -4321,7 +4321,7 @@ http://qudt.org/vocab/unit#Phot; http://unitsofmeasure.org/ucum.html#para-33; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Illuminance + type: Illuminance workspace_id: null - model: sta.unit pk: d1e77aa3-7650-40cb-83bf-9cc740fec000 @@ -4329,7 +4329,7 @@ name: Gigajoule symbol: GJ definition: '' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 29742c05-a1de-408f-a7b6-54b80b50bbd6 @@ -4342,7 +4342,7 @@ https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Temperature + type: Temperature workspace_id: null - model: sta.unit pk: a3bd4760-0c4e-4778-8970-1d594b2d3736 @@ -4352,7 +4352,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-41; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 6d146844-2882-4c9f-bb58-3718210e81a7 @@ -4364,7 +4364,7 @@ http://unitsofmeasure.org/ucum.html#para-44; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 412a706c-1245-454d-aa9a-961b5df4e544 @@ -4372,7 +4372,7 @@ name: Absiemen symbol: aS definition: 'http://qudt.org/vocab/unit#Absiemen' - unit_type: Electrical conductance + type: Electrical conductance workspace_id: null - model: sta.unit pk: 26b01908-6ea6-4b60-bd97-adb48ffdf5c6 @@ -4380,7 +4380,7 @@ name: Degree Centigrade symbol: DegC definition: 'http://qudt.org/vocab/unit#DegreeCentigrade' - unit_type: Temperature + type: Temperature workspace_id: null - model: sta.unit pk: 4cd91792-23b4-4173-88aa-9103caddd55c @@ -4388,7 +4388,7 @@ name: Kilogram per Month symbol: kg/month definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 62d181ae-03a4-4b20-9577-c07e910c3415 @@ -4396,7 +4396,7 @@ name: Gallon US per Hour symbol: gph definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 674ec55a-f336-4582-a197-caf9a3d2c363 @@ -4404,7 +4404,7 @@ name: Dimensionless symbol: '-' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 3d397846-9a3f-4550-ae95-726846b3dd93 @@ -4412,7 +4412,7 @@ name: Colombian Peso symbol: COP definition: 'http://qudt.org/vocab/unit#ColombianPeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9c7a6f0f-23e7-4ab7-bef8-4d2e10f3c161 @@ -4420,7 +4420,7 @@ name: Micromole per Mole symbol: umol/mol definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per count + type: Concentration count per count workspace_id: null - model: sta.unit pk: d04d575b-9049-4d72-8f10-cf4d74c46b9b @@ -4428,7 +4428,7 @@ name: Wir Franc (Complementary Currency) symbol: CHW definition: 'http://qudt.org/vocab/unit#WIRFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c2d1ac9f-200c-4765-9423-9cc273b5585d @@ -4438,7 +4438,7 @@ definition: >- http://environment.data.gov.au/def/unit/GramsPerCubicCentimeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 038c6f7b-4bf8-46ff-ae13-02c2f4e140cb @@ -4446,7 +4446,7 @@ name: Bar symbol: bar definition: 'http://qudt.org/vocab/unit#Bar' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 911d9635-7bc8-484c-b169-29a283768b12 @@ -4457,7 +4457,7 @@ http://qudt.org/vocab/unit#LiquidOunceUS; http://www.unidata.ucar.edu/software/udunits/; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 5be60f3f-136d-4762-ad33-14695d530ac8 @@ -4467,7 +4467,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: d03dd746-488c-4168-bf56-ef2fc3e49d9e @@ -4475,7 +4475,7 @@ name: Som symbol: KGS definition: 'http://qudt.org/vocab/unit#Som' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: daf0554e-a521-4462-b9cf-b62d41cf987d @@ -4483,7 +4483,7 @@ name: Microgram per Milliliter symbol: µg/mL definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 031191b5-6f8c-48e3-8d7b-6c45a30cb979 @@ -4491,7 +4491,7 @@ name: Per Mille By Volume symbol: ‰ by vol definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration volume per volume + type: Concentration volume per volume workspace_id: null - model: sta.unit pk: ab0939da-8e65-43fd-836b-a378913e65ab @@ -4499,7 +4499,7 @@ name: Millisiemen per Centimeter symbol: mS/cm definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: e5c16836-4b11-498c-a6f9-2f82ce72f0ad @@ -4507,7 +4507,7 @@ name: Milligram per Cubic Meter symbol: mg/m^3 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 59b84af1-b24e-4b3d-8fbe-000b672fb378 @@ -4519,7 +4519,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://unitsofmeasure.org/ucum.html#para-33http://www.unidata.ucar.edu/software/udunits/; https://en.wikipedia.org/wiki/Lambert_%28unit%29 - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: 93fa40a3-6dea-42b6-92aa-5864da88327a @@ -4527,7 +4527,7 @@ name: Tesla Second symbol: s T definition: 'http://qudt.org/vocab/unit#TeslaSecond' - unit_type: Mass per electrical charge + type: Mass per electrical charge workspace_id: null - model: sta.unit pk: d7b3cd09-66d5-46e1-80de-8afc414fc9b5 @@ -4535,7 +4535,7 @@ name: Per Trillion versus Pee Dee Belemnite symbol: pptPDB definition: 'http://environment.data.gov.au/def/unit/PerTrillion_PDB' - unit_type: Stable isotope delta + type: Stable isotope delta workspace_id: null - model: sta.unit pk: 7b65b27e-b085-4bb8-b222-f10dea2af28f @@ -4543,7 +4543,7 @@ name: Square Meter per Meter symbol: m^2/m definition: '' - unit_type: Area per length + type: Area per length workspace_id: null - model: sta.unit pk: 9da838fc-ba8d-47a2-b615-79097829b1ca @@ -4551,7 +4551,7 @@ name: Joule per Kilogram Kelvin symbol: J/(kg-K) definition: 'http://qudt.org/vocab/unit#JoulePerKilogramKelvin' - unit_type: Specific heat capacity + type: Specific heat capacity workspace_id: null - model: sta.unit pk: bd7e28d2-34bf-415d-a04d-db39811e5a0f @@ -4559,7 +4559,7 @@ name: Slug per Square Foot symbol: slug/ft^2 definition: 'http://qudt.org/vocab/unit#SlugPerSquareFoot' - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: 67bf4f95-15b4-4905-b55b-7e0cac73d97b @@ -4567,7 +4567,7 @@ name: Kilocalorie per Minute symbol: kcal/min definition: 'http://qudt.org/vocab/unit#KilocaloriePerMinute' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: a1407fda-992f-437a-bca8-eb5589d1a59f @@ -4580,7 +4580,7 @@ https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-accepted.xml; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 43505a08-50cf-49f1-a10a-6031f54e81aa @@ -4590,7 +4590,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-43; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 64b3247e-93ba-4a51-9585-403ee36862cd @@ -4598,7 +4598,7 @@ name: Historical Winchter Gallon symbol: gal_wi definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: d653ef6d-414d-4e26-a1c2-13ef9ffc08e5 @@ -4606,7 +4606,7 @@ name: 'Inch, British' symbol: in_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 8ca23e70-c530-45ed-9e7c-d39ffac1748e @@ -4614,7 +4614,7 @@ name: Cayman Islands Dollar symbol: KYD definition: 'http://qudt.org/vocab/unit#CaymanIslandsDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f7c814d4-8aca-48cc-81de-b833cf42e435 @@ -4625,7 +4625,7 @@ http://qudt.org/vocab/unit#Ohm; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electrical resistance + type: Electrical resistance workspace_id: null - model: sta.unit pk: 4c781c6b-76dd-4d1f-bc74-2d4bea6edbc5 @@ -4633,7 +4633,7 @@ name: Quetzal symbol: GTQ definition: 'http://qudt.org/vocab/unit#Quetzal' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 143b49a8-b925-4b21-99b4-c2572c6efbe1 @@ -4641,7 +4641,7 @@ name: Cubic Meter per Day symbol: m^3/d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 00dd301f-1a74-4c41-9bbb-ec5115e83dd2 @@ -4651,7 +4651,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-35; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 984cec8d-a307-4602-818f-612c1e3d804a @@ -4661,7 +4661,7 @@ definition: >- http://qudt.org/vocab/unit#SquareInch; http://unitsofmeasure.org/ucum.html#para-34 - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 0891366c-2326-4980-9803-a9902d0ad739 @@ -4671,7 +4671,7 @@ definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://unitsofmeasure.org/ucum.html#para-33 - unit_type: Inverse length + type: Inverse length workspace_id: null - model: sta.unit pk: 223db069-50f9-4eda-a389-1b75f262b30f @@ -4679,7 +4679,7 @@ name: Planck Resistance symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckResistance' - unit_type: Electrical resistance + type: Electrical resistance workspace_id: null - model: sta.unit pk: a8896651-8946-4a64-924e-6f82c47b787c @@ -4687,7 +4687,7 @@ name: Count per Year symbol: '#/yr' definition: 'http://qudt.org/vocab/unit#NumberPerYear' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 99999b49-3a7c-4672-8349-a55e85732f1f @@ -4695,7 +4695,7 @@ name: Cubic Meter per Mole symbol: m^3 mol^-1 definition: 'http://qudt.org/vocab/unit#CubicMeterPerMole' - unit_type: Molar volume + type: Molar volume workspace_id: null - model: sta.unit pk: 039f995f-a0f9-45fa-adfa-ee683f4f3305 @@ -4706,7 +4706,7 @@ http://qudt.org/vocab/unit#Watt; http://unitsofmeasure.org/ucum.html#para-30;http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 7c3144ca-adad-4527-83d3-439deef215f1 @@ -4714,7 +4714,7 @@ name: Riel symbol: KHR definition: 'http://qudt.org/vocab/unit#Riel' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: e57f5e51-5271-4615-94fa-b368155770ab @@ -4722,7 +4722,7 @@ name: Degree Rankine per Hour symbol: degR / h definition: 'http://qudt.org/vocab/unit#DegreeRankinePerHour' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 73b8366a-c782-42b8-9e14-bcee62631d79 @@ -4730,7 +4730,7 @@ name: Kilowatt Hour symbol: kW-hr definition: 'http://qudt.org/vocab/unit#Kilowatthour' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 0946c68c-e4c2-41be-9ad7-2386e6f1f4ab @@ -4740,7 +4740,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: ff7eef26-b977-4d03-8986-686974eab4b1 @@ -4748,7 +4748,7 @@ name: Circular Mil symbol: cml_i definition: 'http://qudt.org/vocab/unit#CircularMil' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 222b13d1-bbd6-482d-8415-9174bdc2e8f1 @@ -4756,7 +4756,7 @@ name: Candela per Square Inch symbol: cd/in^2 definition: 'http://qudt.org/vocab/unit#CandelaPerSquareInch' - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: 59b969d5-e297-4a9b-b023-aa364e98e44e @@ -4767,7 +4767,7 @@ http://qudt.org/vocab/unit#WattPerSquareMeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 8003e9a3-1594-4ea4-a2d5-a1dc5b87b4c0 @@ -4775,7 +4775,7 @@ name: Cfa Franc Beac symbol: XAF definition: 'http://qudt.org/vocab/unit#CFAFrancBEAC' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c052f6d9-130e-4fe3-a838-ee0575ae6254 @@ -4786,7 +4786,7 @@ http://qudt.org/vocab/unit#Mole; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: dac8c00f-371a-49ad-92e9-44a63e845654 @@ -4794,7 +4794,7 @@ name: Liter per Day symbol: L/d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 12e73538-5cc0-4f52-be3e-917db5b12250 @@ -4802,7 +4802,7 @@ name: Btu per Second symbol: Btu/s definition: 'http://qudt.org/vocab/unit#BtuPerSecond' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: d2ff8c98-a2fd-43be-a02a-396f0c413149 @@ -4810,7 +4810,7 @@ name: Sudanese Pound symbol: SDG definition: 'http://qudt.org/vocab/unit#SudanesePound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: eb472082-c3cc-4444-9631-fd94773d8ccb @@ -4818,7 +4818,7 @@ name: Dyne Centimeter symbol: dyn-cm definition: 'http://qudt.org/vocab/unit#DyneCentimeter' - unit_type: Torque + type: Torque workspace_id: null - model: sta.unit pk: 168dc76a-ae7a-4c01-becf-ca64ac422a2e @@ -4826,7 +4826,7 @@ name: Siemen per Centimeter symbol: S/cm definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: 2c2ad15d-4abc-48a7-a76d-e652a3216579 @@ -4834,7 +4834,7 @@ name: Mole per Mole symbol: mol/mol definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per count + type: Concentration count per count workspace_id: null - model: sta.unit pk: e8a23ff8-91e4-481d-aab2-b1c09d42669b @@ -4844,7 +4844,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 494a018f-af77-4212-ae6f-29b9dbef9f87 @@ -4852,7 +4852,7 @@ name: Nanomole per Kilogram symbol: nmol/kg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 55907fa1-6ccd-4f99-a90d-0c63ef1366aa @@ -4860,7 +4860,7 @@ name: Meter per Day symbol: m/d definition: 'http://environment.data.gov.au/def/unit/MeterPerDay' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 3d369d6a-4358-4d13-b0e8-649569704842 @@ -4868,7 +4868,7 @@ name: Kilogram Mole symbol: kg-mol definition: '' - unit_type: Mass count + type: Mass count workspace_id: null - model: sta.unit pk: d2010664-a32a-4ec9-b881-5ad128d50b51 @@ -4876,7 +4876,7 @@ name: Cubic Yard per Minute symbol: yd^3/min definition: 'http://qudt.org/vocab/unit#CubicYardPerMinute' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: b977ab90-50f3-46dd-8441-7e9659b34691 @@ -4884,7 +4884,7 @@ name: Drops per Minute symbol: drops/min definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 6ea678c9-94b5-4c00-8d43-e399003e35af @@ -4894,7 +4894,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-35; http://qudt.org/vocab/unit#Chain - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: f0c14857-172f-495f-982a-789d63973df9 @@ -4902,7 +4902,7 @@ name: Microgravity symbol: microG definition: 'http://qudt.org/vocab/unit#Microgravity' - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: ca99b155-e476-454b-8bc2-ac6836664d7e @@ -4912,7 +4912,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 0757daf9-0c46-4ca1-bb63-f0727ea41e35 @@ -4920,7 +4920,7 @@ name: Haiti Gourde symbol: HTG definition: 'http://qudt.org/vocab/unit#HaitiGourde' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 872e2b13-7661-4316-91ab-460dff80bdb0 @@ -4928,7 +4928,7 @@ name: Meter per Hour symbol: m/h definition: 'http://qudt.org/vocab/unit#MeterPerHour' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: a4eee1bd-91d6-4a7c-a3af-23f3f556402d @@ -4936,7 +4936,7 @@ name: Ton of Oil Equivalent symbol: toe definition: 'http://qudt.org/vocab/unit#TonOfOilEquivalent' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: b920a8ca-5f07-46ba-a7dc-35be01f9b7a8 @@ -4946,7 +4946,7 @@ definition: >- http://qudt.org/vocab/unit#HourSidereal; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: a00d654a-6536-4681-9f45-4c5a42d41b27 @@ -4954,7 +4954,7 @@ name: Jordanian Dinar symbol: JOD definition: 'http://qudt.org/vocab/unit#JordanianDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 422961c7-f392-40b5-8f8f-3231a34e8649 @@ -4962,7 +4962,7 @@ name: Millimole per Square Meter per Day symbol: mmol/m^2 d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Particle flux + type: Particle flux workspace_id: null - model: sta.unit pk: df95b378-c47d-431a-b4f2-831c0037c2ac @@ -4970,7 +4970,7 @@ name: Rotation per Minute symbol: rpm definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: e1d53fac-7290-467c-bb26-9384316d658e @@ -4978,7 +4978,7 @@ name: Count per Square Meter symbol: '#/m^2' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: cc99b22f-343e-4102-b4af-a128eea12c90 @@ -4988,7 +4988,7 @@ definition: >- http://qudt.org/vocab/unit#BritishThermalUnitThermochemical; http://unitsofmeasure.org/ucum.html#para-43 - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 5c0d08f5-f594-4c11-89ce-d9b5e7c5916b @@ -4996,7 +4996,7 @@ name: Danish Krone symbol: DKK definition: 'http://qudt.org/vocab/unit#DanishKrone' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 193829c6-9e9c-4205-8761-c4c43bb0e0b7 @@ -5004,7 +5004,7 @@ name: Lithuanian Litas symbol: LTL definition: 'http://qudt.org/vocab/unit#LithuanianLitas' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 1a973e4e-3155-4ab6-a3e9-852378f85233 @@ -5012,7 +5012,7 @@ name: psi symbol: psi definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 6a7356de-f63d-4530-9bbb-1a69de099632 @@ -5020,7 +5020,7 @@ name: Calorie per Centimeter Second Degree Celsius symbol: cal/(cm-s-degC) definition: 'http://qudt.org/vocab/unit#KilocaloriePerCentimeterSecondDegreeCelsius' - unit_type: Thermal conductivity + type: Thermal conductivity workspace_id: null - model: sta.unit pk: 00ee55e0-7185-4235-afaa-09a20bc00e11 @@ -5028,7 +5028,7 @@ name: Count per Square Millimeter symbol: '#/mm^2' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: 0f8a228e-ac22-4dfe-a12b-1b4c3b84430f @@ -5036,7 +5036,7 @@ name: Abvolt Second symbol: '' definition: 'http://qudt.org/vocab/unit#AbvoltSecond' - unit_type: Magnetic flux + type: Magnetic flux workspace_id: null - model: sta.unit pk: d21361cb-a626-4ac8-93ab-1ea4031496da @@ -5044,7 +5044,7 @@ name: Btu per Square Foot Hour Degree Fahrenheit symbol: Btu/(hr-ft^2-degF) definition: 'http://qudt.org/vocab/unit#BtuPerSquareFootHourDegreeFahrenheit' - unit_type: Heat transfer coefficient + type: Heat transfer coefficient workspace_id: null - model: sta.unit pk: e2734506-4461-419a-9194-27f6dfeb6370 @@ -5052,7 +5052,7 @@ name: Fermi symbol: fm definition: 'http://qudt.org/vocab/unit#Fermi' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 75482c39-b575-4ee5-b859-e94fe55c1b30 @@ -5060,7 +5060,7 @@ name: Btu per Hour Square Foot symbol: '' definition: 'http://qudt.org/vocab/unit#BtuPerHourSquareFoot' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 86c6e011-12a9-498d-a609-35f052c891d7 @@ -5068,7 +5068,7 @@ name: 'Foot, British' symbol: ft_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: d7712530-48a3-4168-8dac-339b16ba2734 @@ -5076,7 +5076,7 @@ name: Pound per Cubic Yard symbol: lb/yd^3 definition: 'http://qudt.org/vocab/unit#PoundPerCubicYard' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 4ef48c63-b9fc-4746-8dd9-164fe5be9f82 @@ -5084,7 +5084,7 @@ name: Cubic Kilometer per Second Squared symbol: km^3/s^2 definition: 'http://qudt.org/vocab/unit#CubicKilometerPerSecondSquared' - unit_type: Standard gravitational parameter + type: Standard gravitational parameter workspace_id: null - model: sta.unit pk: a6286e1f-f7f1-4fce-907c-119031c77f79 @@ -5092,7 +5092,7 @@ name: Kilobit per Second symbol: kbps definition: 'http://qudt.org/vocab/unit#KilobitsPerSecond' - unit_type: Data rate + type: Data rate workspace_id: null - model: sta.unit pk: 27895527-5781-4de3-ad83-a540a3062c41 @@ -5102,7 +5102,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: e8deac9c-2ae2-4e7f-b182-f7b09ac58f4a @@ -5112,7 +5112,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-35; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: e2497760-1752-49d3-8dd6-f0fbc4fd0c60 @@ -5123,7 +5123,7 @@ http://qudt.org/vocab/unit#Barrel; http://unitsofmeasure.org/ucum.html#para-37; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 107e58c1-28e7-4fd3-90d0-ba805aa58db4 @@ -5131,7 +5131,7 @@ name: "Calorie At 15\_°C" symbol: cal_15 definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 6f97cb1a-9b23-4ac2-b031-f89b607df0df @@ -5139,7 +5139,7 @@ name: Ramden's Chain symbol: rch_us definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: c496dd10-4173-49e0-964d-53eeadbc5a32 @@ -5147,7 +5147,7 @@ name: Balboa symbol: PAB definition: 'http://qudt.org/vocab/unit#Balboa' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 90d0e143-6b93-4a32-8bdf-c0713dee7da6 @@ -5155,7 +5155,7 @@ name: Normal symbol: 'N' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: e8d1a5c0-ad9b-406c-ae67-ac695ad01805 @@ -5163,7 +5163,7 @@ name: Inverse Second symbol: s^-1 definition: 'http://qudt.org/vocab/unit#PerSecond' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 4f7bcd7e-650a-4498-9bd3-695c2eb6370d @@ -5171,7 +5171,7 @@ name: Serbian Dinar symbol: RSD definition: 'http://qudt.org/vocab/unit#SerbianDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 57cb829a-0838-4d4e-a741-82c8e89d7fb6 @@ -5179,7 +5179,7 @@ name: Uganda Shilling symbol: UGX definition: 'http://qudt.org/vocab/unit#UgandaShilling' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 583c22bf-cde9-4a1e-848c-380f78daaa30 @@ -5187,7 +5187,7 @@ name: Belarussian Ruble symbol: BYR definition: 'http://qudt.org/vocab/unit#BelarussianRuble' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: a2aec842-3b0d-4b84-a975-8c3a350f9bd6 @@ -5195,7 +5195,7 @@ name: South Korean Won symbol: KRW definition: 'http://qudt.org/vocab/unit#SouthKoreanWon' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 74395f39-6b9e-4257-9560-41ef81f0c447 @@ -5206,7 +5206,7 @@ http://qudt.org/vocab/unit#BritishThermalUnitInternationalTable; http://unitsofmeasure.org/ucum.html#para-43; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 3338e5d5-bf2f-4562-a8bc-39eaace98786 @@ -5214,7 +5214,7 @@ name: Gibraltar Pound symbol: GIP definition: 'http://qudt.org/vocab/unit#GibraltarPound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b22f0db2-2eb1-4433-83cf-535af5b57c1d @@ -5222,7 +5222,7 @@ name: Decibel miliWatt symbol: dBm definition: 'http://qudt.org/vocab/unit#DecibelReferredToOneMilliwatt' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: 35887e68-9986-4b9f-a435-858baedde640 @@ -5230,7 +5230,7 @@ name: Short Ton per Month symbol: ton/month definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 2109a6a1-c36c-4f80-b810-e465138e72b8 @@ -5238,7 +5238,7 @@ name: Moroccan Dirham symbol: MAD definition: 'http://qudt.org/vocab/unit#MoroccanDirham' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 37d3c492-d28c-4bda-a8b6-f24af49bf49c @@ -5246,7 +5246,7 @@ name: Samoan Tala symbol: WST definition: 'http://qudt.org/vocab/unit#SamoanTala' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ffa589cd-0025-4312-8c8d-1d6fbfe1cc21 @@ -5258,7 +5258,7 @@ http://unitsofmeasure.org/ucum.html#para-43; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 883d2bae-b6d7-45ae-918d-b575242f610b @@ -5266,7 +5266,7 @@ name: Nepalese Rupee symbol: NPR definition: 'http://qudt.org/vocab/unit#NepaleseRupee' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b64fe03f-42aa-4579-96ff-737eee70d84b @@ -5274,7 +5274,7 @@ name: Meter per Quartic Second symbol: m/s^4 definition: '' - unit_type: Snap + type: Snap workspace_id: null - model: sta.unit pk: 436aafc0-092a-49ed-a87c-d44abe1bc072 @@ -5282,7 +5282,7 @@ name: Watt per Square Inch symbol: W/in^2 definition: 'http://qudt.org/vocab/unit#WattPerSquareInch' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: fdfdc878-7dc3-49d6-9c43-160fb26896e4 @@ -5293,7 +5293,7 @@ http://environment.data.gov.au/def/unit/MilligramsPerSquareMeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: 398d5369-f03b-42a0-8b12-5574abd40bfc @@ -5301,7 +5301,7 @@ name: Megajoule symbol: MJ definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 7ce84a26-774d-4b50-a432-ddfa2dd7aef3 @@ -5309,7 +5309,7 @@ name: Philippine Peso symbol: PHP definition: 'http://qudt.org/vocab/unit#PhilippinePeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 2c928d74-3843-4dec-be3b-40661d058fbd @@ -5317,7 +5317,7 @@ name: Erg per Gram symbol: '' definition: 'http://qudt.org/vocab/unit#ErgPerGram' - unit_type: Specific energy + type: Specific energy workspace_id: null - model: sta.unit pk: dfee565f-d2d1-4c94-ad18-2541ab751de6 @@ -5325,7 +5325,7 @@ name: Microsecond symbol: microsec definition: 'http://qudt.org/vocab/unit#MicroSecond' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 503866dd-3138-4969-b69c-b26ffd190c1a @@ -5333,7 +5333,7 @@ name: Brunei Dollar symbol: BND definition: 'http://qudt.org/vocab/unit#BruneiDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: baedc5a1-6d12-4c9e-b6b5-22c177f0e181 @@ -5341,7 +5341,7 @@ name: Convertible Marks symbol: BAM definition: 'http://qudt.org/vocab/unit#ConvertibleMark' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ad24bb36-ab4a-435a-9d15-2774f0e88fd4 @@ -5351,7 +5351,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Salinity + type: Salinity workspace_id: null - model: sta.unit pk: dcb1ff41-cb98-4b32-ba96-a2f833fc2d6d @@ -5359,7 +5359,7 @@ name: Erg per Second symbol: erg/s definition: 'http://qudt.org/vocab/unit#ErgPerSecond' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 1ffc58b0-1200-47cf-aa38-4dbb28a81903 @@ -5367,7 +5367,7 @@ name: Ounce per Cubic Inch symbol: oz/in^3 definition: 'http://qudt.org/vocab/unit#OuncePerCubicInch' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 1ecb3f27-a795-4499-a337-d2c4d7eab1df @@ -5377,7 +5377,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 55918091-6bfc-4b0a-a377-d6c4b3981125 @@ -5388,7 +5388,7 @@ http://qudt.org/vocab/unit#Pica; http://unitsofmeasure.org/ucum.html#para-42; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 2fd15ea3-1668-4210-a65c-c3c4c9c3a21b @@ -5396,7 +5396,7 @@ name: "Queen\_Anne's Wine Gallon" symbol: gal_us definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: cc608f7f-9a2b-4422-995a-1c57edae5e14 @@ -5404,7 +5404,7 @@ name: Kilogram per Pascal per Second per Meter Squared symbol: kg/(Pa.s.m^2) definition: '' - unit_type: Fluid permeance + type: Fluid permeance workspace_id: null - model: sta.unit pk: 610c25b2-103b-4b85-8843-daa69344e943 @@ -5412,7 +5412,7 @@ name: Square Kilometer symbol: km^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 24921fbb-7713-4d39-9a85-66b8d0a9edf9 @@ -5424,7 +5424,7 @@ http://unitsofmeasure.org/ucum.html#para-28; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-base.xml; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: e304bc16-d515-4162-ac1a-6055244048dc @@ -5432,7 +5432,7 @@ name: Faraday symbol: F definition: 'http://qudt.org/vocab/unit#Faraday' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: da112b1b-ab74-4a7c-bf05-a8e15ec1f0b9 @@ -5440,7 +5440,7 @@ name: Microeinstein per Square Meter per Day symbol: uE/m^2 d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Particle flux + type: Particle flux workspace_id: null - model: sta.unit pk: 529893b3-6947-45f9-8f2f-fafcee289f49 @@ -5451,7 +5451,7 @@ http://qudt.org/vocab/unit#Inch; http://unitsofmeasure.org/ucum.html#para-34; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 440e41d4-915b-42a0-8086-115260cce4f7 @@ -5459,7 +5459,7 @@ name: Cubic Foot per Barrel symbol: ft^3/bbl definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration volume per volume + type: Concentration volume per volume workspace_id: null - model: sta.unit pk: c29709ae-a210-4711-bd79-bcee3827fffb @@ -5467,7 +5467,7 @@ name: Turn symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 6fcc3511-616c-4880-805b-2c02dd6866a1 @@ -5475,7 +5475,7 @@ name: Gregorian Month symbol: mo_g definition: 'http://unitsofmeasure.org/ucum.html#para-31' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 95e27d3d-2999-4911-95ad-572350622dc3 @@ -5483,7 +5483,7 @@ name: Degree Minute Second symbol: dddmmss definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: f71e9a37-0ef3-4414-8dbd-3ff925b6a5d9 @@ -5491,7 +5491,7 @@ name: Milliliter per Square Centimeter per Day symbol: ml/cm^2 d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flux + type: Volumetric flux workspace_id: null - model: sta.unit pk: 9a749966-d590-49c7-9ac9-bc2dc32f8429 @@ -5499,7 +5499,7 @@ name: Grain per Gallon symbol: gr/gal definition: 'http://qudt.org/vocab/unit#GrainPerGallon' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: acf9dab9-cecf-4a67-8538-21deeebfc6b2 @@ -5507,7 +5507,7 @@ name: Mole per Kilogram symbol: mol/kg definition: 'http://qudt.org/vocab/unit#MolePerKilogram' - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 5c7bdd2d-c9ac-4758-bdf8-41d08e24f6a1 @@ -5515,7 +5515,7 @@ name: Are symbol: ar definition: 'http://qudt.org/vocab/unit#Are' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: ca9b3397-2a9a-46d7-a7b2-4a1847058204 @@ -5523,7 +5523,7 @@ name: Kenyan Shilling symbol: KES definition: 'http://qudt.org/vocab/unit#KenyanShilling' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 264e4b97-4368-4090-acf6-205ac3de9cfe @@ -5531,7 +5531,7 @@ name: Milliliter per Gram symbol: ml/g definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Specific volume + type: Specific volume workspace_id: null - model: sta.unit pk: dca353f0-6da2-455d-81b7-829ade610c55 @@ -5539,7 +5539,7 @@ name: Ampere per Joule symbol: A/J definition: 'http://qudt.org/vocab/unit#AmperePerJoule' - unit_type: Electrical current per energy + type: Electrical current per energy workspace_id: null - model: sta.unit pk: f3e24c42-f6ac-428b-bcb2-56d6067b3b43 @@ -5547,7 +5547,7 @@ name: Abohm symbol: abOhm definition: 'http://qudt.org/vocab/unit#Abohm' - unit_type: Electrical resistance + type: Electrical resistance workspace_id: null - model: sta.unit pk: 4888560e-0e86-47dd-bbad-a7edd47a42a4 @@ -5555,7 +5555,7 @@ name: Bahraini Dinar symbol: BHD definition: 'http://qudt.org/vocab/unit#BahrainiDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ae1ec4d6-97db-4578-9131-8482aabb27dc @@ -5563,7 +5563,7 @@ name: Stathenry per Centimeter symbol: '' definition: 'http://qudt.org/vocab/unit#StathenryPerCentimeter' - unit_type: Magnetic permeability + type: Magnetic permeability workspace_id: null - model: sta.unit pk: 3301456f-0b99-4ad0-8411-246f28357395 @@ -5571,7 +5571,7 @@ name: Count per 100 Gallon symbol: '#/100 gal' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 5664ea95-5843-489e-8b12-71bf71ad1c2f @@ -5579,7 +5579,7 @@ name: Calorie per Gram Degree Celsius symbol: kcal/(gm-degC) definition: 'http://qudt.org/vocab/unit#KilocaloriePerGramDegreeCelsius' - unit_type: Specific heat capacity + type: Specific heat capacity workspace_id: null - model: sta.unit pk: 59c38f8c-ff3b-44ad-ab98-f465d100b76a @@ -5589,7 +5589,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-32; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 79720095-3ec9-464b-b54d-705f83149d4d @@ -5600,7 +5600,7 @@ http://qudt.org/vocab/unit#KiloPascal; http://qudt.org/vocab/unit#KiloPascalAbsolute; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: b7d0fa0b-c958-4036-8d06-d834365e28fa @@ -5609,7 +5609,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 2e8bb12c-726a-4d16-a656-5beb8b44c260 @@ -5617,7 +5617,7 @@ name: Acre Foot per Year symbol: ac ft/yr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: dcea9c81-4077-48fb-ba99-93a07f7e465c @@ -5625,7 +5625,7 @@ name: European Unit of Account 17 (E.U.A.-17) (Bonds Market Unit) symbol: XBD definition: 'http://qudt.org/vocab/unit#EuropeanUnitOfAccount17' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: eb97c56d-eb76-4393-b27f-7988aa4f2164 @@ -5636,7 +5636,7 @@ http://unitsofmeasure.org/ucum.html#para-34; http://qudt.org/vocab/unit#MilLength; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 95f045a4-8c40-4224-bc1b-497bf4e95138 @@ -5646,7 +5646,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Radioactivity per volume + type: Radioactivity per volume workspace_id: null - model: sta.unit pk: bd2e5555-d56f-47d7-896d-f30217ae96a7 @@ -5654,7 +5654,7 @@ name: Kilopond symbol: kp definition: 'http://qudt.org/vocab/unit#KiloPond' - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 3c4c5296-09f6-4eb6-a88d-099d6c5b01ff @@ -5662,7 +5662,7 @@ name: Azerbaijanian Manat symbol: AZN definition: 'http://qudt.org/vocab/unit#AzerbaijanianManat' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 101519de-ac61-40a5-bb0d-a9aac8bc5d5f @@ -5670,7 +5670,7 @@ name: Gram percent symbol: g% definition: 'http://unitsofmeasure.org/ucum.html#para-45' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 28dca20c-97c5-4af3-a12f-5cac7519a247 @@ -5678,7 +5678,7 @@ name: Candela per Square Meter symbol: cd/m^2 definition: 'http://qudt.org/vocab/unit#CandelaPerSquareMeter' - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: 62a07e3f-0aaf-4941-8cdd-98299b7d0bc9 @@ -5686,7 +5686,7 @@ name: Kip per Square Inch symbol: kip/in^2 definition: 'http://qudt.org/vocab/unit#KipPerSquareInch' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 86e06b47-c9c6-4e27-84b3-419903edf165 @@ -5694,7 +5694,7 @@ name: Kilogram per Meter symbol: kg/m definition: 'http://qudt.org/vocab/unit#KilogramPerMeter' - unit_type: Mass per length + type: Mass per length workspace_id: null - model: sta.unit pk: 8ad1b9bf-b4b3-4de6-8389-e6fa4ab2bc47 @@ -5702,7 +5702,7 @@ name: Kelvin per Minute symbol: K / m definition: 'http://qudt.org/vocab/unit#KelvinPerMinute' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 658e31eb-1d2f-45c7-bb8c-ce3d263bf3c2 @@ -5710,7 +5710,7 @@ name: Inch per Second Squared symbol: in/s^2 definition: 'http://qudt.org/vocab/unit#InchPerSecondSquared' - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: 9a67e27a-fd6c-4594-a296-aa5ccf7bee9e @@ -5718,7 +5718,7 @@ name: Rupiah symbol: IDR definition: 'http://qudt.org/vocab/unit#Rupiah' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 5b69df98-7c2d-45bd-a88f-c9182e4fd195 @@ -5728,7 +5728,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: 3b7c2050-04e7-4a4b-93c5-91e10e5343a8 @@ -5736,7 +5736,7 @@ name: Cubic Meter per Cubic Meter symbol: m^3/m^3 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration volume per volume + type: Concentration volume per volume workspace_id: null - model: sta.unit pk: 84929483-6fa8-4f34-bc39-4e4e4c98c73c @@ -5744,7 +5744,7 @@ name: Joule per Kilogram Kelvin per Cubic Meter symbol: '' definition: 'http://qudt.org/vocab/unit#JoulePerKilogramKelvinPerCubicMeter' - unit_type: Specific heat volume + type: Specific heat volume workspace_id: null - model: sta.unit pk: a6cc3801-1ca0-44be-bcde-d20efc7411e7 @@ -5752,7 +5752,7 @@ name: Smoot symbol: smoot definition: 'http://unitsofmeasure.org/ucum.html#para-47' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 2421ba4a-f2b3-4a32-8781-248aae3b6089 @@ -5762,7 +5762,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Fluorescence + type: Fluorescence workspace_id: null - model: sta.unit pk: a4f49a63-75a0-4868-8e71-baea5c077ec8 @@ -5770,7 +5770,7 @@ name: Pascal per Second symbol: P / s definition: 'http://qudt.org/vocab/unit#PascalPerSecond' - unit_type: Pressure or stress rate + type: Pressure or stress rate workspace_id: null - model: sta.unit pk: b648517a-6fc7-4f51-91ba-4bd9e972e85d @@ -5778,7 +5778,7 @@ name: Special Drawing Rights symbol: XDR definition: 'http://qudt.org/vocab/unit#SpecialDrawingRights' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 59b0d4a4-9adc-4106-a0ec-4850a88128aa @@ -5786,7 +5786,7 @@ name: Hounsfield Unit symbol: hnsf'U definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: c6addd9a-5c4a-41d0-8014-a195c2b3fac6 @@ -5794,7 +5794,7 @@ name: 'Horsepower, British' symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: a28c0fbb-4845-4598-9a3b-edb51adff2b6 @@ -5805,7 +5805,7 @@ http://qudt.org/vocab/unit#Gravity; http://unitsofmeasure.org/ucum.html#para-32; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: 16945dda-ec2a-4b12-8db8-5ed0d224620b @@ -5815,7 +5815,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: 78480653-8eec-44fb-af77-ce7122481179 @@ -5823,7 +5823,7 @@ name: Atomic Mass Unit symbol: amu definition: 'http://qudt.org/vocab/unit#AtomicMassUnit' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 4e9302bd-0518-4bb9-a36f-7f55bdbd6221 @@ -5831,7 +5831,7 @@ name: Abvolt symbol: abV definition: 'http://qudt.org/vocab/unit#Abvolt' - unit_type: Electromotive force + type: Electromotive force workspace_id: null - model: sta.unit pk: 311fe993-fcdc-4ac3-b989-d0c9065b5fab @@ -5842,7 +5842,7 @@ http://qudt.org/vocab/unit#Millimeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 48dfe32b-799d-437d-b748-afff2fd72076 @@ -5850,7 +5850,7 @@ name: Namibian Dollar symbol: NAD definition: 'http://qudt.org/vocab/unit#NamibianDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9c600005-a23c-47cb-9ef2-93647aa69f3a @@ -5858,7 +5858,7 @@ name: Dyne per Square Centimeter symbol: dyn/cm^2 definition: 'http://qudt.org/vocab/unit#DynePerSquareCentimeter' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: fdd7a77f-d1d0-475b-b0fd-5aac2cbb6512 @@ -5866,7 +5866,7 @@ name: 'Fathom, US Survey' symbol: fth_us definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 523c41c0-bb9b-41a1-a48b-17499077c57e @@ -5874,7 +5874,7 @@ name: Cubic Meter per Minute symbol: m^3/min definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: dd633450-b432-4df9-bb94-8138a60eda2b @@ -5882,7 +5882,7 @@ name: Micromole symbol: µmol definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: eb8220c0-19ef-43fd-acea-6533790d6289 @@ -5890,7 +5890,7 @@ name: 'Rod, British' symbol: rd_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 2642638f-1024-4add-9a6d-15e6e2024de3 @@ -5898,7 +5898,7 @@ name: Megahertz per Kelvin symbol: MHz K^-1 definition: 'http://qudt.org/vocab/unit#MegaHertzPerKelvin' - unit_type: Inverse time temperature + type: Inverse time temperature workspace_id: null - model: sta.unit pk: dd0428f5-05cb-4b7d-a353-e931c1152548 @@ -5906,7 +5906,7 @@ name: Pascal per Hour symbol: P / hr definition: 'http://qudt.org/vocab/unit#PascalPerHour' - unit_type: Pressure or stress rate + type: Pressure or stress rate workspace_id: null - model: sta.unit pk: 6820b6ff-1525-4e1e-9317-9db7554da374 @@ -5914,7 +5914,7 @@ name: New Taiwan Dollar symbol: TWD definition: 'http://qudt.org/vocab/unit#NewTaiwanDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 2333fb17-37a6-4b14-aef9-40ba5f08539a @@ -5922,7 +5922,7 @@ name: Millimole per Mole symbol: mmol/mol definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per count + type: Concentration count per count workspace_id: null - model: sta.unit pk: 37b0480d-8884-45a1-bf9c-484d0a206c2a @@ -5930,7 +5930,7 @@ name: Mil Angle (Nato) symbol: mil definition: 'http://qudt.org/vocab/unit#MilAngle' - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 394ce75d-fe15-4b1a-a5a8-d4bfafc764b6 @@ -5938,7 +5938,7 @@ name: ElectronVolt per Kelvin symbol: eV K^-1 definition: 'http://qudt.org/vocab/unit#ElectronVoltPerKelvin' - unit_type: Heat capacity + type: Heat capacity workspace_id: null - model: sta.unit pk: c8f30bd8-00ef-46e6-93f6-b9730452dedf @@ -5949,7 +5949,7 @@ http://qudt.org/vocab/unit#Radian; http://unitsofmeasure.org/ucum.html#para-28; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 31a90ab7-fe0f-484e-882c-f3f389eac96e @@ -5957,7 +5957,7 @@ name: Megajoule per Square Meter per Day symbol: MJ/m^2 d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 490d5a5e-29e5-4122-8f83-0ecbe27abcd5 @@ -5965,7 +5965,7 @@ name: Abvolt Centimeter symbol: abV cm definition: 'http://qudt.org/vocab/unit#AbvoltCentimeter' - unit_type: Electrical flux + type: Electrical flux workspace_id: null - model: sta.unit pk: 7fadde70-1e2a-4ac0-bd85-cb1ac3e29977 @@ -5977,7 +5977,7 @@ http://unitsofmeasure.org/ucum.html#para-39; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 8b385959-96ae-42f5-a7cb-ea0ff33066ef @@ -5988,7 +5988,7 @@ http://qudt.org/vocab/unit#Teaspoon; http://unitsofmeasure.org/ucum.html#para-37; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: bf73a7b6-eb04-4241-bfb3-56e46ff73fc7 @@ -5996,7 +5996,7 @@ name: 'Gunter''s Chain, British' symbol: ch_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 8a7ecaa2-496e-497c-93d7-72664f4891cf @@ -6004,7 +6004,7 @@ name: Square Degree symbol: deg^2 definition: 'http://qudt.org/vocab/unit#SquareDegree' - unit_type: Solid angle + type: Solid angle workspace_id: null - model: sta.unit pk: 05b02c6d-0bc4-47b2-ba39-10369ff4ceaf @@ -6012,7 +6012,7 @@ name: Somoni symbol: TJS definition: 'http://qudt.org/vocab/unit#Somoni' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 236136cb-8da9-4339-9b0a-e7a689131133 @@ -6020,7 +6020,7 @@ name: Micrometer symbol: µm definition: 'http://qudt.org/vocab/unit#Micrometer' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 55445a58-bbea-4032-abda-db95bb475170 @@ -6028,7 +6028,7 @@ name: Joule Second symbol: J s definition: 'http://qudt.org/vocab/unit#JouleSecond' - unit_type: Angular momentum + type: Angular momentum workspace_id: null - model: sta.unit pk: 7a7f3ceb-9fa8-4106-aa59-9cfd45357c0a @@ -6036,7 +6036,7 @@ name: Slug per Foot symbol: slug/ft definition: 'http://qudt.org/vocab/unit#SlugPerFoot' - unit_type: Mass per length + type: Mass per length workspace_id: null - model: sta.unit pk: b7927f02-f413-47a5-aabb-79ef0f86ac0d @@ -6046,7 +6046,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: e2f0177d-bdb0-441e-b8ff-ee6513735d52 @@ -6054,7 +6054,7 @@ name: Watt per Steradian symbol: W sr^-1 definition: 'http://qudt.org/vocab/unit#WattPerSteradian' - unit_type: Radiant intensity + type: Radiant intensity workspace_id: null - model: sta.unit pk: 9973513e-9362-4c48-a3fd-f947f0766aff @@ -6064,7 +6064,7 @@ definition: >- http://qudt.org/vocab/unit#FootCandle; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Illuminance + type: Illuminance workspace_id: null - model: sta.unit pk: f96fc9c6-751c-4d0e-b140-ed59aad25406 @@ -6072,7 +6072,7 @@ name: Newton Seconds symbol: N-s definition: '' - unit_type: Linear momentum + type: Linear momentum workspace_id: null - model: sta.unit pk: bf68a257-0622-4c5b-91d0-65a2ecd0d26a @@ -6080,7 +6080,7 @@ name: Per Day symbol: 1/d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 9426ca69-509c-4f3c-b062-89f380c0b533 @@ -6088,7 +6088,7 @@ name: Millimole symbol: mmol definition: '' - unit_type: Count + type: Count workspace_id: null - model: sta.unit pk: e3e24353-524f-41a4-b56f-ce79fc852e57 @@ -6096,7 +6096,7 @@ name: 'British Thermal Unit, Mean' symbol: Btu_m definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: e0cf0bcf-1a54-4fde-aed6-16557414d90e @@ -6104,7 +6104,7 @@ name: GigaElectronVolt symbol: GeV definition: 'http://qudt.org/vocab/unit#GigaElectronVolt' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: ebdec947-19f6-4d1e-adcd-77a76533888e @@ -6114,7 +6114,7 @@ definition: >- http://qudt.org/vocab/unit#Erg; http://unitsofmeasure.org/ucum.html#para-33 - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 632cf31b-998f-44d6-a61b-ea98b1216668 @@ -6125,7 +6125,7 @@ http://qudt.org/vocab/unit#Yard; http://unitsofmeasure.org/ucum.html#para-34; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 32c84f72-3750-406d-a109-5f9995b5e90c @@ -6133,7 +6133,7 @@ name: Rotation symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 17ae678b-5b08-4f30-bfe4-dc86ca9d3621 @@ -6141,7 +6141,7 @@ name: Kilocalorie per Mole Degree Celsius symbol: kcal/(mol-degC) definition: 'http://qudt.org/vocab/unit#KilocaloriePerMoleDegreeCelsius' - unit_type: Molar heat capacity + type: Molar heat capacity workspace_id: null - model: sta.unit pk: 9ca0e085-7b63-4fd6-b02e-5e270d453c9f @@ -6149,7 +6149,7 @@ name: Millimho per Centimeter symbol: mMhos/cm definition: '' - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: 7ae0bef9-92b7-4aea-a037-e2320b3a94a4 @@ -6160,7 +6160,7 @@ http://qudt.org/vocab/unit#NauticalMile; http://unitsofmeasure.org/ucum.html#para-34; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 1cdce742-0839-4029-8d61-7a38e3a5db49 @@ -6168,7 +6168,7 @@ name: Laos Kip symbol: LAK definition: 'http://qudt.org/vocab/unit#LaosKip' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 4c1899b2-66ee-4f73-b1fa-44247bda6ec5 @@ -6176,7 +6176,7 @@ name: Millisecond symbol: ms definition: 'http://qudt.org/vocab/unit#MilliSecond' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 588c39c1-f8a7-48a6-8787-9893491d861d @@ -6184,7 +6184,7 @@ name: Btu per Second Square Foot symbol: Btu/(s-ft^2) definition: 'http://qudt.org/vocab/unit#BtuPerSecondSquareFoot' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: bd483abf-5c02-471a-ac6a-27f6969f4779 @@ -6192,7 +6192,7 @@ name: Watt Square Meter per Steradian symbol: W m^2 sr^-1 definition: 'http://qudt.org/vocab/unit#WattSquareMeterPerSteradian' - unit_type: Power area per solid angle + type: Power area per solid angle workspace_id: null - model: sta.unit pk: 8416021e-a7f1-4f39-8baa-15075d5a1118 @@ -6200,7 +6200,7 @@ name: Planck Energy symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckEnergy' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 03f0b79b-19f9-4894-aa6b-363dc4eb83b2 @@ -6210,7 +6210,7 @@ definition: >- http://qudt.org/vocab/unit#GallonUSPerDay; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 9560c61d-b57b-4fd0-9184-0c0ee37bf37a @@ -6218,7 +6218,7 @@ name: Microgram per Cubic Meter symbol: µg/m^3 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: abb58ee6-d88e-4f1b-8368-ef2534d9372d @@ -6226,7 +6226,7 @@ name: Revolution per Minute symbol: rev/min definition: 'http://qudt.org/vocab/unit#RevolutionPerMinute' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: 7defde79-d180-4313-a50f-b39f26696458 @@ -6234,7 +6234,7 @@ name: Tenge symbol: KZT definition: 'http://qudt.org/vocab/unit#Tenge' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f37808c9-9c68-41f9-bf3d-01413e51b1dd @@ -6242,7 +6242,7 @@ name: Bermuda Dollar symbol: BMD definition: 'http://qudt.org/vocab/unit#BermudaDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: be9afce8-1968-4c6d-a082-e31be4add183 @@ -6250,7 +6250,7 @@ name: Cubic Meter per Hour symbol: m^3/h definition: 'http://qudt.org/vocab/unit#CubicMeterPerHour' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: a5bd0a97-f340-4826-84a8-faddf12908f9 @@ -6258,7 +6258,7 @@ name: Lumen Second symbol: lm s definition: 'http://qudt.org/vocab/unit#LumenSecond' - unit_type: Luminous energy + type: Luminous energy workspace_id: null - model: sta.unit pk: b69e8ec0-1d96-43aa-820c-0188bb309f24 @@ -6266,7 +6266,7 @@ name: Nanometer symbol: nm definition: '' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: f37b9ec4-e476-4e32-b6fd-b8a3d12cc6f8 @@ -6274,7 +6274,7 @@ name: Lebanese Pound symbol: LBP definition: 'http://qudt.org/vocab/unit#LebanesePound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 77465e09-65fd-42cb-b76b-72fab2150c06 @@ -6284,7 +6284,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 83a70674-ea2f-482e-baba-2751e78a8517 @@ -6292,7 +6292,7 @@ name: Volt per Second symbol: V / sec definition: 'http://qudt.org/vocab/unit#VoltPerSecond' - unit_type: Power per electrical charge + type: Power per electrical charge workspace_id: null - model: sta.unit pk: 9b458817-a22b-4cef-8120-5ca4a92ec472 @@ -6300,7 +6300,7 @@ name: European Monetary Unit (E.M.U.-6) (Bonds Market Unit) symbol: XBB definition: 'http://qudt.org/vocab/unit#EuropeanMonetaryUnit' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 0b8a4a42-910d-4f57-86b6-b1cad8636cef @@ -6308,7 +6308,7 @@ name: Afghani symbol: AFN definition: 'http://qudt.org/vocab/unit#Afghani' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 4373f46b-6114-4142-a7c8-8e01c1b61226 @@ -6316,7 +6316,7 @@ name: International Unit per Liter symbol: IU/L definition: 'http://qudt.org/vocab/unit#InternationalUnitPerLiter' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: caa6782d-02e1-46bc-ace3-f712f80357ee @@ -6324,7 +6324,7 @@ name: Gray per Second symbol: Gy/s definition: 'http://qudt.org/vocab/unit#GrayPerSecond' - unit_type: Absorbed dose rate + type: Absorbed dose rate workspace_id: null - model: sta.unit pk: 7f97805e-c470-467d-b7a8-a161d2950934 @@ -6332,7 +6332,7 @@ name: Geopotential symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Specific energy + type: Specific energy workspace_id: null - model: sta.unit pk: ec1eb2ec-cecd-4402-9699-b9ab06a948cc @@ -6340,7 +6340,7 @@ name: Denar symbol: MKD definition: 'http://qudt.org/vocab/unit#Denar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: a1d920f1-689f-4bf2-b6e7-c92b31b1b32c @@ -6351,7 +6351,7 @@ http://qudt.org/vocab/unit#Tesla; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Magnetic flux density + type: Magnetic flux density workspace_id: null - model: sta.unit pk: 492e74e5-b55c-4731-abad-b82eaf2edd5d @@ -6359,7 +6359,7 @@ name: Abcoulomb per Square Centimeter symbol: '' definition: 'http://qudt.org/vocab/unit#AbcoulombPerSquareCentimeter' - unit_type: Electrical flux density + type: Electrical flux density workspace_id: null - model: sta.unit pk: 80716416-075c-465b-b4c9-89a1269db04e @@ -6367,7 +6367,7 @@ name: Guarani symbol: PYG definition: 'http://qudt.org/vocab/unit#Guarani' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 6062e53c-338f-43ad-8088-411ecc9feb68 @@ -6377,7 +6377,7 @@ definition: >- http://qudt.org/vocab/unit#Hour; http://unitsofmeasure.org/ucum.html#para-31 - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: d3fb8c08-0c6e-4be9-9a93-77b9c72c62e3 @@ -6387,7 +6387,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 6407c971-088e-42c4-b60b-57694b92e93a @@ -6395,7 +6395,7 @@ name: Russian Ruble symbol: RUB definition: 'http://qudt.org/vocab/unit#RussianRuble' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ae6c9d3e-1a6b-42ef-bd9c-c96346c3d413 @@ -6405,7 +6405,7 @@ definition: >- http://qudt.org/vocab/unit#KilometerPerHour; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 39a0875c-e7bf-47bf-a789-b866a95b756c @@ -6413,7 +6413,7 @@ name: Square Foot Degree Fahrenheit symbol: ft^2-degF definition: 'http://qudt.org/vocab/unit#SquareFootDegreeFahrenheit' - unit_type: Area temperature + type: Area temperature workspace_id: null - model: sta.unit pk: 8a69105b-8446-4bdc-95b5-76ae1183473e @@ -6421,7 +6421,7 @@ name: Milligram per Square Meter per Second symbol: mg/m^2/s definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: 500b2b48-3384-4187-a7bf-3760a058d8b7 @@ -6429,7 +6429,7 @@ name: Romanian New Leu symbol: RON definition: 'http://qudt.org/vocab/unit#RomanianNeLeu' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 3bb3cf38-257c-4f7d-9679-1ad4a42179b4 @@ -6438,7 +6438,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 33dd1e04-eda4-4050-a04f-1ead44bf8e99 @@ -6448,7 +6448,7 @@ definition: >- http://qudt.org/vocab/unit#Cord; http://unitsofmeasure.org/ucum.html#para-37 - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 9b910f39-9116-4cb8-adcd-7228dd5ad246 @@ -6459,7 +6459,7 @@ http://qudt.org/vocab/unit#Kip; http://www.unidata.ucar.edu/software/udunits/; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: ee4b80b0-a132-4070-9681-063743022459 @@ -6470,7 +6470,7 @@ http://qudt.org/vocab/unit#Peck; http://unitsofmeasure.org/ucum.html#para-37; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 933adb47-8ac0-4701-bc4b-162639c7bccd @@ -6478,7 +6478,7 @@ name: Meter per Minute symbol: m/min definition: 'http://qudt.org/vocab/unit#MeterPerMinute' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: d7630950-82fb-4320-8684-875f0829f500 @@ -6486,7 +6486,7 @@ name: Million Us Dollars symbol: Million USD definition: 'http://qudt.org/vocab/unit#MillionUSDollars' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b00f3692-260e-4185-8965-e65360ac1b9e @@ -6494,7 +6494,7 @@ name: Degree Rankine symbol: degR definition: 'http://qudt.org/vocab/unit#DegreeRankine' - unit_type: Temperature + type: Temperature workspace_id: null - model: sta.unit pk: 2abdaad8-9841-4e9d-81f0-63eb5c8e2da2 @@ -6504,7 +6504,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 91f92f09-5c01-4296-b5e9-f6a8838f2fb5 @@ -6512,7 +6512,7 @@ name: 'Dram, Avoirdupois' symbol: dr_av definition: 'http://unitsofmeasure.org/ucum.html#para-39' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: bd30f957-957c-4aef-8b1f-6528d6357ead @@ -6520,7 +6520,7 @@ name: KiloelectronVolt per Micrometer symbol: keV/microM definition: 'http://qudt.org/vocab/unit#KiloElectronVoltPerMicrometer' - unit_type: Linear energy transfer + type: Linear energy transfer workspace_id: null - model: sta.unit pk: 641ae414-1263-40a5-92fb-94ab486955f5 @@ -6528,7 +6528,7 @@ name: Square Meter per Kelvin symbol: m^2/K definition: 'http://qudt.org/vocab/unit#SquareMeterPerKelvin' - unit_type: Area thermal expansion + type: Area thermal expansion workspace_id: null - model: sta.unit pk: cc8c8df2-bef6-4202-b39c-27f76b60229f @@ -6536,7 +6536,7 @@ name: Hand symbol: hd_i definition: 'http://unitsofmeasure.org/ucum.html#para-34' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: eae315e7-3cc8-4727-bea7-34877d3f09aa @@ -6546,7 +6546,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-41; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 4add1072-5096-46c4-9b86-96c5e0b5aeeb @@ -6557,7 +6557,7 @@ http://qudt.org/vocab/unit#MileInternational; http://unitsofmeasure.org/ucum.html#para-34; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 44238a86-ab06-47bb-afcc-ff120194a6f5 @@ -6565,7 +6565,7 @@ name: Kilometer symbol: km definition: 'http://qudt.org/vocab/unit#Kilometer' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: cefd9651-5b43-431e-b25e-f54ae6ffdb0b @@ -6573,7 +6573,7 @@ name: Newton per Meter symbol: N/m definition: 'http://qudt.org/vocab/unit#NewtonPerMeter' - unit_type: Force per length + type: Force per length workspace_id: null - model: sta.unit pk: 4f32aa7b-4d3e-492b-8675-e4119e00cee1 @@ -6581,7 +6581,7 @@ name: Nanogram symbol: ng definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 63fc1d23-1f17-4b3c-a195-c2da7ffa09d4 @@ -6591,7 +6591,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: 3dce2a0c-1a78-4f52-ab1e-8b49d74fa863 @@ -6599,7 +6599,7 @@ name: Millibecquerel per Liter symbol: mBq/L definition: 'http://environment.data.gov.au/def/unit/MilliBecquerelPerLitre' - unit_type: Radioactivity per volume + type: Radioactivity per volume workspace_id: null - model: sta.unit pk: 1ac99177-b317-42d6-be87-ce3a65877a28 @@ -6607,7 +6607,7 @@ name: Threshold Odor Number symbol: TON definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 8d314f07-be04-4e90-9eed-8e2f0a54806b @@ -6615,7 +6615,7 @@ name: Millimole per Kilogram symbol: mmol/kg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 33a59e37-5901-4ce3-b829-f96982e701d2 @@ -6623,7 +6623,7 @@ name: Gram per Cubic Meter per Hour symbol: g/m^3 hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric productivity + type: Volumetric productivity workspace_id: null - model: sta.unit pk: 9ce24796-730f-4abc-baf4-8265ac4a21cc @@ -6631,7 +6631,7 @@ name: Btu per Degree Fahrenheit symbol: Btu/degF definition: 'http://qudt.org/vocab/unit#BtuPerDegreeFahrenheit' - unit_type: Heat capacity + type: Heat capacity workspace_id: null - model: sta.unit pk: 405fc3b2-2302-456c-98a3-1c839d342d3e @@ -6641,7 +6641,7 @@ definition: >- http://qudt.org/vocab/unit#MinuteSidereal; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 4d42d417-084e-443b-881c-293c570a18d9 @@ -6649,7 +6649,7 @@ name: Coulomb per Cubic Meter symbol: C/m^3 definition: 'http://qudt.org/vocab/unit#CoulombPerCubicMeter' - unit_type: Electrical charge volume density + type: Electrical charge volume density workspace_id: null - model: sta.unit pk: 1896c253-02b3-4437-a51f-d26c63ed3436 @@ -6657,7 +6657,7 @@ name: Unidad De Valor Real symbol: COU definition: 'http://qudt.org/vocab/unit#UnidadDeValorReal' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 13cd59d0-85b3-40c2-b8e3-8168dcff73c4 @@ -6665,7 +6665,7 @@ name: Angstrom symbol: Ao definition: 'http://qudt.org/vocab/unit#Angstrom' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 884cc105-9c1c-476d-b827-86779e5c40d0 @@ -6675,7 +6675,7 @@ definition: >- http://qudt.org/vocab/unit#FootOfWater; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 78531cef-c61d-4ade-b77b-97d2029ff214 @@ -6683,7 +6683,7 @@ name: Zimbabwe Dollar symbol: ZWD definition: 'http://qudt.org/vocab/unit#ZimbabweDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 8ba4f33d-fe87-4249-847e-3fc6a25ff8d4 @@ -6691,7 +6691,7 @@ name: New Israeli Shekel symbol: ILS definition: 'http://qudt.org/vocab/unit#NewIsraeliShekel' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 35eb1ac4-a5d4-4782-9a22-afe9cee27e01 @@ -6699,7 +6699,7 @@ name: Cfp Franc symbol: XPF definition: 'http://qudt.org/vocab/unit#CFPFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 6fa0eb79-a614-45c0-9ef2-88c81a1f7d45 @@ -6709,7 +6709,7 @@ definition: >- http://qudt.org/vocab/unit#Furlong; http://unitsofmeasure.org/ucum.html#para-35 - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 8702df6b-ddd7-442d-9665-d9b367632e53 @@ -6719,7 +6719,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Inverse length + type: Inverse length workspace_id: null - model: sta.unit pk: 1d4b5bed-7271-49d8-b9c1-f86255907b7e @@ -6727,7 +6727,7 @@ name: Abvolt per Centimeter symbol: '' definition: 'http://qudt.org/vocab/unit#AbvoltPerCentimeter' - unit_type: Electrical field strength + type: Electrical field strength workspace_id: null - model: sta.unit pk: 827f4e15-6969-46a5-a9b5-45067110d16c @@ -6735,7 +6735,7 @@ name: 'Fluid Dram, US' symbol: fdr_us definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 7c88f2e8-7ad4-458e-86d7-f51c0588faf1 @@ -6743,7 +6743,7 @@ name: Uic Franc (Special Settlement Currency) symbol: XFU definition: 'http://qudt.org/vocab/unit#UICFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 636ebfe5-ec5f-4d58-a87e-c2202e4a6a13 @@ -6751,7 +6751,7 @@ name: Ounce per Gallon symbol: oz/gal definition: 'http://qudt.org/vocab/unit#OuncePerGallon' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 7e5603fa-787f-4215-91a3-e7bb6a423644 @@ -6759,7 +6759,7 @@ name: Femtometer symbol: fm definition: 'http://qudt.org/vocab/unit#Femtometer' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: c785043c-0234-40af-aab0-b75e73f04b3c @@ -6767,7 +6767,7 @@ name: Cyprus Pound symbol: CYP definition: 'http://qudt.org/vocab/unit#CyprusPound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f1651657-8f1c-4684-ab9e-9cbf4debbd71 @@ -6777,7 +6777,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-46; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: dc1313ff-ab59-4d84-b7c5-71b667081a2c @@ -6785,7 +6785,7 @@ name: Long Ton per Cubic Yard symbol: ton/yd^3 definition: 'http://qudt.org/vocab/unit#TonLongPerCubicYard' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 3dc855d0-e011-41a6-93d1-8a517906b17e @@ -6793,7 +6793,7 @@ name: Year Day (Julian) symbol: yyddd definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 16ed5dec-96bf-4941-8311-82013f1fcb11 @@ -6804,7 +6804,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://unitsofmeasure.org/ucum.html#para-29; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: f32c2a29-bdd8-40ac-8257-2584f5876564 @@ -6814,7 +6814,7 @@ definition: >- http://qudt.org/vocab/unit#Grain; http://unitsofmeasure.org/ucum.html#para-39 - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: c0d7318e-db76-4aaf-9790-3c31373de1c6 @@ -6822,7 +6822,7 @@ name: Poundal per Square Foot symbol: pdl/ft^2 definition: 'http://qudt.org/vocab/unit#PoundalPerSquareFoot' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 619a7a62-d14a-4c13-8dee-2ecee911c434 @@ -6830,7 +6830,7 @@ name: Milligravity symbol: mG definition: 'http://qudt.org/vocab/unit#Milligravity' - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: 4ea411ce-5668-4136-adc2-58bfe1efcd4e @@ -6838,7 +6838,7 @@ name: Radian per Second symbol: rad/s definition: 'http://qudt.org/vocab/unit#RadianPerSecond' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: 272b35bb-4af3-410b-9fde-02db38f5ebde @@ -6846,7 +6846,7 @@ name: Yemeni Rial symbol: YER definition: 'http://qudt.org/vocab/unit#YemeniRial' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 8f0c2609-4345-470f-9167-51c2f26489b9 @@ -6856,7 +6856,7 @@ definition: >- http://environment.data.gov.au/def/unit/pH";"http://environment.data.gov.au/def/unit/pH; http://unitsofmeasure.org/ucum.html#para-45 - unit_type: pH + type: pH workspace_id: null - model: sta.unit pk: 9996cffd-0fd1-42d7-9ad4-1b8e294c8116 @@ -6867,7 +6867,7 @@ http://qudt.org/vocab/unit#PerMeter; http://environment.data.gov.au/def/unit/Reciprocal_Meter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Inverse length + type: Inverse length workspace_id: null - model: sta.unit pk: 3f0db835-2922-49ec-b2d6-282ef5bfdc34 @@ -6875,7 +6875,7 @@ name: Cubic Millimeter symbol: mm^3 definition: 'http://qudt.org/vocab/unit#CubicMillimeter' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 21c05fa8-84c9-40bf-bc18-958cd1c12bf6 @@ -6883,7 +6883,7 @@ name: Degree Rankine per Second symbol: degR / s definition: 'http://qudt.org/vocab/unit#DegreeRankinePerSecond' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: e984ca33-08db-4357-9fcd-e905fb2de7a6 @@ -6891,7 +6891,7 @@ name: Lari symbol: GEL definition: 'http://qudt.org/vocab/unit#Lari' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 6fcb16e4-4e87-4ece-9c68-5c056decd7df @@ -6899,7 +6899,7 @@ name: Meter per Farad symbol: '' definition: 'http://qudt.org/vocab/unit#MeterPerFarad' - unit_type: Inverse permittivity + type: Inverse permittivity workspace_id: null - model: sta.unit pk: 73fd35bd-a6f2-420a-8e50-a01e6a41080e @@ -6907,7 +6907,7 @@ name: Maltese Lira symbol: MTL definition: 'http://qudt.org/vocab/unit#MalteseLira' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 90bd296a-b97d-44c5-a66d-5ee913f4fb80 @@ -6915,7 +6915,7 @@ name: Newton Meter symbol: N-m definition: 'http://qudt.org/vocab/unit#NewtonMeter' - unit_type: Torque + type: Torque workspace_id: null - model: sta.unit pk: e6c22e01-5330-4d34-9a5b-d807ac5cc32d @@ -6923,7 +6923,7 @@ name: Nat symbol: nat definition: 'http://qudt.org/vocab/unit#Nat' - unit_type: Amount of information + type: Amount of information workspace_id: null - model: sta.unit pk: 177f2f6f-e194-4ebe-8f2a-58516fff5256 @@ -6931,7 +6931,7 @@ name: Fractional Area symbol: fa definition: 'http://qudt.org/vocab/unit#FractionalArea' - unit_type: Solid angle + type: Solid angle workspace_id: null - model: sta.unit pk: 13c81632-dcee-4ab3-82d8-7b4852de7ee8 @@ -6939,7 +6939,7 @@ name: Hartree symbol: E_h definition: 'http://qudt.org/vocab/unit#Hartree' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 42d3a3bc-26ea-4ed5-926e-e7aa5ae44ff7 @@ -6950,7 +6950,7 @@ http://qudt.org/vocab/unit#Weber; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Magnetic flux + type: Magnetic flux workspace_id: null - model: sta.unit pk: a62129e9-4a1e-40ff-ab31-3dc46b35dfb4 @@ -6960,7 +6960,7 @@ definition: >- http://qudt.org/vocab/unit#MileUSStatute; http://unitsofmeasure.org/ucum.html#para-35 - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: b2786758-a1fb-44be-b3ee-2cbfdc620c2f @@ -6968,7 +6968,7 @@ name: Forint symbol: HUF definition: 'http://qudt.org/vocab/unit#Forint' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b63e85fe-5031-471a-9592-c070f2ac709c @@ -6978,7 +6978,7 @@ definition: >- http://qudt.org/vocab/unit#RegisterTon; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: cd0ef884-3192-4788-a793-a75754ea0bc2 @@ -6989,7 +6989,7 @@ http://unitsofmeasure.org/ucum.html#para-39; http://www.unidata.ucar.edu/software/udunits/; http://qudt.org/vocab/unit#HundredWeightLong - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: da3a2d6b-4b94-49e7-8165-633b85a424a7 @@ -6997,7 +6997,7 @@ name: Candlepower symbol: cd definition: 'http://qudt.org/vocab/unit#Candlepower' - unit_type: Luminous intensity + type: Luminous intensity workspace_id: null - model: sta.unit pk: 789af539-3c69-4d45-acd1-7d59fb2a9bac @@ -7005,7 +7005,7 @@ name: Drop symbol: drp definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 718a659a-0900-4837-aad8-4b962713efe5 @@ -7013,7 +7013,7 @@ name: Apostilb symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: 10d77fa6-0a6b-483a-ad4b-d0e322bceb37 @@ -7021,7 +7021,7 @@ name: Part per Quintillion symbol: ppqt definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 0e3b01ba-9540-4b61-84c4-d9f97e25dcf8 @@ -7031,7 +7031,7 @@ definition: >- http://qudt.org/vocab/unit#WattPerSquareCentimeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 8c0dba4f-44a3-4645-8e17-191775a3526a @@ -7039,7 +7039,7 @@ name: Per Trillion versus Standard Mean Ocean Water symbol: pptSMOW definition: 'http://environment.data.gov.au/def/unit/PerTrillion_SMOW' - unit_type: Stable isotope delta + type: Stable isotope delta workspace_id: null - model: sta.unit pk: 440b964e-b2ca-4b66-9a85-1966f38df24a @@ -7047,7 +7047,7 @@ name: Thousand Gallon symbol: 10^3 gal definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 07a72806-b71f-4b30-9507-b5f5433c9a3c @@ -7055,7 +7055,7 @@ name: 'Tablespoon, Metric' symbol: tbs_m definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: f72742a8-dbe1-44c2-868a-780420cc0a41 @@ -7063,7 +7063,7 @@ name: Volt per Meter symbol: V/m definition: 'http://qudt.org/vocab/unit#VoltPerMeter' - unit_type: Electrical field strength + type: Electrical field strength workspace_id: null - model: sta.unit pk: c077ffc7-397c-42f0-8c10-a443415908e0 @@ -7071,7 +7071,7 @@ name: Ngultrum symbol: BTN definition: 'http://qudt.org/vocab/unit#Ngultrum' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ec28e854-0590-43d0-bd63-b2e299278384 @@ -7081,7 +7081,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Color + type: Color workspace_id: null - model: sta.unit pk: f6a8e599-c2b5-413d-859a-1b6e2c2fb536 @@ -7089,7 +7089,7 @@ name: Ampere Turn per Inch symbol: At/in definition: 'http://qudt.org/vocab/unit#AmpereTurnPerInch' - unit_type: Magnetic field strength + type: Magnetic field strength workspace_id: null - model: sta.unit pk: f39917eb-7d32-469b-aa91-ba38f903828f @@ -7097,7 +7097,7 @@ name: Newton per Square Meter symbol: Newton/m^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: f57469c7-9573-4401-ae7d-c51606d2194b @@ -7107,7 +7107,7 @@ definition: >- http://qudt.org/vocab/unit#Dyne; http://unitsofmeasure.org/ucum.html#para-33 - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: ab2aed11-e58f-4bdd-be9f-68d8759fcff6 @@ -7117,7 +7117,7 @@ definition: >- http://qudt.org/vocab/unit#Millibar; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: dd118742-b5e2-43bf-901f-996fac9c1bf9 @@ -7125,7 +7125,7 @@ name: Millimeter per Second symbol: mm/s definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 383ad6a6-2bd9-41f5-8317-01ad856d7b10 @@ -7133,7 +7133,7 @@ name: Newton per Coulomb symbol: N/C definition: 'http://qudt.org/vocab/unit#NewtonPerCoulomb' - unit_type: Electrical field strength + type: Electrical field strength workspace_id: null - model: sta.unit pk: 477b57c6-a3a6-4871-9e06-ec1cbcaf1ff6 @@ -7141,7 +7141,7 @@ name: Degree per Minute symbol: deg/min definition: 'http://qudt.org/vocab/unit#DegreePerMinute' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: 2295ac56-6fb2-4704-a996-8611256bf533 @@ -7149,7 +7149,7 @@ name: Planck Current Density symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckCurrentDensity' - unit_type: Electrical current density + type: Electrical current density workspace_id: null - model: sta.unit pk: f3872244-4098-428a-af09-7663e51e1f49 @@ -7157,7 +7157,7 @@ name: Bangladeshi Taka symbol: BDT definition: 'http://qudt.org/vocab/unit#BangladeshiTaka' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c8abe8cb-6044-4d07-98c4-55d999b6893b @@ -7165,7 +7165,7 @@ name: Malaysian Ringgit symbol: MYR definition: 'http://qudt.org/vocab/unit#MalaysianRinggit' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 956d5b47-5928-4ef7-90cd-5304c2cd4344 @@ -7173,7 +7173,7 @@ name: Julian Month symbol: mo_j definition: 'http://unitsofmeasure.org/ucum.html#para-31' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 842a2008-b59c-4c70-982e-92deb5bf0bad @@ -7183,7 +7183,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 47e5bbb5-4073-4ee9-905c-f1237bf233dc @@ -7193,7 +7193,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 9aed2289-ab0d-4f1d-936b-1ebb9372a84f @@ -7204,7 +7204,7 @@ http://qudt.org/vocab/unit#Pascal; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 36b00a4c-5965-4635-a776-4b47c3df0e7d @@ -7212,7 +7212,7 @@ name: Ounce per Square Foot symbol: oz/ft^2 definition: 'http://qudt.org/vocab/unit#OuncePerSquareFoot' - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: bdff2787-0296-41e5-8876-645b5bcedc9e @@ -7222,7 +7222,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Radioactivity per volume + type: Radioactivity per volume workspace_id: null - model: sta.unit pk: 6ecc0b5b-42c2-4bee-b720-251b79489267 @@ -7230,7 +7230,7 @@ name: Malawi Kwacha symbol: MWK definition: 'http://qudt.org/vocab/unit#MalawiKwacha' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ac1941df-9fe2-4285-aecb-097ebc6d7b3c @@ -7241,7 +7241,7 @@ http://qudt.org/vocab/unit#DryQuartUS; http://unitsofmeasure.org/ucum.html#para-37; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: f39715b0-f555-4182-94c7-420c117c3ded @@ -7249,7 +7249,7 @@ name: 'Minim, British' symbol: min_br definition: 'http://unitsofmeasure.org/ucum.html#para-38' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 2b32308b-c53c-4608-9933-20ed8783df2b @@ -7261,7 +7261,7 @@ http://unitsofmeasure.org/ucum.html#para-37; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 419e543a-6246-4721-9193-f4d101b79193 @@ -7269,7 +7269,7 @@ name: Degree Celsius per Second symbol: degC / s definition: 'http://qudt.org/vocab/unit#DegreeCelsiusPerSecond' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 6b1a8dcc-b599-4a81-9b86-e85fc0dda34b @@ -7277,7 +7277,7 @@ name: Square Meter Kelvin per Watt symbol: (K^2)m/W definition: 'http://qudt.org/vocab/unit#SquareMeterKelvinPerWatt' - unit_type: Thermal insulance + type: Thermal insulance workspace_id: null - model: sta.unit pk: 40ce0635-f886-4999-b7ca-9553891bd8d5 @@ -7285,7 +7285,7 @@ name: Joule per Tesla symbol: J/T definition: 'http://qudt.org/vocab/unit#JoulePerTesla' - unit_type: Magnetic dipole moment + type: Magnetic dipole moment workspace_id: null - model: sta.unit pk: e1234cb1-2973-43e7-b5ec-923ef14edd76 @@ -7295,7 +7295,7 @@ definition: >- http://qudt.org/vocab/unit#TonEnergy; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 0df55a7c-4fff-4af2-98b4-a7dcbfd614af @@ -7304,7 +7304,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 4b0455f8-a725-4b74-a2c5-1d5165273c53 @@ -7312,7 +7312,7 @@ name: Hazen symbol: HU definition: 'http://environment.data.gov.au/def/unit/Hazen' - unit_type: Color + type: Color workspace_id: null - model: sta.unit pk: d1c17bd8-899c-4ff8-8153-e32101913200 @@ -7320,7 +7320,7 @@ name: Watt per Square Meter Kelvin symbol: W/(m^2-K) definition: 'http://qudt.org/vocab/unit#WattPerSquareMeterKelvin' - unit_type: Heat transfer coefficient + type: Heat transfer coefficient workspace_id: null - model: sta.unit pk: 40ceac53-9dc0-451b-9b0a-2faf2820d624 @@ -7328,7 +7328,7 @@ name: Degree Rankine per Minute symbol: degR / m definition: 'http://qudt.org/vocab/unit#DegreeRankinePerMinute' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 15f98ab7-a152-45a0-8021-04ef0078ea53 @@ -7338,7 +7338,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: a0e86414-0fdb-4570-ba58-8f100435dd67 @@ -7348,7 +7348,7 @@ definition: >- http://qudt.org/vocab/unit#BoardFoot; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 80876de9-8849-4d6e-b2f2-5b3e001f51b9 @@ -7358,7 +7358,7 @@ definition: >- http://environment.data.gov.au/def/unit/MilliMolar; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 7fbcfa6c-2aea-4d62-9cbd-a4fea0f2c650 @@ -7366,7 +7366,7 @@ name: Btu per Square Foot symbol: Btu/ft^2 definition: 'http://qudt.org/vocab/unit#BtuPerSquareFoot' - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: 6e2ea38a-86b4-47ef-bf19-022012f0b78d @@ -7374,7 +7374,7 @@ name: Loti symbol: LSL definition: 'http://qudt.org/vocab/unit#Loti' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 7c09bf55-72e9-4145-9db5-dd3cd10c2013 @@ -7385,7 +7385,7 @@ http://qudt.org/vocab/unit#GallonImperial; http://unitsofmeasure.org/ucum.html#para-38; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 773e1d42-93ba-4573-b6a3-2d972da6f61d @@ -7393,7 +7393,7 @@ name: Pa'Anga symbol: TOP definition: 'http://qudt.org/vocab/unit#Paanga' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9e699879-db0d-4bee-93e6-f09a5e93d5cf @@ -7401,7 +7401,7 @@ name: Joule per Square Centimeter symbol: J/cm^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: ccc88e86-2ac2-4598-ac30-8869caeadb85 @@ -7409,7 +7409,7 @@ name: Microgram per Milligram symbol: µg/mg definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: a8d6999e-602a-4130-9d7a-1d5c5a9ab3d9 @@ -7417,7 +7417,7 @@ name: Inch Pound Force symbol: in-lbf definition: 'http://qudt.org/vocab/unit#InchPoundForce' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 0f09afce-e8ed-404f-83eb-217ec692c51a @@ -7425,7 +7425,7 @@ name: Kilogram Second Squared symbol: '' definition: 'http://qudt.org/vocab/unit#KilogramSecondSquared' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: a6c05c29-72d1-4b05-916f-953e6123a62a @@ -7433,7 +7433,7 @@ name: 'Horsepower, Imperial' symbol: HP definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: b6e4915e-4363-4ee5-9bb6-c77aca51b5e7 @@ -7443,7 +7443,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qudt.org/vocab/unit#MilePerHour - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: f2d07ba1-38dd-404e-b0b3-dbf790a087f9 @@ -7451,7 +7451,7 @@ name: Per Tesla Meter symbol: m^-1 T^-1 definition: 'http://qudt.org/vocab/unit#PerTeslaMeter' - unit_type: Length per magnetic flux + type: Length per magnetic flux workspace_id: null - model: sta.unit pk: 3033451f-05db-40b1-bbb0-daf009d3db48 @@ -7459,7 +7459,7 @@ name: "British Thermal Unit At 59\_°F" symbol: Btu_59 definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 46ce4771-baaa-4386-a02f-ad198caa4151 @@ -7467,7 +7467,7 @@ name: Kilocalorie per Second symbol: kcal/s definition: 'http://qudt.org/vocab/unit#KilocaloriePerSecond' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 60d8eb09-e8cb-4e35-8612-7c63706c7826 @@ -7475,7 +7475,7 @@ name: Uzbekistan Som symbol: UZS definition: 'http://qudt.org/vocab/unit#UzbekistanSom' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 644502e5-14c4-49a4-8835-d1698fbae4cb @@ -7483,7 +7483,7 @@ name: Trinidad And Tobago Dollar symbol: TTD definition: 'http://qudt.org/vocab/unit#TrinidadAndTobagoDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 3935df49-de20-4be8-aaf4-ec5a8899e966 @@ -7493,7 +7493,7 @@ definition: >- http://qudt.org/vocab/unit#UnitPole; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Magnetic flux + type: Magnetic flux workspace_id: null - model: sta.unit pk: 1ec3f0b7-ac8a-446f-8a16-cfb3f01ad959 @@ -7501,7 +7501,7 @@ name: Gallon US per Year symbol: gpy definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 1436370e-cd81-4dc4-9c29-9d54dfb3b85f @@ -7511,7 +7511,7 @@ definition: >- http://qudt.org/vocab/unit#CentimeterOfWater; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: fcaff410-b331-43cc-be46-7cdb063acd7c @@ -7519,7 +7519,7 @@ name: Nanogram per Milliliter symbol: ng/mL definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 6c6f8645-be50-4ddf-b9fe-d3a677906f69 @@ -7527,7 +7527,7 @@ name: Pascal Second symbol: Pa-s definition: 'http://qudt.org/vocab/unit#PascalSecond' - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: a88b87eb-4497-4303-a19c-8ee427cace6d @@ -7535,7 +7535,7 @@ name: Denier symbol: den definition: 'http://qudt.org/vocab/unit#Denier' - unit_type: Mass per length + type: Mass per length workspace_id: null - model: sta.unit pk: 3b0336d4-6842-4562-8059-02b0444fe299 @@ -7543,7 +7543,7 @@ name: Zloty symbol: PLN definition: 'http://qudt.org/vocab/unit#Zloty' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 789cb338-2840-4213-bf0b-9a36cdd7e07e @@ -7551,7 +7551,7 @@ name: Brazilian Real symbol: BRL definition: 'http://qudt.org/vocab/unit#BrazilianReal' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: bf9c9fdb-11e3-4361-a7f1-dc64f9d27997 @@ -7561,7 +7561,7 @@ definition: >- http://qudt.org/vocab/unit#Joule; http://unitsofmeasure.org/ucum.html#para-30http://www.unidata.ucar.edu/software/udunits/; - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: e57522fd-9d2a-41dc-b164-145a48023a36 @@ -7572,7 +7572,7 @@ http://qudt.org/vocab/unit#Rod; http://unitsofmeasure.org/ucum.html#para-35; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: f14faf8d-43fa-44ca-a7fb-3d2e592a7495 @@ -7582,7 +7582,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 021d7159-eb36-4dcb-a043-1e1bdd429a26 @@ -7590,7 +7590,7 @@ name: Ohm Meter symbol: ohm m definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical resistivity + type: Electrical resistivity workspace_id: null - model: sta.unit pk: 1fd87ff9-4de3-4d37-9b45-f3fbe66ab6bd @@ -7598,7 +7598,7 @@ name: Abfarad per Centimeter symbol: '' definition: 'http://qudt.org/vocab/unit#AbfaradPerCentimeter' - unit_type: Electrical permittivity + type: Electrical permittivity workspace_id: null - model: sta.unit pk: 010ad1fc-2fa0-410e-9aa7-d3b62391eabc @@ -7606,7 +7606,7 @@ name: Biot symbol: Bi definition: 'http://qudt.org/vocab/unit#Biot' - unit_type: Electrical current + type: Electrical current workspace_id: null - model: sta.unit pk: 80ce64cc-8faa-4c2c-b32d-e44f3de01677 @@ -7614,7 +7614,7 @@ name: Coulomb per Mole symbol: '' definition: 'http://qudt.org/vocab/unit#CoulombPerMole' - unit_type: Electrical charge per count + type: Electrical charge per count workspace_id: null - model: sta.unit pk: 222ed62c-ed67-40f1-a72c-872d28284084 @@ -7624,7 +7624,7 @@ definition: >- http://qudt.org/vocab/unit#LiquidCupUS; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 394b33fa-fd71-4d77-83d9-3bb8f1aaad6e @@ -7634,7 +7634,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 343b22ae-0446-48d4-9ef6-e5b27ed55aae @@ -7645,7 +7645,7 @@ http://qudt.org/vocab/unit#Newton; http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: f3b2338b-e53c-44b9-9fa3-8adae29d5057 @@ -7655,7 +7655,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass flux + type: Mass flux workspace_id: null - model: sta.unit pk: d34c3f14-f8f2-4b3e-b292-541ac2274231 @@ -7666,7 +7666,7 @@ http://qudt.org/vocab/unit#YearTropical; http://unitsofmeasure.org/ucum.html#para-31; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 68d2c2e5-9ae1-4aab-a07b-563e5e34b545 @@ -7677,7 +7677,7 @@ http://unitsofmeasure.org/ucum.html#para-39; http://www.unidata.ucar.edu/software/udunits/; http://qudt.org/vocab/unit#TonShort - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 39cc8121-0328-4184-80fc-b7581921fffa @@ -7685,7 +7685,7 @@ name: Megawatt Hour symbol: MW-hr definition: '' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: e8bd66e7-0773-4fd2-bdf6-c665d4a6819a @@ -7693,7 +7693,7 @@ name: Liter per Minute symbol: L/min definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 768e8331-7402-4caf-9832-29b2c662c5a0 @@ -7703,7 +7703,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-46; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: 703ea1e4-3b3e-474a-b7ad-7943662ed160 @@ -7711,7 +7711,7 @@ name: Acre Foot per Half Month symbol: ac ft/0.5 mo definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: dc789d75-8fba-4fa8-8afc-c0f893c4bbec @@ -7719,7 +7719,7 @@ name: ksi symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: d550e94e-27e3-4be9-8a6c-3e1b4005f785 @@ -7727,7 +7727,7 @@ name: 'Teaspoon, Metric' symbol: tsp_m definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 9d2301fc-aa81-4032-9f64-3f45bad7cee5 @@ -7739,7 +7739,7 @@ http://unitsofmeasure.org/ucum.html#para-43; http://www.unidata.ucar.edu/software/udunits/; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 5a4d7955-0736-40a2-80c8-62be126efa86 @@ -7750,7 +7750,7 @@ http://qudt.org/vocab/unit#DryPintUS; http://unitsofmeasure.org/ucum.html#para-37; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 77310214-9b21-424a-8358-522f0911927a @@ -7758,7 +7758,7 @@ name: Farad per Meter symbol: F/m definition: 'http://qudt.org/vocab/unit#FaradPerMeter' - unit_type: Electrical permittivity + type: Electrical permittivity workspace_id: null - model: sta.unit pk: ae3ef795-4f81-4429-a374-30138c925d38 @@ -7766,7 +7766,7 @@ name: Millimeter per Day symbol: mm/day definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 6ae35326-ef7f-4874-9e83-f129d90ee675 @@ -7776,7 +7776,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 11b369df-56a5-4fd9-8e78-5988a1677f3f @@ -7784,7 +7784,7 @@ name: 'Nautical Mile, British' symbol: nmi_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: b9f9f3b0-527e-432e-a906-0203fed7d73a @@ -7792,7 +7792,7 @@ name: Kilogram Force Meter symbol: kgf-m definition: 'http://qudt.org/vocab/unit#KilogramForceMeter' - unit_type: Torque + type: Torque workspace_id: null - model: sta.unit pk: a9290851-9ad2-42ff-97e9-af8670e565e1 @@ -7803,7 +7803,7 @@ http://unitsofmeasure.org/ucum.html#para-35; http://qudt.org/vocab/unit#FootUSSurvey; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 94a9249f-9af8-44c3-89c5-8972bfe39370 @@ -7811,7 +7811,7 @@ name: Gigahertz symbol: GHz definition: 'http://qudt.org/vocab/unit#GigaHertz' - unit_type: Frequency + type: Frequency workspace_id: null - model: sta.unit pk: 91c8dd58-e11c-471d-a682-ad884ba286d8 @@ -7821,7 +7821,7 @@ definition: >- http://qudt.org/vocab/unit#MolePerCubicMeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 532d8f22-c5fd-4637-90a9-8a25a61d64e9 @@ -7833,7 +7833,7 @@ http://unitsofmeasure.org/ucum.html#para-30; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Solid angle + type: Solid angle workspace_id: null - model: sta.unit pk: 6b52617f-ef4d-4e64-8637-b46da4d140b8 @@ -7841,7 +7841,7 @@ name: Joule Second per Mole symbol: J s mol^-1 definition: 'http://qudt.org/vocab/unit#JouleSecondPerMole' - unit_type: Molar angular momentum + type: Molar angular momentum workspace_id: null - model: sta.unit pk: 9c1737c1-bd19-4f83-8bff-f08d28190b5e @@ -7849,7 +7849,7 @@ name: Knot per Second symbol: kt/s definition: 'http://qudt.org/vocab/unit#KnotPerSecond' - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: 816d618f-c46b-4a31-9b2f-0dbe016edd18 @@ -7857,7 +7857,7 @@ name: Abtesla symbol: '' definition: 'http://qudt.org/vocab/unit#Abtesla' - unit_type: Magnetic flux density + type: Magnetic flux density workspace_id: null - model: sta.unit pk: b940a114-0b6b-4f0f-9415-7b88f2edd513 @@ -7867,7 +7867,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 776d7007-3361-449a-8758-f1a736aa1969 @@ -7875,7 +7875,7 @@ name: Synodal Month symbol: mo_s definition: 'http://unitsofmeasure.org/ucum.html#para-31' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 74033118-9ec7-4f5e-8e1b-4e17977d74f2 @@ -7885,7 +7885,7 @@ definition: >- http://qudt.org/vocab/unit#Rad; http://unitsofmeasure.org/ucum.html#para-33 - unit_type: Absorbed dose + type: Absorbed dose workspace_id: null - model: sta.unit pk: f75398e2-f574-44a1-9345-a1f8c1b79829 @@ -7893,7 +7893,7 @@ name: Square Centimeter Minute symbol: cm^2-m definition: 'http://qudt.org/vocab/unit#SquareCentimeterMinute' - unit_type: Area time + type: Area time workspace_id: null - model: sta.unit pk: 13219605-f246-4aa3-ae26-3c3e3ee39f87 @@ -7901,7 +7901,7 @@ name: Candela symbol: cd definition: 'http://qudt.org/vocab/unit#Candela' - unit_type: Luminous intensity + type: Luminous intensity workspace_id: null - model: sta.unit pk: 62c6c437-3e4e-486c-9b7d-c4bb0f2f828d @@ -7909,7 +7909,7 @@ name: Qatari Rial symbol: QAR definition: 'http://qudt.org/vocab/unit#QatariRial' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 2c7f913b-c4f0-4be1-97d7-9300a854b42f @@ -7919,7 +7919,7 @@ definition: >- http://qudt.org/vocab/unit#KilogramPerCubicMeter; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: dacbec6c-c48f-4476-9044-86db8499f5da @@ -7931,7 +7931,7 @@ http://unitsofmeasure.org/ucum.html#para-30; http://www.unidata.ucar.edu/software/udunits/; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Electromotive force + type: Electromotive force workspace_id: null - model: sta.unit pk: b80c671f-8e1a-461f-b7fc-daee3185f07b @@ -7939,7 +7939,7 @@ name: 'Minim, US' symbol: min_us definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 992f0dab-25b3-45fd-8856-dd8508149604 @@ -7947,7 +7947,7 @@ name: Foot Pound Force per Square Meter symbol: ft-lbf/m^2 definition: 'http://qudt.org/vocab/unit#FootPoundForcePerSquareMeter' - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: afcf463d-c8e9-4f3a-b2c4-5634d11b6488 @@ -7957,7 +7957,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: a2325120-7d2a-40dd-acc6-843c9dd365a0 @@ -7965,7 +7965,7 @@ name: Decibar symbol: dbar definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 99e9d6f5-991d-4c9b-80b2-ec2cffaa3778 @@ -7975,7 +7975,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: e8545f3f-bca0-4945-bae8-0b40140056c8 @@ -7986,7 +7986,7 @@ http://qudt.org/vocab/unit#PoundForce; http://unitsofmeasure.org/ucum.html#para-32; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 855f293e-9011-4657-aeee-b414dda15923 @@ -7994,7 +7994,7 @@ name: Meter Kilogram symbol: m-kg definition: 'http://qudt.org/vocab/unit#MeterKilogram' - unit_type: Length mass + type: Length mass workspace_id: null - model: sta.unit pk: ee4bc00c-fb27-4ec7-bcc4-553afa4084b0 @@ -8002,7 +8002,7 @@ name: Egyptian Pound symbol: EGP definition: 'http://qudt.org/vocab/unit#EgyptianPound' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 201278c2-d9dc-4594-9229-83bab1605d9b @@ -8010,7 +8010,7 @@ name: Slug per Second symbol: slug/s definition: 'http://qudt.org/vocab/unit#SlugPerSecond' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 34d1c4f4-5d1c-400e-933b-8cc9956fddc6 @@ -8020,7 +8020,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 1a537106-eb8c-4db6-9032-64f80f984301 @@ -8028,7 +8028,7 @@ name: Volt Meter symbol: m V definition: 'http://qudt.org/vocab/unit#VoltMeter' - unit_type: Electrical flux + type: Electrical flux workspace_id: null - model: sta.unit pk: 244acc18-425c-4419-91c2-0bd2add2b12f @@ -8036,7 +8036,7 @@ name: Becquerel per Liter symbol: Bq/L definition: 'http://environment.data.gov.au/def/unit/BecquerelPerLitre' - unit_type: Radioactivity per volume + type: Radioactivity per volume workspace_id: null - model: sta.unit pk: 9f6d5265-3e13-48dd-91a5-bd6731f5c7db @@ -8046,7 +8046,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-42; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 5789f760-4316-4cf3-807d-7d46bfb10841 @@ -8054,7 +8054,7 @@ name: Pound per Inch symbol: lb/in definition: 'http://qudt.org/vocab/unit#PoundPerInch' - unit_type: Mass per length + type: Mass per length workspace_id: null - model: sta.unit pk: a0c3c80a-b753-4c8a-8329-2b159b254372 @@ -8062,7 +8062,7 @@ name: Cubic Meter per Kilogram symbol: m^3/kg definition: 'http://qudt.org/vocab/unit#CubicMeterPerKilogram' - unit_type: Specific volume + type: Specific volume workspace_id: null - model: sta.unit pk: 94240831-166c-49b9-ac3c-41b90c67a3a4 @@ -8070,7 +8070,7 @@ name: Bev symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 1a639d77-84db-4c23-83ea-f575fd6e615b @@ -8078,7 +8078,7 @@ name: Degree Fahrenheit Hour per Btu symbol: degF-hr/Btu definition: 'http://qudt.org/vocab/unit#DegreeFahrenheitHourPerBtu' - unit_type: Thermal resistance + type: Thermal resistance workspace_id: null - model: sta.unit pk: aa98b924-e683-48eb-b4bb-a4a96a211c76 @@ -8088,7 +8088,7 @@ definition: >- http://qudt.org/vocab/unit#CubicFootPerSecond; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 730a9a3a-dbe4-460c-8fed-9d843b56436f @@ -8096,7 +8096,7 @@ name: Code symbol: code definition: USGS - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 5c51aebd-b5ce-47a1-881a-ec63893aaf33 @@ -8104,7 +8104,7 @@ name: Meter per Second Degree Celsius symbol: m/s DegC definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: 1f59f16b-ac6d-45ea-ae1b-072b85e5e306 @@ -8114,7 +8114,7 @@ definition: >- http://qudt.org/vocab/unit#HorsepowerElectric; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 0cb817c5-9951-45bb-a1fb-7ac5e5a06be3 @@ -8124,7 +8124,7 @@ definition: >- http://qudt.org/vocab/unit#Day; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 18a0b8b9-7bd3-4975-9f7a-718b6c1161d0 @@ -8132,7 +8132,7 @@ name: Mexican Unidad De Inversion (Udi) (Funds Code) symbol: MXV definition: 'http://qudt.org/vocab/unit#MexicanUnidadDeInversion' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: cbf3c4a3-67bc-4d02-8497-74906cb8f1a1 @@ -8142,7 +8142,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 58387873-a2b2-4779-8792-0925e50729f7 @@ -8150,7 +8150,7 @@ name: Percent by Weight symbol: '% by wt' definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 78161112-3acd-4ab4-88ba-811f83f38187 @@ -8160,7 +8160,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Electrical charge volume density + type: Electrical charge volume density workspace_id: null - model: sta.unit pk: 90e1edd7-eab6-464e-a6ba-d3f767be4c19 @@ -8170,7 +8170,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: 1d4fb39d-5d71-48fa-b4b5-d10770e46b1b @@ -8178,7 +8178,7 @@ name: Radian per Hour symbol: rad/h definition: 'http://qudt.org/vocab/unit#RadianPerHour' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: e16e3389-5693-4036-9cad-db1bfec30704 @@ -8188,7 +8188,7 @@ definition: >- http://qudt.org/vocab/unit#Poundal; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 4c6e6102-f78e-4751-aa87-83aa0b46f913 @@ -8198,7 +8198,7 @@ definition: >- http://qudt.org/vocab/unit#MetricTon; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 8ccb1141-f6c6-465b-b239-766077d3c80d @@ -8206,7 +8206,7 @@ name: Peripheral Vascular Resistance Unit symbol: PRU definition: 'http://unitsofmeasure.org/ucum.html#para-44' - unit_type: Fluid resistance + type: Fluid resistance workspace_id: null - model: sta.unit pk: 2be08636-f84e-47f5-9896-f0588fbd43a5 @@ -8214,7 +8214,7 @@ name: Meter Kelvin symbol: m K definition: 'http://qudt.org/vocab/unit#MeterKelvin' - unit_type: Length temperature + type: Length temperature workspace_id: null - model: sta.unit pk: 20a202e3-3d4c-4c1e-87bc-2412d5e290c3 @@ -8222,7 +8222,7 @@ name: Kilocalorie per Square Centimeter Second symbol: kcal/(cm^2-s) definition: 'http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeterSecond' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 7a20c022-7284-470f-a0ff-2b2b0b7afa17 @@ -8230,7 +8230,7 @@ name: Millimeter per Hour symbol: mm/hr definition: 'http://environment.data.gov.au/def/unit/MillimeterPerHour' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 3215c543-8a6e-4876-81a3-1c0054e55b77 @@ -8240,7 +8240,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 2fadc6e5-3d45-4479-8194-64b969eb6cc3 @@ -8248,7 +8248,7 @@ name: Gram per Second symbol: g/s definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: c4497b21-881c-4277-beb0-b2fa49183666 @@ -8258,7 +8258,7 @@ definition: >- http://environment.data.gov.au/def/unit/Microgram; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 93616391-5a6b-4d55-b9e3-da567abd597b @@ -8266,7 +8266,7 @@ name: Joule per Square Tesla symbol: J T^-2 definition: 'http://qudt.org/vocab/unit#JoulePerSquareTesla' - unit_type: Energy per square magnetic flux density + type: Energy per square magnetic flux density workspace_id: null - model: sta.unit pk: ba73bdf8-d139-4cb5-924d-84ac6267da58 @@ -8277,7 +8277,7 @@ http://qudt.org/vocab/unit#Oersted; http://unitsofmeasure.org/ucum.html#para-33; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Magnetic field strength + type: Magnetic field strength workspace_id: null - model: sta.unit pk: e7291551-a747-40ce-8e21-9d59c5afb5f6 @@ -8285,7 +8285,7 @@ name: Cubic Meter per Second Squared symbol: m^3/s^2 definition: 'http://qudt.org/vocab/unit#CubicMeterPerSecondSquared' - unit_type: Standard gravitational parameter + type: Standard gravitational parameter workspace_id: null - model: sta.unit pk: ed6d71d4-a495-490e-aa62-e7d40ef9f728 @@ -8293,7 +8293,7 @@ name: Gram per Cubic Meter symbol: g/m3 definition: '' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 0d8b8937-4daf-4f6c-a60b-d6d2442f72ff @@ -8304,7 +8304,7 @@ http://qudt.org/vocab/unit#PintImperial; http://unitsofmeasure.org/ucum.html#para-38; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 886daa85-e461-4299-97e5-6535fbb8e2d7 @@ -8313,7 +8313,7 @@ symbol: cycle definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 917cb5fb-96dc-40be-a179-04de80426bea @@ -8321,7 +8321,7 @@ name: 'Mil, US Survey' symbol: mil_us definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: f65282ed-b813-42a2-ab12-f4de531f530b @@ -8331,7 +8331,7 @@ definition: >- http://qudt.org/vocab/unit#HorsepowerWater; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 6eeeb792-c04a-4535-a811-53a64c3420d2 @@ -8339,7 +8339,7 @@ name: Newton per Kilogram symbol: N/kg definition: 'http://qudt.org/vocab/unit#NewtonPerKilogram' - unit_type: Thrust to mass ratio + type: Thrust to mass ratio workspace_id: null - model: sta.unit pk: 51533b10-edf2-4e2b-9d91-acd41feeccae @@ -8347,7 +8347,7 @@ name: Perch symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: fd2a633f-a2fe-4413-aa29-5aa432ff5fe3 @@ -8357,7 +8357,7 @@ definition: >- http://qudt.org/vocab/unit#Byte; http://unitsofmeasure.org/ucum.html#para-48 - unit_type: Amount of information + type: Amount of information workspace_id: null - model: sta.unit pk: a16ccf03-4632-4f25-8b2d-c847c6803d49 @@ -8365,7 +8365,7 @@ name: Acre symbol: acr_us definition: 'http://qudt.org/vocab/unit#Acre' - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 7e7dee98-82e9-43bd-a1e9-1452a5142332 @@ -8375,7 +8375,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-41; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 91ff355c-ec4a-4b76-a43f-d43168f3b4e1 @@ -8383,7 +8383,7 @@ name: Barbados Dollar symbol: BBD definition: 'http://qudt.org/vocab/unit#BarbadosDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: df542253-bc5a-42bc-9132-4cdaa0ec65d0 @@ -8393,7 +8393,7 @@ definition: >- http://qudt.org/vocab/unit#CalorieNutritional; http://unitsofmeasure.org/ucum.html#para-43 - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: e3adbe6c-4e2c-474a-a417-0efba7d7dab1 @@ -8401,7 +8401,7 @@ name: Degree Celsius Millimole per Cubic Meter symbol: DegC mmol/m^3 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: 6437a142-f8e8-44de-82bc-cb1bb07c2d50 @@ -8409,7 +8409,7 @@ name: Dominican Peso symbol: DOP definition: 'http://qudt.org/vocab/unit#DominicanPeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 30361ee4-9907-465e-8912-866ac4c5e2f9 @@ -8417,7 +8417,7 @@ name: Million Gallon US per Year symbol: MGY definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: e32ed741-15b4-4fe0-a91e-7ec1400ba7ab @@ -8425,7 +8425,7 @@ name: Line symbol: lne definition: 'http://unitsofmeasure.org/ucum.html#para-42' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 181c40a6-fa6c-4b7b-9250-78d0f554debe @@ -8433,7 +8433,7 @@ name: Boliviano symbol: BOB definition: 'http://qudt.org/vocab/unit#Boliviano' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 550eb2b8-08e5-4627-a6e0-d07c3989840e @@ -8445,7 +8445,7 @@ http://unitsofmeasure.org/ucum.html#para-34; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 282de149-8237-4d8c-accb-67938d7f9649 @@ -8453,7 +8453,7 @@ name: Megaelectronvolt per Centimeter symbol: MeV/cm definition: 'http://qudt.org/vocab/unit#MegaElectronVoltPerCentimeter' - unit_type: Linear energy transfer + type: Linear energy transfer workspace_id: null - model: sta.unit pk: c6b361d0-9bff-4179-aa8d-30b75ae8e461 @@ -8464,7 +8464,7 @@ http://environment.data.gov.au/def/unit/PerTrillion; http://unitsofmeasure.org/ucum.html#para-29; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: 71b70349-dae5-4050-942d-e7669a8aae90 @@ -8476,7 +8476,7 @@ http://unitsofmeasure.org/ucum.html#para-44; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 9ee5df7c-6ec5-448e-8787-ace2d9bfda6f @@ -8484,7 +8484,7 @@ name: Megavolt-ampere symbol: MVA definition: '' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 3ff066e1-e17c-4213-b7a4-d886796bcd46 @@ -8492,7 +8492,7 @@ name: Australian Dollar symbol: AUD definition: 'http://qudt.org/vocab/unit#AustralianDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 067b6176-015e-49be-89ca-95842ce0ccbd @@ -8500,7 +8500,7 @@ name: Centimeter per Second Squared symbol: '' definition: 'http://qudt.org/vocab/unit#CentimeterPerSecondSquared' - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: 776caeb0-1736-447c-bdc5-8a5c1d8de291 @@ -8508,7 +8508,7 @@ name: Kwanza symbol: AOA definition: 'http://qudt.org/vocab/unit#Kwanza' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: e36a7241-d9fb-4d6f-a50c-a3ddc7f4df23 @@ -8516,7 +8516,7 @@ name: Argentine Peso symbol: ARS definition: 'http://qudt.org/vocab/unit#ArgentinePeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 51c724c5-b50d-4509-99b4-3b6c20f8aa80 @@ -8524,7 +8524,7 @@ name: Rufiyaa symbol: MVR definition: 'http://qudt.org/vocab/unit#Rufiyaa' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f2a404e7-bfaf-4e33-b3b5-f9eb4e855976 @@ -8532,7 +8532,7 @@ name: Cubic Inch per Minute symbol: in^3/min definition: 'http://qudt.org/vocab/unit#CubicInchPerMinute' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: c04f2029-92b9-485c-bfcc-809bef4b2c4a @@ -8540,7 +8540,7 @@ name: Megaliter per Week symbol: Ml/wk definition: 'http://environment.data.gov.au/def/unit/MegalitrePerWeek' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: bbf42a6e-402a-4eb1-b51a-0835b1d8d68c @@ -8548,7 +8548,7 @@ name: Ton Force symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Force + type: Force workspace_id: null - model: sta.unit pk: 209ce156-e704-4a47-a33d-ef2a5256ce97 @@ -8556,7 +8556,7 @@ name: Neper symbol: Np definition: 'http://unitsofmeasure.org/ucum.html#para-46' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: d74c1789-50fe-46d0-9723-ebb51ffaa8b6 @@ -8564,7 +8564,7 @@ name: European Composite Unit (Eurco) (Bonds Market Unit) symbol: XBA definition: 'http://qudt.org/vocab/unit#EuropeanCompositeUnit' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 434ed9b3-fc4e-4e3e-9ca3-72351e8f406c @@ -8575,7 +8575,7 @@ http://qudt.org/vocab/unit#Rem; http://unitsofmeasure.org/ucum.html#para-33; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Dose equivalent + type: Dose equivalent workspace_id: null - model: sta.unit pk: 780ba0d9-31ff-46f9-9b7b-15ed47b04c15 @@ -8585,7 +8585,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: aed93b1b-602e-417b-9304-51389b90c0c9 @@ -8596,7 +8596,7 @@ http://qudt.org/vocab/unit#Roentgen; http://unitsofmeasure.org/ucum.html#para-33; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: 797cd112-421a-4a0e-a438-5cccf570edd7 @@ -8607,7 +8607,7 @@ http://unitsofmeasure.org/ucum.html#para-35; http://qudt.org/vocab/unit#FootUSSurvey; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: baf97fd4-a41b-40b3-9aa3-76d9f6cbabd4 @@ -8615,7 +8615,7 @@ name: Cubic Mile symbol: mi^3 definition: 'http://qudt.org/vocab/unit#CubicMile' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 9a96143c-706c-4410-aeec-e98af1703b5f @@ -8626,7 +8626,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://unitsofmeasure.org/ucum.html#para-29; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: dd82995a-e503-40fa-9f60-524e448b8793 @@ -8634,7 +8634,7 @@ name: Hertz per Volt symbol: Hz V^-1 definition: 'http://qudt.org/vocab/unit#HertzPerVolt' - unit_type: Inverse magnetic flux + type: Inverse magnetic flux workspace_id: null - model: sta.unit pk: 5e3f8c20-e844-45e0-a04a-49cf2eda78f9 @@ -8642,7 +8642,7 @@ name: Megaliter symbol: Ml definition: 'http://environment.data.gov.au/def/unit/Megalitre' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: e7a0c0bc-e866-4a96-8b07-6b646f89bf5b @@ -8650,7 +8650,7 @@ name: Coulomb Square Meter symbol: C m^2 definition: 'http://qudt.org/vocab/unit#CoulombSquareMeter' - unit_type: Electrical quadrupole moment + type: Electrical quadrupole moment workspace_id: null - model: sta.unit pk: 7d9341c6-78b2-4936-8a4f-5524f153bbdb @@ -8658,7 +8658,7 @@ name: Centimeter per Hour symbol: cm/hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: 0921038d-4d6e-4b18-8ff2-a15406d47951 @@ -8668,7 +8668,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 97b6db5f-8b49-4994-a5a4-01d26a05a7e1 @@ -8676,7 +8676,7 @@ name: Statvolt per Centimeter symbol: '' definition: 'http://qudt.org/vocab/unit#StatvoltPerCentimeter' - unit_type: Electrical field strength + type: Electrical field strength workspace_id: null - model: sta.unit pk: 52c2b5b8-e7ff-44a8-abfc-2a50b18da545 @@ -8684,7 +8684,7 @@ name: Silver (One Troy Ounce) symbol: XAG definition: 'http://qudt.org/vocab/unit#Silver-OunceTroy' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9ddc6c3f-1ad7-4025-b21e-67c2039f9257 @@ -8692,7 +8692,7 @@ name: Revolution per Second symbol: rev/s definition: 'http://qudt.org/vocab/unit#RevolutionPerSecond' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: b9b62fdd-474b-42be-8cc6-d83755ef9200 @@ -8703,7 +8703,7 @@ http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://unitsofmeasure.org/ucum.html#para-29; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: ef339172-33ef-44a9-869f-5ec174206926 @@ -8714,7 +8714,7 @@ http://qudt.org/vocab/unit#UnifiedAtomicMassUnit; http://unitsofmeasure.org/ucum.html#para-31; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: 451ad463-f12f-4b42-94bd-ec77dda44611 @@ -8722,7 +8722,7 @@ name: Cubic Hecto Meter symbol: (hm)^3 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: f9f07ee0-e968-4006-a3ac-5099cbe34ce7 @@ -8730,7 +8730,7 @@ name: Svedberg Unit symbol: S definition: 'http://unitsofmeasure.org/ucum.html#para-45' - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 612c91f1-90ef-4f3d-9d2c-cab55a94771f @@ -8738,7 +8738,7 @@ name: Gamma symbol: gamma definition: 'http://qudt.org/vocab/unit#Gamma' - unit_type: Magnetic flux density + type: Magnetic flux density workspace_id: null - model: sta.unit pk: e4705ff4-e4a9-4064-960d-276aaf1067d5 @@ -8746,7 +8746,7 @@ name: ElectronVolt per Tesla symbol: eV T^-1 definition: 'http://qudt.org/vocab/unit#ElectronVoltPerTesla' - unit_type: Magnetic dipole moment + type: Magnetic dipole moment workspace_id: null - model: sta.unit pk: d14ffe5d-ec0a-446e-86c1-0bdd1e57b17b @@ -8755,7 +8755,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: b7ddcf7a-9cd7-47b0-bd41-0d3942c355de @@ -8763,7 +8763,7 @@ name: Diopter symbol: diop definition: 'http://qudt.org/vocab/unit#Diopter' - unit_type: Inverse length + type: Inverse length workspace_id: null - model: sta.unit pk: 123b1821-b6b0-4ccc-8123-f2edc4ac7b9c @@ -8771,7 +8771,7 @@ name: Gallon US per Second symbol: gps definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: ee59221e-96d1-4ff0-ac44-597c106c574b @@ -8781,7 +8781,7 @@ definition: >- http://qudt.org/vocab/unit#Watthour; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: df372e42-9af4-499f-a65d-020ef8ad52f5 @@ -8789,7 +8789,7 @@ name: Foot Poundal symbol: ft-pdl definition: 'http://qudt.org/vocab/unit#FootPoundal' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 24c5d9bd-996d-496d-bc02-a7547c62609c @@ -8797,7 +8797,7 @@ name: Mexican Peso symbol: MXN definition: 'http://qudt.org/vocab/unit#MexicanPeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c052c877-fe68-49fd-a255-929000728934 @@ -8805,7 +8805,7 @@ name: Degree per Second Squared symbol: deg/(s^2) definition: 'http://qudt.org/vocab/unit#DegreePerSecondSquared' - unit_type: Angular acceleration + type: Angular acceleration workspace_id: null - model: sta.unit pk: 24a683a4-0d42-4393-bed9-8f128ad19d38 @@ -8813,7 +8813,7 @@ name: Bz symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: 37322bbf-227e-49c8-8d66-6125e9636de7 @@ -8821,7 +8821,7 @@ name: Nanomole per Minute per Milligram symbol: nmol/min mg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass normalized particle loading + type: Mass normalized particle loading workspace_id: null - model: sta.unit pk: cb87814a-1dce-4369-b034-1c7c43cd85c8 @@ -8829,7 +8829,7 @@ name: Pound per Foot Hour symbol: lb/(ft-hr) definition: 'http://qudt.org/vocab/unit#PoundPerFootHour' - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: 32abdb4b-4e98-4457-9478-53414cebf278 @@ -8839,7 +8839,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://environment.data.gov.au/def/unit/PSU - unit_type: Salinity + type: Salinity workspace_id: null - model: sta.unit pk: 5b6081be-175c-4f94-b438-58684ac54122 @@ -8847,7 +8847,7 @@ name: Pound per Mile symbol: lb/mi definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass per length + type: Mass per length workspace_id: null - model: sta.unit pk: deeb8b6d-819e-4656-a464-d07e16963ab3 @@ -8855,7 +8855,7 @@ name: Btu Inch per Square Foot Second Degree Fahrenheit symbol: Btu-in/(ft^2-s-degF) definition: 'http://qudt.org/vocab/unit#BtuInchPerSquareFootSecondDegreeFahrenheit' - unit_type: Thermal conductivity + type: Thermal conductivity workspace_id: null - model: sta.unit pk: fcba0370-94b9-41ff-ad43-9e08e5c9eb1e @@ -8863,7 +8863,7 @@ name: Degree Celsius per Hour symbol: degC / hr definition: 'http://qudt.org/vocab/unit#DegreeCelsiusPerHour' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 28aa47bd-daed-4619-8ef3-4e962cda1486 @@ -8871,7 +8871,7 @@ name: Counts per Square Centimeter symbol: '#/cm^2' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: a0b530cc-8956-4311-8a40-aa61ceebf59b @@ -8879,7 +8879,7 @@ name: Millimole of Photon per Square Meter symbol: mmol/m^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: 33daf514-31cd-4a27-ac7e-e0c10554b38c @@ -8887,7 +8887,7 @@ name: Foot Pound Force per Square Foot Second symbol: ft-lbf(ft^2-s) definition: 'http://qudt.org/vocab/unit#FootPoundForcePerSquareFootSecond' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 0b51fd03-6767-48e3-9836-89859ccc1579 @@ -8895,7 +8895,7 @@ name: Ethiopian Birr symbol: ETB definition: 'http://qudt.org/vocab/unit#EthiopianBirr' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c3ac4fe7-82ff-4706-ac66-d12ff79995d3 @@ -8907,7 +8907,7 @@ http://unitsofmeasure.org/ucum.html#para-43; http://www.unidata.ucar.edu/software/udunits/; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048 - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: d9379179-a720-4ec0-b3ae-c3ad6e355821 @@ -8915,7 +8915,7 @@ name: Bolivian Mvdol (Funds Code) symbol: BOV definition: 'http://qudt.org/vocab/unit#BolivianMvdol' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: c7758103-686e-4e7d-b2fb-98d600f682f8 @@ -8923,7 +8923,7 @@ name: Joule Meter per Mole symbol: J m mol^-1 definition: 'http://qudt.org/vocab/unit#JouleMeterPerMole' - unit_type: Length molar energy + type: Length molar energy workspace_id: null - model: sta.unit pk: c264ff2f-44aa-428d-837c-7ca007e72a0b @@ -8931,7 +8931,7 @@ name: Millimeter of Water symbol: mm H2O definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: a237f700-7eb9-400c-8ff8-ca352b980e2b @@ -8941,7 +8941,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 79c1b901-2705-4968-8212-02fb85628ea5 @@ -8949,7 +8949,7 @@ name: Picofarad symbol: pF definition: 'http://qudt.org/vocab/unit#PicoFarad' - unit_type: Electrical capacitance + type: Electrical capacitance workspace_id: null - model: sta.unit pk: 0d70dcd5-3c66-44a3-aad1-6c0b4b3b4ae8 @@ -8957,7 +8957,7 @@ name: Gold (One Troy Ounce) symbol: XAU definition: 'http://qudt.org/vocab/unit#Gold-OunceTroy' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: e74ef4ea-8b33-4438-9958-12f8bfc6dff9 @@ -8965,7 +8965,7 @@ name: Netherlands Antillian Guilder symbol: ANG definition: 'http://qudt.org/vocab/unit#NetherlandsAntillianGuilder' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: fa663520-413c-43e1-9967-79da5981fa6d @@ -8973,7 +8973,7 @@ name: Ampere Turn per Meter symbol: At/m definition: 'http://qudt.org/vocab/unit#AmpereTurnPerMeter' - unit_type: Magnetic field strength + type: Magnetic field strength workspace_id: null - model: sta.unit pk: e7218a40-e9bb-4ce0-9474-086566b8bf8e @@ -8981,7 +8981,7 @@ name: Pound Force Inch symbol: lbf-in definition: 'http://qudt.org/vocab/unit#PoundForceInch' - unit_type: Torque + type: Torque workspace_id: null - model: sta.unit pk: d4d7154f-8dcb-43ff-a768-14aa9a59a24b @@ -8989,7 +8989,7 @@ name: Coulomb Meter symbol: C m definition: 'http://qudt.org/vocab/unit#CoulombMeter' - unit_type: Electrical dipole moment + type: Electrical dipole moment workspace_id: null - model: sta.unit pk: 589c373c-922c-4cda-93ef-9e204ff3572b @@ -8997,7 +8997,7 @@ name: Cubic Centimeter per Second symbol: cm^3/sec definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Volumetric flow rate + type: Volumetric flow rate workspace_id: null - model: sta.unit pk: 4e797857-59fa-4aaf-9fff-23cfc099bfe4 @@ -9005,7 +9005,7 @@ name: Disintegration per Minute per Liter symbol: dpm/l definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Radioactivity per volume + type: Radioactivity per volume workspace_id: null - model: sta.unit pk: 7eb056cf-7c69-4163-8874-8c5801db507a @@ -9015,7 +9015,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://unitsofmeasure.org/ucum.html#para-44 - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 2601af60-0e32-43bb-8fcb-d681fce7635f @@ -9023,7 +9023,7 @@ name: Microtorr symbol: µtorr definition: 'http://qudt.org/vocab/unit#MicroTorr' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: f2ede8c5-8476-4a4f-8f6b-42ebc7daf400 @@ -9031,7 +9031,7 @@ name: Meter per Second Squared symbol: m/s^2 definition: 'http://qudt.org/vocab/unit#MeterPerSecondSquared' - unit_type: Linear acceleration + type: Linear acceleration workspace_id: null - model: sta.unit pk: ff69d6df-5704-483f-b359-f10512d3be4f @@ -9039,7 +9039,7 @@ name: Square Foot Second Degree Fahrenheit symbol: ft^2-s-degF definition: 'http://qudt.org/vocab/unit#SquareFootSecondDegreeFahrenheit' - unit_type: Area time temperature + type: Area time temperature workspace_id: null - model: sta.unit pk: 3b3ef519-fe47-4b3a-9dee-4c6c32ba4900 @@ -9047,7 +9047,7 @@ name: Microhenry symbol: microH definition: 'http://qudt.org/vocab/unit#MicroHenry' - unit_type: Inductance + type: Inductance workspace_id: null - model: sta.unit pk: a4fcc22a-7249-4d8d-860a-b467eeeff192 @@ -9055,7 +9055,7 @@ name: Moldovan Leu symbol: MDL definition: 'http://qudt.org/vocab/unit#MoldovanLeu' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: ec1dc324-37ad-4852-9b67-5e2132b0bd85 @@ -9063,7 +9063,7 @@ name: Dalton symbol: Da definition: 'http://qudt.org/vocab/unit#Dalton' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: b3db0471-b627-4c17-b9b7-25386bde40e4 @@ -9071,7 +9071,7 @@ name: Square Foot per Hour symbol: ft^2/hr definition: 'http://qudt.org/vocab/unit#SquareFootPerHour' - unit_type: Diffusivity + type: Diffusivity workspace_id: null - model: sta.unit pk: d9a076aa-f958-442d-a652-483eb7af9751 @@ -9079,7 +9079,7 @@ name: Superoxide Dismutase Unit per Minute per Milligram symbol: U/min mg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass normalized particle loading + type: Mass normalized particle loading workspace_id: null - model: sta.unit pk: 6efccf06-69a3-46cf-ba5b-1a2601678aa8 @@ -9087,7 +9087,7 @@ name: Abcoulomb symbol: abC definition: 'http://qudt.org/vocab/unit#Abcoulomb' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 276bce3d-705b-4adc-b7fb-656992bbb1bb @@ -9097,7 +9097,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: 5ceaf0a9-ed62-4823-a340-04fa4b6b8fe0 @@ -9105,7 +9105,7 @@ name: Aruban Guilder symbol: AWG definition: 'http://qudt.org/vocab/unit#ArubanGuilder' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 99d490ff-9da5-4a6e-900d-569134f342ac @@ -9113,7 +9113,7 @@ name: Volt per Square Meter symbol: V m^-2 definition: 'http://qudt.org/vocab/unit#VoltPerSquareMeter' - unit_type: Energy per area electrical charge + type: Energy per area electrical charge workspace_id: null - model: sta.unit pk: 9ec9fa2b-ee04-469d-b11c-0a315e88b16e @@ -9121,7 +9121,7 @@ name: Microeinstein per Square Meter per Second symbol: uE/m^2 s definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Particle flux + type: Particle flux workspace_id: null - model: sta.unit pk: 8f30848a-715f-474b-82e7-0e22f720dd40 @@ -9129,7 +9129,7 @@ name: Megaelectronvolt Femtometer symbol: MeV fm definition: 'http://qudt.org/vocab/unit#MegaElectronVoltFemtometer' - unit_type: Length energy + type: Length energy workspace_id: null - model: sta.unit pk: 951da25b-19c5-4d35-98ed-e50d4940e3a0 @@ -9139,7 +9139,7 @@ definition: >- http://qudt.org/vocab/unit#PoundForcePerSquareInch; http://unitsofmeasure.org/ucum.html#para-47 - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: d43d6e95-735c-4796-9149-e2dc533fedda @@ -9149,7 +9149,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: b1f63b5a-53e4-4ded-90ec-01afa470ce05 @@ -9157,7 +9157,7 @@ name: Wir Euro (Complementary Currency) symbol: CHE definition: 'http://qudt.org/vocab/unit#WIREuro' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 864a816e-f0f7-4265-9343-cc274f864afd @@ -9165,7 +9165,7 @@ name: Gigawatt symbol: GW definition: '' - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: 9eaa6f8f-8c10-46e6-b4fa-2396e93c638c @@ -9173,7 +9173,7 @@ name: Baht symbol: THB definition: 'http://qudt.org/vocab/unit#Baht' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 2ecf07ce-0bd4-4f5a-b1ea-cb460c0f661d @@ -9182,7 +9182,7 @@ symbol: '' definition: >- https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: e36a27cb-89d7-4206-adf8-b68fb0bc59bd @@ -9190,7 +9190,7 @@ name: Physical Faraday symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: 56d2bb93-2b3a-4441-ac1b-4768e17ee6d8 @@ -9198,7 +9198,7 @@ name: Statcoulomb per Square Centimeter symbol: '' definition: 'http://qudt.org/vocab/unit#StatcoulombPerSquareCentimeter' - unit_type: Electrical flux density + type: Electrical flux density workspace_id: null - model: sta.unit pk: 50bd36ac-dd6e-4cae-a7c5-445beb338fd2 @@ -9206,7 +9206,7 @@ name: ElectronVolt symbol: eV definition: 'http://qudt.org/vocab/unit#ElectronVolt' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 4b4aa694-4e26-4be3-b6ed-8801e8911dd4 @@ -9214,7 +9214,7 @@ name: Somali Shilling symbol: SOS definition: 'http://qudt.org/vocab/unit#SomaliShilling' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9a4a100d-4ec9-4050-9c2c-ea352d020036 @@ -9222,7 +9222,7 @@ name: Langley per Second symbol: Ly/s definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 990b3025-307b-4345-9843-70f9c2f2a48e @@ -9233,7 +9233,7 @@ http://qudt.org/vocab/unit#Knot; http://unitsofmeasure.org/ucum.html#para-34; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: c166a96f-3561-46ce-b8a1-924a4bfa983a @@ -9241,7 +9241,7 @@ name: Chemical Equivalent symbol: eq definition: 'http://unitsofmeasure.org/ucum.html#para-45' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: e8b9e4de-a359-4e16-8a65-4d60dd8e45be @@ -9249,7 +9249,7 @@ name: Millimole per Cubic Meter symbol: mmol/m^3 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 0cc29f27-37ef-4f9c-b43b-714ba83dafb5 @@ -9257,7 +9257,7 @@ name: Decimeter symbol: decimeter definition: 'http://qudt.org/vocab/unit#Decimeter' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: a27c9cb6-fb13-4d69-976b-0fcaab25d2c4 @@ -9265,7 +9265,7 @@ name: Sri Lanka Rupee symbol: LKR definition: 'http://qudt.org/vocab/unit#SriLankaRupee' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 21f385db-9c24-4d23-8b19-249fe56a1a87 @@ -9273,7 +9273,7 @@ name: Ampere symbol: A definition: 'http://qudt.org/vocab/unit#Ampere' - unit_type: Electrical current + type: Electrical current workspace_id: null - model: sta.unit pk: a58cdbc4-3bd6-4871-aaa8-965f7aa24227 @@ -9281,7 +9281,7 @@ name: Meter per Kelvin symbol: '' definition: 'http://qudt.org/vocab/unit#MeterPerKelvin' - unit_type: Linear thermal expansion + type: Linear thermal expansion workspace_id: null - model: sta.unit pk: 978b2712-a9da-4d3d-ae96-2a6d3754e45e @@ -9289,7 +9289,7 @@ name: Slug per Foot Second symbol: slug/(ft-s) definition: 'http://qudt.org/vocab/unit#SlugPerFootSecond' - unit_type: Dynamic viscosity + type: Dynamic viscosity workspace_id: null - model: sta.unit pk: 64bc85c7-602d-49ea-8712-4ea2df262d3f @@ -9297,7 +9297,7 @@ name: Kilogram Force per Square Centimeter symbol: kgf/cm^2 definition: 'http://qudt.org/vocab/unit#KilogramForcePerSquareCentimeter' - unit_type: Pressure or stress + type: Pressure or stress workspace_id: null - model: sta.unit pk: d92ad76f-9b3e-4f1e-b80f-5f8931100dac @@ -9307,7 +9307,7 @@ definition: >- http://qudt.org/vocab/unit#Henry; http://unitsofmeasure.org/ucum.html#para-30 - unit_type: Inductance + type: Inductance workspace_id: null - model: sta.unit pk: e5659b39-9422-45e6-8ca6-f354b7069e2e @@ -9315,7 +9315,7 @@ name: Cuban Peso symbol: CUP definition: 'http://qudt.org/vocab/unit#CubanPeso' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 1d17890f-454d-4458-a2bc-ab82cab5e943 @@ -9323,7 +9323,7 @@ name: Radian per Minute symbol: rad/m definition: 'http://qudt.org/vocab/unit#RadianPerMinute' - unit_type: Angular velocity or frequency + type: Angular velocity or frequency workspace_id: null - model: sta.unit pk: 46563312-2931-4aea-9d7d-cc5c369062e8 @@ -9331,7 +9331,7 @@ name: Pound Force per Inch symbol: lbf/in definition: 'http://qudt.org/vocab/unit#PoundForcePerInch' - unit_type: Force per length + type: Force per length workspace_id: null - model: sta.unit pk: b86ce3e6-3d0c-4187-b3d5-674a8e1f37de @@ -9341,7 +9341,7 @@ definition: >- http://qudt.org/vocab/unit#TonOfRefrigeration; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: b4eb5f70-0c28-407e-b8a7-e4c0a473c6e3 @@ -9349,7 +9349,7 @@ name: 'Fathom, British' symbol: fth_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: b8489ede-2671-4db8-b117-f97898452f87 @@ -9359,7 +9359,7 @@ definition: >- http://qudt.org/vocab/unit#Farad; http://unitsofmeasure.org/ucum.html#para-30 - unit_type: Electrical capacitance + type: Electrical capacitance workspace_id: null - model: sta.unit pk: 433dbab8-b65f-41e9-99a8-12e9386d1778 @@ -9367,7 +9367,7 @@ name: "Calorie At 20\_°C" symbol: cal_20 definition: 'http://unitsofmeasure.org/ucum.html#para-43' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: ef7a9dd9-6e14-4988-ac06-c3695a86a78b @@ -9375,7 +9375,7 @@ name: Yuan Renminbi symbol: CNY definition: 'http://qudt.org/vocab/unit#YuanRenminbi' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 9be32d45-2e2e-4ffe-9dd5-8f2380164bdf @@ -9383,7 +9383,7 @@ name: Rial Omani symbol: OMR definition: 'http://qudt.org/vocab/unit#OmaniRial' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: fe61755a-ab90-4892-952c-3206f3567c06 @@ -9391,7 +9391,7 @@ name: Centimole per Kilogram symbol: cmol/kg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: fcdd4e47-21a4-472b-a8df-d9508e3a2572 @@ -9399,7 +9399,7 @@ name: Picomole per Minute per Milligram symbol: pmol/min mg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass normalized particle loading + type: Mass normalized particle loading workspace_id: null - model: sta.unit pk: e76a49d7-7fd8-4185-b46d-f27d0aebd578 @@ -9407,7 +9407,7 @@ name: Bel Microvolt symbol: BuV definition: 'http://unitsofmeasure.org/ucum.html#para-46' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: f6be8d08-fa17-4ce0-92b6-9ca3955290fa @@ -9415,7 +9415,7 @@ name: Count per Half Cubic Foot symbol: '#/((ft^3)/2)' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 39d2cb01-2ab3-491a-bcc6-a4d77dfb7976 @@ -9423,7 +9423,7 @@ name: Planck Momentum symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckMomentum' - unit_type: Linear momentum + type: Linear momentum workspace_id: null - model: sta.unit pk: 85e73139-210f-49dd-be80-de548cebdf18 @@ -9431,7 +9431,7 @@ name: Pound per Cubic Meter symbol: lb/m^3 definition: 'http://qudt.org/vocab/unit#PoundPerCubicMeter' - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 22857b13-5375-41e3-97c2-212c4034bac9 @@ -9439,7 +9439,7 @@ name: Indian Rupee symbol: INR definition: 'http://qudt.org/vocab/unit#IndianRupee' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 53a96252-2ca6-4396-a152-37e7927c1d12 @@ -9447,7 +9447,7 @@ name: European Unit of Account 9 (E.U.A.-9) (Bonds Market Unit) symbol: XBC definition: 'http://qudt.org/vocab/unit#EuropeanUnitOfAccount9' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: b32afe70-f375-4ca1-ab49-efdc9d6c246e @@ -9455,7 +9455,7 @@ name: Mole per Tonne symbol: mol/tonne definition: 'http://environment.data.gov.au/def/unit/MolePerTonne' - unit_type: Concentration count per mass + type: Concentration count per mass workspace_id: null - model: sta.unit pk: 82115387-cacb-4295-b831-da337881475c @@ -9465,7 +9465,7 @@ definition: >- http://qudt.org/vocab/unit#Gon; http://unitsofmeasure.org/ucum.html#para-31 - unit_type: Angle + type: Angle workspace_id: null - model: sta.unit pk: 1718b9a1-7554-4853-a729-9cacc0f10b11 @@ -9476,7 +9476,7 @@ http://unitsofmeasure.org/ucum.html#para-31; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: e4f1d6b0-8dc2-437c-af1f-8b464d974fc7 @@ -9484,7 +9484,7 @@ name: Kilogram Meter per Second symbol: kg-m/s definition: 'http://qudt.org/vocab/unit#KilogramMeterPerSecond' - unit_type: Linear momentum + type: Linear momentum workspace_id: null - model: sta.unit pk: 2a240712-5573-4e92-8f0d-9808fc268b3b @@ -9492,7 +9492,7 @@ name: Square Foot Hour Degree Fahrenheit per Btu symbol: (degF-hr-ft^2)/Btu definition: 'http://qudt.org/vocab/unit#SquareFootHourDegreeFahrenheitPerBtu' - unit_type: Thermal insulance + type: Thermal insulance workspace_id: null - model: sta.unit pk: 5c032a1f-8eee-471e-a4d8-4758583db6b7 @@ -9500,7 +9500,7 @@ name: Langley per Day symbol: Ly/d definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Power per area + type: Power per area workspace_id: null - model: sta.unit pk: 07293321-d9d9-4906-8961-e323ad0a7e25 @@ -9508,7 +9508,7 @@ name: Hertz per Tesla symbol: Hz T^-1 definition: 'http://qudt.org/vocab/unit#HertzPerTesla' - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: 166d79d2-0366-4b9d-9196-6eedc281d836 @@ -9516,7 +9516,7 @@ name: Kilogram Kelvin symbol: kg-K definition: 'http://qudt.org/vocab/unit#KilogramKelvin' - unit_type: Mass temperature + type: Mass temperature workspace_id: null - model: sta.unit pk: 9e2452cb-3cee-4a52-93f6-e98079eaa89c @@ -9527,7 +9527,7 @@ http://qudt.org/vocab/unit#Stilb; http://unitsofmeasure.org/ucum.html#para-33; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: b9c8a440-ae11-4d07-b521-abb3869a4e83 @@ -9537,7 +9537,7 @@ definition: >- http://qudt.org/vocab/unit#FootPerSecond; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Linear velocity + type: Linear velocity workspace_id: null - model: sta.unit pk: cbfb818c-82c3-4584-8df9-c9d1b5d960f3 @@ -9545,7 +9545,7 @@ name: Foot Pound Force symbol: ft-lbf definition: 'http://qudt.org/vocab/unit#FootPoundForce' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 704f505b-010a-4a0b-9724-8571a4e84a28 @@ -9555,7 +9555,7 @@ definition: >- http://qudt.org/vocab/unit#Statampere; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Electrical current + type: Electrical current workspace_id: null - model: sta.unit pk: 5cb429b0-19c0-4ad4-a380-69da3c3c6740 @@ -9563,7 +9563,7 @@ name: Coulomb per Meter symbol: C/m definition: 'http://qudt.org/vocab/unit#CoulombPerMeter' - unit_type: Electrical charge line density + type: Electrical charge line density workspace_id: null - model: sta.unit pk: 9759001c-7765-4561-b44a-9af20c23d421 @@ -9571,7 +9571,7 @@ name: Kilogram per Hour symbol: kg/h definition: 'http://qudt.org/vocab/unit#KilogramPerHour' - unit_type: Mass per time + type: Mass per time workspace_id: null - model: sta.unit pk: a599491c-ec24-40a0-86d7-3f6ced0c6aa3 @@ -9579,7 +9579,7 @@ name: Franklin symbol: Fr definition: 'http://qudt.org/vocab/unit#Franklin' - unit_type: Electrical charge + type: Electrical charge workspace_id: null - model: sta.unit pk: a2894383-47f3-4382-90fa-99134f24441c @@ -9587,7 +9587,7 @@ name: Per Liter symbol: 1/L definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Inverse volume + type: Inverse volume workspace_id: null - model: sta.unit pk: 3a09904b-04ba-45c5-b46d-8c878f278f6a @@ -9595,7 +9595,7 @@ name: Count per 0.1 Square Meter symbol: '#/0.1 m^2' definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Count per area + type: Count per area workspace_id: null - model: sta.unit pk: cd857168-7dd4-4a0a-b584-f69364746058 @@ -9607,7 +9607,7 @@ http://unitsofmeasure.org/ucum.html#para-37; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 44a065e2-917f-48d6-8160-60c8dc40e855 @@ -9615,7 +9615,7 @@ name: Microfarad symbol: microF definition: 'http://qudt.org/vocab/unit#MicroFarad' - unit_type: Electrical capacitance + type: Electrical capacitance workspace_id: null - model: sta.unit pk: 165846c0-695d-44af-ab6e-16712abe91da @@ -9625,7 +9625,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 38f73440-5f96-4329-a9f3-1c4384b0f1a3 @@ -9633,7 +9633,7 @@ name: Btu Foot symbol: Btu-ft definition: 'http://qudt.org/vocab/unit#BtuFoot' - unit_type: Length energy + type: Length energy workspace_id: null - model: sta.unit pk: 6d1476e6-ecf0-45f3-ab7c-97e676990cbf @@ -9641,7 +9641,7 @@ name: Pound per Square Foot symbol: lb/ft^2 definition: 'http://qudt.org/vocab/unit#PoundPerSquareFoot' - unit_type: Mass per area + type: Mass per area workspace_id: null - model: sta.unit pk: 1db227b5-ba7c-4bff-8f04-855ed5b3842b @@ -9649,7 +9649,7 @@ name: Square Meter Steradian symbol: m^2-sr definition: 'http://qudt.org/vocab/unit#SquareMeterSteradian' - unit_type: Area angle + type: Area angle workspace_id: null - model: sta.unit pk: e818d46d-81bc-4b76-8dfd-b9169bfe10dd @@ -9657,7 +9657,7 @@ name: KiloElectronVolt symbol: keV definition: 'http://qudt.org/vocab/unit#KiloElectronVolt' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: 88fcc81b-4c88-41ab-a23e-17657ebb87ed @@ -9665,7 +9665,7 @@ name: Kyat symbol: MMK definition: 'http://qudt.org/vocab/unit#Kyat' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 10e2515b-f471-4594-8228-5fcfab01cbf7 @@ -9673,7 +9673,7 @@ name: Ampere Turn symbol: At definition: 'http://qudt.org/vocab/unit#AmpereTurn' - unit_type: Magnetomotive force + type: Magnetomotive force workspace_id: null - model: sta.unit pk: e7d50445-3177-46f7-ac10-7f97017b7d96 @@ -9684,7 +9684,7 @@ http://environment.data.gov.au/def/unit/MilligramsPerKilogram; http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 3a5e967c-75d8-402d-b311-820d81a27c02 @@ -9694,7 +9694,7 @@ definition: >- http://qudt.org/vocab/unit#Gilbert; http://unitsofmeasure.org/ucum.html#para-33 - unit_type: Magnetomotive force + type: Magnetomotive force workspace_id: null - model: sta.unit pk: d441bfc8-90b5-4343-af13-f933fbf8a442 @@ -9702,7 +9702,7 @@ name: Lempira symbol: HNL definition: 'http://qudt.org/vocab/unit#Lempira' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 26315dac-fd02-485c-b7a5-9bff232cfd71 @@ -9710,7 +9710,7 @@ name: New Turkish Lira symbol: TRY definition: 'http://qudt.org/vocab/unit#NewTurkishLira' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: dffecee0-3d58-41b3-b7ae-ab042681f120 @@ -9718,7 +9718,7 @@ name: Kelvin per Second symbol: K / s definition: 'http://qudt.org/vocab/unit#KelvinPerSecond' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: e495c415-1ea8-49b5-9428-57ebc2cf4dcc @@ -9726,7 +9726,7 @@ name: Link for Ramden's Chain symbol: rlk_us definition: 'http://unitsofmeasure.org/ucum.html#para-35' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 771d3371-d8cb-4b89-ac81-229fd4b0ce58 @@ -9734,7 +9734,7 @@ name: 'Link for Gunter''s Chain, British' symbol: lk_br definition: 'http://unitsofmeasure.org/ucum.html#para-36' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 0b75257b-240b-4ad2-9465-87c6df7644b6 @@ -9744,7 +9744,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Specific radioactivity + type: Specific radioactivity workspace_id: null - model: sta.unit pk: 718a66b0-f81f-47d6-b39a-c4daca2474fb @@ -9752,7 +9752,7 @@ name: Naira symbol: NGN definition: 'http://qudt.org/vocab/unit#Naira' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 742e5ca5-8b79-4eac-a6ef-88266561e921 @@ -9762,7 +9762,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://www.unidata.ucar.edu/software/udunits/ - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: b5b779ad-944d-4970-aa09-7ae0578f3295 @@ -9770,7 +9770,7 @@ name: Pouce symbol: pouce definition: 'http://unitsofmeasure.org/ucum.html#para-42' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 0f619f5d-295a-43e6-89c8-cad74999c239 @@ -9778,7 +9778,7 @@ name: Pound Force Foot symbol: lbf-ft definition: 'http://qudt.org/vocab/unit#PoundForceFoot' - unit_type: Torque + type: Torque workspace_id: null - model: sta.unit pk: ca628f10-ee79-4f94-8345-7fe626105170 @@ -9786,7 +9786,7 @@ name: Bm symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: e7f0940c-b290-4657-8b79-cb6600a162dc @@ -9796,7 +9796,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: 73f6c0d3-590b-4c9e-bee6-ee98e86d4f2b @@ -9804,7 +9804,7 @@ name: Mole Kelvin symbol: mol-K definition: 'http://qudt.org/vocab/unit#MoleKelvin' - unit_type: Temperature count + type: Temperature count workspace_id: null - model: sta.unit pk: cd05b272-6416-4db8-b10a-645e728b09c1 @@ -9814,7 +9814,7 @@ definition: >- http://unitsofmeasure.org/ucum.html#para-38; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: dad2bb76-ec54-4b38-83ab-5886a92ed31e @@ -9822,7 +9822,7 @@ name: Meter Kelvin per Watt symbol: K-m/W definition: 'http://qudt.org/vocab/unit#MeterKelvinPerWatt' - unit_type: Thermal resistivity + type: Thermal resistivity workspace_id: null - model: sta.unit pk: 475b0791-42e6-47ca-804d-359006aa3df4 @@ -9830,7 +9830,7 @@ name: Canadian Dollar symbol: CAD definition: 'http://qudt.org/vocab/unit#CanadianDollar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: d173829e-e7cb-4654-af81-18e734658f03 @@ -9838,7 +9838,7 @@ name: Kelvin per Hour symbol: K / h definition: 'http://qudt.org/vocab/unit#KelvinPerHour' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: 9451a64b-23cd-4484-930f-e5e7e9167e87 @@ -9848,7 +9848,7 @@ definition: >- http://qudt.org/vocab/unit#HorsepowerBoiler; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Power + type: Power workspace_id: null - model: sta.unit pk: df3d783d-a9bd-473e-930d-9a44caff1969 @@ -9856,7 +9856,7 @@ name: Micromho per Centimeter symbol: µMhos/cm definition: '' - unit_type: Electrical conductivity + type: Electrical conductivity workspace_id: null - model: sta.unit pk: b74e6ab6-ac68-477d-892c-60a63de472b3 @@ -9864,7 +9864,7 @@ name: Malagasy Ariary symbol: MGA definition: 'http://qudt.org/vocab/unit#MalagasyAriary' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 3ff26d80-458e-4d0d-88bd-7de6c618a6e4 @@ -9872,7 +9872,7 @@ name: Milligram symbol: mg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Mass + type: Mass workspace_id: null - model: sta.unit pk: a0b6426b-8a08-40ab-97e8-a1ffb7fa517c @@ -9882,7 +9882,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 75b5ccf6-c545-4c9b-b870-4f76fc5343ed @@ -9892,7 +9892,7 @@ definition: >- http://qudt.org/vocab/unit#DaySidereal; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: e6150ef0-4419-4ddd-8385-e4ee2c1d4c5b @@ -9900,7 +9900,7 @@ name: Cfa Franc Bceao symbol: XOF definition: 'http://qudt.org/vocab/unit#CFAFrancBCEAO' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: f163fcdb-2c1f-4fa5-8114-67dd7cea73d1 @@ -9908,7 +9908,7 @@ name: Mole per Liter symbol: mol/L definition: '' - unit_type: Concentration count per volume + type: Concentration count per volume workspace_id: null - model: sta.unit pk: 9a59298c-abd4-457a-a594-b7ca0c504787 @@ -9916,7 +9916,7 @@ name: Kilocalorie per Square Centimeter symbol: kcal/cm^2 definition: 'http://qudt.org/vocab/unit#KilocaloriePerSquareCentimeter' - unit_type: Energy per area + type: Energy per area workspace_id: null - model: sta.unit pk: 045f1e26-d6e4-4d64-9288-dd4dc0325cc3 @@ -9929,7 +9929,7 @@ http://www.unidata.ucar.edu/software/udunits/; http://unitsofmeasure.org/ucum.html#para-31; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Time + type: Time workspace_id: null - model: sta.unit pk: 4e8d4753-e974-4964-8373-33a0a8e91d73 @@ -9937,7 +9937,7 @@ name: Lilangeni symbol: SZL definition: 'http://qudt.org/vocab/unit#Lilangeni' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 0ace29e2-7da7-486b-ba7d-9f86cb0ff144 @@ -9945,7 +9945,7 @@ name: Unidades De Formento (Funds Code) symbol: CLF definition: 'http://qudt.org/vocab/unit#UnidadesDeFormento' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: e78b9e3e-5a28-4340-a1de-22f7006606ca @@ -9953,7 +9953,7 @@ name: Unit symbol: U definition: 'http://unitsofmeasure.org/ucum.html#para-45' - unit_type: Catalytic activity + type: Catalytic activity workspace_id: null - model: sta.unit pk: 49ca69bc-ce15-4855-ab3a-39db739512e2 @@ -9961,7 +9961,7 @@ name: Nanogram per Kilogram symbol: ng/kg definition: '' - unit_type: Mass fraction + type: Mass fraction workspace_id: null - model: sta.unit pk: 9a390add-b3d7-491e-878b-a04f9042acc8 @@ -9969,7 +9969,7 @@ name: Standard Unit symbol: std units definition: 'http://qwwebservices.usgs.gov/service-domains.html' - unit_type: Dimensionless + type: Dimensionless workspace_id: null - model: sta.unit pk: d00f0b46-ba70-4ee9-9bea-aca9ad0f25bf @@ -9977,7 +9977,7 @@ name: Planck Current symbol: '' definition: 'http://qudt.org/vocab/unit#PlanckCurrent' - unit_type: Electrical current + type: Electrical current workspace_id: null - model: sta.unit pk: 088ea712-36b2-4e3f-9e6d-d933d99293e3 @@ -9985,7 +9985,7 @@ name: Cubic Centimeter symbol: cm^3 definition: 'http://qudt.org/vocab/unit#CubicCentimeter' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 754baec4-2da7-4a04-a2e6-d11aa909b349 @@ -9995,7 +9995,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Concentration or density mass per volume + type: Concentration or density mass per volume workspace_id: null - model: sta.unit pk: 425cb484-c198-476b-a81a-e8129d3eed84 @@ -10003,7 +10003,7 @@ name: Pole symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Length + type: Length workspace_id: null - model: sta.unit pk: 141806b6-946c-433f-a0c6-ec834b49b0b1 @@ -10011,7 +10011,7 @@ name: Bel 10 Nanovolt symbol: B10.nV definition: 'http://unitsofmeasure.org/ucum.html#para-46' - unit_type: Level + type: Level workspace_id: null - model: sta.unit pk: be37cfdc-088d-4d6d-b272-530949e3ad2c @@ -10019,7 +10019,7 @@ name: Venezuelan Bolivar symbol: VEB definition: 'http://qudt.org/vocab/unit#VenezuelanBolvar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 756190ea-b512-48ee-a23e-149f0aee4462 @@ -10027,7 +10027,7 @@ name: Comoro Franc symbol: KMF definition: 'http://qudt.org/vocab/unit#ComoroFranc' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 6707cfcf-5b73-4e5a-9b02-9b3ab1395d91 @@ -10037,7 +10037,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; https://www.unidata.ucar.edu/software/udunits/udunits-current/udunits/udunits2-common.xml - unit_type: Area + type: Area workspace_id: null - model: sta.unit pk: 6a95a091-44a6-45fa-810d-e907548369be @@ -10045,7 +10045,7 @@ name: Degree Fahrenheit per Second symbol: degF / s definition: 'http://qudt.org/vocab/unit#DegreeFahrenheitPerSecond' - unit_type: Temperature per time + type: Temperature per time workspace_id: null - model: sta.unit pk: c7e33a06-2b78-4c79-94b0-d548dae30dff @@ -10053,7 +10053,7 @@ name: Micromole per Liter per Hour symbol: µmol/L hr definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Other + type: Other workspace_id: null - model: sta.unit pk: bc37a6f7-cc18-401f-b953-67b33ca9c0b7 @@ -10063,7 +10063,7 @@ definition: >- http://qudt.org/vocab/unit#Gauss; http://unitsofmeasure.org/ucum.html#para-33 - unit_type: Magnetic flux density + type: Magnetic flux density workspace_id: null - model: sta.unit pk: 75885a6d-d556-4cf6-8aa9-e1edbe7b14b8 @@ -10071,7 +10071,7 @@ name: Lumen per Square Foot symbol: lm/ft^2 definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Illuminance + type: Illuminance workspace_id: null - model: sta.unit pk: 3841c4f6-5fc0-4cd2-b0b6-f2f4ee3c585c @@ -10079,7 +10079,7 @@ name: Meter per Second Cubed symbol: m/s^3 definition: '' - unit_type: Jerk + type: Jerk workspace_id: null - model: sta.unit pk: d6ae4f05-7646-4944-accb-99630cb9d1cb @@ -10089,7 +10089,7 @@ definition: >- http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048; http://qwwebservices.usgs.gov/service-domains.html - unit_type: Turbidity + type: Turbidity workspace_id: null - model: sta.unit pk: 74fb4f41-de37-4016-998f-29d0a8249eea @@ -10097,7 +10097,7 @@ name: Milliequivalent per Kilogram symbol: meq/kg definition: 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units&id=1125579048' - unit_type: Electrical charge per mass + type: Electrical charge per mass workspace_id: null - model: sta.unit pk: cc32c32a-ff13-4f75-b470-9fe64c86f040 @@ -10105,7 +10105,7 @@ name: 'Cup, Metric' symbol: cup_m definition: 'http://unitsofmeasure.org/ucum.html#para-37' - unit_type: Volume + type: Volume workspace_id: null - model: sta.unit pk: 507a358e-8ded-42f0-8107-e421eb8cf1b0 @@ -10113,7 +10113,7 @@ name: Blondel symbol: '' definition: 'http://www.unidata.ucar.edu/software/udunits/' - unit_type: Luminance + type: Luminance workspace_id: null - model: sta.unit pk: 3f05e19c-6683-4179-a098-edd292ea832c @@ -10121,7 +10121,7 @@ name: Statvolt Centimeter symbol: statV cm definition: 'http://qudt.org/vocab/unit#StatvoltCentimeter' - unit_type: Electrical flux + type: Electrical flux workspace_id: null - model: sta.unit pk: 295250f5-0333-46d4-b395-666a9b48247c @@ -10129,7 +10129,7 @@ name: Therm EC symbol: therm (EC) definition: 'http://qudt.org/vocab/unit#ThermEEC' - unit_type: Energy + type: Energy workspace_id: null - model: sta.unit pk: a8796c15-3bbe-48e8-bdce-cfef8d1f746d @@ -10137,7 +10137,7 @@ name: Libyan Dinar symbol: LYD definition: 'http://qudt.org/vocab/unit#LibyanDinar' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: 88dbb509-e193-46b6-8343-33bca7443b41 @@ -10145,7 +10145,7 @@ name: Metical symbol: MZN definition: 'http://qudt.org/vocab/unit#Metical' - unit_type: Currency + type: Currency workspace_id: null - model: sta.unit pk: e6b9d380-e8c3-4a87-bdfb-85e4630daac3 @@ -10153,5 +10153,5 @@ name: Guyana Dollar symbol: GYD definition: 'http://qudt.org/vocab/unit#GuyanaDollar' - unit_type: Currency + type: Currency workspace_id: null \ No newline at end of file diff --git a/django/core/sta/migrations/0015_rename_metadata_table_fields.py b/django/core/sta/migrations/0015_rename_metadata_table_fields.py new file mode 100644 index 000000000..825784607 --- /dev/null +++ b/django/core/sta/migrations/0015_rename_metadata_table_fields.py @@ -0,0 +1,135 @@ +from urllib.parse import urlparse + +from django.db import migrations, models + + +LEGACY_DEFINITION_PREFIX = "[Migrated legacy definition]\n" +LEGACY_DEFINITION_SUFFIX = "\n[/Migrated legacy definition]\n\n" + + +def is_absolute_uri(value): + parsed = urlparse(value) + return bool(parsed.scheme and (parsed.netloc or parsed.path)) + + +def migrate_processing_level_fields(apps, schema_editor): + ProcessingLevel = apps.get_model("sta", "ProcessingLevel") + + for processing_level in ProcessingLevel.objects.all().iterator(): + legacy_definition = processing_level.definition or "" + definition_candidate = legacy_definition.strip() + fallback_name = (processing_level.code or "").strip() or str( + processing_level.pk + ) + legacy_description = processing_level.description or "" + + if is_absolute_uri(definition_candidate): + processing_level.name = fallback_name + processing_level.definition = definition_candidate + processing_level.description = legacy_description + elif len(definition_candidate) <= 255: + processing_level.name = definition_candidate or fallback_name + processing_level.definition = None + processing_level.description = legacy_description + else: + processing_level.name = fallback_name + processing_level.definition = None + processing_level.description = ( + f"{LEGACY_DEFINITION_PREFIX}{legacy_definition}" + f"{LEGACY_DEFINITION_SUFFIX}{legacy_description}" + ) + + processing_level.save(update_fields=["name", "definition", "description"]) + + +def prepare_reverse_migration(apps, schema_editor): + ObservedProperty = apps.get_model("sta", "ObservedProperty") + ProcessingLevel = apps.get_model("sta", "ProcessingLevel") + Unit = apps.get_model("sta", "Unit") + + ObservedProperty.objects.filter(definition__isnull=True).update(definition="") + Unit.objects.filter(definition__isnull=True).update(definition="") + + for processing_level in ProcessingLevel.objects.all().iterator(): + update_fields = ["definition"] + description = processing_level.description or "" + + if processing_level.definition: + continue + if description.startswith(LEGACY_DEFINITION_PREFIX): + marked_definition = description[len(LEGACY_DEFINITION_PREFIX) :] + if LEGACY_DEFINITION_SUFFIX in marked_definition: + legacy_definition, legacy_description = marked_definition.split( + LEGACY_DEFINITION_SUFFIX, 1 + ) + processing_level.definition = legacy_definition + processing_level.description = legacy_description + update_fields.append("description") + else: + processing_level.definition = processing_level.name + else: + processing_level.definition = processing_level.name + + processing_level.save(update_fields=update_fields) + + +class Migration(migrations.Migration): + dependencies = [ + ("sta", "0014_monitoringsite_tags_datastream_tags"), + ] + + operations = [ + migrations.RenameField( + model_name="processinglevel", + old_name="explanation", + new_name="description", + ), + migrations.AddField( + model_name="processinglevel", + name="name", + field=models.CharField(max_length=255, null=True), + ), + migrations.RunPython( + migrate_processing_level_fields, + migrations.RunPython.noop, + ), + migrations.AlterField( + model_name="processinglevel", + name="name", + field=models.CharField(max_length=255), + ), + migrations.AlterField( + model_name="processinglevel", + name="description", + field=models.TextField(), + ), + migrations.AlterField( + model_name="processinglevel", + name="definition", + field=models.TextField(blank=True, null=True), + ), + migrations.RenameField( + model_name="observedproperty", + old_name="observed_property_type", + new_name="type", + ), + migrations.AlterField( + model_name="observedproperty", + name="definition", + field=models.TextField(blank=True, null=True), + ), + migrations.RenameField( + model_name="unit", + old_name="unit_type", + new_name="type", + ), + migrations.AlterField( + model_name="unit", + name="definition", + field=models.TextField(blank=True, null=True), + ), + migrations.RunPython( + migrations.RunPython.noop, + prepare_reverse_migration, + ), + ] diff --git a/django/core/sta/models/observed_property.py b/django/core/sta/models/observed_property.py index 53d657881..768c1664e 100644 --- a/django/core/sta/models/observed_property.py +++ b/django/core/sta/models/observed_property.py @@ -17,9 +17,9 @@ class ObservedProperty(models.Model): null=True, ) name = models.CharField(max_length=255) - definition = models.TextField() + definition = models.TextField(null=True, blank=True) description = models.TextField() - observed_property_type = models.CharField(max_length=500) + type = models.CharField(max_length=500) code = models.CharField(max_length=500) def __str__(self): diff --git a/django/core/sta/models/processing_level.py b/django/core/sta/models/processing_level.py index 786cdf394..7fce5260b 100644 --- a/django/core/sta/models/processing_level.py +++ b/django/core/sta/models/processing_level.py @@ -17,8 +17,9 @@ class ProcessingLevel(models.Model): null=True, ) code = models.CharField(max_length=255) + name = models.CharField(max_length=255) + description = models.TextField() definition = models.TextField(null=True, blank=True) - explanation = models.TextField(null=True, blank=True) def __str__(self): - return f"{self.code} — {self.id}" + return f"{self.name} — {self.id}" diff --git a/django/core/sta/models/unit.py b/django/core/sta/models/unit.py index e92ea7403..5c4e4c2be 100644 --- a/django/core/sta/models/unit.py +++ b/django/core/sta/models/unit.py @@ -18,8 +18,8 @@ class Unit(models.Model): ) name = models.CharField(max_length=255) symbol = models.CharField(max_length=255) - definition = models.TextField() - unit_type = models.CharField(max_length=255) + definition = models.TextField(null=True, blank=True) + type = models.CharField(max_length=255) def __str__(self): return f"{self.name} — {self.id}" diff --git a/django/core/sta/services/datastream.py b/django/core/sta/services/datastream.py index 0191d9d29..9becfe7b6 100644 --- a/django/core/sta/services/datastream.py +++ b/django/core/sta/services/datastream.py @@ -229,7 +229,7 @@ def list_visualization_bootstrap( "observed_property__name", "observed_property__code", "processing_level_id", - "processing_level__definition", + "processing_level__name", "unit_id", "no_data_value", "value_count", @@ -272,7 +272,7 @@ def list_visualization_bootstrap( processing_level_id, { "id": processing_level_id, - "definition": row["processing_level__definition"], + "name": row["processing_level__name"], }, ) datastreams.append( @@ -730,21 +730,22 @@ def generate_csv(datastream: Datastream, observations=None): f"# Name: {datastream.observed_property.name}\n" f"# Definition: {datastream.observed_property.definition}\n" f"# Description: {datastream.observed_property.description}\n" - f"# VariableType: {datastream.observed_property.observed_property_type}\n" - f"# VariableCode: {datastream.observed_property.code}\n" + f"# Type: {datastream.observed_property.type}\n" + f"# Code: {datastream.observed_property.code}\n" f"#\n" f"# Unit Information:\n" f"# -------------------------------------\n" f"# Name: {datastream.unit.name}\n" f"# Symbol: {datastream.unit.symbol}\n" f"# Definition: {datastream.unit.definition}\n" - f"# UnitType: {datastream.unit.unit_type}\n" + f"# Type: {datastream.unit.type}\n" f"#\n" f"# Processing Level Information:\n" f"# -------------------------------------\n" f"# Code: {datastream.processing_level.code}\n" + f"# Name: {datastream.processing_level.name}\n" + f"# Description: {datastream.processing_level.description}\n" f"# Definition: {datastream.processing_level.definition}\n" - f"# Explanation: {datastream.processing_level.explanation}\n" f"#\n" f"# Data Disclaimer:\n" f"# -------------------------------------\n" diff --git a/django/core/sta/services/observed_property.py b/django/core/sta/services/observed_property.py index 9f689b953..93e757285 100644 --- a/django/core/sta/services/observed_property.py +++ b/django/core/sta/services/observed_property.py @@ -71,7 +71,7 @@ def list( "workspace_id", "datastreams__monitoring_site_id", "datastreams__id", - "observed_property_type", + "type", ]: if field in filtering: queryset = self.apply_filters(queryset, field, filtering[field]) @@ -81,7 +81,6 @@ def list( queryset, order_by, list(get_args(ObservedPropertyOrderByFields)), - {"type": "observed_property_type"}, ) else: queryset = queryset.order_by("id") diff --git a/django/core/sta/services/unit.py b/django/core/sta/services/unit.py index 7584ee803..011afb3dd 100644 --- a/django/core/sta/services/unit.py +++ b/django/core/sta/services/unit.py @@ -68,7 +68,7 @@ def list( "workspace_id", "datastreams__monitoring_site_id", "datastreams__id", - "unit_type", + "type", ]: if field in filtering: queryset = self.apply_filters(queryset, field, filtering[field]) @@ -78,7 +78,6 @@ def list( queryset, order_by, list(get_args(UnitOrderByFields)), - {"type": "unit_type"}, ) else: queryset = queryset.order_by("id") diff --git a/django/interfaces/api/schemas/sta/datastream.py b/django/interfaces/api/schemas/sta/datastream.py index 000f480b4..5bc4638c3 100644 --- a/django/interfaces/api/schemas/sta/datastream.py +++ b/django/interfaces/api/schemas/sta/datastream.py @@ -187,7 +187,7 @@ class VisualizationObservedPropertyResponse(BaseGetResponse): class VisualizationProcessingLevelResponse(BaseGetResponse): id: uuid.UUID - definition: Optional[str] = None + name: str = Field(..., max_length=255) class VisualizationDatastreamResponse(BaseGetResponse): diff --git a/django/interfaces/api/schemas/sta/observed_property.py b/django/interfaces/api/schemas/sta/observed_property.py index ad7bced26..c71c6455e 100644 --- a/django/interfaces/api/schemas/sta/observed_property.py +++ b/django/interfaces/api/schemas/sta/observed_property.py @@ -14,10 +14,10 @@ class ObservedPropertyFields(Schema): name: str = Field(..., max_length=255) - definition: str + definition: Optional[str] = None description: str - observed_property_type: str = Field(..., max_length=255, alias="type") - code: str = Field(..., max_length=255) + type: str = Field(..., max_length=500) + code: str = Field(..., max_length=500) _order_by_fields = ( @@ -47,9 +47,7 @@ class ObservedPropertyQueryParameters(CollectionQueryParameters): description="Filter observed properties by datastream ID.", alias="datastream_id", ) - observed_property_type: list[str] = Query( - [], description="Filter observed properties by type", alias="type" - ) + type: list[str] = Query([], description="Filter observed properties by type") class ObservedPropertySummaryResponse(BaseGetResponse, ObservedPropertyFields): diff --git a/django/interfaces/api/schemas/sta/processing_level.py b/django/interfaces/api/schemas/sta/processing_level.py index 765696303..ea96d4fca 100644 --- a/django/interfaces/api/schemas/sta/processing_level.py +++ b/django/interfaces/api/schemas/sta/processing_level.py @@ -14,11 +14,12 @@ class ProcessingLevelFields(Schema): code: str = Field(..., max_length=255) + name: str = Field(..., max_length=255) + description: str definition: Optional[str] = None - explanation: Optional[str] = None -_order_by_fields = ("code",) +_order_by_fields = ("code", "name") ProcessingLevelOrderByFields = Literal[ *_order_by_fields, *[f"-{f}" for f in _order_by_fields] diff --git a/django/interfaces/api/schemas/sta/unit.py b/django/interfaces/api/schemas/sta/unit.py index 447681b54..cac555b04 100644 --- a/django/interfaces/api/schemas/sta/unit.py +++ b/django/interfaces/api/schemas/sta/unit.py @@ -15,8 +15,8 @@ class UnitFields(Schema): name: str = Field(..., max_length=255) symbol: str = Field(..., max_length=255) - definition: str - unit_type: str = Field(..., max_length=255, alias="type") + definition: Optional[str] = None + type: str = Field(..., max_length=255) _order_by_fields = ( @@ -42,7 +42,7 @@ class UnitQueryParameters(CollectionQueryParameters): datastreams__id: list[uuid.UUID | Literal["null"]] = Query( [], description="Filter units by datastream ID.", alias="datastream_id" ) - unit_type: list[str] = Query([], description="Filter units by type", alias="type") + type: list[str] = Query([], description="Filter units by type") class UnitSummaryResponse(BaseGetResponse, UnitFields): diff --git a/django/interfaces/sensorthings/adapter/datastream.py b/django/interfaces/sensorthings/adapter/datastream.py index aeccf016b..f33d8fe8a 100644 --- a/django/interfaces/sensorthings/adapter/datastream.py +++ b/django/interfaces/sensorthings/adapter/datastream.py @@ -102,7 +102,7 @@ def get_datastreams(self, filters=None, orderby=None, group_by=None, select=None { "name": datastream.unit.name, "symbol": datastream.unit.symbol, - "definition": datastream.unit.definition.split(";")[0], + "definition": (datastream.unit.definition or "").split(";")[0], } if needs_unit else Absent ), diff --git a/django/interfaces/sensorthings/adapter/observed_property.py b/django/interfaces/sensorthings/adapter/observed_property.py index 2edd5c254..5d8583afe 100644 --- a/django/interfaces/sensorthings/adapter/observed_property.py +++ b/django/interfaces/sensorthings/adapter/observed_property.py @@ -51,11 +51,13 @@ def get_observed_properties(self, filters=None, orderby=None, group_by=None, id=self.select_field(select, "id", observed_property.id), name=self.select_field(select, "name", observed_property.name), description=self.select_field(select, "description", observed_property.description), - definition=self.select_field(select, "definition", observed_property.definition), + definition=self.select_field( + select, "definition", observed_property.definition or "" + ), properties=( { "variable_code": observed_property.code, - "variable_type": observed_property.observed_property_type, + "variable_type": observed_property.type, "workspace": ( { "id": observed_property.workspace.id, diff --git a/django/tests/core/sta/factories.py b/django/tests/core/sta/factories.py index a04bc638e..749030910 100644 --- a/django/tests/core/sta/factories.py +++ b/django/tests/core/sta/factories.py @@ -72,7 +72,7 @@ def __new__(cls, *args, **kwargs) -> ObservedProperty: ... name = factory.Sequence(lambda seq: f"Observed Property {seq}") definition = factory.Faker("url") description = factory.Faker("sentence") - observed_property_type = "Hydrology" + type = "Hydrology" code = factory.Sequence(lambda seq: f"OP-{seq}") class Params: @@ -89,8 +89,9 @@ def __new__(cls, *args, **kwargs) -> ProcessingLevel: ... workspace = factory.SubFactory(WorkspaceFactory) code = factory.Sequence(lambda seq: f"Level {seq}") - definition = factory.Faker("sentence") - explanation = factory.Faker("paragraph") + name = factory.Sequence(lambda seq: f"Processing Level {seq}") + description = factory.Faker("paragraph") + definition = factory.Faker("url") class Params: global_ = factory.Trait(workspace=None) @@ -123,8 +124,8 @@ def __new__(cls, *args, **kwargs) -> Unit: ... workspace = factory.SubFactory(WorkspaceFactory) name = factory.Sequence(lambda seq: f"Unit {seq}") symbol = factory.Sequence(lambda seq: f"u{seq}") - definition = factory.Faker("sentence") - unit_type = "Dimensionless" + definition = factory.Faker("url") + type = "Dimensionless" class Params: global_ = factory.Trait(workspace=None) diff --git a/django/tests/core/sta/test_migrations.py b/django/tests/core/sta/test_migrations.py new file mode 100644 index 000000000..40c6dd67d --- /dev/null +++ b/django/tests/core/sta/test_migrations.py @@ -0,0 +1,87 @@ +import importlib + +import pytest + +from core.sta.models import ObservedProperty, ProcessingLevel, Unit +from tests.core.sta.factories import ProcessingLevelFactory + + +pytestmark = pytest.mark.django_db + +migration = importlib.import_module( + "core.sta.migrations.0015_rename_metadata_table_fields" +) + + +class CurrentApps: + @staticmethod + def get_model(app_label, model_name): + assert app_label == "sta" + return { + "ObservedProperty": ObservedProperty, + "ProcessingLevel": ProcessingLevel, + "Unit": Unit, + }[model_name] + + +def test_processing_level_data_migration_preserves_legacy_definitions(): + short_definition = ProcessingLevelFactory( + global_=True, + code="0", + name="Unused", + definition="Raw data", + description="Raw-data explanation", + ) + uri_definition = ProcessingLevelFactory( + global_=True, + code="1", + name="Unused", + definition="https://example.com/processing-levels/quality-controlled", + description="Quality-controlled explanation", + ) + long_legacy_definition = "Detailed legacy processing-level definition. " * 10 + long_definition = ProcessingLevelFactory( + global_=True, + code="2", + name="Unused", + definition=long_legacy_definition, + description="Derived-data explanation", + ) + + migration.migrate_processing_level_fields(CurrentApps(), None) + + short_definition.refresh_from_db() + assert short_definition.name == "Raw data" + assert short_definition.definition is None + assert short_definition.description == "Raw-data explanation" + + uri_definition.refresh_from_db() + assert uri_definition.name == "1" + assert ( + uri_definition.definition + == "https://example.com/processing-levels/quality-controlled" + ) + assert uri_definition.description == "Quality-controlled explanation" + + long_definition.refresh_from_db() + assert long_definition.name == "2" + assert long_definition.definition is None + assert long_legacy_definition in long_definition.description + assert long_definition.description.endswith("Derived-data explanation") + + migration.prepare_reverse_migration(CurrentApps(), None) + + short_definition.refresh_from_db() + assert short_definition.definition == "Raw data" + assert short_definition.description == "Raw-data explanation" + + uri_definition.refresh_from_db() + assert ( + uri_definition.definition + == "https://example.com/processing-levels/quality-controlled" + ) + assert uri_definition.description == "Quality-controlled explanation" + + long_definition.refresh_from_db() + assert long_definition.definition == long_legacy_definition + assert long_definition.description == "Derived-data explanation" diff --git a/django/tests/e2e/scenarios.py b/django/tests/e2e/scenarios.py index 0bcabf904..ea4ef8d9e 100644 --- a/django/tests/e2e/scenarios.py +++ b/django/tests/e2e/scenarios.py @@ -139,21 +139,22 @@ def _metadata(workspace, marker, scope): name=_name(f"{scope} Assigned Observed Property", marker), definition=f"https://example.com/e2e/{marker}", description=f"E2E scenario observed property {marker}", - observed_property_type=scope, + type=scope, code=f"{scope}-{marker}", ), "processing_level": ProcessingLevelFactory( workspace=workspace, code=f"{scope}Assigned-{marker}", - definition=f"E2E scenario processing level {marker}", - explanation=f"E2E scenario processing level {marker}", + name=_name(f"{scope} Assigned Processing Level", marker), + description=f"E2E scenario processing level {marker}", + definition=f"https://example.com/e2e/{marker}/processing-level", ), "unit": UnitFactory( workspace=workspace, name=_name(f"{scope} Assigned Unit", marker), symbol=f"{scope[:1]}{marker[-4:]}", definition=f"E2E scenario unit {marker}", - unit_type=f"{scope} Unit", + type=f"{scope} Unit", ), } @@ -170,21 +171,22 @@ def _additional_workspace_metadata(workspace, marker, scope): name=_name(f"{scope} Observed Property", marker), definition=f"https://example.com/e2e/{marker}/additional", description=f"E2E scenario observed property {marker}", - observed_property_type=scope, + type=scope, code=f"{scope}-additional-{marker}", ) ProcessingLevelFactory( workspace=workspace, code=f"{scope}Additional-{marker}", - definition=f"E2E scenario processing level {marker}", - explanation=f"E2E scenario processing level {marker}", + name=_name(f"{scope} Processing Level", marker), + description=f"E2E scenario processing level {marker}", + definition=f"https://example.com/e2e/{marker}/processing-level/additional", ) UnitFactory( workspace=workspace, name=_name(f"{scope} Unit", marker), symbol=f"{scope[:1]}A{marker[-3:]}", definition=f"E2E scenario unit {marker}", - unit_type=f"{scope} Unit", + type=f"{scope} Unit", ) ResultQualifierFactory( workspace=workspace, diff --git a/django/tests/fixtures/bulk_test_data.yaml b/django/tests/fixtures/bulk_test_data.yaml index 0cbd12ee8..da8cc8799 100644 --- a/django/tests/fixtures/bulk_test_data.yaml +++ b/django/tests/fixtures/bulk_test_data.yaml @@ -20,9 +20,9 @@ pk: ebc5664e-0e1c-48a0-8fe0-c64dae472e30 fields: name: Test Observed Property - definition: Test Observed Property + definition: https://example.com/definitions/test-observed-property description: Test Observed Property - observed_property_type: Test + type: Test code: Test workspace: 6e0deaf2-a92b-421b-9ece-86783265596f @@ -40,8 +40,8 @@ pk: 9ce74667-e709-416d-96e2-bf54db2025ed fields: code: TEST - definition: Test Processing Level - explanation: Test Processing Level + name: Test Processing Level + description: Test Processing Level workspace: 6e0deaf2-a92b-421b-9ece-86783265596f # Unit @@ -50,6 +50,6 @@ fields: name: Test Unit symbol: TEST - definition: Test Unit - unit_type: Test Unit + definition: https://example.com/definitions/test-unit + type: Test Unit workspace: 6e0deaf2-a92b-421b-9ece-86783265596f diff --git a/django/tests/fixtures/test_observed_properties.yaml b/django/tests/fixtures/test_observed_properties.yaml index cf202dc86..4ec931875 100644 --- a/django/tests/fixtures/test_observed_properties.yaml +++ b/django/tests/fixtures/test_observed_properties.yaml @@ -3,9 +3,8 @@ pk: 49a245bd-4517-4dea-b3ba-25c919bf2cf5 fields: name: System Observed Property - definition: System Observed Property description: System Observed Property - observed_property_type: System + type: System code: System # System Assigned Observed Property @@ -13,9 +12,8 @@ pk: a5746e4e-f479-4476-a462-6a8f7874794d fields: name: System Assigned Observed Property - definition: System Assigned Observed Property description: System Assigned Observed Property - observed_property_type: System + type: System code: System # Public Observed Property @@ -23,9 +21,8 @@ pk: cac1262e-68ee-43a0-9222-f214f2161091 fields: name: Public Observed Property - definition: Public Observed Property description: Public Observed Property - observed_property_type: Public + type: Public code: Public workspace: 6e0deaf2-a92b-421b-9ece-86783265596f @@ -34,9 +31,8 @@ pk: d66414cc-ff33-4e12-bbe0-2c048abd1f40 fields: name: Public Assigned Observed Property - definition: Public Assigned Observed Property description: Public Assigned Observed Property - observed_property_type: Public + type: Public code: Public workspace: 6e0deaf2-a92b-421b-9ece-86783265596f @@ -45,9 +41,8 @@ pk: 5dbfd184-ae79-4c05-a9ea-3f5e775ecbc1 fields: name: Private Observed Property - definition: Private Observed Property description: Private Observed Property - observed_property_type: Private + type: Private code: Private workspace: b27c51a0-7374-462d-8a53-d97d47176c10 @@ -56,8 +51,7 @@ pk: 6a1bcf8e-2112-4cd0-80f3-1399f72364ca fields: name: Private Assigned Observed Property - definition: Private Assigned Observed Property description: Private Assigned Observed Property - observed_property_type: Private + type: Private code: Private workspace: b27c51a0-7374-462d-8a53-d97d47176c10 diff --git a/django/tests/fixtures/test_processing_levels.yaml b/django/tests/fixtures/test_processing_levels.yaml index ba1f27b11..7241d3374 100644 --- a/django/tests/fixtures/test_processing_levels.yaml +++ b/django/tests/fixtures/test_processing_levels.yaml @@ -3,24 +3,24 @@ pk: 1cb782af-6097-4a3f-9988-5fcbfcb5a327 fields: code: SystemProcessingLevel - definition: System Processing Level - explanation: System Processing Level + name: System Processing Level + description: System Processing Level # System Assigned Processing Level - model: sta.processinglevel pk: 90777619-9d5c-44a5-87f0-ccd5844f9cc0 fields: code: SystemAssignedProcessingLevel - definition: System Assigned Processing Level - explanation: System Assigned Processing Level + name: System Assigned Processing Level + description: System Assigned Processing Level # Public Processing Level - model: sta.processinglevel pk: aa2d8fa4-461f-48a4-8bfe-13b6ae6fa575 fields: code: PublicProcessingLevel - definition: Public Processing Level - explanation: Public Processing Level + name: Public Processing Level + description: Public Processing Level workspace: 6e0deaf2-a92b-421b-9ece-86783265596f # Public Assigned Processing Level @@ -28,8 +28,8 @@ pk: a7ff1528-e485-4def-b325-45330c1c448c fields: code: PublicAssignedProcessingLevel - definition: Public Assigned Processing Level - explanation: Public Assigned Processing Level + name: Public Assigned Processing Level + description: Public Assigned Processing Level workspace: 6e0deaf2-a92b-421b-9ece-86783265596f # Private Processing Level @@ -37,8 +37,8 @@ pk: fa3c97ce-41b8-4c12-b91a-9127ce0c083a fields: code: PrivateProcessingLevel - definition: Private Processing Level - explanation: Private Processing Level + name: Private Processing Level + description: Private Processing Level workspace: b27c51a0-7374-462d-8a53-d97d47176c10 # Private Assigned Processing Level @@ -46,6 +46,6 @@ pk: 712eebc4-1f07-452d-8d48-64a1ab2022a3 fields: code: PrivateAssignedProcessingLevel - definition: Private Assigned Processing Level - explanation: Private Assigned Processing Level + name: Private Assigned Processing Level + description: Private Assigned Processing Level workspace: b27c51a0-7374-462d-8a53-d97d47176c10 diff --git a/django/tests/fixtures/test_units.yaml b/django/tests/fixtures/test_units.yaml index 1e8583587..72776f1b1 100644 --- a/django/tests/fixtures/test_units.yaml +++ b/django/tests/fixtures/test_units.yaml @@ -4,8 +4,7 @@ fields: name: System Unit symbol: Sy - definition: System Unit - unit_type: System Unit + type: System Unit # System Assigned Unit - model: sta.unit @@ -13,8 +12,7 @@ fields: name: System Assigned Unit symbol: Sy - definition: System Assigned Unit - unit_type: System Assigned Unit + type: System Assigned Unit # Public Unit - model: sta.unit @@ -22,8 +20,7 @@ fields: name: Public Unit symbol: Pu - definition: Public Unit - unit_type: Public Unit + type: Public Unit workspace: 6e0deaf2-a92b-421b-9ece-86783265596f # Public Assigned Unit @@ -32,8 +29,7 @@ fields: name: Public Assigned Unit symbol: Pu - definition: Public Assigned Unit - unit_type: Public Assigned Unit + type: Public Assigned Unit workspace: 6e0deaf2-a92b-421b-9ece-86783265596f # Private Unit @@ -42,8 +38,7 @@ fields: name: Private Unit symbol: Pr - definition: Private Unit - unit_type: Private Unit + type: Private Unit workspace: b27c51a0-7374-462d-8a53-d97d47176c10 # Private Assigned Unit @@ -52,6 +47,5 @@ fields: name: Private Assigned Unit symbol: Pr - definition: Private Assigned Unit - unit_type: Private Assigned Unit - workspace: b27c51a0-7374-462d-8a53-d97d47176c10 \ No newline at end of file + type: Private Assigned Unit + workspace: b27c51a0-7374-462d-8a53-d97d47176c10 diff --git a/django/tests/interfaces/api/test_observed_property_views.py b/django/tests/interfaces/api/test_observed_property_views.py index b7026ab2a..620d5e3ab 100644 --- a/django/tests/interfaces/api/test_observed_property_views.py +++ b/django/tests/interfaces/api/test_observed_property_views.py @@ -76,6 +76,16 @@ def test_get_observed_properties_includes_workspace_properties_for_workspace_own assert str(observed_property.id) in [o["id"] for o in response.json()] +def test_get_observed_properties_filters_by_type(client): + hydrology = ObservedPropertyFactory(global_=True, type="Hydrology") + ObservedPropertyFactory(global_=True, type="Meteorology") + + response = client.get(OBSERVED_PROPERTIES_URL, {"type": "Hydrology"}) + + assert response.status_code == 200 + assert [item["id"] for item in response.json()] == [str(hydrology.id)] + + # --- create_observed_property --------------------------------------------------------- @@ -92,6 +102,44 @@ def test_create_observed_property_succeeds_for_workspace_owner(client): assert response.status_code == 201 assert response.json()["name"] == "New Observed Property" + assert response.json()["type"] == "Hydrology" + + +def test_create_observed_property_allows_omitting_definition(client): + owner = UserFactory() + workspace = WorkspaceFactory(owner=owner) + client.force_login(owner) + body = _observed_property_body(workspaceId=str(workspace.id)) + body.pop("definition") + + response = client.post( + OBSERVED_PROPERTIES_URL, + data=body, + content_type="application/json", + ) + + assert response.status_code == 201 + assert response.json()["definition"] is None + + +@pytest.mark.parametrize("field", ["type", "code"]) +def test_create_observed_property_allows_500_character_type_and_code(client, field): + owner = UserFactory() + workspace = WorkspaceFactory(owner=owner) + client.force_login(owner) + value = "x" * 500 + + response = client.post( + OBSERVED_PROPERTIES_URL, + data=_observed_property_body( + workspaceId=str(workspace.id), + **{field: value}, + ), + content_type="application/json", + ) + + assert response.status_code == 201 + assert response.json()[field] == value def test_create_observed_property_returns_401_when_unauthenticated(client): diff --git a/django/tests/interfaces/api/test_processing_level_views.py b/django/tests/interfaces/api/test_processing_level_views.py index e2767b1d5..c90031ad1 100644 --- a/django/tests/interfaces/api/test_processing_level_views.py +++ b/django/tests/interfaces/api/test_processing_level_views.py @@ -26,8 +26,9 @@ def _collaborator_with_permission(workspace, **permissions): def _processing_level_body(**overrides): body = { - "code": "New Level", - "definition": "A new processing level.", + "code": "0", + "name": "Raw", + "description": "A new processing level.", } body.update(overrides) return body @@ -83,7 +84,10 @@ def test_create_processing_level_succeeds_for_workspace_owner(client): ) assert response.status_code == 201 - assert response.json()["code"] == "New Level" + assert response.json()["code"] == "0" + assert response.json()["name"] == "Raw" + assert response.json()["description"] == "A new processing level." + assert response.json()["definition"] is None def test_create_processing_level_returns_401_when_unauthenticated(client): diff --git a/django/tests/interfaces/api/test_unit_views.py b/django/tests/interfaces/api/test_unit_views.py index 847bf0321..b95dbdd6c 100644 --- a/django/tests/interfaces/api/test_unit_views.py +++ b/django/tests/interfaces/api/test_unit_views.py @@ -29,7 +29,7 @@ def _unit_body(**overrides): body = { "name": "New Unit", "symbol": "u", - "definition": "A new unit.", + "definition": "https://example.com/units/u", "type": "Dimensionless", } body.update(overrides) @@ -71,6 +71,16 @@ def test_get_units_includes_workspace_units_for_workspace_owner(client): assert str(unit.id) in [u["id"] for u in response.json()] +def test_get_units_filters_by_type(client): + length = UnitFactory(global_=True, type="Length") + UnitFactory(global_=True, type="Temperature") + + response = client.get(UNITS_URL, {"type": "Length"}) + + assert response.status_code == 200 + assert [item["id"] for item in response.json()] == [str(length.id)] + + # --- create_unit ------------------------------------------------------------------ @@ -87,6 +97,24 @@ def test_create_unit_succeeds_for_workspace_owner(client): assert response.status_code == 201 assert response.json()["name"] == "New Unit" + assert response.json()["type"] == "Dimensionless" + + +def test_create_unit_allows_omitting_definition(client): + owner = UserFactory() + workspace = WorkspaceFactory(owner=owner) + client.force_login(owner) + body = _unit_body(workspaceId=str(workspace.id)) + body.pop("definition") + + response = client.post( + UNITS_URL, + data=body, + content_type="application/json", + ) + + assert response.status_code == 201 + assert response.json()["definition"] is None def test_create_unit_returns_401_when_unauthenticated(client): diff --git a/django/tests/interfaces/sensorthings/test_st_datastreams.py b/django/tests/interfaces/sensorthings/test_st_datastreams.py index b8a90a7c2..a2820e784 100644 --- a/django/tests/interfaces/sensorthings/test_st_datastreams.py +++ b/django/tests/interfaces/sensorthings/test_st_datastreams.py @@ -29,6 +29,15 @@ def test_get_datastream_returns_200(client): assert response.json()["@iot.id"] == str(datastream.id) +def test_get_datastream_with_unit_without_definition_returns_200(client): + datastream = DatastreamFactory(unit__definition=None) + + response = client.get(_detail_url(datastream.id)) + + assert response.status_code == 200 + assert response.json()["unitOfMeasurement"]["definition"] == "" + + def test_get_datastream_includes_tags_in_properties(client): datastream = DatastreamFactory(tags={"season": "summer"}) diff --git a/django/tests/interfaces/sensorthings/test_st_observed_properties.py b/django/tests/interfaces/sensorthings/test_st_observed_properties.py index 62e20f156..b44a1f832 100644 --- a/django/tests/interfaces/sensorthings/test_st_observed_properties.py +++ b/django/tests/interfaces/sensorthings/test_st_observed_properties.py @@ -29,3 +29,12 @@ def test_get_observed_property_returns_200(client): assert response.status_code == 200 assert response.json()["@iot.id"] == str(observed_property.id) + + +def test_get_observed_property_without_definition_returns_200(client): + observed_property = ObservedPropertyFactory(definition=None) + + response = client.get(_detail_url(observed_property.id)) + + assert response.status_code == 200 + assert response.json()["definition"] == "" diff --git a/packages/hydroserver-ts/src/api/__tests__/monitoring-site-datastream.service.spec.ts b/packages/hydroserver-ts/src/api/__tests__/monitoring-site-datastream.service.spec.ts index ef43cc5e4..3542095d2 100644 --- a/packages/hydroserver-ts/src/api/__tests__/monitoring-site-datastream.service.spec.ts +++ b/packages/hydroserver-ts/src/api/__tests__/monitoring-site-datastream.service.spec.ts @@ -118,7 +118,7 @@ describe('DatastreamService', () => { { id: 'ds-2', name: 'DS 2', monitoringSiteId: 'missing-monitoringSite', observedPropertyId: 'op-1', processingLevelId: 'pl-1', unitId: 'u-1', noDataValue: -9999 }, ], observedProperties: [{ id: 'op-1', name: 'Temperature', code: 'temp' }], - processingLevels: [{ id: 'pl-1', definition: 'Raw data' }], + processingLevels: [{ id: 'pl-1', name: 'Raw data' }], }) ) ) diff --git a/packages/hydroserver-ts/src/api/services/datastream.service.ts b/packages/hydroserver-ts/src/api/services/datastream.service.ts index 173a8fb1e..b1fa6fddc 100644 --- a/packages/hydroserver-ts/src/api/services/datastream.service.ts +++ b/packages/hydroserver-ts/src/api/services/datastream.service.ts @@ -36,7 +36,7 @@ interface VisualizationBootstrapPayload { intendedTimeSpacingUnit?: 'seconds' | 'minutes' | 'hours' | 'days' | null }> observedProperties: Array<{ id: string; name: string; code: string }> - processingLevels: Array<{ id: string; definition?: string | null }> + processingLevels: Array<{ id: string; name: string }> } export interface VisualizationBootstrap { diff --git a/packages/hydroserver-ts/src/generated/contracts/processing-levels.contract.ts b/packages/hydroserver-ts/src/generated/contracts/processing-levels.contract.ts index f5b7f5fd1..28d4c85b4 100644 --- a/packages/hydroserver-ts/src/generated/contracts/processing-levels.contract.ts +++ b/packages/hydroserver-ts/src/generated/contracts/processing-levels.contract.ts @@ -10,7 +10,7 @@ export namespace ProcessingLevelContract { export type PostBody = Data.components['schemas']['ProcessingLevelPostBody'] export type PatchBody = Data.components['schemas']['ProcessingLevelPatchBody'] export type DeleteBody = never - export const writableKeys = ["code","definition","explanation"] as const + export const writableKeys = ["code","definition","description","name"] as const export declare const __types: { SummaryResponse: SummaryResponse DetailResponse: DetailResponse diff --git a/packages/hydroserver-ts/src/generated/data.types.d.ts b/packages/hydroserver-ts/src/generated/data.types.d.ts index aff5a8d9d..7793d540b 100644 --- a/packages/hydroserver-ts/src/generated/data.types.d.ts +++ b/packages/hydroserver-ts/src/generated/data.types.d.ts @@ -4307,7 +4307,7 @@ export interface components { /** Code */ code: string; /** Definition */ - definition: string; + definition?: string | null; /** Description */ description: string; /** @@ -4326,7 +4326,7 @@ export interface components { /** Code */ code?: string; /** Definition */ - definition?: string; + definition?: string | null; /** Description */ description?: string; /** Name */ @@ -4339,7 +4339,7 @@ export interface components { /** Code */ code: string; /** Definition */ - definition: string; + definition?: string | null; /** Description */ description: string; /** Id */ @@ -4403,7 +4403,7 @@ export interface components { /** Code */ code: string; /** Definition */ - definition: string; + definition?: string | null; /** Description */ description: string; /** @@ -4492,13 +4492,15 @@ export interface components { code: string; /** Definition */ definition?: string | null; - /** Explanation */ - explanation?: string | null; + /** Description */ + description: string; /** * Id * Format: uuid */ id: string; + /** Name */ + name: string; workspace: components["schemas"]["WorkspaceSummaryResponse"] | null; }; /** ProcessingLevelPatchBody */ @@ -4507,8 +4509,10 @@ export interface components { code?: string; /** Definition */ definition?: string | null; - /** Explanation */ - explanation?: string | null; + /** Description */ + description?: string; + /** Name */ + name?: string; }; /** ProcessingLevelPostBody */ ProcessingLevelPostBody: { @@ -4516,10 +4520,12 @@ export interface components { code: string; /** Definition */ definition?: string | null; - /** Explanation */ - explanation?: string | null; + /** Description */ + description: string; /** Id */ id?: string | null; + /** Name */ + name: string; /** Workspaceid */ workspaceId?: string | null; }; @@ -4544,7 +4550,7 @@ export interface components { * @description Select one or more fields to order the response by. * @default [] */ - order_by: ("code" | "-code")[] | null; + order_by: ("code" | "name" | "-code" | "-name")[] | null; /** * Page * @description Page number (1-based). @@ -4570,13 +4576,15 @@ export interface components { code: string; /** Definition */ definition?: string | null; - /** Explanation */ - explanation?: string | null; + /** Description */ + description: string; /** * Id * Format: uuid */ id: string; + /** Name */ + name: string; /** Workspaceid */ workspaceId: string | null; }; @@ -5556,7 +5564,7 @@ export interface components { /** UnitDetailResponse */ UnitDetailResponse: { /** Definition */ - definition: string; + definition?: string | null; /** * Id * Format: uuid @@ -5573,7 +5581,7 @@ export interface components { /** UnitPatchBody */ UnitPatchBody: { /** Definition */ - definition?: string; + definition?: string | null; /** Name */ name?: string; /** Symbol */ @@ -5584,7 +5592,7 @@ export interface components { /** UnitPostBody */ UnitPostBody: { /** Definition */ - definition: string; + definition?: string | null; /** Id */ id?: string | null; /** Name */ @@ -5646,7 +5654,7 @@ export interface components { /** UnitSummaryResponse */ UnitSummaryResponse: { /** Definition */ - definition: string; + definition?: string | null; /** * Id * Format: uuid @@ -5734,13 +5742,13 @@ export interface components { }; /** VisualizationProcessingLevelResponse */ VisualizationProcessingLevelResponse: { - /** Definition */ - definition?: string | null; /** * Id * Format: uuid */ id: string; + /** Name */ + name: string; }; /** VocabularyQueryParameters */ VocabularyQueryParameters: { @@ -9712,7 +9720,7 @@ export interface operations { page_size?: number | null; expand_related?: boolean | null; /** @description Select one or more fields to order the response by. */ - order_by?: ("code" | "-code")[] | null; + order_by?: ("code" | "name" | "-code" | "-name")[] | null; /** @description Filter processing levels by workspace ID. */ workspace_id?: (string | "null")[]; /** @description Filter processing levels by monitoring_site ID. */ diff --git a/packages/hydroserver-ts/src/types/index.ts b/packages/hydroserver-ts/src/types/index.ts index 2b7b4cc4b..ce58205d8 100644 --- a/packages/hydroserver-ts/src/types/index.ts +++ b/packages/hydroserver-ts/src/types/index.ts @@ -253,15 +253,17 @@ export class ProcessingLevel { id: string workspaceId: string code: string + name: string + description: string definition: string - explanation: string constructor() { this.id = '' this.workspaceId = '' this.code = '' + this.name = '' + this.description = '' this.definition = '' - this.explanation = '' } } diff --git a/packages/hydroserverpy/src/hydroserverpy/api/README.md b/packages/hydroserverpy/src/hydroserverpy/api/README.md index 5c5715894..b56c9ba2d 100644 --- a/packages/hydroserverpy/src/hydroserverpy/api/README.md +++ b/packages/hydroserverpy/src/hydroserverpy/api/README.md @@ -273,9 +273,9 @@ observed_property = hs_api.observedproperties.get(uid='00000000-0000-0000-0000-0 # Create a new observed property in HydroServer new_observed_property = hs_api.observedproperties.create( name='Temperature', - definition='Air Temperature', + definition='http://vocabulary.odm2.org/variablename/airTemperature/', description='Air temperature', - observed_property_type='Climate', + type='Climate', code='AirTemp', workspace='00000000-0000-0000-0000-000000000000' ) @@ -335,8 +335,8 @@ unit = hs_api.units.get(uid='00000000-0000-0000-0000-000000000000') new_unit = hs_api.units.create( name='Degree Celsius', symbol='C', - definition='Degree Celsius', - unit_type='Temperature', + definition='https://qudt.org/vocab/unit/DEG_C', + type='Temperature', workspace='00000000-0000-0000-0000-000000000000' ) ``` @@ -458,8 +458,8 @@ processing_level = hs_api.processinglevels.get(uid='00000000-0000-0000-0000-0000 # Create a new processing level in HydroServer new_processing_level = hs_api.processinglevels.create( code='0', - definition='Raw', - explanation='Data have not been processed or quality controlled.', + name='Raw', + description='Data have not been processed or quality controlled.', workspace='00000000-0000-0000-0000-000000000000' ) ``` diff --git a/packages/hydroserverpy/src/hydroserverpy/api/models/sta/observed_property.py b/packages/hydroserverpy/src/hydroserverpy/api/models/sta/observed_property.py index 9e9797462..317b292e3 100644 --- a/packages/hydroserverpy/src/hydroserverpy/api/models/sta/observed_property.py +++ b/packages/hydroserverpy/src/hydroserverpy/api/models/sta/observed_property.py @@ -10,13 +10,13 @@ class ObservedProperty(HydroServerBaseModel): name: str = Field(..., max_length=255) - definition: str + definition: Optional[str] = None description: str - observed_property_type: str = Field(..., max_length=255, alias="type") - code: str = Field(..., max_length=255) + type: str = Field(..., max_length=500) + code: str = Field(..., max_length=500) workspace_id: Optional[uuid.UUID] = None - _editable_fields: ClassVar[set[str]] = {"name", "definition", "description", "observed_property_type", "code"} + _editable_fields: ClassVar[set[str]] = {"name", "definition", "description", "type", "code"} def __init__(self, client: "HydroServer", **data): super().__init__(client=client, service=client.observedproperties, **data) diff --git a/packages/hydroserverpy/src/hydroserverpy/api/models/sta/processing_level.py b/packages/hydroserverpy/src/hydroserverpy/api/models/sta/processing_level.py index 2e16eec2b..80815fc1a 100644 --- a/packages/hydroserverpy/src/hydroserverpy/api/models/sta/processing_level.py +++ b/packages/hydroserverpy/src/hydroserverpy/api/models/sta/processing_level.py @@ -10,11 +10,17 @@ class ProcessingLevel(HydroServerBaseModel): code: str = Field(..., max_length=255) + name: str = Field(..., max_length=255) + description: str definition: Optional[str] = None - explanation: Optional[str] = None workspace_id: Optional[uuid.UUID] = None - _editable_fields: ClassVar[set[str]] = {"code", "definition", "explanation"} + _editable_fields: ClassVar[set[str]] = { + "code", + "name", + "description", + "definition", + } def __init__(self, client: "HydroServer", **data): super().__init__(client=client, service=client.processinglevels, **data) diff --git a/packages/hydroserverpy/src/hydroserverpy/api/models/sta/unit.py b/packages/hydroserverpy/src/hydroserverpy/api/models/sta/unit.py index 07c777dfc..c847c1f0d 100644 --- a/packages/hydroserverpy/src/hydroserverpy/api/models/sta/unit.py +++ b/packages/hydroserverpy/src/hydroserverpy/api/models/sta/unit.py @@ -11,11 +11,11 @@ class Unit(HydroServerBaseModel): name: str = Field(..., max_length=255) symbol: str = Field(..., max_length=255) - definition: str - unit_type: str = Field(..., max_length=255, alias="type") + definition: Optional[str] = None + type: str = Field(..., max_length=255) workspace_id: Optional[uuid.UUID] = None - _editable_fields: ClassVar[set[str]] = {"name", "symbol", "definition", "unit_type"} + _editable_fields: ClassVar[set[str]] = {"name", "symbol", "definition", "type"} def __init__(self, client: "HydroServer", **data): super().__init__(client=client, service=client.units, **data) diff --git a/packages/hydroserverpy/src/hydroserverpy/api/services/sta/observed_property.py b/packages/hydroserverpy/src/hydroserverpy/api/services/sta/observed_property.py index 1c49ead63..6a6430150 100644 --- a/packages/hydroserverpy/src/hydroserverpy/api/services/sta/observed_property.py +++ b/packages/hydroserverpy/src/hydroserverpy/api/services/sta/observed_property.py @@ -22,7 +22,7 @@ def list( workspace: Optional[Union["Workspace", UUID, str]] = ..., monitoring_site: Optional[Union["MonitoringSite", UUID, str]] = ..., datastream: Optional[Union["Datastream", UUID, str]] = ..., - observed_property_type: str = ..., + type: str = ..., fetch_all: bool = False, ) -> List["ObservedProperty"]: """Fetch a collection of observed properties.""" @@ -34,19 +34,19 @@ def list( workspace_id=normalize_uuid(workspace), monitoring_site_id=normalize_uuid(monitoring_site), datastream_id=normalize_uuid(datastream), - type=observed_property_type, + type=type, fetch_all=fetch_all, ) def create( self, name: str, - definition: str, description: str, - observed_property_type: str, + type: str, code: str, + definition: Optional[str] = None, workspace: Optional[Union["Workspace", UUID, str]] = None, - uid: Optional[UUID] = None + uid: Optional[UUID] = None, ) -> "ObservedProperty": """Create a new observed property.""" @@ -55,7 +55,7 @@ def create( "name": name, "definition": definition, "description": description, - "type": observed_property_type, + "type": type, "code": code, "workspaceId": normalize_uuid(workspace), } @@ -66,10 +66,10 @@ def update( self, uid: Union[UUID, str], name: str = ..., - definition: str = ..., description: str = ..., - observed_property_type: str = ..., + type: str = ..., code: str = ..., + definition: Optional[str] = ..., ) -> "ObservedProperty": """Update an observed property.""" @@ -77,7 +77,7 @@ def update( "name": name, "definition": definition, "description": description, - "observedPropertyType": observed_property_type, + "type": type, "code": code, } diff --git a/packages/hydroserverpy/src/hydroserverpy/api/services/sta/processing_level.py b/packages/hydroserverpy/src/hydroserverpy/api/services/sta/processing_level.py index 7c249c3f3..47ed4721f 100644 --- a/packages/hydroserverpy/src/hydroserverpy/api/services/sta/processing_level.py +++ b/packages/hydroserverpy/src/hydroserverpy/api/services/sta/processing_level.py @@ -39,8 +39,9 @@ def list( def create( self, code: str, + name: str, + description: str, definition: Optional[str] = None, - explanation: Optional[str] = None, workspace: Optional[Union["Workspace", UUID, str]] = None, uid: Optional[UUID] = None, ) -> "ProcessingLevel": @@ -49,8 +50,9 @@ def create( body = { "id": normalize_uuid(uid), "code": code, + "name": name, + "description": description, "definition": definition, - "explanation": explanation, "workspaceId": normalize_uuid(workspace), } @@ -60,15 +62,17 @@ def update( self, uid: Union[UUID, str], code: str = ..., - definition: str = ..., - explanation: str = ..., + name: str = ..., + description: str = ..., + definition: Optional[str] = ..., ) -> "ProcessingLevel": """Update a processing level.""" body = { "code": code, + "name": name, + "description": description, "definition": definition, - "explanation": explanation, } return super().update(uid=str(uid), **body) diff --git a/packages/hydroserverpy/src/hydroserverpy/api/services/sta/unit.py b/packages/hydroserverpy/src/hydroserverpy/api/services/sta/unit.py index 09051fc5c..904123fcd 100644 --- a/packages/hydroserverpy/src/hydroserverpy/api/services/sta/unit.py +++ b/packages/hydroserverpy/src/hydroserverpy/api/services/sta/unit.py @@ -22,7 +22,7 @@ def list( workspace: Union["Workspace", UUID, str] = ..., monitoring_site: Optional[Union["MonitoringSite", UUID, str]] = ..., datastream: Optional[Union["Datastream", UUID, str]] = ..., - unit_type: str = ..., + type: str = ..., fetch_all: bool = False, ) -> List["Unit"]: """Fetch a collection of units.""" @@ -34,7 +34,7 @@ def list( workspace_id=normalize_uuid(workspace), monitoring_site_id=normalize_uuid(monitoring_site), datastream_id=normalize_uuid(datastream), - unit_type=unit_type, + type=type, fetch_all=fetch_all, ) @@ -42,10 +42,10 @@ def create( self, name: str, symbol: str, - definition: str, - unit_type: str, + type: str, + definition: Optional[str] = None, workspace: Optional[Union["Workspace", UUID, str]] = None, - uid: Optional[UUID] = None + uid: Optional[UUID] = None, ) -> "Unit": """Create a new unit.""" @@ -54,7 +54,7 @@ def create( "name": name, "symbol": symbol, "definition": definition, - "type": unit_type, + "type": type, "workspaceId": normalize_uuid(workspace), } @@ -65,8 +65,8 @@ def update( uid: Union[UUID, str], name: str = ..., symbol: str = ..., - definition: str = ..., - unit_type: str = ..., + type: str = ..., + definition: Optional[str] = ..., ) -> "Unit": """Update a unit.""" @@ -74,7 +74,7 @@ def update( "name": name, "symbol": symbol, "definition": definition, - "type": unit_type, + "type": type, } return super().update(uid=str(uid), **body) diff --git a/packages/qc-utils/src/types/index.ts b/packages/qc-utils/src/types/index.ts index 562ba5d09..9404af29c 100644 --- a/packages/qc-utils/src/types/index.ts +++ b/packages/qc-utils/src/types/index.ts @@ -461,15 +461,17 @@ export class ProcessingLevel { id: string; workspaceId: string; code: string; + name: string; + description: string; definition: string; - explanation: string; constructor() { this.id = ""; this.workspaceId = ""; this.code = ""; + this.name = ""; + this.description = ""; this.definition = ""; - this.explanation = ""; } }