8

4

How would you express the concept of a given measure to be 3 meters ? Is there an ontology for units ?

flag

5 Answers

4

There's also this work-in-progress draft: QUDT - Quantities, Units, Dimensions and Data Types in OWL and XML.

This document is currently "Work in Progress" and will be improved incrementally during the fall of 2009.

link|flag
2

The Measurement Unit Ontology has extensive discussion of various possible patterns and an ontology.

link|flag
1

A quick search on SchemaWeb turned up units.owl and unitsInstances.owl, parts of a science ontology.

I can’t readily find a property for connecting a measurement to a unit, but I think it ought to be there as well.

As for the way to express it, here’s an example from the RDF Primer:

exproduct:item10245   exterms:weight   _:weight10245 .
_:weight10245         rdf:value        "2.4"^^xsd:decimal .
_:weight10245         exterms:units    exunits:kilograms .
link|flag
The problem with this example is that, if I say: { exproduct:item10425 exterms:weigth ex:myweight . ex:myweight rdf:value "2400"^^xsd:decimal" ; exterms:units exunits:grams .} then I would like to say that { ex:myweight owl:sameAs _:weight10245 }. However, this would entail { ex:myweight rdf:value "2.4"^^xsd:decimal, "2400"^^xsd:decimal" ; exterms:units exunits:kilograms, exterms:units exunits:grams .} which becomes completely obscure. – Antoine Zimmermann 15 hours ago
1

I just found a pretty decent ontology description, and I think it actually does the job quite well...

POSC Units vocabulary

link|flag
0

The Open Biomedical Ontologies also has an suitable ontology for units:

http://www.obofoundry.org/cgi-bin/detail.cgi?id=unit

The question is, are all mentioned unit ontologies compatible?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.