Showing
5 changed files
with
39 additions
and
1 deletions
| ... | @@ -22,7 +22,7 @@ | ... | @@ -22,7 +22,7 @@ |
| 22 | 22 | ||
| 23 | <http://www.reportinghub.no/ep/mpr/spin/1.1/lib> | 23 | <http://www.reportinghub.no/ep/mpr/spin/1.1/lib> |
| 24 | rdf:type owl:Ontology ; | 24 | rdf:type owl:Ontology ; |
| 25 | - owl:imports <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/production-equipment> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production> , <http://www.epim.no/schemas/mprml/1> , <http://spinrdf.org/spin> ; | 25 | + owl:imports <http://spinrdf.org/spin> , <http://www.epim.no/schemas/mprml/1> , <http://www.reportinghub.no/ep/schema/1.0/production> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-equipment> , <http://www.reportinghub.no/ep/spin/1.1/lib> ; |
| 26 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 26 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 27 | 27 | ||
| 28 | ep-mpr-spin-lib:Function | 28 | ep-mpr-spin-lib:Function |
| ... | @@ -80,6 +80,28 @@ ep-mpr-spin-lib:buildPersonRoleTypeURI | ... | @@ -80,6 +80,28 @@ ep-mpr-spin-lib:buildPersonRoleTypeURI |
| 80 | ]) | 80 | ]) |
| 81 | ] . | 81 | ] . |
| 82 | 82 | ||
| 83 | +ep-mpr-spin-lib:buildPrecipitationTypeURI | ||
| 84 | + rdf:type spin:Function ; | ||
| 85 | + rdfs:label "build PrecipitationType URI"^^xsd:string ; | ||
| 86 | + rdfs:subClassOf ep-mpr-spin-lib:Function ; | ||
| 87 | + spin:body | ||
| 88 | + [ rdf:type sp:Select ; | ||
| 89 | + sp:resultVariables ([ sp:varName "uri"^^xsd:string | ||
| 90 | + ]) ; | ||
| 91 | + sp:where ([ rdf:type sp:Bind ; | ||
| 92 | + sp:expression | ||
| 93 | + [ rdf:type ep-spin-lib:buildURI ; | ||
| 94 | + sp:arg1 "https://www.reportinghub.no/ep/data/precipitationType/" ; | ||
| 95 | + sp:arg2 [ rdf:type ep-spin-lib:normalizeString ; | ||
| 96 | + sp:arg1 spin:_arg1 | ||
| 97 | + ] | ||
| 98 | + ] ; | ||
| 99 | + sp:variable | ||
| 100 | + [ sp:varName "uri"^^xsd:string | ||
| 101 | + ] | ||
| 102 | + ]) | ||
| 103 | + ] . | ||
| 104 | + | ||
| 83 | ep-mpr-spin-lib:buildProductionOperationMethodTypeURI | 105 | ep-mpr-spin-lib:buildProductionOperationMethodTypeURI |
| 84 | rdf:type spin:Function ; | 106 | rdf:type spin:Function ; |
| 85 | rdfs:label "build ProductionOperationMethodType URI"^^xsd:string ; | 107 | rdfs:label "build ProductionOperationMethodType URI"^^xsd:string ; | ... | ... |
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
| 1 | +# baseURI: null | ||
| 2 | + | ||
| 3 | +@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . | ||
| 4 | +@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> . | ||
| 5 | +@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> . | ||
| 6 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
| 7 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
| 8 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
| 9 | +@prefix visual: <http://topbraid.org/visual#> . | ||
| 10 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
| 11 | + | ||
| 12 | +[] rdf:type inference:Configuration ; | ||
| 13 | + composite:child | ||
| 14 | + [ rdf:type <http://spinrdf.org/spin#TopSPIN> ; | ||
| 15 | + composite:index "0"^^xsd:int | ||
| 16 | + ] . |
-
Please register or login to post a comment