From fa7fb7eeda7e48f183827e0eb9fa8afbbc90b038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Meynadier?= Date: Thu, 28 May 2026 18:00:17 +0200 Subject: [PATCH 1/2] Adapted doc gen scripts, re-ran them --- docs/scripts/list_quantities.py | 71 ++++++++++++++++------------- docs/scripts/make_visualizations.py | 20 ++++---- docs/scripts/make_vocabulary.py | 15 ++++-- docs/vocabulary/class_diagram.md | 2 + docs/vocabulary/vocabulary.md | 4 +- 5 files changed, 66 insertions(+), 46 deletions(-) diff --git a/docs/scripts/list_quantities.py b/docs/scripts/list_quantities.py index 676deac..dddc55e 100644 --- a/docs/scripts/list_quantities.py +++ b/docs/scripts/list_quantities.py @@ -1,26 +1,16 @@ """ Generate a list of quantities used in the SI Reference Point """ import logging +import argparse +from pathlib import Path from rdflib import Graph, RDF, URIRef, BNode -from config import TTLPATH -# instantiate graph -g = Graph() -for ttl_file in ['quantities.ttl', 'units.ttl']: - file_path = TTLPATH / ttl_file - if not file_path: - logging.error("{} does not exist, did you run generate_sirp_files ?".format(file_path)) - raise SystemExit - g.parse(file_path) - -fullURI = g.namespace_manager.expand_curie - - -def unitnode_to_str(nodeID) -> str|None: +def unitnode_to_str(g, nodeID) -> str|None: """ Recursively generate unit representation strings Units may be compound units, i.e. nested binary trees with left and right terms, unit powers, multiples, etc... """ + fullURI = g.namespace_manager.expand_curie if isinstance(nodeID, URIRef): """ No further processing, this is the end : fetch corresponding symbol and return it @@ -43,10 +33,10 @@ def unitnode_to_str(nodeID) -> str|None: leftTerm = "" rightTerm = "" for s, p, o in g.triples((nodeID, fullURI("si:hasLeftUnitTerm"), None)): - leftTerm = unitnode_to_str(o) + leftTerm = unitnode_to_str(g, o) break for s, p, o in g.triples((nodeID, fullURI("si:hasRightUnitTerm"), None)): - rightTerm = unitnode_to_str(o) + rightTerm = unitnode_to_str(g, o) break return "{} x {}".format(leftTerm, rightTerm) elif nodeType == "si:UnitPower": @@ -58,7 +48,7 @@ def unitnode_to_str(nodeID) -> str|None: numericExponent = int(str(o)) break for s, p, o in g.triples((nodeID, fullURI("si:hasUnitBase"), None)): - unitBase = unitnode_to_str(o) + unitBase = unitnode_to_str(g, o) break if numericExponent == 1: return "{}".format(unitBase) @@ -73,7 +63,7 @@ def unitnode_to_str(nodeID) -> str|None: numericFactor = str(o) break for s, p, o in g.triples((nodeID, fullURI("si:hasunitTerm"), None)): - unitTerm = unitnode_to_str(o) + unitTerm = unitnode_to_str(g, o) break return "{} x {}".format(numericFactor, unitTerm) elif nodeType == "si:PrefixedUnit": @@ -85,7 +75,7 @@ def unitnode_to_str(nodeID) -> str|None: prefix = str(o) break for s, p, o in g.triples((nodeID, fullURI("si:hasNonPrefixedUnit"), None)): - nonPrefixedUnit = unitnode_to_str(o) + nonPrefixedUnit = unitnode_to_str(g, o) break return "{}{}".format(prefix, nonPrefixedUnit) else: @@ -93,17 +83,36 @@ def unitnode_to_str(nodeID) -> str|None: return None -is_qty = """ -SELECT DISTINCT ?qty ?unit ?prefLabelEn -WHERE {?qty si:hasUnit ?unit . - ?qty skos:prefLabel ?prefLabelEn . - FILTER(langmatches(lang(?prefLabelEn),'en')) -}""" +def main(): + parser = argparse.ArgumentParser(description="Generate list of quantities") + parser.add_argument( + "TTLPATH", type=Path, + help="Directory containing the TTL files") + args = parser.parse_args() + # instantiate graph + g = Graph() + for ttl_file in ['quantities.ttl', 'units.ttl']: + file_path = args.TTLPATH / ttl_file + if not file_path: + logging.error("{} does not exist, did you run generate_sirp_files ?".format(file_path)) + raise SystemExit + g.parse(file_path) + + + is_qty = """ + SELECT DISTINCT ?qty ?unit ?prefLabelEn + WHERE {?qty si:hasUnit ?unit . + ?qty skos:prefLabel ?prefLabelEn . + FILTER(langmatches(lang(?prefLabelEn),'en')) + }""" + + qres = g.query(is_qty) -qres = g.query(is_qty) + qty_list = [] + for row in qres: + qty, unit, label = row + print("{0:4s} | {1:20s} | {2:}".format( + g.qname(qty).split(":")[1], unitnode_to_str(g, unit), label)) -qty_list = [] -for row in qres: - qty, unit, label = row - print("{0:4s} | {1:20s} | {2:}".format( - g.qname(qty).split(":")[1], unitnode_to_str(unit), label)) +if __name__ == "__main__": + main() diff --git a/docs/scripts/make_visualizations.py b/docs/scripts/make_visualizations.py index 5a0f693..844028a 100644 --- a/docs/scripts/make_visualizations.py +++ b/docs/scripts/make_visualizations.py @@ -2,10 +2,11 @@ import argparse from rdflib import Graph -from config import TTLPATH, VOCPATH +from si_ref_point.settings import PKG_ROOT +from pathlib import Path -def main(APIPATH): +def main(APIPATH, VOCPATH=None): # ------------------------------------------------------------------------ # load ttl files into knowledge graph g = Graph() @@ -59,7 +60,7 @@ def main(APIPATH): WHERE { ?class rdfs:subClassOf si:CompoundUnit . - ?prop rdfs:domain ?class . + ?prop rdfs:domain ?class . OPTIONAL {?prop rdfs:range ?range} } ORDER BY ?class @@ -80,7 +81,7 @@ def main(APIPATH): FILTER (?class = si:Definition || ?class = si:Constant) . FILTER (?range != rdf:nil && ?domain != rdf:nil) . # filter last element of list FILTER (!isBlank(?domain)) . # filter blank nodes - FILTER (!isBlank(?range)) . + FILTER (!isBlank(?range)) . } ORDER BY ?class """ @@ -156,14 +157,17 @@ def main(APIPATH): # best result with mermaid 10.9.1 (current version 11.4.2 not showing multiple self-references): # npm install -g @mermaid-js/mermaid-cli@10.9.1 - + if __name__ == "__main__": parser = argparse.ArgumentParser( description="Generate SI ref point vocabulary") parser.add_argument( - "--path_to_ttl", - default=TTLPATH, + "path_to_ttl", type=Path, help="Directory where TTLs are stored") + parser.add_argument( + "--VOCPATH", type=Path, + default = PKG_ROOT.parent.parent / 'docs' / 'vocabulary', + help="Directory for output mermaid code, default PKGROOT/docs/vocabulary") args = parser.parse_args() - main(args.path_to_ttl) + main(args.path_to_ttl, VOCPATH=args.VOCPATH) diff --git a/docs/scripts/make_vocabulary.py b/docs/scripts/make_vocabulary.py index 628d384..38796c8 100644 --- a/docs/scripts/make_vocabulary.py +++ b/docs/scripts/make_vocabulary.py @@ -2,10 +2,11 @@ import argparse from rdflib import Graph, BNode, RDF -from config import TTLPATH, VOCPATH +from pathlib import Path +from si_ref_point.settings import PKG_ROOT -def main(APIPATH): +def main(APIPATH: Path, VOCPATH: Path=None): # ------------------------------------------------------------------------ # load ttl files into knowledge graph g = Graph() @@ -174,8 +175,12 @@ def parse_multi(g, nodeID): if __name__ == "__main__": parser = argparse.ArgumentParser(description="Generate an SI Reference Point vocabulary") - parser.add_argument("--path_to_ttl", - default=TTLPATH, + parser.add_argument("path_to_ttl", + type=Path, help="Directory where TTLs are stored") + parser.add_argument( + "--VOCPATH", type=Path, + default = PKG_ROOT.parent.parent / 'docs' / 'vocabulary', + help="Directory for output mermaid code, default PKGROOT/docs/vocabulary") args = parser.parse_args() - main(args.path_to_ttl) + main(args.path_to_ttl, VOCPATH=args.VOCPATH) diff --git a/docs/vocabulary/class_diagram.md b/docs/vocabulary/class_diagram.md index d133c3b..a8c58a5 100644 --- a/docs/vocabulary/class_diagram.md +++ b/docs/vocabulary/class_diagram.md @@ -70,6 +70,7 @@ classDiagram } class `si:SIPrefix`{ +si:hasDatatype + +si:hasExponent +si:hasScalingFactor } class `si:SISpecialNamedUnit`{ @@ -119,6 +120,7 @@ classDiagram `si:SIDecision` --o `si:SIDecisionTarget` `si:SIDecisionTarget` --o `si:SIDecision` `si:SIDecisionTarget` --o `si:SIDecisionScope` + `si:SIPrefix` --o `xsd:short` `si:SIPrefix` --o `rdfs:Literal` `si:SISpecialNamedUnit` --o `xsd:boolean` `si:SISpecialNamedUnit` --o `rdfs:Literal` diff --git a/docs/vocabulary/vocabulary.md b/docs/vocabulary/vocabulary.md index c463898..29dcf95 100644 --- a/docs/vocabulary/vocabulary.md +++ b/docs/vocabulary/vocabulary.md @@ -194,7 +194,7 @@ SI prefix | si:hasDatatype | si:Constant, si:SIPrefix | | | | si:hasDefiningResolution | si:Definition, si:Constant | rb:Resolution | Linking an SI definition to the resolution by which it was adopted. | | si:hasDefiningResolution | si:Definition, si:Constant | rb:Resolution | Linking an SI definition to the resolution by which it was adopted. | -| si:hasNumericExponent | si:UnitPower | xsd:short | | +| si:hasExponent | si:SIPrefix | xsd:short | | | si:hasScalingFactor | si:SIPrefix | rdfs:Literal | Linking an SI prefix to its scaling factor. | | si:hasSymbol | | xsd:string | Linking a measurement unit or prefix to a symbol. | @@ -210,7 +210,7 @@ SI prefix | si:hasDatatype | si:Constant, si:SIPrefix | | | | si:hasDefiningResolution | si:Definition, si:Constant | rb:Resolution | Linking an SI definition to the resolution by which it was adopted. | | si:hasDefiningResolution | si:Definition, si:Constant | rb:Resolution | Linking an SI definition to the resolution by which it was adopted. | -| si:hasNumericExponent | si:UnitPower | xsd:short | | +| si:hasExponent | si:SIPrefix | xsd:short | | | si:hasScalingFactor | si:SIPrefix | rdfs:Literal | Linking an SI prefix to its scaling factor. | | si:hasSymbol | | xsd:string | Linking a measurement unit or prefix to a symbol. | From 33e994a7c32ed275ac2e8b561794eb60997b5be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Meynadier?= Date: Fri, 29 May 2026 10:42:30 +0200 Subject: [PATCH 2/2] Documentation update The Ontoviz package seems unmaintained. The patch I suggested 2 years ago (and was necessary for correctly generating our md files) has not been merged or reviewed, and there are now some calls to the packages it depends that fail due to deprecation of the function. This is fixable, but I wonder if we should not instead look forward to something like LODE ( https://essepuntato.it/lode/ ) instead ? In the meantime : I have removed outdated vocabulary_viz files, and references to it, in order to avoid any possible confusion. I have also updated the scripts so that they work in our new scheme. As TTL files are not anymore generated automatically in the package's directory, note that a mandatory argument when running these scripts is now the path to the TTL files, wherever they are. We could automatize TTL file generation just before running all schemas generation scripts. --- docs/Readme.md | 1 - docs/scripts/make_visualizations.py | 3 +- docs/scripts/make_vocabulary.py | 4 +- docs/vocabulary/class_diagram.md | 2 + docs/vocabulary_viz/class-rbresolution.md | 84 ----- .../class-sicompoundquantitykind.md | 100 ------ docs/vocabulary_viz/class-sicompoundunit.md | 112 ------- docs/vocabulary_viz/class-siconstant.md | 97 ------ docs/vocabulary_viz/class-sidecisiontarget.md | 84 ----- docs/vocabulary_viz/class-sidefinition.md | 105 ------ docs/vocabulary_viz/class-sidefinitionnote.md | 95 ------ .../vocabulary_viz/class-simeasurementunit.md | 107 ------- docs/vocabulary_viz/class-sinonsiunit.md | 108 ------- docs/vocabulary_viz/class-siprefixedunit.md | 108 ------- docs/vocabulary_viz/class-siquantitykind.md | 97 ------ .../class-siquantitykindpower.md | 98 ------ .../class-siquantitykindproduct.md | 98 ------ docs/vocabulary_viz/class-siquantitypower.md | 84 ----- .../vocabulary_viz/class-siquantityproduct.md | 85 ----- docs/vocabulary_viz/class-sisibaseunit.md | 110 ------- docs/vocabulary_viz/class-sisidecision.md | 95 ------ .../vocabulary_viz/class-sisidecisionscope.md | 92 ------ .../class-sisidecisiontarget.md | 94 ------ docs/vocabulary_viz/class-sisiprefix.md | 98 ------ .../class-sisispecialnamedunit.md | 107 ------- docs/vocabulary_viz/class-siunitmultiple.md | 106 ------ docs/vocabulary_viz/class-siunitpower.md | 108 ------- docs/vocabulary_viz/class-siunitproduct.md | 108 ------- docs/vocabulary_viz/index.md | 302 ------------------ .../prop-sicorrespondingresolution.md | 69 ---- docs/vocabulary_viz/prop-sihasbase.md | 70 ---- .../prop-sihasconversionfactor.md | 72 ----- .../prop-sihasconversionunit.md | 72 ----- docs/vocabulary_viz/prop-sihasdatatype.md | 70 ---- docs/vocabulary_viz/prop-sihasdecision.md | 71 ---- .../prop-sihasdefiningconstant.md | 72 ----- .../prop-sihasdefiningequation.md | 73 ----- .../prop-sihasdefiningresolution.md | 74 ----- docs/vocabulary_viz/prop-sihasdefiningtext.md | 72 ----- docs/vocabulary_viz/prop-sihasdefinition.md | 72 ----- .../prop-sihasdefinitionnote.md | 72 ----- docs/vocabulary_viz/prop-sihasendvalidity.md | 73 ----- .../prop-sihasleftquantityterm.md | 78 ----- docs/vocabulary_viz/prop-sihasleftunitterm.md | 78 ----- .../prop-sihasnextdefinition.md | 73 ----- .../prop-sihasnonprefixedunit.md | 71 ---- docs/vocabulary_viz/prop-sihasnoteindex.md | 72 ----- docs/vocabulary_viz/prop-sihasnotetext.md | 72 ----- .../prop-sihasnumericexponent.md | 72 ----- .../vocabulary_viz/prop-sihasnumericfactor.md | 74 ----- docs/vocabulary_viz/prop-sihasprefix.md | 71 ---- .../prop-sihaspreviousdefinition.md | 73 ----- docs/vocabulary_viz/prop-sihasquantitybase.md | 76 ----- docs/vocabulary_viz/prop-sihasquantityterm.md | 74 ----- .../prop-sihasrightquantityterm.md | 78 ----- .../vocabulary_viz/prop-sihasrightunitterm.md | 78 ----- .../vocabulary_viz/prop-sihasscalingfactor.md | 72 ----- .../vocabulary_viz/prop-sihasstartvalidity.md | 73 ----- docs/vocabulary_viz/prop-sihasstatus.md | 72 ----- docs/vocabulary_viz/prop-sihassymbol.md | 69 ---- docs/vocabulary_viz/prop-sihastarget.md | 71 ---- docs/vocabulary_viz/prop-sihasterm.md | 71 ---- docs/vocabulary_viz/prop-sihasunit.md | 74 ----- docs/vocabulary_viz/prop-sihasunitbase.md | 76 ----- docs/vocabulary_viz/prop-sihasunitterm.md | 74 ----- .../prop-sihasunittypeasstring.md | 72 ----- docs/vocabulary_viz/prop-sihasupdateddate.md | 71 ---- docs/vocabulary_viz/prop-sihasvalue.md | 70 ---- .../vocabulary_viz/prop-sihasvalueasstring.md | 71 ---- docs/vocabulary_viz/prop-siinbasesiunits.md | 66 ---- docs/vocabulary_viz/prop-siinothersiunits.md | 66 ---- docs/vocabulary_viz/prop-siisdecisionof.md | 70 ---- .../prop-siisdefiningresolutionof.md | 77 ----- docs/vocabulary_viz/prop-siistargetof.md | 70 ---- docs/vocabulary_viz/prop-siisunitofqtykind.md | 72 ----- 75 files changed, 7 insertions(+), 6014 deletions(-) delete mode 100644 docs/vocabulary_viz/class-rbresolution.md delete mode 100644 docs/vocabulary_viz/class-sicompoundquantitykind.md delete mode 100644 docs/vocabulary_viz/class-sicompoundunit.md delete mode 100644 docs/vocabulary_viz/class-siconstant.md delete mode 100644 docs/vocabulary_viz/class-sidecisiontarget.md delete mode 100644 docs/vocabulary_viz/class-sidefinition.md delete mode 100644 docs/vocabulary_viz/class-sidefinitionnote.md delete mode 100644 docs/vocabulary_viz/class-simeasurementunit.md delete mode 100644 docs/vocabulary_viz/class-sinonsiunit.md delete mode 100644 docs/vocabulary_viz/class-siprefixedunit.md delete mode 100644 docs/vocabulary_viz/class-siquantitykind.md delete mode 100644 docs/vocabulary_viz/class-siquantitykindpower.md delete mode 100644 docs/vocabulary_viz/class-siquantitykindproduct.md delete mode 100644 docs/vocabulary_viz/class-siquantitypower.md delete mode 100644 docs/vocabulary_viz/class-siquantityproduct.md delete mode 100644 docs/vocabulary_viz/class-sisibaseunit.md delete mode 100644 docs/vocabulary_viz/class-sisidecision.md delete mode 100644 docs/vocabulary_viz/class-sisidecisionscope.md delete mode 100644 docs/vocabulary_viz/class-sisidecisiontarget.md delete mode 100644 docs/vocabulary_viz/class-sisiprefix.md delete mode 100644 docs/vocabulary_viz/class-sisispecialnamedunit.md delete mode 100644 docs/vocabulary_viz/class-siunitmultiple.md delete mode 100644 docs/vocabulary_viz/class-siunitpower.md delete mode 100644 docs/vocabulary_viz/class-siunitproduct.md delete mode 100644 docs/vocabulary_viz/index.md delete mode 100644 docs/vocabulary_viz/prop-sicorrespondingresolution.md delete mode 100644 docs/vocabulary_viz/prop-sihasbase.md delete mode 100644 docs/vocabulary_viz/prop-sihasconversionfactor.md delete mode 100644 docs/vocabulary_viz/prop-sihasconversionunit.md delete mode 100644 docs/vocabulary_viz/prop-sihasdatatype.md delete mode 100644 docs/vocabulary_viz/prop-sihasdecision.md delete mode 100644 docs/vocabulary_viz/prop-sihasdefiningconstant.md delete mode 100644 docs/vocabulary_viz/prop-sihasdefiningequation.md delete mode 100644 docs/vocabulary_viz/prop-sihasdefiningresolution.md delete mode 100644 docs/vocabulary_viz/prop-sihasdefiningtext.md delete mode 100644 docs/vocabulary_viz/prop-sihasdefinition.md delete mode 100644 docs/vocabulary_viz/prop-sihasdefinitionnote.md delete mode 100644 docs/vocabulary_viz/prop-sihasendvalidity.md delete mode 100644 docs/vocabulary_viz/prop-sihasleftquantityterm.md delete mode 100644 docs/vocabulary_viz/prop-sihasleftunitterm.md delete mode 100644 docs/vocabulary_viz/prop-sihasnextdefinition.md delete mode 100644 docs/vocabulary_viz/prop-sihasnonprefixedunit.md delete mode 100644 docs/vocabulary_viz/prop-sihasnoteindex.md delete mode 100644 docs/vocabulary_viz/prop-sihasnotetext.md delete mode 100644 docs/vocabulary_viz/prop-sihasnumericexponent.md delete mode 100644 docs/vocabulary_viz/prop-sihasnumericfactor.md delete mode 100644 docs/vocabulary_viz/prop-sihasprefix.md delete mode 100644 docs/vocabulary_viz/prop-sihaspreviousdefinition.md delete mode 100644 docs/vocabulary_viz/prop-sihasquantitybase.md delete mode 100644 docs/vocabulary_viz/prop-sihasquantityterm.md delete mode 100644 docs/vocabulary_viz/prop-sihasrightquantityterm.md delete mode 100644 docs/vocabulary_viz/prop-sihasrightunitterm.md delete mode 100644 docs/vocabulary_viz/prop-sihasscalingfactor.md delete mode 100644 docs/vocabulary_viz/prop-sihasstartvalidity.md delete mode 100644 docs/vocabulary_viz/prop-sihasstatus.md delete mode 100644 docs/vocabulary_viz/prop-sihassymbol.md delete mode 100644 docs/vocabulary_viz/prop-sihastarget.md delete mode 100644 docs/vocabulary_viz/prop-sihasterm.md delete mode 100644 docs/vocabulary_viz/prop-sihasunit.md delete mode 100644 docs/vocabulary_viz/prop-sihasunitbase.md delete mode 100644 docs/vocabulary_viz/prop-sihasunitterm.md delete mode 100644 docs/vocabulary_viz/prop-sihasunittypeasstring.md delete mode 100644 docs/vocabulary_viz/prop-sihasupdateddate.md delete mode 100644 docs/vocabulary_viz/prop-sihasvalue.md delete mode 100644 docs/vocabulary_viz/prop-sihasvalueasstring.md delete mode 100644 docs/vocabulary_viz/prop-siinbasesiunits.md delete mode 100644 docs/vocabulary_viz/prop-siinothersiunits.md delete mode 100644 docs/vocabulary_viz/prop-siisdecisionof.md delete mode 100644 docs/vocabulary_viz/prop-siisdefiningresolutionof.md delete mode 100644 docs/vocabulary_viz/prop-siistargetof.md delete mode 100644 docs/vocabulary_viz/prop-siisunitofqtykind.md diff --git a/docs/Readme.md b/docs/Readme.md index 5a98a10..060b684 100644 --- a/docs/Readme.md +++ b/docs/Readme.md @@ -4,4 +4,3 @@ This folder contains documentation generation tools and data. Current documentation may be found in [SI_Reference_Point.md](sirp.md) -Autogenerated ontology documentation (done via [Ontospy](https://github.com/lambdamusic/Ontospy) ) starts in [vocabulary_viz/index.md](vocabulary_viz/index.md). diff --git a/docs/scripts/make_visualizations.py b/docs/scripts/make_visualizations.py index 844028a..de57b55 100644 --- a/docs/scripts/make_visualizations.py +++ b/docs/scripts/make_visualizations.py @@ -153,9 +153,10 @@ def main(APIPATH, VOCPATH=None): out.write("```\n") # convert to pdfs using mermaid-cli: - # npx mmdc -i .\class_diagram_details.md -f -e pdf -o class_diagrams_details_converted.md + # npx mmdc -i ./class_diagram_details.md -f -e pdf -o class_diagrams_details_converted.md # best result with mermaid 10.9.1 (current version 11.4.2 not showing multiple self-references): + # 2026-05-29 : 11.15.0 still does not # npm install -g @mermaid-js/mermaid-cli@10.9.1 diff --git a/docs/scripts/make_vocabulary.py b/docs/scripts/make_vocabulary.py index 38796c8..ca57b54 100644 --- a/docs/scripts/make_vocabulary.py +++ b/docs/scripts/make_vocabulary.py @@ -1,4 +1,4 @@ -""" Create a vocabulary file """ +""" Create a vocabulary file and the class_diagram.md file (mermaid code) """ import argparse from rdflib import Graph, BNode, RDF @@ -131,6 +131,7 @@ def main(APIPATH: Path, VOCPATH: Path=None): # Write diagram (mermaid code) with open(VOCPATH / 'class_diagram.md', 'w') as out: + out.write("```mermaid\n") out.write("classDiagram\n") for cl, vals in diagram.items(): if vals['superclass'] != "owl:Class": @@ -152,6 +153,7 @@ def main(APIPATH: Path, VOCPATH: Path=None): if pr['range'] and pr['range'] not in already_drawn: out.write("\t`{}` --o `{}`\n".format(cl, pr['range'])) already_drawn.append(pr['range']) + out.write("```") def parse_multi(g, nodeID): diff --git a/docs/vocabulary/class_diagram.md b/docs/vocabulary/class_diagram.md index a8c58a5..7c1ee0b 100644 --- a/docs/vocabulary/class_diagram.md +++ b/docs/vocabulary/class_diagram.md @@ -1,3 +1,4 @@ +```mermaid classDiagram `si:QuantityKind`<|--`si:CompoundQuantityKind` `si:MeasurementUnit`<|--`si:CompoundUnit` @@ -131,3 +132,4 @@ classDiagram `si:UnitProduct` --o `si:MeasurementUnit` `si:nonSIUnit` --o `xsd:boolean` `si:nonSIUnit` --o `rdfs:Literal` +``` \ No newline at end of file diff --git a/docs/vocabulary_viz/class-rbresolution.md b/docs/vocabulary_viz/class-rbresolution.md deleted file mode 100644 index dce51cf..0000000 --- a/docs/vocabulary_viz/class-rbresolution.md +++ /dev/null @@ -1,84 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class rb:Resolution - - -#### Tree - -* owl:Thing - * rb:Resolution - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/bodies#Resolution - -#### Description - - - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -None -``` - - - - -#### Instances of rb:Resolution can have the following properties: - -##### From [rb:Resolution](class-rbresolution.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:isDefiningResolutionOf](prop-siisdefiningresolutionof.md) | Linking a resolution to the SI definition it defined. |*owl:Thing*| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sicompoundquantitykind.md b/docs/vocabulary_viz/class-sicompoundquantitykind.md deleted file mode 100644 index b894d3f..0000000 --- a/docs/vocabulary_viz/class-sicompoundquantitykind.md +++ /dev/null @@ -1,100 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:CompoundQuantityKind - - -#### Tree - - -* [si:QuantityKind](class-siquantitykind.md) - - * si:CompoundQuantityKind - - - * [si:QuantityKindPower](class-siquantitykindpower.md) - - * [si:QuantityKindProduct](class-siquantitykindproduct.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#CompoundQuantityKind - -#### Description - - - - -#### Inherits from (1) - -- [si:QuantityKind](class-siquantitykind.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:CompoundQuantityKind a owl:Class ; - rdfs:label "compound quantitykind"@en, - "quantité composée"@fr ; - rdfs:subClassOf si:QuantityKind . - - -``` - - - - -#### Instances of si:CompoundQuantityKind can have the following properties: - -##### From [si:CompoundQuantityKind](class-sicompoundquantitykind.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sicompoundunit.md b/docs/vocabulary_viz/class-sicompoundunit.md deleted file mode 100644 index 3b95cce..0000000 --- a/docs/vocabulary_viz/class-sicompoundunit.md +++ /dev/null @@ -1,112 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:CompoundUnit - - -#### Tree - - -* [si:MeasurementUnit](class-simeasurementunit.md) - - * si:CompoundUnit - - - * [si:PrefixedUnit](class-siprefixedunit.md) - - * [si:UnitMultiple](class-siunitmultiple.md) - - * [si:UnitPower](class-siunitpower.md) - - * [si:UnitProduct](class-siunitproduct.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#CompoundUnit - -#### Description - - - - -#### Inherits from (1) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:CompoundUnit a owl:Class ; - rdfs:label "compound unit"@en, - "unité composée"@fr ; - rdfs:subClassOf si:MeasurementUnit . - - -``` - - - - -#### Instances of si:CompoundUnit can have the following properties: - -##### From [si:CompoundUnit](class-sicompoundunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siconstant.md b/docs/vocabulary_viz/class-siconstant.md deleted file mode 100644 index f0544b8..0000000 --- a/docs/vocabulary_viz/class-siconstant.md +++ /dev/null @@ -1,97 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:Constant - - -#### Tree - -* owl:Thing - * si:Constant - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#Constant - -#### Description -

Class for the seven defining constants of the SI.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:Constant a owl:Class ; - rdfs:label "defining constant"@en, - "définir la constante"@fr ; - rdfs:comment "Class for the seven defining constants of the SI."@en, - "La classe pour les sept constantes définissant le SI."@fr ; - owl:disjointWith si:QuantityKind . - - -``` - - - - -#### Instances of si:Constant can have the following properties: - -##### From [si:Constant](class-siconstant.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasUpdatedDate](prop-sihasupdateddate.md) | |[xsd:date](class-xsddate.md)| -| [si:hasValue](prop-sihasvalue.md) | |[rdfs:Literal](class-rdfsliteral.md)| -| [si:hasValueAsString](prop-sihasvalueasstring.md) | |[xsd:string](class-xsdstring.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sidecisiontarget.md b/docs/vocabulary_viz/class-sidecisiontarget.md deleted file mode 100644 index 1022b3e..0000000 --- a/docs/vocabulary_viz/class-sidecisiontarget.md +++ /dev/null @@ -1,84 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:DecisionTarget - - -#### Tree - -* owl:Thing - * si:DecisionTarget - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#DecisionTarget - -#### Description - - - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -None -``` - - - - -#### Instances of si:DecisionTarget can have the following properties: - -##### From [si:DecisionTarget](class-sidecisiontarget.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:isTargetOf](prop-siistargetof.md) | |[si:SIDecisionScope](class-sisidecisionscope.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sidefinition.md b/docs/vocabulary_viz/class-sidefinition.md deleted file mode 100644 index 61c99df..0000000 --- a/docs/vocabulary_viz/class-sidefinition.md +++ /dev/null @@ -1,105 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:Definition - - -#### Tree - -* owl:Thing - * si:Definition - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#Definition - -#### Description -

The class for definitions of an SI base unit.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:Definition a owl:Class ; - rdfs:label "definition of a base unit"@en, - "définition d'une unité de base"@fr ; - rdfs:comment "The class for definitions of an SI base unit."@en, - "La classe pour les notes sur les définitions des unités SI."@fr ; - rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality "1"^^xsd:int ; - owl:onProperty si:hasStartValidity ] . - - -``` - - - - -#### Instances of si:Definition can have the following properties: - -##### From [si:Definition](class-sidefinition.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasDefiningText](prop-sihasdefiningtext.md) | Linking an SI definition to the defining text. |[rdfs:Literal](class-rdfsliteral.md)| -| [si:hasEndValidity](prop-sihasendvalidity.md) | Linking an SI definition to its ending validity date. |[xsd:date](class-xsddate.md)| -| [si:hasStartValidity](prop-sihasstartvalidity.md) | Linking an SI definition to its starting validity date. |[xsd:date](class-xsddate.md)| -| [si:hasStatus](prop-sihasstatus.md) | Linking a SI definition to its status. |[rdfs:Literal](class-rdfsliteral.md)| -| [si:hasDefiningConstant](prop-sihasdefiningconstant.md) | Linking a definition to its defining constant. |[si:Constant](class-siconstant.md)| -| [si:hasDefinitionNote](prop-sihasdefinitionnote.md) | Linking an SI definition to a definition note. |[si:DefinitionNote](class-sidefinitionnote.md)| -| [si:hasNextDefinition](prop-sihasnextdefinition.md) | Linking an SI definition version to the next version. |[si:Definition](class-sidefinition.md)| -| [si:hasPreviousDefinition](prop-sihaspreviousdefinition.md) | Linking an SI definition version to the previous version. |[si:Definition](class-sidefinition.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sidefinitionnote.md b/docs/vocabulary_viz/class-sidefinitionnote.md deleted file mode 100644 index f0a5d75..0000000 --- a/docs/vocabulary_viz/class-sidefinitionnote.md +++ /dev/null @@ -1,95 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:DefinitionNote - - -#### Tree - -* owl:Thing - * si:DefinitionNote - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#DefinitionNote - -#### Description -

The class for notes related SI unit definitions.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:DefinitionNote a owl:Class ; - rdfs:label "unit definition note"@en, - "note de définition d'unité"@fr ; - rdfs:comment "The class for notes related SI unit definitions."@en, - "La classe pour les définitions d'unités SI liées aux notes."@fr . - - -``` - - - - -#### Instances of si:DefinitionNote can have the following properties: - -##### From [si:DefinitionNote](class-sidefinitionnote.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNoteIndex](prop-sihasnoteindex.md) | The text of a definition note. |[rdfs:Literal](class-rdfsliteral.md)| -| [si:hasNoteText](prop-sihasnotetext.md) | The order index of a definition note. |[rdfs:Literal](class-rdfsliteral.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-simeasurementunit.md b/docs/vocabulary_viz/class-simeasurementunit.md deleted file mode 100644 index be0fe92..0000000 --- a/docs/vocabulary_viz/class-simeasurementunit.md +++ /dev/null @@ -1,107 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:MeasurementUnit - - -#### Tree - -* owl:Thing - * si:MeasurementUnit - - - * [si:CompoundUnit](class-sicompoundunit.md) - - * [si:SIBaseUnit](class-sisibaseunit.md) - - * [si:SISpecialNamedUnit](class-sisispecialnamedunit.md) - - * [si:nonSIUnit](class-sinonsiunit.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#MeasurementUnit - -#### Description -

Class for all measurement units.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:MeasurementUnit a owl:Class ; - rdfs:label "measurement unit"@en, - "unité de mesure"@fr ; - rdfs:comment "Class for all measurement units."@en, - "La classe pour toutes les unités de mesure."@fr ; - rdfs:isDefinedBy "VIM3 1.9" ; - owl:disjointWith si:Constant, - si:QuantityKind, - si:SIPrefix . - - -``` - - - - -#### Instances of si:MeasurementUnit can have the following properties: - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sinonsiunit.md b/docs/vocabulary_viz/class-sinonsiunit.md deleted file mode 100644 index c073bd2..0000000 --- a/docs/vocabulary_viz/class-sinonsiunit.md +++ /dev/null @@ -1,108 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:nonSIUnit - - -#### Tree - - -* [si:MeasurementUnit](class-simeasurementunit.md) - - * si:nonSIUnit - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#nonSIUnit - -#### Description -

Non-SI units that are accepted for use with the SI

- - - -#### Inherits from (1) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:nonSIUnit a owl:Class ; - rdfs:label "non SI unit"@en, - "unité en dehors du SI"@fr ; - rdfs:comment "Non-SI units that are accepted for use with the SI"@en, - "Unités en dehors du SI dont l’usage est accepté avec le SI"@fr ; - rdfs:subClassOf si:MeasurementUnit . - - -``` - - - - -#### Instances of si:nonSIUnit can have the following properties: - -##### From [si:nonSIUnit](class-sinonsiunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasConversionFactor](prop-sihasconversionfactor.md) | The conversion factor between non-SI unit and an SI Unit (number SI unit contained in 1 non SI unit) |[rdfs:Literal](class-rdfsliteral.md)| -| [si:hasConversionUnit](prop-sihasconversionunit.md) | SI unit to which the non SI unit can be converted |[si:MeasurementUnit](class-simeasurementunit.md)| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siprefixedunit.md b/docs/vocabulary_viz/class-siprefixedunit.md deleted file mode 100644 index da11b15..0000000 --- a/docs/vocabulary_viz/class-siprefixedunit.md +++ /dev/null @@ -1,108 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:PrefixedUnit - - -#### Tree - - -* [si:CompoundUnit](class-sicompoundunit.md) - - * si:PrefixedUnit - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#PrefixedUnit - -#### Description - - - - -#### Inherits from (2) - -- [si:CompoundUnit](class-sicompoundunit.md) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:PrefixedUnit a owl:Class ; - rdfs:label "prefixed unit"@en, - "unité précédée d'un préfixe"@fr ; - rdfs:subClassOf si:CompoundUnit . - - -``` - - - - -#### Instances of si:PrefixedUnit can have the following properties: - -##### From [si:PrefixedUnit](class-siprefixedunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNonPrefixedUnit](prop-sihasnonprefixedunit.md) | and form a |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:hasPrefix](prop-sihasprefix.md) | and form a |[si:SIPrefix](class-sisiprefix.md)| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siquantitykind.md b/docs/vocabulary_viz/class-siquantitykind.md deleted file mode 100644 index 4f46609..0000000 --- a/docs/vocabulary_viz/class-siquantitykind.md +++ /dev/null @@ -1,97 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:QuantityKind - - -#### Tree - -* owl:Thing - * si:QuantityKind - - - * [si:CompoundQuantityKind](class-sicompoundquantitykind.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#QuantityKind - -#### Description -

Class for the quantity kinds.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:QuantityKind a owl:Class ; - rdfs:label "kind of quantity"@en, - "nature de grandeur"@fr ; - rdfs:comment "Class for the quantity kinds."@en, - "La classe pour les types de quantité."@fr ; - rdfs:isDefinedBy "VIM3 1.2"^^xsd:string . - - -``` - - - - -#### Instances of si:QuantityKind can have the following properties: - -##### From [si:QuantityKind](class-siquantitykind.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siquantitykindpower.md b/docs/vocabulary_viz/class-siquantitykindpower.md deleted file mode 100644 index ead701a..0000000 --- a/docs/vocabulary_viz/class-siquantitykindpower.md +++ /dev/null @@ -1,98 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:QuantityKindPower - - -#### Tree - - -* [si:CompoundQuantityKind](class-sicompoundquantitykind.md) - - * si:QuantityKindPower - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#QuantityKindPower - -#### Description - - - - -#### Inherits from (2) - -- [si:CompoundQuantityKind](class-sicompoundquantitykind.md) - -- [si:QuantityKind](class-siquantitykind.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:QuantityKindPower a owl:Class ; - rdfs:label "quantitykind power"@en, - "quantité élevée à la puissance"@fr ; - rdfs:subClassOf si:CompoundQuantityKind . - - -``` - - - - -#### Instances of si:QuantityKindPower can have the following properties: - -##### From [si:QuantityKindPower](class-siquantitykindpower.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siquantitykindproduct.md b/docs/vocabulary_viz/class-siquantitykindproduct.md deleted file mode 100644 index 676cb16..0000000 --- a/docs/vocabulary_viz/class-siquantitykindproduct.md +++ /dev/null @@ -1,98 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:QuantityKindProduct - - -#### Tree - - -* [si:CompoundQuantityKind](class-sicompoundquantitykind.md) - - * si:QuantityKindProduct - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#QuantityKindProduct - -#### Description - - - - -#### Inherits from (2) - -- [si:CompoundQuantityKind](class-sicompoundquantitykind.md) - -- [si:QuantityKind](class-siquantitykind.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:QuantityKindProduct a owl:Class ; - rdfs:label "quantitykind product"@en, - "produit de quantités"@fr ; - rdfs:subClassOf si:CompoundQuantityKind . - - -``` - - - - -#### Instances of si:QuantityKindProduct can have the following properties: - -##### From [si:QuantityKindProduct](class-siquantitykindproduct.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siquantitypower.md b/docs/vocabulary_viz/class-siquantitypower.md deleted file mode 100644 index 677745d..0000000 --- a/docs/vocabulary_viz/class-siquantitypower.md +++ /dev/null @@ -1,84 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:QuantityPower - - -#### Tree - -* owl:Thing - * si:QuantityPower - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#QuantityPower - -#### Description - - - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -None -``` - - - - -#### Instances of si:QuantityPower can have the following properties: - -##### From [si:QuantityPower](class-siquantitypower.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasQuantityBase](prop-sihasquantitybase.md) | QuantityBase ^ NumericExponent |[si:MeasurementUnit](class-simeasurementunit.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siquantityproduct.md b/docs/vocabulary_viz/class-siquantityproduct.md deleted file mode 100644 index ba55180..0000000 --- a/docs/vocabulary_viz/class-siquantityproduct.md +++ /dev/null @@ -1,85 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:QuantityProduct - - -#### Tree - -* owl:Thing - * si:QuantityProduct - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#QuantityProduct - -#### Description - - - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -None -``` - - - - -#### Instances of si:QuantityProduct can have the following properties: - -##### From [si:QuantityProduct](class-siquantityproduct.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasLeftQuantityTerm](prop-sihasleftquantityterm.md) | preserve order of multiplication |[si:QuantityKind](class-siquantitykind.md)| -| [si:hasRightQuantityTerm](prop-sihasrightquantityterm.md) | preserve order of multiplication |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sisibaseunit.md b/docs/vocabulary_viz/class-sisibaseunit.md deleted file mode 100644 index a985e50..0000000 --- a/docs/vocabulary_viz/class-sisibaseunit.md +++ /dev/null @@ -1,110 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:SIBaseUnit - - -#### Tree - - -* [si:MeasurementUnit](class-simeasurementunit.md) - - * si:SIBaseUnit - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#SIBaseUnit - -#### Description -

Class of SI base units. Several definitions can be attached to this class to represent definitions of the BaseUnit throughout time.

- - - -#### Inherits from (1) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:SIBaseUnit a owl:Class ; - rdfs:label "base unit"@en, - "unité de base"@fr ; - rdfs:comment "Class of SI base units. Several definitions can be attached to this class to represent definitions of the BaseUnit throughout time."@en, - "La classe des unités de base SI. Plusieurs définitions peuvent être attachées à cette classe pour représenter les définitions de l'unité de base en question à travers les temps."@fr ; - rdfs:isDefinedBy "VIM3 1.10" ; - rdfs:subClassOf si:MeasurementUnit ; - owl:disjointWith si:SISpecialNamedUnit, - si:nonSIUnit . - - -``` - - - - -#### Instances of si:SIBaseUnit can have the following properties: - -##### From [si:SIBaseUnit](class-sisibaseunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasDefinition](prop-sihasdefinition.md) | Linking an SI base unit to its definition. |[si:Definition](class-sidefinition.md)| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sisidecision.md b/docs/vocabulary_viz/class-sisidecision.md deleted file mode 100644 index 7a1c35d..0000000 --- a/docs/vocabulary_viz/class-sisidecision.md +++ /dev/null @@ -1,95 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:SIDecision - - -#### Tree - -* owl:Thing - * si:SIDecision - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#SIDecision - -#### Description -

The class for SI decisions.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:SIDecision a owl:Class ; - rdfs:label "SI Decision"@en, - "Décision SI"@fr ; - rdfs:comment "The class for SI decisions."@en, - "La classe pour les décisions SI."@fr . - - -``` - - - - -#### Instances of si:SIDecision can have the following properties: - -##### From [si:SIDecision](class-sisidecision.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:correspondingResolution](prop-sicorrespondingresolution.md) | |*owl:Thing*| -| [si:isDecisionOf](prop-siisdecisionof.md) | |[si:SIDecisionTarget](class-sisidecisiontarget.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sisidecisionscope.md b/docs/vocabulary_viz/class-sisidecisionscope.md deleted file mode 100644 index abb7eb4..0000000 --- a/docs/vocabulary_viz/class-sisidecisionscope.md +++ /dev/null @@ -1,92 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:SIDecisionScope - - -#### Tree - -* owl:Thing - * si:SIDecisionScope - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#SIDecisionScope - -#### Description -

The class for SI decisions scopes.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix rdfs: . -@prefix si: . - -si:SIDecisionScope rdfs:label "SI Decision scope"@en, - "Champ de la décision SI"@fr ; - rdfs:comment "The class for SI decisions scopes."@en, - "La classe pour les champs de décisions SI."@fr . - - -``` - - - - -#### Instances of si:SIDecisionScope can have the following properties: - -##### From [si:SIDecisionScope](class-sisidecisionscope.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasTarget](prop-sihastarget.md) | |[si:SIDecisionTarget](class-sisidecisiontarget.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sisidecisiontarget.md b/docs/vocabulary_viz/class-sisidecisiontarget.md deleted file mode 100644 index fee6251..0000000 --- a/docs/vocabulary_viz/class-sisidecisiontarget.md +++ /dev/null @@ -1,94 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:SIDecisionTarget - - -#### Tree - -* owl:Thing - * si:SIDecisionTarget - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#SIDecisionTarget - -#### Description -

The class for SI decisions target.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:SIDecisionTarget a owl:Class ; - rdfs:label "SI Decision target"@en, - "Cible d'une décision SI"@fr ; - rdfs:comment "The class for SI decisions target."@en, - "La classe pour les cibles de décisions SI."@fr . - - -``` - - - - -#### Instances of si:SIDecisionTarget can have the following properties: - -##### From [si:SIDecisionTarget](class-sisidecisiontarget.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasDecision](prop-sihasdecision.md) | |[si:SIDecision](class-sisidecision.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sisiprefix.md b/docs/vocabulary_viz/class-sisiprefix.md deleted file mode 100644 index 9bae16e..0000000 --- a/docs/vocabulary_viz/class-sisiprefix.md +++ /dev/null @@ -1,98 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:SIPrefix - - -#### Tree - -* owl:Thing - * si:SIPrefix - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#SIPrefix - -#### Description -

The class for SI Prefixes.

- - - -#### Inherits from: -owl:Thing - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:SIPrefix a owl:Class ; - rdfs:label "SI prefix"@en, - "préfixe SI"@fr ; - rdfs:comment "The class for SI Prefixes."@en, - "La classe pour les préfixes SI."@fr ; - rdfs:subClassOf [ a owl:Restriction ; - owl:minCardinality "1"^^xsd:int ; - owl:onProperty si:hasScalingFactor ] . - - -``` - - - - -#### Instances of si:SIPrefix can have the following properties: - -##### From [si:SIPrefix](class-sisiprefix.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasScalingFactor](prop-sihasscalingfactor.md) | Linking an SI prefix to its scaling factor. |[rdfs:Literal](class-rdfsliteral.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-sisispecialnamedunit.md b/docs/vocabulary_viz/class-sisispecialnamedunit.md deleted file mode 100644 index 8398f47..0000000 --- a/docs/vocabulary_viz/class-sisispecialnamedunit.md +++ /dev/null @@ -1,107 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:SISpecialNamedUnit - - -#### Tree - - -* [si:MeasurementUnit](class-simeasurementunit.md) - - * si:SISpecialNamedUnit - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#SISpecialNamedUnit - -#### Description -

Class for the units of the SI that are not base units but have a special name.

- - - -#### Inherits from (1) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:SISpecialNamedUnit a owl:Class ; - rdfs:label "SI unit with special name"@en, - "unité SI avec nom spécial"@fr ; - rdfs:comment "Class for the units of the SI that are not base units but have a special name."@en, - "La classe des unités du SI qui ne sont pas des unités de base mais qui ont un nom spécial."@fr ; - rdfs:subClassOf si:MeasurementUnit ; - owl:disjointWith si:nonSIUnit . - - -``` - - - - -#### Instances of si:SISpecialNamedUnit can have the following properties: - -##### From [si:SISpecialNamedUnit](class-sisispecialnamedunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siunitmultiple.md b/docs/vocabulary_viz/class-siunitmultiple.md deleted file mode 100644 index 6aa5744..0000000 --- a/docs/vocabulary_viz/class-siunitmultiple.md +++ /dev/null @@ -1,106 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:UnitMultiple - - -#### Tree - - -* [si:CompoundUnit](class-sicompoundunit.md) - - * si:UnitMultiple - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#UnitMultiple - -#### Description - - - - -#### Inherits from (2) - -- [si:CompoundUnit](class-sicompoundunit.md) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:UnitMultiple a owl:Class ; - rdfs:label "unit multiple"@en, - "multiple d'unité"@fr ; - rdfs:subClassOf si:CompoundUnit . - - -``` - - - - -#### Instances of si:UnitMultiple can have the following properties: - -##### From [si:UnitMultiple](class-siunitmultiple.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siunitpower.md b/docs/vocabulary_viz/class-siunitpower.md deleted file mode 100644 index 8d12dda..0000000 --- a/docs/vocabulary_viz/class-siunitpower.md +++ /dev/null @@ -1,108 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:UnitPower - - -#### Tree - - -* [si:CompoundUnit](class-sicompoundunit.md) - - * si:UnitPower - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#UnitPower - -#### Description - - - - -#### Inherits from (2) - -- [si:CompoundUnit](class-sicompoundunit.md) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:UnitPower a owl:Class ; - rdfs:label "unit power"@en, - "unité élevée à la puissance"@fr ; - rdfs:subClassOf si:CompoundUnit . - - -``` - - - - -#### Instances of si:UnitPower can have the following properties: - -##### From [si:UnitPower](class-siunitpower.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericExponent](prop-sihasnumericexponent.md) | UnitBase ^ NumericExponent |[xsd:int](class-xsdint.md)| -| [si:hasUnitBase](prop-sihasunitbase.md) | UnitBase ^ NumericExponent |[si:MeasurementUnit](class-simeasurementunit.md)| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/class-siunitproduct.md b/docs/vocabulary_viz/class-siunitproduct.md deleted file mode 100644 index 9ae9907..0000000 --- a/docs/vocabulary_viz/class-siunitproduct.md +++ /dev/null @@ -1,108 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Class si:UnitProduct - - -#### Tree - - -* [si:CompoundUnit](class-sicompoundunit.md) - - * si:UnitProduct - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#UnitProduct - -#### Description - - - - -#### Inherits from (2) - -- [si:CompoundUnit](class-sicompoundunit.md) - -- [si:MeasurementUnit](class-simeasurementunit.md) - - - - - - - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:UnitProduct a owl:Class ; - rdfs:label "unit product"@en, - "produit d'unités"@fr ; - rdfs:subClassOf si:CompoundUnit . - - -``` - - - - -#### Instances of si:UnitProduct can have the following properties: - -##### From [si:UnitProduct](class-siunitproduct.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasLeftUnitTerm](prop-sihasleftunitterm.md) | preserve order of multiplication |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:hasRightUnitTerm](prop-sihasrightunitterm.md) | preserve order of multiplication |[si:MeasurementUnit](class-simeasurementunit.md)| - - -##### From [si:MeasurementUnit](class-simeasurementunit.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasNumericFactor](prop-sihasnumericfactor.md) | |*owl:Thing*| -| [si:isUnitOfQtyKind](prop-siisunitofqtykind.md) | Linking a measurement unit to its quantity kind. |[si:QuantityKind](class-siquantitykind.md)| - - -##### From [owl:Thing](class-owlthing.md): - -| Property | Description | Expected Type | -|----------|-------------|---------------| -| [si:hasBase](prop-sihasbase.md) | Base ^ NumericExponent |*owl:Thing*| -| [si:hasQuantityTerm](prop-sihasquantityterm.md) | |*owl:Thing*| -| [si:hasSymbol](prop-sihassymbol.md) | Linking a measurement unit or prefix to a symbol. |[xsd:string](class-xsdstring.md)| -| [si:hasTerm](prop-sihasterm.md) | |*owl:Thing*| -| [si:hasUnitTerm](prop-sihasunitterm.md) | |*owl:Thing*| -| [si:inBaseSIUnits](prop-siinbasesiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| -| [si:inOtherSIUnits](prop-siinothersiunits.md) | |[si:MeasurementUnit](class-simeasurementunit.md)| - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/index.md b/docs/vocabulary_viz/index.md deleted file mode 100644 index 1013e41..0000000 --- a/docs/vocabulary_viz/index.md +++ /dev/null @@ -1,302 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - -# _Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - -#### Metadata - -**http://si-digital-framework.org/SI#** - - - -* dcterms:created - - - * 2023-12-22 - - -* dcterms:created - - - * 2024-02-07 - - -* rdf:type - - - * http://www.w3.org/2002/07/owl#Ontology - - -* rdfs:comment - - - * Ontology, part of the SI reference point, providing base concepts and their relations. - - -* skos:prefLabel - - - * SI Reference Point - Base Ontology - - - - - - -#### Metrics - -* Ontologies: **1** - -* Triples: **460** - -* Classes: **24** - -* Properties: **46** - -* Annotation Properties: **0** - -* Object Properties: **25** - -* Datatype Properties: **21** - -* Skos Concepts: **0** - -* Data Shapes: **0** - -* Data Sources: **1** - - - - - -#### Namespaces - -Prefix | URI | ----------|----------| -**brick**| [https://brickschema.org/schema/Brick#](https://brickschema.org/schema/Brick# "Open Url")| - **csvw**| [http://www.w3.org/ns/csvw#](http://www.w3.org/ns/csvw# "Open Url")| - **dc**| [http://purl.org/dc/elements/1.1/](http://purl.org/dc/elements/1.1/ "Open Url")| - **dcam**| [http://purl.org/dc/dcam/](http://purl.org/dc/dcam/ "Open Url")| - **dcat**| [http://www.w3.org/ns/dcat#](http://www.w3.org/ns/dcat# "Open Url")| - **dcmitype**| [http://purl.org/dc/dcmitype/](http://purl.org/dc/dcmitype/ "Open Url")| - **dcterms**| [http://purl.org/dc/terms/](http://purl.org/dc/terms/ "Open Url")| - **doap**| [http://usefulinc.com/ns/doap#](http://usefulinc.com/ns/doap# "Open Url")| - **foaf**| [http://xmlns.com/foaf/0.1/](http://xmlns.com/foaf/0.1/ "Open Url")| - **geo**| [http://www.opengis.net/ont/geosparql#](http://www.opengis.net/ont/geosparql# "Open Url")| - **odrl**| [http://www.w3.org/ns/odrl/2/](http://www.w3.org/ns/odrl/2/ "Open Url")| - **org**| [http://www.w3.org/ns/org#](http://www.w3.org/ns/org# "Open Url")| - **owl**| [http://www.w3.org/2002/07/owl#](http://www.w3.org/2002/07/owl# "Open Url")| - **prof**| [http://www.w3.org/ns/dx/prof/](http://www.w3.org/ns/dx/prof/ "Open Url")| - **prov**| [http://www.w3.org/ns/prov#](http://www.w3.org/ns/prov# "Open Url")| - **qb**| [http://purl.org/linked-data/cube#](http://purl.org/linked-data/cube# "Open Url")| - **rb**| [http://si-digital-framework.org/bodies#](http://si-digital-framework.org/bodies# "Open Url")| - **rdf**| [http://www.w3.org/1999/02/22-rdf-syntax-ns#](http://www.w3.org/1999/02/22-rdf-syntax-ns# "Open Url")| - **rdfs**| [http://www.w3.org/2000/01/rdf-schema#](http://www.w3.org/2000/01/rdf-schema# "Open Url")| - **schema**| [https://schema.org/](https://schema.org/ "Open Url")| - **sh**| [http://www.w3.org/ns/shacl#](http://www.w3.org/ns/shacl# "Open Url")| - **si**| [http://si-digital-framework.org/SI#](http://si-digital-framework.org/SI# "Open Url")| - **skos**| [http://www.w3.org/2004/02/skos/core#](http://www.w3.org/2004/02/skos/core# "Open Url")| - **sosa**| [http://www.w3.org/ns/sosa/](http://www.w3.org/ns/sosa/ "Open Url")| - **ssn**| [http://www.w3.org/ns/ssn/](http://www.w3.org/ns/ssn/ "Open Url")| - **time**| [http://www.w3.org/2006/time#](http://www.w3.org/2006/time# "Open Url")| - **vann**| [http://purl.org/vocab/vann/](http://purl.org/vocab/vann/ "Open Url")| - **void**| [http://rdfs.org/ns/void#](http://rdfs.org/ns/void# "Open Url")| - **wgs**| [https://www.w3.org/2003/01/geo/wgs84_pos#](https://www.w3.org/2003/01/geo/wgs84_pos# "Open Url")| - **xml**| [http://www.w3.org/XML/1998/namespace](http://www.w3.org/XML/1998/namespace "Open Url")| - **xsd**| [http://www.w3.org/2001/XMLSchema#](http://www.w3.org/2001/XMLSchema# "Open Url")| - - - - ---- - - -## Entities - - -#### Classes (24) - - -- [rb:Resolution](class-rbresolution.md "Open") - -- [si:CompoundQuantityKind](class-sicompoundquantitykind.md "Open") - -- [si:CompoundUnit](class-sicompoundunit.md "Open") - -- [si:Constant](class-siconstant.md "Open") - -- [si:DecisionTarget](class-sidecisiontarget.md "Open") - -- [si:Definition](class-sidefinition.md "Open") - -- [si:DefinitionNote](class-sidefinitionnote.md "Open") - -- [si:MeasurementUnit](class-simeasurementunit.md "Open") - -- [si:PrefixedUnit](class-siprefixedunit.md "Open") - -- [si:QuantityKind](class-siquantitykind.md "Open") - -- [si:QuantityKindPower](class-siquantitykindpower.md "Open") - -- [si:QuantityKindProduct](class-siquantitykindproduct.md "Open") - -- [si:QuantityPower](class-siquantitypower.md "Open") - -- [si:QuantityProduct](class-siquantityproduct.md "Open") - -- [si:SIBaseUnit](class-sisibaseunit.md "Open") - -- [si:SIDecision](class-sisidecision.md "Open") - -- [si:SIDecisionScope](class-sisidecisionscope.md "Open") - -- [si:SIDecisionTarget](class-sisidecisiontarget.md "Open") - -- [si:SIPrefix](class-sisiprefix.md "Open") - -- [si:SISpecialNamedUnit](class-sisispecialnamedunit.md "Open") - -- [si:UnitMultiple](class-siunitmultiple.md "Open") - -- [si:UnitPower](class-siunitpower.md "Open") - -- [si:UnitProduct](class-siunitproduct.md "Open") - -- [si:nonSIUnit](class-sinonsiunit.md "Open") - - - - - - - - - -#### Object Properties (25) - - -- [si:hasBase](prop-sihasbase.md "Open") - -- [si:hasConversionUnit](prop-sihasconversionunit.md "Open") - -- [si:hasDatatype](prop-sihasdatatype.md "Open") - -- [si:hasDefiningConstant](prop-sihasdefiningconstant.md "Open") - -- [si:hasDefiningResolution](prop-sihasdefiningresolution.md "Open") - -- [si:hasDefinition](prop-sihasdefinition.md "Open") - -- [si:hasDefinitionNote](prop-sihasdefinitionnote.md "Open") - -- [si:hasLeftQuantityTerm](prop-sihasleftquantityterm.md "Open") - -- [si:hasLeftUnitTerm](prop-sihasleftunitterm.md "Open") - -- [si:hasNextDefinition](prop-sihasnextdefinition.md "Open") - -- [si:hasNonPrefixedUnit](prop-sihasnonprefixedunit.md "Open") - -- [si:hasPrefix](prop-sihasprefix.md "Open") - -- [si:hasPreviousDefinition](prop-sihaspreviousdefinition.md "Open") - -- [si:hasQuantityBase](prop-sihasquantitybase.md "Open") - -- [si:hasQuantityTerm](prop-sihasquantityterm.md "Open") - -- [si:hasRightQuantityTerm](prop-sihasrightquantityterm.md "Open") - -- [si:hasRightUnitTerm](prop-sihasrightunitterm.md "Open") - -- [si:hasTerm](prop-sihasterm.md "Open") - -- [si:hasUnit](prop-sihasunit.md "Open") - -- [si:hasUnitBase](prop-sihasunitbase.md "Open") - -- [si:hasUnitTerm](prop-sihasunitterm.md "Open") - -- [si:inBaseSIUnits](prop-siinbasesiunits.md "Open") - -- [si:inOtherSIUnits](prop-siinothersiunits.md "Open") - -- [si:isDefiningResolutionOf](prop-siisdefiningresolutionof.md "Open") - -- [si:isUnitOfQtyKind](prop-siisunitofqtykind.md "Open") - - - - - - -#### Datatype Properties (21) - - -- [si:correspondingResolution](prop-sicorrespondingresolution.md "Open") - -- [si:hasConversionFactor](prop-sihasconversionfactor.md "Open") - -- [si:hasDecision](prop-sihasdecision.md "Open") - -- [si:hasDefiningEquation](prop-sihasdefiningequation.md "Open") - -- [si:hasDefiningText](prop-sihasdefiningtext.md "Open") - -- [si:hasEndValidity](prop-sihasendvalidity.md "Open") - -- [si:hasNoteIndex](prop-sihasnoteindex.md "Open") - -- [si:hasNoteText](prop-sihasnotetext.md "Open") - -- [si:hasNumericExponent](prop-sihasnumericexponent.md "Open") - -- [si:hasNumericFactor](prop-sihasnumericfactor.md "Open") - -- [si:hasScalingFactor](prop-sihasscalingfactor.md "Open") - -- [si:hasStartValidity](prop-sihasstartvalidity.md "Open") - -- [si:hasStatus](prop-sihasstatus.md "Open") - -- [si:hasSymbol](prop-sihassymbol.md "Open") - -- [si:hasTarget](prop-sihastarget.md "Open") - -- [si:hasUnitTypeAsString](prop-sihasunittypeasstring.md "Open") - -- [si:hasUpdatedDate](prop-sihasupdateddate.md "Open") - -- [si:hasValue](prop-sihasvalue.md "Open") - -- [si:hasValueAsString](prop-sihasvalueasstring.md "Open") - -- [si:isDecisionOf](prop-siisdecisionof.md "Open") - -- [si:isTargetOf](prop-siistargetof.md "Open") - - - - - - - - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sicorrespondingresolution.md b/docs/vocabulary_viz/prop-sicorrespondingresolution.md deleted file mode 100644 index 17e512d..0000000 --- a/docs/vocabulary_viz/prop-sicorrespondingresolution.md +++ /dev/null @@ -1,69 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:correspondingResolution - - -#### Tree - -* rdf:Property - * si:correspondingResolution - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#correspondingResolution - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:SIDecision](class-sisidecision.md) -=> _si:correspondingResolution_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:correspondingResolution a owl:DatatypeProperty ; - rdfs:label "has corresponding resolution"@en, - "a pour résolution correspondante"@fr ; - rdfs:domain si:SIDecision . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasbase.md b/docs/vocabulary_viz/prop-sihasbase.md deleted file mode 100644 index b2ca768..0000000 --- a/docs/vocabulary_viz/prop-sihasbase.md +++ /dev/null @@ -1,70 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasBase - - -#### Tree - -* rdf:Property - * si:hasBase - - - * [si:hasQuantityBase](prop-sihasquantitybase.md) - - * [si:hasUnitBase](prop-sihasunitbase.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#hasBase - -#### Description -

Base ^ NumericExponent

- - -#### Inherits from: -owl:Thing - - - -#### Usage -owl:Thing=> _si:hasBase_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasBase a owl:ObjectProperty ; - rdfs:label "has base"@en, - "a pour base"@fr ; - rdfs:comment "Base ^ NumericExponent" . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasconversionfactor.md b/docs/vocabulary_viz/prop-sihasconversionfactor.md deleted file mode 100644 index 6523345..0000000 --- a/docs/vocabulary_viz/prop-sihasconversionfactor.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasConversionFactor - - -#### Tree - -* rdf:Property - * si:hasConversionFactor - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasConversionFactor - -#### Description -

The conversion factor between non-SI unit and an SI Unit (number SI unit contained in 1 non SI unit)

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:nonSIUnit](class-sinonsiunit.md) -=> _si:hasConversionFactor_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasConversionFactor a owl:DatatypeProperty ; - rdfs:label "has a conversion factor"@en, - "a un facteur de conversion"@fr ; - rdfs:comment "The conversion factor between non-SI unit and an SI Unit (number SI unit contained in 1 non SI unit)"@en, - "Le facteur de conversion entre l'unité non SI et l'unité dans le SI (nombre d'unité de contenu dans l'unité non-SI)"@fr ; - rdfs:domain si:nonSIUnit ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasconversionunit.md b/docs/vocabulary_viz/prop-sihasconversionunit.md deleted file mode 100644 index 44b153d..0000000 --- a/docs/vocabulary_viz/prop-sihasconversionunit.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasConversionUnit - - -#### Tree - -* rdf:Property - * si:hasConversionUnit - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasConversionUnit - -#### Description -

SI unit to which the non SI unit can be converted

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:nonSIUnit](class-sinonsiunit.md) -=> _si:hasConversionUnit_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasConversionUnit a owl:ObjectProperty ; - rdfs:label "has conversion unit"@en, - "a une unité de conversion"@fr ; - rdfs:comment "SI unit to which the non SI unit can be converted"@en, - "Unité SI dans laquelle l'unité non SI peut être convertie"@fr ; - rdfs:domain si:nonSIUnit ; - rdfs:range si:MeasurementUnit . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdatatype.md b/docs/vocabulary_viz/prop-sihasdatatype.md deleted file mode 100644 index 5094e71..0000000 --- a/docs/vocabulary_viz/prop-sihasdatatype.md +++ /dev/null @@ -1,70 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDatatype - - -#### Tree - -* rdf:Property - * si:hasDatatype - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDatatype - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[na38f2c0b404d4008bcfb1c25887fbc6bb1](entity-na38f2c0b404d4008bcfb1c25887fbc6bb1.md) -=> _si:hasDatatype_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix si: . - -si:hasDatatype a owl:ObjectProperty ; - rdfs:label "has datatype"@en, - "a un type de données"@fr ; - rdfs:domain [ owl:oneOf ( si:Constant si:SIPrefix ) ] . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdecision.md b/docs/vocabulary_viz/prop-sihasdecision.md deleted file mode 100644 index f54a900..0000000 --- a/docs/vocabulary_viz/prop-sihasdecision.md +++ /dev/null @@ -1,71 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDecision - - -#### Tree - -* rdf:Property - * si:hasDecision - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDecision - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:SIDecisionTarget](class-sisidecisiontarget.md) -=> _si:hasDecision_ => [si:SIDecision](class-sisidecision.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasDecision a owl:DatatypeProperty ; - rdfs:label "has decision"@en, - "a pour décision"@fr ; - rdfs:domain si:SIDecisionTarget ; - rdfs:range si:SIDecision ; - owl:inverseOf si:isDecisionOf . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdefiningconstant.md b/docs/vocabulary_viz/prop-sihasdefiningconstant.md deleted file mode 100644 index c35cd91..0000000 --- a/docs/vocabulary_viz/prop-sihasdefiningconstant.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDefiningConstant - - -#### Tree - -* rdf:Property - * si:hasDefiningConstant - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDefiningConstant - -#### Description -

Linking a definition to its defining constant.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasDefiningConstant_ => [si:Constant](class-siconstant.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasDefiningConstant a owl:ObjectProperty ; - rdfs:label "has defining constant"@en, - "a une constante de définition"@fr ; - rdfs:comment "Linking a definition to its defining constant."@en, - "Associer une définition à sa constante de définition."@fr ; - rdfs:domain si:Definition ; - rdfs:range si:Constant . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdefiningequation.md b/docs/vocabulary_viz/prop-sihasdefiningequation.md deleted file mode 100644 index e4e18cc..0000000 --- a/docs/vocabulary_viz/prop-sihasdefiningequation.md +++ /dev/null @@ -1,73 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDefiningEquation - - -#### Tree - -* rdf:Property - * si:hasDefiningEquation - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDefiningEquation - -#### Description -

Linking a SI definition to its defining equation.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[na38f2c0b404d4008bcfb1c25887fbc6bb4](entity-na38f2c0b404d4008bcfb1c25887fbc6bb4.md) -=> _si:hasDefiningEquation_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix si: . - -si:hasDefiningEquation a owl:DatatypeProperty ; - rdfs:label "has defining equation"@en, - "a une équation de définition"@fr ; - rdfs:comment "Linking a SI definition to its defining equation."@en, - "Associer une définition SI à son équation de définition."@fr ; - rdfs:domain [ owl:oneOf ( si:Definition si:Constant ) ] ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdefiningresolution.md b/docs/vocabulary_viz/prop-sihasdefiningresolution.md deleted file mode 100644 index 3b1ed38..0000000 --- a/docs/vocabulary_viz/prop-sihasdefiningresolution.md +++ /dev/null @@ -1,74 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDefiningResolution - - -#### Tree - -* rdf:Property - * si:hasDefiningResolution - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDefiningResolution - -#### Description -

Linking an SI definition to the resolution by which it was adopted.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[na38f2c0b404d4008bcfb1c25887fbc6bb23](entity-na38f2c0b404d4008bcfb1c25887fbc6bb23.md) -=> _si:hasDefiningResolution_ => [rb:Resolution](class-rbresolution.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rb: . -@prefix rdf: . -@prefix rdfs: . -@prefix si: . - -si:hasDefiningResolution a owl:ObjectProperty ; - rdfs:label "has defining resolution"@en, - "a une résolution déterminante"@fr ; - rdfs:comment "Linking an SI definition to the resolution by which it was adopted."@en, - "Associer une définition SI à la résolution par laquelle elle a été adoptée."@fr ; - rdfs:domain [ owl:oneOf ( si:Definition si:Constant ) ] ; - rdfs:range rb:Resolution . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdefiningtext.md b/docs/vocabulary_viz/prop-sihasdefiningtext.md deleted file mode 100644 index 4680e5b..0000000 --- a/docs/vocabulary_viz/prop-sihasdefiningtext.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDefiningText - - -#### Tree - -* rdf:Property - * si:hasDefiningText - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDefiningText - -#### Description -

Linking an SI definition to the defining text.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasDefiningText_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasDefiningText a owl:DatatypeProperty ; - rdfs:label "has defining text"@en, - "a un texte de définition"@fr ; - rdfs:comment "Linking an SI definition to the defining text."@en, - "Associer une définition SI au texte de définition."@fr ; - rdfs:domain si:Definition ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdefinition.md b/docs/vocabulary_viz/prop-sihasdefinition.md deleted file mode 100644 index a5e6dc1..0000000 --- a/docs/vocabulary_viz/prop-sihasdefinition.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDefinition - - -#### Tree - -* rdf:Property - * si:hasDefinition - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDefinition - -#### Description -

Linking an SI base unit to its definition.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:SIBaseUnit](class-sisibaseunit.md) -=> _si:hasDefinition_ => [si:Definition](class-sidefinition.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasDefinition a owl:ObjectProperty ; - rdfs:label "has definition"@en, - "a une définition"@fr ; - rdfs:comment "Linking an SI base unit to its definition."@en, - "Associer une unité de base SI à sa définition."@fr ; - rdfs:domain si:SIBaseUnit ; - rdfs:range si:Definition . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasdefinitionnote.md b/docs/vocabulary_viz/prop-sihasdefinitionnote.md deleted file mode 100644 index 0a63694..0000000 --- a/docs/vocabulary_viz/prop-sihasdefinitionnote.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasDefinitionNote - - -#### Tree - -* rdf:Property - * si:hasDefinitionNote - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasDefinitionNote - -#### Description -

Linking an SI definition to a definition note.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasDefinitionNote_ => [si:DefinitionNote](class-sidefinitionnote.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasDefinitionNote a owl:ObjectProperty ; - rdfs:label "has definition note"@en, - "a une note de définition"@fr ; - rdfs:comment "Linking an SI definition to a definition note."@en, - "Associer une définition SI à une note de définition."@fr ; - rdfs:domain si:Definition ; - rdfs:range si:DefinitionNote . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasendvalidity.md b/docs/vocabulary_viz/prop-sihasendvalidity.md deleted file mode 100644 index aa12776..0000000 --- a/docs/vocabulary_viz/prop-sihasendvalidity.md +++ /dev/null @@ -1,73 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasEndValidity - - -#### Tree - -* rdf:Property - * si:hasEndValidity - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasEndValidity - -#### Description -

Linking an SI definition to its ending validity date.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasEndValidity_ => [xsd:date](class-xsddate.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:hasEndValidity a owl:DatatypeProperty ; - rdfs:label "has end validity"@en, - "a fin de validité"@fr ; - rdfs:comment "Linking an SI definition to its ending validity date."@en, - "Associer une définition SI à sa date de fin de validité."@fr ; - rdfs:domain si:Definition ; - rdfs:range xsd:date . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasleftquantityterm.md b/docs/vocabulary_viz/prop-sihasleftquantityterm.md deleted file mode 100644 index 73614ba..0000000 --- a/docs/vocabulary_viz/prop-sihasleftquantityterm.md +++ /dev/null @@ -1,78 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasLeftQuantityTerm - - -#### Tree - - -* [si:hasQuantityTerm](prop-sihasquantityterm.md) - - * si:hasLeftQuantityTerm - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasLeftQuantityTerm - -#### Description -

preserve order of multiplication

- - -#### Inherits from (2) - -- [si:hasQuantityTerm](prop-sihasquantityterm.md) - -- [si:hasTerm](prop-sihasterm.md) - - - - -#### Usage - - -[si:QuantityProduct](class-siquantityproduct.md) -=> _si:hasLeftQuantityTerm_ => [si:QuantityKind](class-siquantitykind.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasLeftQuantityTerm a owl:ObjectProperty ; - rdfs:label "has left quantity term"@en, - "a pour terme de gauche cette quantité"@fr ; - rdfs:comment "preserve order of multiplication" ; - rdfs:domain si:QuantityProduct ; - rdfs:range si:QuantityKind ; - rdfs:subPropertyOf si:hasQuantityTerm . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasleftunitterm.md b/docs/vocabulary_viz/prop-sihasleftunitterm.md deleted file mode 100644 index ffda933..0000000 --- a/docs/vocabulary_viz/prop-sihasleftunitterm.md +++ /dev/null @@ -1,78 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasLeftUnitTerm - - -#### Tree - - -* [si:hasUnitTerm](prop-sihasunitterm.md) - - * si:hasLeftUnitTerm - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasLeftUnitTerm - -#### Description -

preserve order of multiplication

- - -#### Inherits from (2) - -- [si:hasUnitTerm](prop-sihasunitterm.md) - -- [si:hasTerm](prop-sihasterm.md) - - - - -#### Usage - - -[si:UnitProduct](class-siunitproduct.md) -=> _si:hasLeftUnitTerm_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasLeftUnitTerm a owl:ObjectProperty ; - rdfs:label "has left unit term"@en, - "a pour terme de gauche cette unité"@fr ; - rdfs:comment "preserve order of multiplication" ; - rdfs:domain si:UnitProduct ; - rdfs:range si:MeasurementUnit ; - rdfs:subPropertyOf si:hasUnitTerm . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasnextdefinition.md b/docs/vocabulary_viz/prop-sihasnextdefinition.md deleted file mode 100644 index f6743bd..0000000 --- a/docs/vocabulary_viz/prop-sihasnextdefinition.md +++ /dev/null @@ -1,73 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasNextDefinition - - -#### Tree - -* rdf:Property - * si:hasNextDefinition - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasNextDefinition - -#### Description -

Linking an SI definition version to the next version.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasNextDefinition_ => [si:Definition](class-sidefinition.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasNextDefinition a owl:ObjectProperty ; - rdfs:label "has next definition"@en, - "a la prochaine définition"@fr ; - rdfs:comment "Linking an SI definition version to the next version."@en, - "Associer une version de définition SI à la version suivante."@fr ; - rdfs:domain si:Definition ; - rdfs:range si:Definition ; - owl:inverseOf si:hasPreviousDefinition . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasnonprefixedunit.md b/docs/vocabulary_viz/prop-sihasnonprefixedunit.md deleted file mode 100644 index 2c91215..0000000 --- a/docs/vocabulary_viz/prop-sihasnonprefixedunit.md +++ /dev/null @@ -1,71 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasNonPrefixedUnit - - -#### Tree - -* rdf:Property - * si:hasNonPrefixedUnit - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasNonPrefixedUnit - -#### Description -

<Prefix> and <NonPrefixedUnit> form a <PrefixedUnit>

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:PrefixedUnit](class-siprefixedunit.md) -=> _si:hasNonPrefixedUnit_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasNonPrefixedUnit a owl:ObjectProperty ; - rdfs:label "has non prefixed unit"@en, - "a pour unité sans préfixe"@fr ; - rdfs:comment " and form a " ; - rdfs:domain si:PrefixedUnit ; - rdfs:range si:MeasurementUnit . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasnoteindex.md b/docs/vocabulary_viz/prop-sihasnoteindex.md deleted file mode 100644 index f5412ab..0000000 --- a/docs/vocabulary_viz/prop-sihasnoteindex.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasNoteIndex - - -#### Tree - -* rdf:Property - * si:hasNoteIndex - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasNoteIndex - -#### Description -

The text of a definition note.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:DefinitionNote](class-sidefinitionnote.md) -=> _si:hasNoteIndex_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasNoteIndex a owl:DatatypeProperty ; - rdfs:label "has note index"@en, - "a un texte de note"@fr ; - rdfs:comment "The text of a definition note."@en, - "Le texte d'une note de définition."@fr ; - rdfs:domain si:DefinitionNote ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasnotetext.md b/docs/vocabulary_viz/prop-sihasnotetext.md deleted file mode 100644 index 4dfa44a..0000000 --- a/docs/vocabulary_viz/prop-sihasnotetext.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasNoteText - - -#### Tree - -* rdf:Property - * si:hasNoteText - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasNoteText - -#### Description -

The order index of a definition note.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:DefinitionNote](class-sidefinitionnote.md) -=> _si:hasNoteText_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasNoteText a owl:DatatypeProperty ; - rdfs:label "has note text"@en, - "a un index de notes"@fr ; - rdfs:comment "The order index of a definition note."@en, - "Index d'ordre d'une note de définition."@fr ; - rdfs:domain si:DefinitionNote ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasnumericexponent.md b/docs/vocabulary_viz/prop-sihasnumericexponent.md deleted file mode 100644 index 883c693..0000000 --- a/docs/vocabulary_viz/prop-sihasnumericexponent.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasNumericExponent - - -#### Tree - -* rdf:Property - * si:hasNumericExponent - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasNumericExponent - -#### Description -

UnitBase ^ NumericExponent

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:UnitPower](class-siunitpower.md) -=> _si:hasNumericExponent_ => [xsd:int](class-xsdint.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:hasNumericExponent a owl:DatatypeProperty ; - rdfs:label "has numeric exponent"@en, - "a pour exposant ce nombre"@fr ; - rdfs:comment "UnitBase ^ NumericExponent" ; - rdfs:domain si:UnitPower ; - rdfs:range xsd:int . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasnumericfactor.md b/docs/vocabulary_viz/prop-sihasnumericfactor.md deleted file mode 100644 index e677bb6..0000000 --- a/docs/vocabulary_viz/prop-sihasnumericfactor.md +++ /dev/null @@ -1,74 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasNumericFactor - - -#### Tree - - -* [si:hasTerm](prop-sihasterm.md) - - * si:hasNumericFactor - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasNumericFactor - -#### Description - - - -#### Inherits from (1) - -- [si:hasTerm](prop-sihasterm.md) - - - - -#### Usage - - -[si:MeasurementUnit](class-simeasurementunit.md) -=> _si:hasNumericFactor_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasNumericFactor a owl:DatatypeProperty ; - rdfs:label "has numeric factor"@en, - "a pour facteur ce nombre"@fr ; - rdfs:domain si:MeasurementUnit ; - rdfs:subPropertyOf si:hasTerm . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasprefix.md b/docs/vocabulary_viz/prop-sihasprefix.md deleted file mode 100644 index 0c41f16..0000000 --- a/docs/vocabulary_viz/prop-sihasprefix.md +++ /dev/null @@ -1,71 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasPrefix - - -#### Tree - -* rdf:Property - * si:hasPrefix - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasPrefix - -#### Description -

<Prefix> and <NonPrefixedUnit> form a <PrefixedUnit>

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:PrefixedUnit](class-siprefixedunit.md) -=> _si:hasPrefix_ => [si:SIPrefix](class-sisiprefix.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasPrefix a owl:ObjectProperty ; - rdfs:label "has prefix"@en, - "a pour préfixe"@fr ; - rdfs:comment " and form a " ; - rdfs:domain si:PrefixedUnit ; - rdfs:range si:SIPrefix . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihaspreviousdefinition.md b/docs/vocabulary_viz/prop-sihaspreviousdefinition.md deleted file mode 100644 index 623e928..0000000 --- a/docs/vocabulary_viz/prop-sihaspreviousdefinition.md +++ /dev/null @@ -1,73 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasPreviousDefinition - - -#### Tree - -* rdf:Property - * si:hasPreviousDefinition - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasPreviousDefinition - -#### Description -

Linking an SI definition version to the previous version.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasPreviousDefinition_ => [si:Definition](class-sidefinition.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasPreviousDefinition a owl:ObjectProperty ; - rdfs:label "has previous definition"@en, - "a la définition précédente"@fr ; - rdfs:comment "Linking an SI definition version to the previous version."@en, - "Associer une version de définition SI à la version précédente."@fr ; - rdfs:domain si:Definition ; - rdfs:range si:Definition ; - owl:inverseOf si:hasNextDefinition . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasquantitybase.md b/docs/vocabulary_viz/prop-sihasquantitybase.md deleted file mode 100644 index b408e26..0000000 --- a/docs/vocabulary_viz/prop-sihasquantitybase.md +++ /dev/null @@ -1,76 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasQuantityBase - - -#### Tree - - -* [si:hasBase](prop-sihasbase.md) - - * si:hasQuantityBase - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasQuantityBase - -#### Description -

QuantityBase ^ NumericExponent

- - -#### Inherits from (1) - -- [si:hasBase](prop-sihasbase.md) - - - - -#### Usage - - -[si:QuantityPower](class-siquantitypower.md) -=> _si:hasQuantityBase_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasQuantityBase a owl:ObjectProperty ; - rdfs:label "has quantity base"@en, - "a pour base cette quantité"@fr ; - rdfs:comment "QuantityBase ^ NumericExponent" ; - rdfs:domain si:QuantityPower ; - rdfs:range si:MeasurementUnit ; - rdfs:subPropertyOf si:hasBase . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasquantityterm.md b/docs/vocabulary_viz/prop-sihasquantityterm.md deleted file mode 100644 index 95e327a..0000000 --- a/docs/vocabulary_viz/prop-sihasquantityterm.md +++ /dev/null @@ -1,74 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasQuantityTerm - - -#### Tree - - -* [si:hasTerm](prop-sihasterm.md) - - * si:hasQuantityTerm - - - * [si:hasLeftQuantityTerm](prop-sihasleftquantityterm.md) - - * [si:hasRightQuantityTerm](prop-sihasrightquantityterm.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#hasQuantityTerm - -#### Description - - - -#### Inherits from (1) - -- [si:hasTerm](prop-sihasterm.md) - - - - -#### Usage -owl:Thing=> _si:hasQuantityTerm_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasQuantityTerm a owl:ObjectProperty ; - rdfs:label "has quantity term"@en, - "a pour terme cette quantité"@fr ; - rdfs:subPropertyOf si:hasTerm . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasrightquantityterm.md b/docs/vocabulary_viz/prop-sihasrightquantityterm.md deleted file mode 100644 index 0afbda2..0000000 --- a/docs/vocabulary_viz/prop-sihasrightquantityterm.md +++ /dev/null @@ -1,78 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasRightQuantityTerm - - -#### Tree - - -* [si:hasQuantityTerm](prop-sihasquantityterm.md) - - * si:hasRightQuantityTerm - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasRightQuantityTerm - -#### Description -

preserve order of multiplication

- - -#### Inherits from (2) - -- [si:hasQuantityTerm](prop-sihasquantityterm.md) - -- [si:hasTerm](prop-sihasterm.md) - - - - -#### Usage - - -[si:QuantityProduct](class-siquantityproduct.md) -=> _si:hasRightQuantityTerm_ => [si:QuantityKind](class-siquantitykind.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasRightQuantityTerm a owl:ObjectProperty ; - rdfs:label "has right quantity term"@en, - "a pour terme de droite cette quantité"@fr ; - rdfs:comment "preserve order of multiplication" ; - rdfs:domain si:QuantityProduct ; - rdfs:range si:QuantityKind ; - rdfs:subPropertyOf si:hasQuantityTerm . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasrightunitterm.md b/docs/vocabulary_viz/prop-sihasrightunitterm.md deleted file mode 100644 index 1ba9ce4..0000000 --- a/docs/vocabulary_viz/prop-sihasrightunitterm.md +++ /dev/null @@ -1,78 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasRightUnitTerm - - -#### Tree - - -* [si:hasUnitTerm](prop-sihasunitterm.md) - - * si:hasRightUnitTerm - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasRightUnitTerm - -#### Description -

preserve order of multiplication

- - -#### Inherits from (2) - -- [si:hasUnitTerm](prop-sihasunitterm.md) - -- [si:hasTerm](prop-sihasterm.md) - - - - -#### Usage - - -[si:UnitProduct](class-siunitproduct.md) -=> _si:hasRightUnitTerm_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasRightUnitTerm a owl:ObjectProperty ; - rdfs:label "has right unit term"@en, - "a pour terme de droite cette unité"@fr ; - rdfs:comment "preserve order of multiplication" ; - rdfs:domain si:UnitProduct ; - rdfs:range si:MeasurementUnit ; - rdfs:subPropertyOf si:hasUnitTerm . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasscalingfactor.md b/docs/vocabulary_viz/prop-sihasscalingfactor.md deleted file mode 100644 index d890c09..0000000 --- a/docs/vocabulary_viz/prop-sihasscalingfactor.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasScalingFactor - - -#### Tree - -* rdf:Property - * si:hasScalingFactor - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasScalingFactor - -#### Description -

Linking an SI prefix to its scaling factor.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:SIPrefix](class-sisiprefix.md) -=> _si:hasScalingFactor_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasScalingFactor a owl:DatatypeProperty ; - rdfs:label "has scaling factor"@en, - "a un facteur d'échelle"@fr ; - rdfs:comment "Linking an SI prefix to its scaling factor."@en, - "Associer un préfixe SI à son facteur d'échelle."@fr ; - rdfs:domain si:SIPrefix ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasstartvalidity.md b/docs/vocabulary_viz/prop-sihasstartvalidity.md deleted file mode 100644 index 29eeaf1..0000000 --- a/docs/vocabulary_viz/prop-sihasstartvalidity.md +++ /dev/null @@ -1,73 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasStartValidity - - -#### Tree - -* rdf:Property - * si:hasStartValidity - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasStartValidity - -#### Description -

Linking an SI definition to its starting validity date.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasStartValidity_ => [xsd:date](class-xsddate.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:hasStartValidity a owl:DatatypeProperty ; - rdfs:label "has start validity"@en, - "a une validité de départ"@fr ; - rdfs:comment "Linking an SI definition to its starting validity date."@en, - "Associer une définition SI à sa date de début de validité."@fr ; - rdfs:domain si:Definition ; - rdfs:range xsd:date . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasstatus.md b/docs/vocabulary_viz/prop-sihasstatus.md deleted file mode 100644 index c9f5ad8..0000000 --- a/docs/vocabulary_viz/prop-sihasstatus.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasStatus - - -#### Tree - -* rdf:Property - * si:hasStatus - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasStatus - -#### Description -

Linking a SI definition to its status.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Definition](class-sidefinition.md) -=> _si:hasStatus_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasStatus a owl:DatatypeProperty ; - rdfs:label "has status"@en, - "a l'état"@fr ; - rdfs:comment "Linking a SI definition to its status."@en, - "Associer une définition SI à son état."@fr ; - rdfs:domain si:Definition ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihassymbol.md b/docs/vocabulary_viz/prop-sihassymbol.md deleted file mode 100644 index d367e03..0000000 --- a/docs/vocabulary_viz/prop-sihassymbol.md +++ /dev/null @@ -1,69 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasSymbol - - -#### Tree - -* rdf:Property - * si:hasSymbol - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasSymbol - -#### Description -

Linking a measurement unit or prefix to a symbol.

- - -#### Inherits from: -owl:Thing - - - -#### Usage -owl:Thing=> _si:hasSymbol_ => [xsd:string](class-xsdstring.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:hasSymbol a owl:DatatypeProperty ; - rdfs:label "has symbol"@en, - "a pour symbole"@fr ; - rdfs:comment "Linking a measurement unit or prefix to a symbol."@en, - "Associer une unité de mesure ou un préfixe à un symbole."@fr ; - rdfs:range xsd:string . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihastarget.md b/docs/vocabulary_viz/prop-sihastarget.md deleted file mode 100644 index eff5c2d..0000000 --- a/docs/vocabulary_viz/prop-sihastarget.md +++ /dev/null @@ -1,71 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasTarget - - -#### Tree - -* rdf:Property - * si:hasTarget - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasTarget - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:SIDecisionScope](class-sisidecisionscope.md) -=> _si:hasTarget_ => [si:SIDecisionTarget](class-sisidecisiontarget.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasTarget a owl:DatatypeProperty ; - rdfs:label "has target"@en, - "a pour cible"@fr ; - rdfs:domain si:SIDecisionScope ; - rdfs:range si:SIDecisionTarget ; - owl:inverseOf si:isTargetOf . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasterm.md b/docs/vocabulary_viz/prop-sihasterm.md deleted file mode 100644 index 22f6373..0000000 --- a/docs/vocabulary_viz/prop-sihasterm.md +++ /dev/null @@ -1,71 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasTerm - - -#### Tree - -* rdf:Property - * si:hasTerm - - - * [si:hasNumericFactor](prop-sihasnumericfactor.md) - - * [si:hasQuantityTerm](prop-sihasquantityterm.md) - - * [si:hasUnitTerm](prop-sihasunitterm.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#hasTerm - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage -owl:Thing=> _si:hasTerm_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasTerm a owl:ObjectProperty ; - rdfs:label "has a term"@en, - "a pour terme"@fr . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasunit.md b/docs/vocabulary_viz/prop-sihasunit.md deleted file mode 100644 index ae79b21..0000000 --- a/docs/vocabulary_viz/prop-sihasunit.md +++ /dev/null @@ -1,74 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasUnit - - -#### Tree - -* rdf:Property - * si:hasUnit - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasUnit - -#### Description -

Linking a measurement unit to an object.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[na38f2c0b404d4008bcfb1c25887fbc6bb7](entity-na38f2c0b404d4008bcfb1c25887fbc6bb7.md) -=> _si:hasUnit_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix si: . - -si:hasUnit a owl:ObjectProperty ; - rdfs:label "has unit"@en, - "a l'unité"@fr ; - rdfs:comment "Linking a measurement unit to an object."@en, - "Associer une unité de mesure à un objet."@fr ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( si:Constant si:QuantityKind ) ] ; - rdfs:range si:MeasurementUnit . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasunitbase.md b/docs/vocabulary_viz/prop-sihasunitbase.md deleted file mode 100644 index 77c4253..0000000 --- a/docs/vocabulary_viz/prop-sihasunitbase.md +++ /dev/null @@ -1,76 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasUnitBase - - -#### Tree - - -* [si:hasBase](prop-sihasbase.md) - - * si:hasUnitBase - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasUnitBase - -#### Description -

UnitBase ^ NumericExponent

- - -#### Inherits from (1) - -- [si:hasBase](prop-sihasbase.md) - - - - -#### Usage - - -[si:UnitPower](class-siunitpower.md) -=> _si:hasUnitBase_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasUnitBase a owl:ObjectProperty ; - rdfs:label "has unit base"@en, - "a pour base cette unité"@fr ; - rdfs:comment "UnitBase ^ NumericExponent" ; - rdfs:domain si:UnitPower ; - rdfs:range si:MeasurementUnit ; - rdfs:subPropertyOf si:hasBase . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasunitterm.md b/docs/vocabulary_viz/prop-sihasunitterm.md deleted file mode 100644 index 183a07b..0000000 --- a/docs/vocabulary_viz/prop-sihasunitterm.md +++ /dev/null @@ -1,74 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasUnitTerm - - -#### Tree - - -* [si:hasTerm](prop-sihasterm.md) - - * si:hasUnitTerm - - - * [si:hasLeftUnitTerm](prop-sihasleftunitterm.md) - - * [si:hasRightUnitTerm](prop-sihasrightunitterm.md) - - - - - - - -#### URI -http://si-digital-framework.org/SI#hasUnitTerm - -#### Description - - - -#### Inherits from (1) - -- [si:hasTerm](prop-sihasterm.md) - - - - -#### Usage -owl:Thing=> _si:hasUnitTerm_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasUnitTerm a owl:ObjectProperty ; - rdfs:label "has unit term"@en, - "a cette unité pour terme"@fr ; - rdfs:subPropertyOf si:hasTerm . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasunittypeasstring.md b/docs/vocabulary_viz/prop-sihasunittypeasstring.md deleted file mode 100644 index f0354f3..0000000 --- a/docs/vocabulary_viz/prop-sihasunittypeasstring.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasUnitTypeAsString - - -#### Tree - -* rdf:Property - * si:hasUnitTypeAsString - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasUnitTypeAsString - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[na38f2c0b404d4008bcfb1c25887fbc6bb10](entity-na38f2c0b404d4008bcfb1c25887fbc6bb10.md) -=> _si:hasUnitTypeAsString_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix si: . - -si:hasUnitTypeAsString a owl:DatatypeProperty ; - rdfs:label "unit type as a string"@en, - "type d'unité sous forme de chaîne"@fr ; - rdfs:domain [ a owl:Class ; - owl:unionOf ( si:SIBaseUnit si:SISpecialNamedUnit si:nonSIUnit si:MeasurementUnit ) ] ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasupdateddate.md b/docs/vocabulary_viz/prop-sihasupdateddate.md deleted file mode 100644 index b1825b4..0000000 --- a/docs/vocabulary_viz/prop-sihasupdateddate.md +++ /dev/null @@ -1,71 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasUpdatedDate - - -#### Tree - -* rdf:Property - * si:hasUpdatedDate - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasUpdatedDate - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Constant](class-siconstant.md) -=> _si:hasUpdatedDate_ => [xsd:date](class-xsddate.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:hasUpdatedDate a owl:DatatypeProperty ; - rdfs:label "has updated date"@en, - "a mis à jour la date"@fr ; - rdfs:domain si:Constant ; - rdfs:range xsd:date . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasvalue.md b/docs/vocabulary_viz/prop-sihasvalue.md deleted file mode 100644 index 5aeb748..0000000 --- a/docs/vocabulary_viz/prop-sihasvalue.md +++ /dev/null @@ -1,70 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasValue - - -#### Tree - -* rdf:Property - * si:hasValue - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasValue - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Constant](class-siconstant.md) -=> _si:hasValue_ => [rdfs:Literal](class-rdfsliteral.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:hasValue a owl:DatatypeProperty ; - rdfs:label "has value"@en, - "a de la valeur"@fr ; - rdfs:domain si:Constant ; - rdfs:range rdfs:Literal . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-sihasvalueasstring.md b/docs/vocabulary_viz/prop-sihasvalueasstring.md deleted file mode 100644 index 171aefa..0000000 --- a/docs/vocabulary_viz/prop-sihasvalueasstring.md +++ /dev/null @@ -1,71 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:hasValueAsString - - -#### Tree - -* rdf:Property - * si:hasValueAsString - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#hasValueAsString - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:Constant](class-siconstant.md) -=> _si:hasValueAsString_ => [xsd:string](class-xsdstring.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . -@prefix xsd: . - -si:hasValueAsString a owl:DatatypeProperty ; - rdfs:label "has value as a string"@en, - "a une valeur sous forme de chaîne"@fr ; - rdfs:domain si:Constant ; - rdfs:range xsd:string . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-siinbasesiunits.md b/docs/vocabulary_viz/prop-siinbasesiunits.md deleted file mode 100644 index 6b62ba4..0000000 --- a/docs/vocabulary_viz/prop-siinbasesiunits.md +++ /dev/null @@ -1,66 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:inBaseSIUnits - - -#### Tree - -* rdf:Property - * si:inBaseSIUnits - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#inBaseSIUnits - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage -owl:Thing=> _si:inBaseSIUnits_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:inBaseSIUnits a owl:ObjectProperty ; - rdfs:label "can be expressed in base SI units as"@en, - "peut être exprimé en unités SI de base sous la forme"@fr ; - rdfs:range si:MeasurementUnit . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-siinothersiunits.md b/docs/vocabulary_viz/prop-siinothersiunits.md deleted file mode 100644 index 3f14da1..0000000 --- a/docs/vocabulary_viz/prop-siinothersiunits.md +++ /dev/null @@ -1,66 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:inOtherSIUnits - - -#### Tree - -* rdf:Property - * si:inOtherSIUnits - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#inOtherSIUnits - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage -owl:Thing=> _si:inOtherSIUnits_ => [si:MeasurementUnit](class-simeasurementunit.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:inOtherSIUnits a owl:ObjectProperty ; - rdfs:label "can be expressed in other SI units as"@en, - "peut être exprimé dans d’autres unités SI sous la forme"@fr ; - rdfs:range si:MeasurementUnit . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-siisdecisionof.md b/docs/vocabulary_viz/prop-siisdecisionof.md deleted file mode 100644 index 46b8946..0000000 --- a/docs/vocabulary_viz/prop-siisdecisionof.md +++ /dev/null @@ -1,70 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:isDecisionOf - - -#### Tree - -* rdf:Property - * si:isDecisionOf - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#isDecisionOf - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:SIDecision](class-sisidecision.md) -=> _si:isDecisionOf_ => [si:SIDecisionTarget](class-sisidecisiontarget.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:isDecisionOf a owl:DatatypeProperty ; - rdfs:label "is decision of"@en, - "est la décision de"@fr ; - rdfs:domain si:SIDecision ; - rdfs:range si:SIDecisionTarget . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-siisdefiningresolutionof.md b/docs/vocabulary_viz/prop-siisdefiningresolutionof.md deleted file mode 100644 index f647db3..0000000 --- a/docs/vocabulary_viz/prop-siisdefiningresolutionof.md +++ /dev/null @@ -1,77 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:isDefiningResolutionOf - - -#### Tree - -* rdf:Property - * si:isDefiningResolutionOf - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#isDefiningResolutionOf - -#### Description -

Linking a resolution to the SI definition it defined.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[rb:Resolution](class-rbresolution.md) && - -[na38f2c0b404d4008bcfb1c25887fbc6bb15](entity-na38f2c0b404d4008bcfb1c25887fbc6bb15.md) -=> _si:isDefiningResolutionOf_ => owl:Thing - -#### Implementation -```rdf -@prefix owl: . -@prefix rb: . -@prefix rdf: . -@prefix rdfs: . -@prefix si: . - -si:isDefiningResolutionOf a owl:ObjectProperty ; - rdfs:label "is defining resolution of"@en, - "définit la résolution de"@fr ; - rdfs:comment "Linking a resolution to the SI definition it defined."@en, - "Associer une résolution à la définition SI qu'elle a définie."@fr ; - rdfs:domain rb:Resolution ; - rdfs:range [ owl:oneOf ( si:Definition si:Constant ) ] ; - owl:inverseOf si:hasDefiningResolution . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-siistargetof.md b/docs/vocabulary_viz/prop-siistargetof.md deleted file mode 100644 index b8fcf5a..0000000 --- a/docs/vocabulary_viz/prop-siistargetof.md +++ /dev/null @@ -1,70 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:isTargetOf - - -#### Tree - -* rdf:Property - * si:isTargetOf - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#isTargetOf - -#### Description - - - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:DecisionTarget](class-sidecisiontarget.md) -=> _si:isTargetOf_ => [si:SIDecisionScope](class-sisidecisionscope.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:isTargetOf a owl:DatatypeProperty ; - rdfs:label "is target of"@en, - "est la cible de"@fr ; - rdfs:domain si:DecisionTarget ; - rdfs:range si:SIDecisionScope . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file diff --git a/docs/vocabulary_viz/prop-siisunitofqtykind.md b/docs/vocabulary_viz/prop-siisunitofqtykind.md deleted file mode 100644 index e4c7de9..0000000 --- a/docs/vocabulary_viz/prop-siisunitofqtykind.md +++ /dev/null @@ -1,72 +0,0 @@ -_Vocabulary: [http://si-digital-framework.org/SI#](index.md)_ - ---- - - - - - - - - -## Property si:isUnitOfQtyKind - - -#### Tree - -* rdf:Property - * si:isUnitOfQtyKind - - - - - -*NOTE* this is a leaf node. - - -#### URI -http://si-digital-framework.org/SI#isUnitOfQtyKind - -#### Description -

Linking a measurement unit to its quantity kind.

- - -#### Inherits from: -owl:Thing - - - -#### Usage - - -[si:MeasurementUnit](class-simeasurementunit.md) -=> _si:isUnitOfQtyKind_ => [si:QuantityKind](class-siquantitykind.md) - -#### Implementation -```rdf -@prefix owl: . -@prefix rdfs: . -@prefix si: . - -si:isUnitOfQtyKind a owl:ObjectProperty ; - rdfs:label "is unit of quantity kind"@en, - "est une unité de quantité"@fr ; - rdfs:comment "Linking a measurement unit to its quantity kind."@en, - "Associer une unité de mesure à son type de quantité."@fr ; - rdfs:domain si:MeasurementUnit ; - rdfs:range si:QuantityKind . - - -``` - - - - - - - - - ---- - -_Documentation automatically generated on Wed, 07 Feb 2024 16:02:36 with [Ontospy](http://lambdamusic.github.io/Ontospy/ "Open") (v2.1.1)_ \ No newline at end of file