We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add commonly used custom units - much like the example solr queries section.
Some of the top of my head: [] partsPerMillion [] partsPerThousand [] wattsPerSquareMeter
The text was updated successfully, but these errors were encountered:
Adding some of that I have stored in a script here:
custom_units <- data.frame( id = c('partsPerThousand', 'micromolesPerGram'), unitType = c('dimensionless', 'amountOfSubstanceWeight'), parentSI = c(NA, 'molesPerKilogram'), multiplierToSI = c(NA, 10^9), abbreviation = c('ppt', 'umol/g'), description = c('parts per thousand', 'micro moles per gram'), stringsAsFactors = FALSE) unit_list <- set_unitList(custom_units, as_metadata = T) doc$additionalMetadata <- eml$additionalMetadata(describes = NULL, metadata = unit_list)
Sorry, something went wrong.
Good idea. I'll add others as I think of them but PSU, decibar, micromolePerMeterCubed are some I'm dealing with now that I see often
No branches or pull requests
Add commonly used custom units - much like the example solr queries section.
Some of the top of my head:
[] partsPerMillion
[] partsPerThousand
[] wattsPerSquareMeter
The text was updated successfully, but these errors were encountered: