From e8259011afc889a3fb997c3ebfae345c9981847a Mon Sep 17 00:00:00 2001 From: Jakob Voss Date: Tue, 22 Oct 2024 17:57:22 +0200 Subject: [PATCH] Add E58 Measurement Unit (#3) --- index.qmd | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/index.qmd b/index.qmd index c31c4af..0614820 100644 --- a/index.qmd +++ b/index.qmd @@ -69,9 +69,25 @@ CRM also defines class [E55 Type] with properties [P127 has broader term] and [P [E32 Authority Document]: http://www.cidoc-crm.org/cidoc-crm/E32 [E55 Type]: http://www.cidoc-crm.org/cidoc-crm/E55 [E55 Identifier]: http://www.cidoc-crm.org/cidoc-crm/E42 +[E58 Measurement Unit]: http://www.cidoc-crm.org/cidoc-crm/E58 ### CRM Classes to use with caution +#### E58 Measurement Unit + +Defintion of instances of [E58 Measurement Unit] should be avoided but either taken from an established vocabulary of units such as QUDT or expressed as RDF value with UCUM datatype.^[See [cdt:ucum](https://ci.mines-stetienne.fr/lindt/v4/custom_datatypes#ucum) and [QUDT](https://qudt.org/)).] + +~~~ttl +@prefix unit: . +@prefix cdt: . + + + crm:P40 observed dimension [ + crm:P90_has_value 7 ; crm:P91_has_unit unit:M ; # QUDT unit URI + rdf:value "7 m"^^cdt:ucum # UCUM value + ] . +~~~ + #### E42 Identifier Don't use [E42 Identifier] for URIs if these URIs are meant to identify an RDF resource. If a resource happens to have multiple equivalent URIs, choose a preferred URI and use `owl:sameAs` to record aliases.