Skip to content

Commit

Permalink
Add E58 Measurement Unit (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
nichtich committed Oct 22, 2024
1 parent 7002f49 commit e825901
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -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: <http://qudt.org/vocab/unit/> .
@prefix cdt: <https://w3id.org/cdt/> .
<measurement>
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.
Expand Down

0 comments on commit e825901

Please sign in to comment.