diff --git a/documentation/diagrams/Overview.png b/documentation/diagrams/Overview.png index 10f6d3b3fe4a99f981a38ff179b202cd95e9b74b..196dd76afd0731face116bc8654ddc7244df109f 100644 Binary files a/documentation/diagrams/Overview.png and b/documentation/diagrams/Overview.png differ diff --git a/documentation/diagrams/Property.png b/documentation/diagrams/Property.png index e7b5eea1c4f491b21266f6020f7dc76ce72a0d93..13f5a83b372c9dd0d673ada471456c9ff726ec2a 100644 Binary files a/documentation/diagrams/Property.png and b/documentation/diagrams/Property.png differ diff --git a/documentation/diagrams/overview.drawio b/documentation/diagrams/overview.drawio index 018a3a82619b5f031aad5adb69b4a4a9d2ef5cc2..1cc9ae79a495988de0ca187ccd24b86493f60551 100644 --- a/documentation/diagrams/overview.drawio +++ b/documentation/diagrams/overview.drawio @@ -1,16 +1,16 @@ - + - + - + - + @@ -2891,15 +2891,15 @@ - + - + - + @@ -2909,6 +2909,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/example1.ttl b/examples/example1.ttl deleted file mode 100644 index c2328b903c73d03c8f8481a675c4300cf0a0b010..0000000000000000000000000000000000000000 --- a/examples/example1.ttl +++ /dev/null @@ -1,23 +0,0 @@ -@prefix dcterms: . -@prefix dctype: . -@prefix ex: . -@prefix geo: . -@prefix geosp: . -@prefix om: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix s4mari: . -@prefix saref: . -@prefix sosa: . -@prefix ssn: . -@prefix time: . -@prefix xsd: . - - a dctype:Dataset ; - dcterms:license ; - dcterms:conformsTo ; - dcterms:conformsTo ; - dcterms:title "SAREF4MARI example number 1."@en ; - dcterms:description "SAREF4MARI example number 1."@en . - diff --git a/examples/s4mari-sensor-example.ttl b/examples/s4mari-sensor-example.ttl new file mode 100644 index 0000000000000000000000000000000000000000..bcf71806e7d4e6683147b545364dd44c20994d7b --- /dev/null +++ b/examples/s4mari-sensor-example.ttl @@ -0,0 +1,68 @@ +@prefix dcterms: . +@prefix dctype: . +@prefix ex: . +@prefix geo: . +@prefix geosp: . +@prefix om: . +@prefix owl: . +@prefix rdf: . +@prefix rdfs: . +@prefix s4mari: . +@prefix saref: . +@prefix sosa: . +@prefix ssn: . +@prefix time: . +@prefix xsd: . +@base . + + a dctype:Dataset ; + dcterms:license ; + dcterms:conformsTo ; + dcterms:conformsTo ; + dcterms:title "SAREF4MARI sensor example."@en ; + dcterms:description "SAREF4MARI sensor example."@en ; + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports . + + + +# Represents a sensor on a mooring rig off-shore from Austevoll, Norway. +### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Austevoll_Temperature_Sensor_1063 +ex:Austevoll_Temperature_Sensor_1063 rdf:type owl:NamedIndividual , + , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:hasValue ex:Temperature_Measurement_20241128 + ] . + + +# Represents an observation made by the Austevoll sensor at a specific time. +### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Temperature_Measurement_20241128 +ex:Temperature_Measurement_20241128 rdf:type owl:NamedIndividual , + , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:hasValue ex:Water_Temperature_20241128 + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:hasValue "2024-11-28T12:00:00Z"^^xsd:dateTime + ] . + +# Represents a specific observation result as part of the observation made by the Austevoll sensor. +# This result indicates a specific value and a specific unit it is measured in. +### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Water_Temperature_20241128 +ex:Water_Temperature_20241128 rdf:type owl:NamedIndividual , + [ rdf:type owl:Class ; + owl:oneOf ( + ) + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ; + owl:hasValue "3.455"^^xsd:double + ] . \ No newline at end of file diff --git a/ontology/saref4mari.ttl b/ontology/saref4mari.ttl index e0e81c57d1875ddaab07781c025f8b5441408bd5..eb2a0219bcdfd280bb078d84fbd7aef8b894c357 100644 --- a/ontology/saref4mari.ttl +++ b/ontology/saref4mari.ttl @@ -15,13 +15,18 @@ @prefix saref: . @prefix wgs84: . @prefix s4mari: . +@prefix s4watr: . @prefix dcterms: . +@prefix ssnsystems: . @base . rdf:type owl:Ontology ; owl:versionIRI ; - owl:imports ; - dcterms:contributor ; + owl:imports ssnsystems: , + , + ; + dcterms:contributor , + ; dcterms:created "2024-07-10"^^xsd:date ; dcterms:creator ; dcterms:description "SAREF4MARI is an extension of SAREF for the maritime domain."@en , @@ -29,7 +34,7 @@ dcterms:license ; dcterms:publisher ; dcterms:source ; - dcterms:title "SAREF4MARI: an extension of SAREF for the martime domain"@en ; + dcterms:title "SAREF4MARI: an extension of SAREF for the maritime domain"@en ; vann:preferredNamespacePrefix "s4mari" ; vann:preferredNamespaceUri "https://saref.etsi.org/saref4mari/" ; owl:versionInfo "v1.1.1" . @@ -86,6 +91,10 @@ vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty . vann:preferredNamespaceUri rdf:type owl:AnnotationProperty . +### http://www.w3.org/2002/07/owl#qualifiedCardinality +owl:qualifiedCardinality rdf:type owl:AnnotationProperty . + + ################################################################# # Datatypes ################################################################# @@ -106,6 +115,7 @@ xsd:time rdf:type rdfs:Datatype . s4mari:carriesVehicle rdf:type owl:ObjectProperty ; rdfs:domain s4mari:Vehicle ; rdfs:range s4mari:Vehicle ; + rdfs:label "carriesVehicle"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vehicle_VehicleCarriesVehicle_Vehicles.html" . @@ -113,6 +123,7 @@ s4mari:carriesVehicle rdf:type owl:ObjectProperty ; s4mari:generatedBy rdf:type owl:ObjectProperty ; rdfs:domain s4mari:UniqueIdentifier ; rdfs:range s4mari:Organisation ; + rdfs:label "generatedBy"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/UniqueIdentifier_GeneratedBy.html" . @@ -120,6 +131,7 @@ s4mari:generatedBy rdf:type owl:ObjectProperty ; s4mari:hasAvailabilityPeriod rdf:type owl:ObjectProperty ; rdfs:domain s4mari:OperationalAsset ; rdfs:range s4mari:Period ; + rdfs:label "hasAvailabilityPeriod"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/OperationalAsset_AvailabilityPeriod.html" . @@ -127,6 +139,7 @@ s4mari:hasAvailabilityPeriod rdf:type owl:ObjectProperty ; s4mari:hasCargo rdf:type owl:ObjectProperty ; rdfs:domain s4mari:Vehicle ; rdfs:range s4mari:Cargo ; + rdfs:label "hasCargo"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vehicle_VehicleCargo_Cargo.html" . @@ -134,6 +147,7 @@ s4mari:hasCargo rdf:type owl:ObjectProperty ; s4mari:hasCargoUnit rdf:type owl:ObjectProperty ; rdfs:domain s4mari:Cargo ; rdfs:range s4mari:Cargo ; + rdfs:label "hasCargoUnit"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Cargo_CargoCargoUnit_ContainedCargoUnit.html" . @@ -141,6 +155,7 @@ s4mari:hasCargoUnit rdf:type owl:ObjectProperty ; s4mari:hasCorrespondentAsset rdf:type owl:ObjectProperty ; rdfs:domain s4mari:Vehicle ; rdfs:range s4mari:OperationalAsset ; + rdfs:label "hasCorrespondentAsset"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vehicle_VehicleAsset_CorrespondentAsset.html" . @@ -148,6 +163,7 @@ s4mari:hasCorrespondentAsset rdf:type owl:ObjectProperty ; s4mari:hasCorrespondentVehicle rdf:type owl:ObjectProperty ; rdfs:domain s4mari:OperationalAsset ; rdfs:range s4mari:Vehicle ; + rdfs:label "hasCorrespondentVehicle"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/OperationalAsset_VehicleAsset_CorrespondentVehicle.html" . @@ -155,6 +171,7 @@ s4mari:hasCorrespondentVehicle rdf:type owl:ObjectProperty ; s4mari:hasCreator rdf:type owl:ObjectProperty ; rdfs:domain s4mari:Metadata ; rdfs:range s4mari:Agent ; + rdfs:label "hasCreator"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_Creator.html" . @@ -169,6 +186,7 @@ s4mari:hasLocation rdf:type owl:ObjectProperty ; ) ] ; rdfs:range s4mari:Location ; + rdfs:label "hasLocation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Agent_AgentLocation_Location.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Event_EventLocation_Location.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_MetocLocation_Location.html" , @@ -185,6 +203,7 @@ s4mari:hasMetadata rdf:type owl:ObjectProperty ; ) ] ; rdfs:range s4mari:Metadata ; + rdfs:label "hasMetadata"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Document_Metadata.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Object_Metadata.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Risk_Metadata.html" . @@ -198,6 +217,7 @@ s4mari:hasOccurencePeriod rdf:type owl:ObjectProperty ; ) ] ; rdfs:range s4mari:Period ; + rdfs:label "hasOccurencePeriod"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Event_OccurrencePeriod.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Risk_OccurrencePeriod.html" . @@ -206,6 +226,7 @@ s4mari:hasOccurencePeriod rdf:type owl:ObjectProperty ; s4mari:hasPublisher rdf:type owl:ObjectProperty ; rdfs:domain s4mari:Metadata ; rdfs:range s4mari:Agent ; + rdfs:label "hasPublisher"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_Publisher.html" . @@ -213,6 +234,7 @@ s4mari:hasPublisher rdf:type owl:ObjectProperty ; s4mari:hasReferencePeriod rdf:type owl:ObjectProperty ; rdfs:domain s4mari:MeteoOceanoCondition ; rdfs:range s4mari:Period ; + rdfs:label "hasReferencePeriod"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_ReferencePeriod.html" . @@ -225,6 +247,7 @@ s4mari:hasUniqueIdentifier rdf:type owl:ObjectProperty ; ) ] ; rdfs:range s4mari:UniqueIdentifier ; + rdfs:label "hasUniqueIdentifier"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Document_Identifier.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Object_Identifier.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Risk_Identifier.html" . @@ -234,6 +257,7 @@ s4mari:hasUniqueIdentifier rdf:type owl:ObjectProperty ; s4mari:hasValidityPeriod rdf:type owl:ObjectProperty ; rdfs:domain s4mari:Metadata ; rdfs:range s4mari:Period ; + rdfs:label "hasValidityPeriod"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_ValidityPeriod.html" . @@ -241,6 +265,7 @@ s4mari:hasValidityPeriod rdf:type owl:ObjectProperty ; s4mari:isCorrelatedWith rdf:type owl:ObjectProperty ; rdfs:domain s4mari:UniqueIdentifier ; rdfs:range s4mari:UniqueIdentifier ; + rdfs:label "isCorrelatedWith"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/UniqueIdentifier_CorrelatedWith_correlatedWith.html" . @@ -253,6 +278,7 @@ s4mari:isDescribedBy rdf:type owl:ObjectProperty ; ) ] ; rdfs:range s4mari:Document ; + rdfs:label "isDescribedBy"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Event_EventDescribedByDocument_Document.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Object_ObjectDescribedByDocument_Document.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Risk_RiskDescribedByDocument_Document.html" . @@ -270,6 +296,7 @@ s4mari:refersTo rdf:type owl:ObjectProperty ; s4mari:Location ) ] ; + rdfs:label "refersTo"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Agent_refersToDocument_Document.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Document_refersToLocation_Location.html" . @@ -282,6 +309,7 @@ s4mari:refersTo rdf:type owl:ObjectProperty ; s4mari:generatedOn rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:UniqueIdentifier ; rdfs:range xsd:dateTime ; + rdfs:label "generatedOn"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/UniqueIdentifier_GeneratedIn.html" . @@ -289,6 +317,7 @@ s4mari:generatedOn rdf:type owl:DatatypeProperty ; s4mari:hasAbstract rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range rdfs:Literal ; + rdfs:label "hasAbstract"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_Abstract.html" . @@ -300,6 +329,7 @@ s4mari:hasAlternativeName rdf:type owl:DatatypeProperty ; ) ] ; rdfs:range rdfs:Literal ; + rdfs:label "hasAlternativeName"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Organization_AlternativeName.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_AlternativeName.html" . @@ -308,6 +338,7 @@ s4mari:hasAlternativeName rdf:type owl:DatatypeProperty ; s4mari:hasArrangement rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Vessel ; rdfs:range rdfs:Literal ; + rdfs:label "hasArrangement"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_Arrangement.html" . @@ -315,6 +346,7 @@ s4mari:hasArrangement rdf:type owl:DatatypeProperty ; s4mari:hasBirthDate rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Person ; rdfs:range xsd:date ; + rdfs:label "hasBirthDate"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_BirthDate.html" . @@ -322,6 +354,7 @@ s4mari:hasBirthDate rdf:type owl:DatatypeProperty ; s4mari:hasBirthName rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Person ; rdfs:range rdfs:Literal ; + rdfs:label "hasBirthName"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_BirthName.html" . @@ -329,6 +362,7 @@ s4mari:hasBirthName rdf:type owl:DatatypeProperty ; s4mari:hasCallSign rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Vessel ; rdfs:range rdfs:Literal ; + rdfs:label "hasCallSign"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_CallSign.html" . @@ -336,6 +370,7 @@ s4mari:hasCallSign rdf:type owl:DatatypeProperty ; s4mari:hasComments rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range rdfs:Literal ; + rdfs:label "hasComments"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_Comments.html" . @@ -343,6 +378,7 @@ s4mari:hasComments rdf:type owl:DatatypeProperty ; s4mari:hasContactInformation rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Agent ; rdfs:range rdfs:Literal ; + rdfs:label "hasContactInformation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Agent_ContactInformation.html" . @@ -350,6 +386,7 @@ s4mari:hasContactInformation rdf:type owl:DatatypeProperty ; s4mari:hasContainerMarksAndNumber rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:ContainmentUnit ; rdfs:range rdfs:Literal ; + rdfs:label "hasContainerMarksAndNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/ContainmentUnit_ContainerMarksAndNumber.html" . @@ -357,6 +394,7 @@ s4mari:hasContainerMarksAndNumber rdf:type owl:DatatypeProperty ; s4mari:hasCreationDate rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range xsd:dateTime ; + rdfs:label "hasCreationDate"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_CreationDate.html" . @@ -364,6 +402,7 @@ s4mari:hasCreationDate rdf:type owl:DatatypeProperty ; s4mari:hasDeathDate rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Person ; rdfs:range xsd:dateTime ; + rdfs:label "hasDeathDate"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_DateOfDeath.html" . @@ -371,6 +410,7 @@ s4mari:hasDeathDate rdf:type owl:DatatypeProperty ; s4mari:hasDescription rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range rdfs:Literal ; + rdfs:label "hasDescription"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_Description.html" . @@ -378,6 +418,7 @@ s4mari:hasDescription rdf:type owl:DatatypeProperty ; s4mari:hasDesignation rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range rdfs:Literal ; + rdfs:label "hasDesignation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_Designation.html" . @@ -385,6 +426,7 @@ s4mari:hasDesignation rdf:type owl:DatatypeProperty ; s4mari:hasDuration rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Period ; rdfs:range xsd:duration ; + rdfs:label "hasDuration"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Period_Duration.html" . @@ -392,6 +434,7 @@ s4mari:hasDuration rdf:type owl:DatatypeProperty ; s4mari:hasEndDate rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Period ; rdfs:range xsd:date ; + rdfs:label "hasEndDate"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Period_EndDate.html" . @@ -399,6 +442,7 @@ s4mari:hasEndDate rdf:type owl:DatatypeProperty ; s4mari:hasEndTime rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Period ; rdfs:range xsd:time ; + rdfs:label "hasEndTime"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Period_EndTime.html" . @@ -406,6 +450,7 @@ s4mari:hasEndTime rdf:type owl:DatatypeProperty ; s4mari:hasExternalMarkings rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:MaritimeObject ; rdfs:range rdfs:Literal ; + rdfs:label "hasExternalMarkings"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Object_ExternalMarkings.html" . @@ -413,6 +458,7 @@ s4mari:hasExternalMarkings rdf:type owl:DatatypeProperty ; s4mari:hasFamilyName rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Person ; rdfs:range rdfs:Literal ; + rdfs:label "hasFamilyName"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_FamilyName.html" . @@ -420,6 +466,7 @@ s4mari:hasFamilyName rdf:type owl:DatatypeProperty ; s4mari:hasFileSchema rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range xsd:anyURI ; + rdfs:label "hasFileSchema"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_FileSchema.html" . @@ -427,6 +474,7 @@ s4mari:hasFileSchema rdf:type owl:DatatypeProperty ; s4mari:hasFileURI rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range xsd:anyURI ; + rdfs:label "hasFileURI"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_FileURI.html" . @@ -434,6 +482,7 @@ s4mari:hasFileURI rdf:type owl:DatatypeProperty ; s4mari:hasFullName rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Person ; rdfs:range rdfs:Literal ; + rdfs:label "hasFullName"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_FullName.html" . @@ -441,6 +490,7 @@ s4mari:hasFullName rdf:type owl:DatatypeProperty ; s4mari:hasGeographicIdentifier rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:NamedLocation ; rdfs:range xsd:anyURI ; + rdfs:label "hasGeographicIdentifier"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/NamedLocation_GeographicIdentifier.html" . @@ -448,6 +498,7 @@ s4mari:hasGeographicIdentifier rdf:type owl:DatatypeProperty ; s4mari:hasGivenName rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Person ; rdfs:range rdfs:Literal ; + rdfs:label "hasGivenName"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_GivenName.html" . @@ -455,6 +506,7 @@ s4mari:hasGivenName rdf:type owl:DatatypeProperty ; s4mari:hasINMARSATNumber rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Vessel ; rdfs:range rdfs:Literal ; + rdfs:label "hasINMARSATNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_INMARSATNumber.html" . @@ -462,6 +514,7 @@ s4mari:hasINMARSATNumber rdf:type owl:DatatypeProperty ; s4mari:hasIRNumber rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Vessel ; rdfs:range rdfs:Literal ; + rdfs:label "hasIRNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_IRNumber.html" . @@ -469,6 +522,7 @@ s4mari:hasIRNumber rdf:type owl:DatatypeProperty ; s4mari:hasIdentificationNumber rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Organisation ; rdfs:range rdfs:Literal ; + rdfs:label "hasIdentificationNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Organization_IdentificationNumber.html" . @@ -476,6 +530,7 @@ s4mari:hasIdentificationNumber rdf:type owl:DatatypeProperty ; s4mari:hasInstructions rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Incident ; rdfs:range rdfs:Literal ; + rdfs:label "hasInstructions"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Incident_Instructions.html" . @@ -483,6 +538,7 @@ s4mari:hasInstructions rdf:type owl:DatatypeProperty ; s4mari:hasLanguage rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range rdfs:Literal ; + rdfs:label "hasLanguage"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_Language.html" . @@ -490,6 +546,7 @@ s4mari:hasLanguage rdf:type owl:DatatypeProperty ; s4mari:hasLegalName rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Organisation ; rdfs:range rdfs:Literal ; + rdfs:label "hasLegalName"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Organization_LegalName.html" . @@ -497,6 +554,7 @@ s4mari:hasLegalName rdf:type owl:DatatypeProperty ; s4mari:hasLocationCode rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:PortLocation ; rdfs:range rdfs:Literal ; + rdfs:label "hasLocationCode"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/PortLocation_LocationCode.html" . @@ -504,6 +562,7 @@ s4mari:hasLocationCode rdf:type owl:DatatypeProperty ; s4mari:hasLocationOnBoardContainer rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:ContainmentUnit ; rdfs:range rdfs:Literal ; + rdfs:label "hasLocationOnBoardContainer"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/ContainmentUnit_LocationOnBoardContainer.html" . @@ -511,6 +570,7 @@ s4mari:hasLocationOnBoardContainer rdf:type owl:DatatypeProperty ; s4mari:hasLocationOnBoardGoods rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:ContainmentUnit ; rdfs:range rdfs:Literal ; + rdfs:label "hasLocationOnBoardGoods"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/ContainmentUnit_LocationOnBoardGoods.html" . @@ -522,6 +582,7 @@ s4mari:hasNationality rdf:type owl:DatatypeProperty ; ) ] ; rdfs:range rdfs:Literal ; + rdfs:label "hasNationality"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Agent_Nationality.html" , "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vehicle_Nationality.html" . @@ -530,6 +591,7 @@ s4mari:hasNationality rdf:type owl:DatatypeProperty ; s4mari:hasPatronymicName rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Person ; rdfs:range rdfs:Literal ; + rdfs:label "hasPatronymicName"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Person_PatronymicName.html" . @@ -537,6 +599,7 @@ s4mari:hasPatronymicName rdf:type owl:DatatypeProperty ; s4mari:hasPortFacilityNumber rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:PortFacilityLocation ; rdfs:range rdfs:Literal ; + rdfs:label "hasPortFacilityNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/PortFacilityLocation_PortFacilityNumber.html" . @@ -544,6 +607,7 @@ s4mari:hasPortFacilityNumber rdf:type owl:DatatypeProperty ; s4mari:hasPublicationDate rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Metadata ; rdfs:range xsd:dateTime ; + rdfs:label "hasPublicationDate"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Metadata_PublicationDate.html" . @@ -551,6 +615,7 @@ s4mari:hasPublicationDate rdf:type owl:DatatypeProperty ; s4mari:hasPurpose rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Movement ; rdfs:range rdfs:Literal ; + rdfs:label "hasPurpose"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Movement_Purpose.html" . @@ -558,6 +623,7 @@ s4mari:hasPurpose rdf:type owl:DatatypeProperty ; s4mari:hasReadinessState rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:OperationalAsset ; rdfs:range xsd:time ; + rdfs:label "hasReadinessState"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/OperationalAsset_ReadinessState.html" . @@ -565,6 +631,7 @@ s4mari:hasReadinessState rdf:type owl:DatatypeProperty ; s4mari:hasRegionalIdentification rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Vessel ; rdfs:range rdfs:Literal ; + rdfs:label "hasRegionalIdentification"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_RegionalIdentification.html" . @@ -572,6 +639,7 @@ s4mari:hasRegionalIdentification rdf:type owl:DatatypeProperty ; s4mari:hasRegistryNumber rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Vessel ; rdfs:range rdfs:Literal ; + rdfs:label "hasRegistryNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_RegistryNumber.html" . @@ -579,6 +647,7 @@ s4mari:hasRegistryNumber rdf:type owl:DatatypeProperty ; s4mari:hasSpecies rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Catch ; rdfs:range rdfs:Literal ; + rdfs:label "hasSpecies"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_Species.html" . @@ -586,6 +655,7 @@ s4mari:hasSpecies rdf:type owl:DatatypeProperty ; s4mari:hasStartDate rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Period ; rdfs:range xsd:date ; + rdfs:label "hasStartDate"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Period_StartDate.html" . @@ -593,6 +663,7 @@ s4mari:hasStartDate rdf:type owl:DatatypeProperty ; s4mari:hasStartTime rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Period ; rdfs:range xsd:time ; + rdfs:label "hasStartTime"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Period_StartTime.html" . @@ -600,6 +671,7 @@ s4mari:hasStartTime rdf:type owl:DatatypeProperty ; s4mari:hasSubject rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Document ; rdfs:range rdfs:Literal ; + rdfs:label "hasSubject"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Document_Subject.html" . @@ -607,6 +679,7 @@ s4mari:hasSubject rdf:type owl:DatatypeProperty ; s4mari:hasUNDG rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:ContainmentUnit ; rdfs:range rdfs:Literal ; + rdfs:label "hasUNDG"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/ContainmentUnit_UNDG.html" . @@ -614,6 +687,7 @@ s4mari:hasUNDG rdf:type owl:DatatypeProperty ; s4mari:hasUUID rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:UniqueIdentifier ; rdfs:range rdfs:Literal ; + rdfs:label "hasUUID"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/UniqueIdentifier_UUID.html" . @@ -621,6 +695,7 @@ s4mari:hasUUID rdf:type owl:DatatypeProperty ; s4mari:hasUVI rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Vessel ; rdfs:range rdfs:Literal ; + rdfs:label "hasUVI"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_UVI.html" . @@ -628,6 +703,7 @@ s4mari:hasUVI rdf:type owl:DatatypeProperty ; s4mari:hasVersion rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Document ; rdfs:range rdfs:Literal ; + rdfs:label "hasVersion"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Document_Version.html" . @@ -635,6 +711,7 @@ s4mari:hasVersion rdf:type owl:DatatypeProperty ; s4mari:hasVoyageNumber rdf:type owl:DatatypeProperty ; rdfs:domain s4mari:Movement ; rdfs:range rdfs:Literal ; + rdfs:label "hasVoyageNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Movement_VoyageNumber.html" . @@ -646,6 +723,38 @@ s4mari:hasVoyageNumber rdf:type owl:DatatypeProperty ; geo:Feature rdf:type owl:Class . +### http://www.w3.org/ns/ssn/systems/Accuracy +ssnsystems:Accuracy rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange xsd:double + ] . + + +### http://www.w3.org/ns/ssn/systems/MeasurementRange +ssnsystems:MeasurementRange rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange xsd:double + ] . + + +### http://www.w3.org/ns/ssn/systems/Precision +ssnsystems:Precision rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange xsd:double + ] . + + +### http://www.w3.org/ns/ssn/systems/Resolution +ssnsystems:Resolution rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange xsd:double + ] . + + ### http://xmlns.com/foaf/0.1/Agent foaf:Agent rdf:type owl:Class . @@ -654,26 +763,53 @@ foaf:Agent rdf:type owl:Class . foaf:Person rdf:type owl:Class . +### https://saref.etsi.org/core/Sensor +saref:Sensor rdfs:subClassOf [ rdf:type owl:Restriction ; + owl:onProperty ssnsystems:hasSystemProperty ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onClass ssnsystems:Accuracy + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ssnsystems:hasSystemProperty ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onClass ssnsystems:MeasurementRange + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ssnsystems:hasSystemProperty ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onClass ssnsystems:Precision + ] , + [ rdf:type owl:Restriction ; + owl:onProperty ssnsystems:hasSystemProperty ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onClass ssnsystems:Resolution + ] . + + ### https://saref.etsi.org/saref4mari/AISDevice s4mari:AISDevice rdf:type owl:Class ; - rdfs:subClassOf saref:Sensor . + rdfs:subClassOf saref:Sensor ; + rdfs:label "AISDevice"@en . ### https://saref.etsi.org/saref4mari/Action s4mari:Action rdf:type owl:Class ; rdfs:subClassOf s4mari:Event ; + rdfs:label "Action"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Action.html#action" . ### https://saref.etsi.org/saref4mari/ActionKind s4mari:ActionKind rdf:type owl:Class ; rdfs:subClassOf s4mari:EventKind ; + rdfs:label "ActionKind"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/enum/Action_ActionType.html" . ### https://saref.etsi.org/saref4mari/ActionState s4mari:ActionState rdf:type owl:Class ; rdfs:subClassOf s4mari:EventState ; + rdfs:label "ActionState"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/enum/Action_ActionStatusType.html" . @@ -681,139 +817,162 @@ s4mari:ActionState rdf:type owl:Class ; s4mari:Agent rdf:type owl:Class ; rdfs:subClassOf foaf:Agent , saref:FeatureOfInterest ; + rdfs:label "Agent"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Agent.html#agent" . ### https://saref.etsi.org/saref4mari/AgentKind s4mari:AgentKind rdf:type owl:Class ; - rdfs:subClassOf saref:FeatureKind . + rdfs:subClassOf saref:FeatureKind ; + rdfs:label "AgentKind"@en . ### https://saref.etsi.org/saref4mari/AgentState s4mari:AgentState rdf:type owl:Class ; - rdfs:subClassOf saref:State . + rdfs:subClassOf saref:State ; + rdfs:label "AgentState"@en . ### https://saref.etsi.org/saref4mari/Aircraft s4mari:Aircraft rdf:type owl:Class ; - rdfs:subClassOf s4mari:Vehicle ; - rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Object.html#aircraft" . + rdfs:subClassOf s4mari:Vehicle . ### https://saref.etsi.org/saref4mari/Anomaly s4mari:Anomaly rdf:type owl:Class ; rdfs:subClassOf s4mari:Event ; + rdfs:label "Anomaly"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Anomaly.html#anomaly" . ### https://saref.etsi.org/saref4mari/AnomalyKind s4mari:AnomalyKind rdf:type owl:Class ; rdfs:subClassOf s4mari:EventKind ; + rdfs:label "AnomalyKind"@en ; rdfs:seeAlso . ### https://saref.etsi.org/saref4mari/Camera s4mari:Camera rdf:type owl:Class ; - rdfs:subClassOf saref:Sensor . + rdfs:subClassOf saref:Sensor ; + rdfs:label "Camera"@en . ### https://saref.etsi.org/saref4mari/Cargo s4mari:Cargo rdf:type owl:Class ; rdfs:subClassOf s4mari:CargoUnit ; + rdfs:label "Cargo"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Cargo.html#cargo" . ### https://saref.etsi.org/saref4mari/CargoKind s4mari:CargoKind rdf:type owl:Class ; rdfs:subClassOf s4mari:CargoUnitKind ; + rdfs:label "CargoKind"@en ; rdfs:seeAlso . ### https://saref.etsi.org/saref4mari/CargoUnit s4mari:CargoUnit rdf:type owl:Class ; rdfs:subClassOf s4mari:MaritimeObject ; + rdfs:label "CargoUnit"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Cargo.html#cargounit" . ### https://saref.etsi.org/saref4mari/CargoUnitKind s4mari:CargoUnitKind rdf:type owl:Class ; - rdfs:subClassOf s4mari:MaritimeObjectKind . + rdfs:subClassOf s4mari:MaritimeObjectKind ; + rdfs:label "CargoUnitKind"@en . ### https://saref.etsi.org/saref4mari/CargoUnitProperty s4mari:CargoUnitProperty rdf:type owl:Class ; - rdfs:subClassOf s4mari:MaritimeObjectProperty . + rdfs:subClassOf s4mari:MaritimeObjectProperty ; + rdfs:label "CargoUnitProperty"@en . ### https://saref.etsi.org/saref4mari/Catch s4mari:Catch rdf:type owl:Class ; rdfs:subClassOf s4mari:CargoUnit ; + rdfs:label "Catch"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Cargo.html#catch" . ### https://saref.etsi.org/saref4mari/CatchProperty s4mari:CatchProperty rdf:type owl:Class ; - rdfs:subClassOf s4mari:CargoUnitProperty . + rdfs:subClassOf s4mari:CargoUnitProperty ; + rdfs:label "CatchProperty"@en . ### https://saref.etsi.org/saref4mari/ContainmentUnit s4mari:ContainmentUnit rdf:type owl:Class ; rdfs:subClassOf s4mari:CargoUnit ; + rdfs:label "ContainmentUnit"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Cargo.html#containmentunit" . ### https://saref.etsi.org/saref4mari/ContainmentUnitProperty s4mari:ContainmentUnitProperty rdf:type owl:Class ; - rdfs:subClassOf s4mari:CargoUnitProperty . + rdfs:subClassOf s4mari:CargoUnitProperty ; + rdfs:label "ContainmentUnitProperty"@en . ### https://saref.etsi.org/saref4mari/Document s4mari:Document rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; rdfs:comment "For title, use rdfs:label :: rdfs:Literal (https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Document_Title.html)." ; + rdfs:label "Document"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Document.html#document" . ### https://saref.etsi.org/saref4mari/Event s4mari:Event rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; + rdfs:label "Event"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Event.html#event" . ### https://saref.etsi.org/saref4mari/EventKind s4mari:EventKind rdf:type owl:Class ; - rdfs:subClassOf saref:FeatureKind . + rdfs:subClassOf saref:FeatureKind ; + rdfs:label "EventKind"@en . ### https://saref.etsi.org/saref4mari/EventProperty s4mari:EventProperty rdf:type owl:Class ; - rdfs:subClassOf saref:Property . + rdfs:subClassOf saref:Property ; + rdfs:label "EventProperty"@en . ### https://saref.etsi.org/saref4mari/EventState s4mari:EventState rdf:type owl:Class ; - rdfs:subClassOf saref:State . + rdfs:subClassOf saref:State ; + rdfs:label "EventState"@en . ### https://saref.etsi.org/saref4mari/Incident s4mari:Incident rdf:type owl:Class ; rdfs:subClassOf s4mari:Event ; + rdfs:label "Incident"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Incident.html#incident" . ### https://saref.etsi.org/saref4mari/IncidentProperty s4mari:IncidentProperty rdf:type owl:Class ; - rdfs:subClassOf s4mari:EventProperty . + rdfs:subClassOf s4mari:EventProperty ; + rdfs:label "IncidentProperty"@en . ### https://saref.etsi.org/saref4mari/IncidentState s4mari:IncidentState rdf:type owl:Class ; - rdfs:subClassOf s4mari:EventState . + rdfs:subClassOf s4mari:EventState ; + rdfs:label "IncidentState"@en . ### https://saref.etsi.org/saref4mari/LandVehicle s4mari:LandVehicle rdf:type owl:Class ; rdfs:subClassOf s4mari:Vehicle ; + rdfs:label "LandVehicle"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Object.html#landvehicle" . @@ -821,6 +980,7 @@ s4mari:LandVehicle rdf:type owl:Class ; s4mari:Location rdf:type owl:Class ; rdfs:subClassOf geo:Feature , saref:FeatureOfInterest ; + rdfs:label "Location"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Location.html#location" . @@ -828,50 +988,59 @@ s4mari:Location rdf:type owl:Class ; s4mari:MaritimeObject rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; rdfs:comment "For name, use rdfs:label :: rdfs:Literal (https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Object_Name.html)." ; + rdfs:label "MaritimeObject"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Object.html#object" . ### https://saref.etsi.org/saref4mari/MaritimeObjectKind s4mari:MaritimeObjectKind rdf:type owl:Class ; - rdfs:subClassOf saref:FeatureKind . + rdfs:subClassOf saref:FeatureKind ; + rdfs:label "MaritimeObjectKind"@en . ### https://saref.etsi.org/saref4mari/MaritimeObjectProperty s4mari:MaritimeObjectProperty rdf:type owl:Class ; - rdfs:subClassOf saref:Property . + rdfs:subClassOf saref:Property ; + rdfs:label "MaritimeObjectProperty"@en . ### https://saref.etsi.org/saref4mari/MaritimeObjectState s4mari:MaritimeObjectState rdf:type owl:Class ; - rdfs:subClassOf saref:State . + rdfs:subClassOf saref:State ; + rdfs:label "MaritimeObjectState"@en . ### https://saref.etsi.org/saref4mari/Metadata s4mari:Metadata rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; + rdfs:label "Metadata"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Metadata.html#metadata" . ### https://saref.etsi.org/saref4mari/MeteoOceanoCondition s4mari:MeteoOceanoCondition rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; + rdfs:label "MeteoOceanoCondition"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Location.html#meteooceanographiccondition" . ### https://saref.etsi.org/saref4mari/MeteoOceanoConditionProperty s4mari:MeteoOceanoConditionProperty rdf:type owl:Class ; - rdfs:subClassOf saref:Property . + rdfs:subClassOf saref:Property ; + rdfs:label "MeteoOceanoConditionProperty"@en . ### https://saref.etsi.org/saref4mari/Movement s4mari:Movement rdf:type owl:Class ; rdfs:subClassOf s4mari:Event ; + rdfs:label "Movement"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Movement.html#movement" . ### https://saref.etsi.org/saref4mari/MovementKind s4mari:MovementKind rdf:type owl:Class ; rdfs:subClassOf s4mari:EventKind ; + rdfs:label "MovementKind"@en ; rdfs:seeAlso . @@ -879,42 +1048,49 @@ s4mari:MovementKind rdf:type owl:Class ; s4mari:NamedLocation rdf:type owl:Class ; rdfs:subClassOf s4mari:Location ; rdfs:comment "For name, use rdfs:label :: rdfs:Literal (https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/NamedLocation_GeographicName.html)." ; + rdfs:label "NamedLocation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Location.html#namedlocation" . ### https://saref.etsi.org/saref4mari/OperationalAsset s4mari:OperationalAsset rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; + rdfs:label "OperationalAsset"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/OperationalAsset.html#operationalasset" . ### https://saref.etsi.org/saref4mari/OperationalAssetKind s4mari:OperationalAssetKind rdf:type owl:Class ; rdfs:subClassOf saref:FeatureKind ; + rdfs:label "OperationalAssetKind"@en ; rdfs:seeAlso . ### https://saref.etsi.org/saref4mari/OperationalAssetProperty s4mari:OperationalAssetProperty rdf:type owl:Class ; - rdfs:subClassOf saref:Property . + rdfs:subClassOf saref:Property ; + rdfs:label "OperationalAssetProperty"@en . ### https://saref.etsi.org/saref4mari/Organisation s4mari:Organisation rdf:type owl:Class ; rdfs:subClassOf s4mari:Agent , org:Organization ; + rdfs:label "Organisation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Organization.html#organization" . ### https://saref.etsi.org/saref4mari/OrganisationKind s4mari:OrganisationKind rdf:type owl:Class ; rdfs:subClassOf s4mari:AgentKind ; + rdfs:label "OrganisationKind"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/enum/Organization_OrganizationClassificationType.html" . ### https://saref.etsi.org/saref4mari/Period s4mari:Period rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; + rdfs:label "Period"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Period.html#period" . @@ -922,6 +1098,7 @@ s4mari:Period rdf:type owl:Class ; s4mari:Person rdf:type owl:Class ; rdfs:subClassOf foaf:Person , s4mari:Agent ; + rdfs:label "Person"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Person.html#person" . @@ -929,6 +1106,7 @@ s4mari:Person rdf:type owl:Class ; s4mari:PortFacilityLocation rdf:type owl:Class ; rdfs:subClassOf s4mari:Location ; rdfs:comment "For name, use rdfs:label :: rdfs:Literal (https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/PortFacilityLocation_PortFacilityName.html)." ; + rdfs:label "PortFacilityLocation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Location.html#portfacilitylocation" . @@ -936,34 +1114,40 @@ s4mari:PortFacilityLocation rdf:type owl:Class ; s4mari:PortLocation rdf:type owl:Class ; rdfs:subClassOf s4mari:Location ; rdfs:comment "For name, use rdfs:label :: rdfs:Literal (https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/PortLocation_PortName.html)." ; + rdfs:label "PortLocation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Location.html#portlocation" . ### https://saref.etsi.org/saref4mari/Radar s4mari:Radar rdf:type owl:Class ; - rdfs:subClassOf saref:Sensor . + rdfs:subClassOf saref:Sensor ; + rdfs:label "Radar"@en . ### https://saref.etsi.org/saref4mari/Risk s4mari:Risk rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; + rdfs:label "Risk"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Risk.html#risk" . ### https://saref.etsi.org/saref4mari/RiskKind s4mari:RiskKind rdf:type owl:Class ; rdfs:subClassOf saref:FeatureKind ; + rdfs:label "RiskKind"@en ; rdfs:seeAlso . ### https://saref.etsi.org/saref4mari/SensorState s4mari:SensorState rdf:type owl:Class ; - rdfs:subClassOf saref:State . + rdfs:subClassOf saref:State ; + rdfs:label "SensorState"@en . ### https://saref.etsi.org/saref4mari/UniqueIdentifier s4mari:UniqueIdentifier rdf:type owl:Class ; rdfs:subClassOf saref:FeatureOfInterest ; + rdfs:label "UniqueIdentifier"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/UniqueIdentifier.html#uniqueidentifier" . @@ -971,44 +1155,52 @@ s4mari:UniqueIdentifier rdf:type owl:Class ; s4mari:Vehicle rdf:type owl:Class ; rdfs:subClassOf s4mari:MaritimeObject , ; + rdfs:label "Vehicle"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Object.html#vehicle" . ### https://saref.etsi.org/saref4mari/VehicleKind s4mari:VehicleKind rdf:type owl:Class ; - rdfs:subClassOf s4mari:MaritimeObjectKind . + rdfs:subClassOf s4mari:MaritimeObjectKind ; + rdfs:label "VehicleKind"@en . ### https://saref.etsi.org/saref4mari/VehicleProperty s4mari:VehicleProperty rdf:type owl:Class ; - rdfs:subClassOf s4mari:MaritimeObjectProperty . + rdfs:subClassOf s4mari:MaritimeObjectProperty ; + rdfs:label "VehicleProperty"@en . ### https://saref.etsi.org/saref4mari/VehicleState s4mari:VehicleState rdf:type owl:Class ; - rdfs:subClassOf s4mari:MaritimeObjectState . + rdfs:subClassOf s4mari:MaritimeObjectState ; + rdfs:label "VehicleState"@en . ### https://saref.etsi.org/saref4mari/Vessel s4mari:Vessel rdf:type owl:Class ; rdfs:subClassOf s4mari:Vehicle ; + rdfs:label "Vessel"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Vessel.html#vessel" . ### https://saref.etsi.org/saref4mari/VesselKind s4mari:VesselKind rdf:type owl:Class ; rdfs:subClassOf s4mari:VehicleKind ; + rdfs:label "VesselKind"@en ; rdfs:seeAlso . ### https://saref.etsi.org/saref4mari/VesselProperty s4mari:VesselProperty rdf:type owl:Class ; - rdfs:subClassOf s4mari:VehicleProperty . + rdfs:subClassOf s4mari:VehicleProperty ; + rdfs:label "VesselProperty"@en . ### https://saref.etsi.org/saref4mari/VesselState s4mari:VesselState rdf:type owl:Class ; - rdfs:subClassOf s4mari:VehicleState . + rdfs:subClassOf s4mari:VehicleState ; + rdfs:label "VesselState"@en . ### https://www.w3.org/ns/org#Organization @@ -1019,24 +1211,72 @@ org:Organization rdf:type owl:Class . # Individuals ################################################################# +### http://qudt.org/vocab/quantitykind/CelsiusTemperature + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/quantitykind/FahrenheitTemperature + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/quantitykind/Turbidity + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/unit/DEG + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/unit/K + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/unit/KiloPA + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/unit/M-PER-SEC + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/unit/MilliGM-PER-L + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/unit/MilliS + rdf:type owl:NamedIndividual . + + +### http://qudt.org/vocab/unit/S-PER-M + rdf:type owl:NamedIndividual . + + +### http://www.ontology-of-units-of-measure.org/resource/om-2/metre + rdf:type owl:NamedIndividual . + + ### https://saref.etsi.org/saref4mari/Accident s4mari:Accident rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "Accident"@en . ### https://saref.etsi.org/saref4mari/Acknowledgement s4mari:Acknowledgement rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Acknowledgement"@en . ### https://saref.etsi.org/saref4mari/Aeroplane s4mari:Aeroplane rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Aeroplane"@en . ### https://saref.etsi.org/saref4mari/AirTemperature s4mari:AirTemperature rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "AirTemperature"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_AirTemperature.html" . @@ -1047,858 +1287,1289 @@ s4mari:Aircraft rdf:type owl:NamedIndividual , ### https://saref.etsi.org/saref4mari/AircraftCarrier s4mari:AircraftCarrier rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "AircraftCarrier"@en . ### https://saref.etsi.org/saref4mari/Ambulance s4mari:Ambulance rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Ambulance"@en . + + +### https://saref.etsi.org/saref4mari/ArtilleryVehicle +s4mari:ArtilleryVehicle rdf:type owl:NamedIndividual , + s4mari:OperationalAssetKind ; + rdfs:label "ArtilleryVehicle"@en . ### https://saref.etsi.org/saref4mari/AssaultShips s4mari:AssaultShips rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "AssaultShips"@en . ### https://saref.etsi.org/saref4mari/Assistance s4mari:Assistance rdf:type owl:NamedIndividual , - s4mari:ActionKind . - - -### https://saref.etsi.org/saref4mari/AtilleryVehicle -s4mari:AtilleryVehicle rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:ActionKind ; + rdfs:label "Assistance"@en . ### https://saref.etsi.org/saref4mari/AuxiliaryShips s4mari:AuxiliaryShips rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "AuxiliaryShips"@en . ### https://saref.etsi.org/saref4mari/Ballons s4mari:Ballons rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Ballons"@en . ### https://saref.etsi.org/saref4mari/Beam s4mari:Beam rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "Beam"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_Beam.html" . ### https://saref.etsi.org/saref4mari/Breadth s4mari:Breadth rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "Breadth"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_Breadth.html" . ### https://saref.etsi.org/saref4mari/BulkCarrier s4mari:BulkCarrier rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "BulkCarrier"@en . ### https://saref.etsi.org/saref4mari/CargoLeaking s4mari:CargoLeaking rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "CargoLeaking"@en . ### https://saref.etsi.org/saref4mari/Carrier s4mari:Carrier rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Carrier"@en . ### https://saref.etsi.org/saref4mari/CatchWeight s4mari:CatchWeight rdf:type owl:NamedIndividual , s4mari:CatchProperty ; + rdfs:label "CatchWeight"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_CatchWeight.html" . ### https://saref.etsi.org/saref4mari/CloudCeiling s4mari:CloudCeiling rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "CloudCeiling"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_CloudCeiling.html" . ### https://saref.etsi.org/saref4mari/Collision s4mari:Collision rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "Collision"@en . ### https://saref.etsi.org/saref4mari/Confirmation s4mari:Confirmation rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Confirmation"@en . ### https://saref.etsi.org/saref4mari/ContainerCapacity s4mari:ContainerCapacity rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "ContainerCapacity"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_ContainerCapacity.html" . ### https://saref.etsi.org/saref4mari/Corvette s4mari:Corvette rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Corvette"@en . ### https://saref.etsi.org/saref4mari/Criminal s4mari:Criminal rdf:type owl:NamedIndividual , - s4mari:OrganisationKind . + s4mari:OrganisationKind ; + rdfs:label "Criminal"@en . ### https://saref.etsi.org/saref4mari/Cruiser s4mari:Cruiser rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Cruiser"@en . ### https://saref.etsi.org/saref4mari/Deadweight s4mari:Deadweight rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "Deadweight"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_Deadweight.html" . ### https://saref.etsi.org/saref4mari/DeathsOnBoard s4mari:DeathsOnBoard rdf:type owl:NamedIndividual , s4mari:IncidentProperty ; + rdfs:label "DeathsOnBoard"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Incident_DeathsOnBoard.html" . ### https://saref.etsi.org/saref4mari/Depth s4mari:Depth rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "Depth"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_Depth.html" . ### https://saref.etsi.org/saref4mari/DesertPatrolVehicle s4mari:DesertPatrolVehicle rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "DesertPatrolVehicle"@en . ### https://saref.etsi.org/saref4mari/DesignSpeed s4mari:DesignSpeed rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "DesignSpeed"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_DesignSpeed.html" . ### https://saref.etsi.org/saref4mari/Destroyer s4mari:Destroyer rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . - - -### https://saref.etsi.org/saref4mari/DetecionOfChangesInAISParameters -s4mari:DetecionOfChangesInAISParameters rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:OperationalAssetKind ; + rdfs:label "Destroyer"@en . ### https://saref.etsi.org/saref4mari/Detection s4mari:Detection rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Detection"@en . + + +### https://saref.etsi.org/saref4mari/DetectionOfChangesInAISParameters +s4mari:DetectionOfChangesInAISParameters rdf:type owl:NamedIndividual , + s4mari:AnomalyKind ; + rdfs:label "DetectionOfChangesInAISParameters"@en . ### https://saref.etsi.org/saref4mari/Deterrence s4mari:Deterrence rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Deterrence"@en . ### https://saref.etsi.org/saref4mari/DoNotAnswerOnVHFCh16 s4mari:DoNotAnswerOnVHFCh16 rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "DoNotAnswerOnVHFCh16"@en . ### https://saref.etsi.org/saref4mari/DoesNotHaveDiseasesOnBoard s4mari:DoesNotHaveDiseasesOnBoard rdf:type owl:NamedIndividual , - s4mari:IncidentState . + s4mari:IncidentState ; + rdfs:label "DoesNotHaveDiseasesOnBoard"@en . ### https://saref.etsi.org/saref4mari/DoesNotHaveInfectionOnBoard s4mari:DoesNotHaveInfectionOnBoard rdf:type owl:NamedIndividual , - s4mari:IncidentState . + s4mari:IncidentState ; + rdfs:label "DoesNotHaveInfectionOnBoard"@en . ### https://saref.etsi.org/saref4mari/DoesNotHaveSickAnimalOnBoard s4mari:DoesNotHaveSickAnimalOnBoard rdf:type owl:NamedIndividual , - s4mari:IncidentState . + s4mari:IncidentState ; + rdfs:label "DoesNotHaveSickAnimalOnBoard"@en . ### https://saref.etsi.org/saref4mari/Draught s4mari:Draught rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "Draught"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_Draught.html" . ### https://saref.etsi.org/saref4mari/Drone s4mari:Drone rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Drone"@en . ### https://saref.etsi.org/saref4mari/DrugTrafficking s4mari:DrugTrafficking rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "DrugTrafficking"@en . ### https://saref.etsi.org/saref4mari/European s4mari:European rdf:type owl:NamedIndividual , - s4mari:OrganisationKind . + s4mari:OrganisationKind ; + rdfs:label "European"@en . ### https://saref.etsi.org/saref4mari/Exercise s4mari:Exercise rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Exercise"@en . ### https://saref.etsi.org/saref4mari/Fire s4mari:Fire rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "Fire"@en . ### https://saref.etsi.org/saref4mari/Firetrack s4mari:Firetrack rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Firetrack"@en . ### https://saref.etsi.org/saref4mari/FishNumber s4mari:FishNumber rdf:type owl:NamedIndividual , s4mari:CatchProperty ; + rdfs:label "FishNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_FishNumber.html" . ### https://saref.etsi.org/saref4mari/FishingVessel s4mari:FishingVessel rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "FishingVessel"@en . ### https://saref.etsi.org/saref4mari/FlashPoint s4mari:FlashPoint rdf:type owl:NamedIndividual , s4mari:ContainmentUnitProperty ; + rdfs:label "FlashPoint"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/ContainmentUnit_FlashPoint.html" . ### https://saref.etsi.org/saref4mari/FourWheelDrive s4mari:FourWheelDrive rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "FourWheelDrive"@en . ### https://saref.etsi.org/saref4mari/FreightContainers s4mari:FreightContainers rdf:type owl:NamedIndividual , s4mari:CargoKind ; - skos:narrower s4mari:LargeFreightContainers . + skos:narrower s4mari:LargeFreightContainers ; + rdfs:label "FreightContainers"@en . ### https://saref.etsi.org/saref4mari/Frigate s4mari:Frigate rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Frigate"@en . ### https://saref.etsi.org/saref4mari/GeneralCargoShip s4mari:GeneralCargoShip rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "GeneralCargoShip"@en . ### https://saref.etsi.org/saref4mari/Governmental s4mari:Governmental rdf:type owl:NamedIndividual , - s4mari:OrganisationKind . + s4mari:OrganisationKind ; + rdfs:label "Governmental"@en . ### https://saref.etsi.org/saref4mari/GrossQuantity s4mari:GrossQuantity rdf:type owl:NamedIndividual , s4mari:ContainmentUnitProperty ; + rdfs:label "GrossQuantity"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/ContainmentUnit_GrossQuantity.html" . ### https://saref.etsi.org/saref4mari/GrossTonnage s4mari:GrossTonnage rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "GrossTonnage"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_GrossTonnage.html" . ### https://saref.etsi.org/saref4mari/HasDiseasesOnBoard s4mari:HasDiseasesOnBoard rdf:type owl:NamedIndividual , - s4mari:IncidentState . + s4mari:IncidentState ; + rdfs:label "HasDiseasesOnBoard"@en . ### https://saref.etsi.org/saref4mari/HasInfectionOnBoard s4mari:HasInfectionOnBoard rdf:type owl:NamedIndividual , - s4mari:IncidentState . + s4mari:IncidentState ; + rdfs:label "HasInfectionOnBoard"@en . ### https://saref.etsi.org/saref4mari/HasSickAnimalOnBoard s4mari:HasSickAnimalOnBoard rdf:type owl:NamedIndividual , - s4mari:IncidentState . + s4mari:IncidentState ; + rdfs:label "HasSickAnimalOnBoard"@en . + + +### https://saref.etsi.org/saref4mari/Heading +s4mari:Heading rdf:type owl:NamedIndividual , + saref:Property , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minExclusive "-180.0"^^xsd:double + ] + [ xsd:maxInclusive "180.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The heading orientation of an object."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/Heading" ; + rdfs:label "Heading"@en . ### https://saref.etsi.org/saref4mari/Helicopter s4mari:Helicopter rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Helicopter"@en . ### https://saref.etsi.org/saref4mari/HighSpeedCraft s4mari:HighSpeedCraft rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "HighSpeedCraft"@en . ### https://saref.etsi.org/saref4mari/HumanTrafficking s4mari:HumanTrafficking rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "HumanTrafficking"@en . ### https://saref.etsi.org/saref4mari/Humvee s4mari:Humvee rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Humvee"@en . ### https://saref.etsi.org/saref4mari/IMONumber s4mari:IMONumber rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "IMONumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_IMONumber.html" . ### https://saref.etsi.org/saref4mari/IllegalFishing s4mari:IllegalFishing rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "IllegalFishing"@en . ### https://saref.etsi.org/saref4mari/IllegalImmigration s4mari:IllegalImmigration rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "IllegalImmigration"@en . ### https://saref.etsi.org/saref4mari/Inspection s4mari:Inspection rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Inspection"@en . ### https://saref.etsi.org/saref4mari/InterGovernmental s4mari:InterGovernmental rdf:type owl:NamedIndividual , - s4mari:OrganisationKind . + s4mari:OrganisationKind ; + rdfs:label "InterGovernmental"@en . ### https://saref.etsi.org/saref4mari/Interception s4mari:Interception rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Interception"@en . ### https://saref.etsi.org/saref4mari/IsAborted s4mari:IsAborted rdf:type owl:NamedIndividual , - s4mari:ActionState . + s4mari:ActionState ; + rdfs:label "IsAborted"@en . ### https://saref.etsi.org/saref4mari/IsBanned s4mari:IsBanned rdf:type owl:NamedIndividual , - s4mari:VesselState . + s4mari:VesselState ; + rdfs:label "IsBanned"@en . ### https://saref.etsi.org/saref4mari/IsCancelled s4mari:IsCancelled rdf:type owl:NamedIndividual , - s4mari:ActionState . + s4mari:ActionState ; + rdfs:label "IsCancelled"@en . ### https://saref.etsi.org/saref4mari/IsCompleted s4mari:IsCompleted rdf:type owl:NamedIndividual , - s4mari:ActionState . + s4mari:ActionState ; + rdfs:label "IsCompleted"@en . ### https://saref.etsi.org/saref4mari/IsFishing s4mari:IsFishing rdf:type owl:NamedIndividual , - s4mari:VesselState . + s4mari:VesselState ; + rdfs:label "IsFishing"@en . ### https://saref.etsi.org/saref4mari/IsInProgress s4mari:IsInProgress rdf:type owl:NamedIndividual , - s4mari:ActionState . + s4mari:ActionState ; + rdfs:label "IsInProgress"@en . ### https://saref.etsi.org/saref4mari/IsNotBanned s4mari:IsNotBanned rdf:type owl:NamedIndividual , - s4mari:VesselState . + s4mari:VesselState ; + rdfs:label "IsNotBanned"@en . ### https://saref.etsi.org/saref4mari/IsNotFishing s4mari:IsNotFishing rdf:type owl:NamedIndividual , - s4mari:VesselState . + s4mari:VesselState ; + rdfs:label "IsNotFishing"@en . ### https://saref.etsi.org/saref4mari/IsNotOfInterest s4mari:IsNotOfInterest rdf:type owl:NamedIndividual , - s4mari:AgentState . + s4mari:AgentState ; + rdfs:label "IsNotOfInterest"@en . ### https://saref.etsi.org/saref4mari/IsNotStarted s4mari:IsNotStarted rdf:type owl:NamedIndividual , - s4mari:ActionState . + s4mari:ActionState ; + rdfs:label "IsNotStarted"@en . ### https://saref.etsi.org/saref4mari/IsNotSuspect s4mari:IsNotSuspect rdf:type owl:NamedIndividual , - s4mari:AgentState . + s4mari:AgentState ; + rdfs:label "IsNotSuspect"@en . ### https://saref.etsi.org/saref4mari/IsOfInterest s4mari:IsOfInterest rdf:type owl:NamedIndividual , - s4mari:AgentState . + s4mari:AgentState ; + rdfs:label "IsOfInterest"@en . ### https://saref.etsi.org/saref4mari/IsPaused s4mari:IsPaused rdf:type owl:NamedIndividual , - s4mari:ActionState . + s4mari:ActionState ; + rdfs:label "IsPaused"@en . ### https://saref.etsi.org/saref4mari/IsSuspect s4mari:IsSuspect rdf:type owl:NamedIndividual , - s4mari:AgentState . + s4mari:AgentState ; + rdfs:label "IsSuspect"@en . ### https://saref.etsi.org/saref4mari/LOA s4mari:LOA rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "LOA"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_LOA.html" . ### https://saref.etsi.org/saref4mari/LandingShips s4mari:LandingShips rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "LandingShips"@en . ### https://saref.etsi.org/saref4mari/LargeFreightContainers s4mari:LargeFreightContainers rdf:type owl:NamedIndividual , - s4mari:CargoKind . + s4mari:CargoKind ; + rdfs:label "LargeFreightContainers"@en . ### https://saref.etsi.org/saref4mari/Length s4mari:Length rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "Length"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_Length.html" . ### https://saref.etsi.org/saref4mari/LengthenedYear s4mari:LengthenedYear rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "LengthenedYear"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_LengthenedYear.html" . ### https://saref.etsi.org/saref4mari/MMSI s4mari:MMSI rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "MMSI"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_MMSI.html" . ### https://saref.etsi.org/saref4mari/Maintenance s4mari:Maintenance rdf:type owl:NamedIndividual , - s4mari:SensorState . + s4mari:SensorState ; + rdfs:label "Maintenance"@en . ### https://saref.etsi.org/saref4mari/MaxPassengers s4mari:MaxPassengers rdf:type owl:NamedIndividual , s4mari:OperationalAssetProperty ; + rdfs:label "MaxPassengers"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/OperationalAsset_MaxPassengers.html" . ### https://saref.etsi.org/saref4mari/MaxSpeed s4mari:MaxSpeed rdf:type owl:NamedIndividual , s4mari:OperationalAssetProperty ; + rdfs:label "MaxSpeed"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/OperationalAsset_MaxSpeed.html" . ### https://saref.etsi.org/saref4mari/MaximumSpeed s4mari:MaximumSpeed rdf:type owl:NamedIndividual , s4mari:VehicleProperty ; + rdfs:label "MaximumSpeed"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vehicle_MaximumSpeed.html" . ### https://saref.etsi.org/saref4mari/MemberState s4mari:MemberState rdf:type owl:NamedIndividual , - s4mari:OrganisationKind . + s4mari:OrganisationKind ; + rdfs:label "MemberState"@en . ### https://saref.etsi.org/saref4mari/MineWarfareShips s4mari:MineWarfareShips rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "MineWarfareShips"@en . ### https://saref.etsi.org/saref4mari/MobileOffShoreDrillingUnit s4mari:MobileOffShoreDrillingUnit rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "MobileOffShoreDrillingUnit"@en . ### https://saref.etsi.org/saref4mari/MobileSelfPropelledUnits s4mari:MobileSelfPropelledUnits rdf:type owl:NamedIndividual , - s4mari:CargoKind . + s4mari:CargoKind ; + rdfs:label "MobileSelfPropelledUnits"@en . ### https://saref.etsi.org/saref4mari/MobileUnits s4mari:MobileUnits rdf:type owl:NamedIndividual , s4mari:CargoKind ; - skos:narrower s4mari:MobileSelfPropelledUnits . + skos:narrower s4mari:MobileSelfPropelledUnits ; + rdfs:label "MobileUnits"@en . ### https://saref.etsi.org/saref4mari/Motorcycle s4mari:Motorcycle rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Motorcycle"@en . ### https://saref.etsi.org/saref4mari/NetHeld s4mari:NetHeld rdf:type owl:NamedIndividual , s4mari:CatchProperty ; + rdfs:label "NetHeld"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_NetHeld.html" . ### https://saref.etsi.org/saref4mari/NetQuantity s4mari:NetQuantity rdf:type owl:NamedIndividual , s4mari:ContainmentUnitProperty ; + rdfs:label "NetQuantity"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/ContainmentUnit_NetQuantity.html" . ### https://saref.etsi.org/saref4mari/NetTonnage s4mari:NetTonnage rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "NetTonnage"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_NetTonnage.html" . ### https://saref.etsi.org/saref4mari/NoCargoUnitLiquidBulkGoods s4mari:NoCargoUnitLiquidBulkGoods rdf:type owl:NamedIndividual , - s4mari:CargoKind . + s4mari:CargoKind ; + rdfs:label "NoCargoUnitLiquidBulkGoods"@en . ### https://saref.etsi.org/saref4mari/NoCargoUnitSolidBulkGoods s4mari:NoCargoUnitSolidBulkGoods rdf:type owl:NamedIndividual , - s4mari:CargoKind . + s4mari:CargoKind ; + rdfs:label "NoCargoUnitSolidBulkGoods"@en . ### https://saref.etsi.org/saref4mari/NonGovernmental s4mari:NonGovernmental rdf:type owl:NamedIndividual , - s4mari:OrganisationKind . + s4mari:OrganisationKind ; + rdfs:label "NonGovernmental"@en . ### https://saref.etsi.org/saref4mari/NuclearShip s4mari:NuclearShip rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "NuclearShip"@en . ### https://saref.etsi.org/saref4mari/NumberOfIllPersons s4mari:NumberOfIllPersons rdf:type owl:NamedIndividual , s4mari:IncidentProperty ; + rdfs:label "NumberOfIllPersons"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Incident_NumberOfIIllPersons.html" . ### https://saref.etsi.org/saref4mari/Offline s4mari:Offline rdf:type owl:NamedIndividual , - s4mari:SensorState . + s4mari:SensorState ; + rdfs:label "Offline"@en . ### https://saref.etsi.org/saref4mari/OilTanker s4mari:OilTanker rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "OilTanker"@en . ### https://saref.etsi.org/saref4mari/Online s4mari:Online rdf:type owl:NamedIndividual , - s4mari:SensorState . + s4mari:SensorState ; + rdfs:label "Online"@en . ### https://saref.etsi.org/saref4mari/OnlineNotTransmitting s4mari:OnlineNotTransmitting rdf:type owl:NamedIndividual , - s4mari:SensorState . + s4mari:SensorState ; + rdfs:label "OnlineNotTransmitting"@en . ### https://saref.etsi.org/saref4mari/Palletized s4mari:Palletized rdf:type owl:NamedIndividual , - s4mari:CargoKind . + s4mari:CargoKind ; + rdfs:label "Palletized"@en . ### https://saref.etsi.org/saref4mari/PassengerShip s4mari:PassengerShip rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "PassengerShip"@en . ### https://saref.etsi.org/saref4mari/PatrolBoat s4mari:PatrolBoat rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "PatrolBoat"@en . ### https://saref.etsi.org/saref4mari/PatrolRoutePlan s4mari:PatrolRoutePlan rdf:type owl:NamedIndividual , - s4mari:MovementKind . + s4mari:MovementKind ; + rdfs:label "PatrolRoutePlan"@en . ### https://saref.etsi.org/saref4mari/PerformingAISSpoofing s4mari:PerformingAISSpoofing rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "PerformingAISSpoofing"@en . + + +### https://saref.etsi.org/saref4mari/Pitch +s4mari:Pitch rdf:type owl:NamedIndividual , + saref:Property , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minExclusive "-180.0"^^xsd:double + ] + [ xsd:maxInclusive "180.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The pitch orientation of an object."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/Pitch" ; + rdfs:label "Pitch"@en . ### https://saref.etsi.org/saref4mari/Pollution s4mari:Pollution rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "Pollution"@en . ### https://saref.etsi.org/saref4mari/PreSlung s4mari:PreSlung rdf:type owl:NamedIndividual , - s4mari:CargoKind . + s4mari:CargoKind ; + rdfs:label "PreSlung"@en . ### https://saref.etsi.org/saref4mari/Precipitation s4mari:Precipitation rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "Precipitation"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_Precipitation.html" . ### https://saref.etsi.org/saref4mari/Private s4mari:Private rdf:type owl:NamedIndividual , - s4mari:OrganisationKind . + s4mari:OrganisationKind ; + rdfs:label "Private"@en . ### https://saref.etsi.org/saref4mari/QuantityHeld s4mari:QuantityHeld rdf:type owl:NamedIndividual , s4mari:CatchProperty ; + rdfs:label "QuantityHeld"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_QuantityHeld.html" . ### https://saref.etsi.org/saref4mari/ROV s4mari:ROV rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "ROV"@en . ### https://saref.etsi.org/saref4mari/Range s4mari:Range rdf:type owl:NamedIndividual , s4mari:OperationalAssetProperty ; + rdfs:label "Range"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/OperationalAsset_Range.html" . ### https://saref.etsi.org/saref4mari/Rescue s4mari:Rescue rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Rescue"@en . + + +### https://saref.etsi.org/saref4mari/Roll +s4mari:Roll rdf:type owl:NamedIndividual , + saref:Property , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minExclusive "-180.0"^^xsd:double + ] + [ xsd:maxInclusive "180.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The roll orientation of an object."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/Roll" ; + rdfs:label "Roll"@en . ### https://saref.etsi.org/saref4mari/RoutePlan s4mari:RoutePlan rdf:type owl:NamedIndividual , - s4mari:MovementKind . + s4mari:MovementKind ; + rdfs:label "RoutePlan"@en . ### https://saref.etsi.org/saref4mari/Salinity s4mari:Salinity rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "Salinity"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_Salinity.html" . ### https://saref.etsi.org/saref4mari/SeaLevelPressure s4mari:SeaLevelPressure rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "SeaLevelPressure"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_SeaLevelPressure.html" . ### https://saref.etsi.org/saref4mari/SeaPlatform s4mari:SeaPlatform rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "SeaPlatform"@en . ### https://saref.etsi.org/saref4mari/Search s4mari:Search rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Search"@en . ### https://saref.etsi.org/saref4mari/SearchPattern s4mari:SearchPattern rdf:type owl:NamedIndividual , - s4mari:MovementKind . + s4mari:MovementKind ; + rdfs:label "SearchPattern"@en . ### https://saref.etsi.org/saref4mari/SegregatedBallastVolume s4mari:SegregatedBallastVolume rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "SegregatedBallastVolume"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_SegregatedBallastVolume.html" . ### https://saref.etsi.org/saref4mari/ShiftingOfCargo s4mari:ShiftingOfCargo rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "ShiftingOfCargo"@en . ### https://saref.etsi.org/saref4mari/SizeDeclaration s4mari:SizeDeclaration rdf:type owl:NamedIndividual , s4mari:CatchProperty ; + rdfs:label "SizeDeclaration"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_SizeDeclaration.html" . ### https://saref.etsi.org/saref4mari/Smuggling s4mari:Smuggling rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "Smuggling"@en . ### https://saref.etsi.org/saref4mari/SpecialPurposeShip s4mari:SpecialPurposeShip rdf:type owl:NamedIndividual , - s4mari:VesselKind . + s4mari:VesselKind ; + rdfs:label "SpecialPurposeShip"@en . ### https://saref.etsi.org/saref4mari/SpeedBoat s4mari:SpeedBoat rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "SpeedBoat"@en . ### https://saref.etsi.org/saref4mari/StainOfOilSighted s4mari:StainOfOilSighted rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "StainOfOilSighted"@en . ### https://saref.etsi.org/saref4mari/StrategicFixedAssets s4mari:StrategicFixedAssets rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "StrategicFixedAssets"@en . ### https://saref.etsi.org/saref4mari/Submarine s4mari:Submarine rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Submarine"@en . ### https://saref.etsi.org/saref4mari/Tank s4mari:Tank rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Tank"@en . ### https://saref.etsi.org/saref4mari/TidalCurrentDirection s4mari:TidalCurrentDirection rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "TidalCurrentDirection"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_TidalCurrentDirection.html" . ### https://saref.etsi.org/saref4mari/TidalCurrentSpeed s4mari:TidalCurrentSpeed rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "TidalCurrentSpeed"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_TidalCurrentSpeed.html" . +### https://saref.etsi.org/saref4mari/TideLevel +s4mari:TideLevel rdf:type owl:NamedIndividual , + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange xsd:double + ] ; + rdfs:comment "The level of tide."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/TideLevel" ; + rdfs:label "TideLevel"@en . + + +### https://saref.etsi.org/saref4mari/TidePressure +s4mari:TidePressure rdf:type owl:NamedIndividual , + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minInclusive "0.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The pressure caused by the tide."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/TidePressure" ; + rdfs:label "TidePressure"@en . + + ### https://saref.etsi.org/saref4mari/TotalNumber s4mari:TotalNumber rdf:type owl:NamedIndividual , s4mari:CatchProperty ; + rdfs:label "TotalNumber"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_TotalNumber.html" . ### https://saref.etsi.org/saref4mari/TotalPersonsOnBoard s4mari:TotalPersonsOnBoard rdf:type owl:NamedIndividual , s4mari:VehicleProperty ; + rdfs:label "TotalPersonsOnBoard"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vehicle_TotalPersonsOnBoard.html" . ### https://saref.etsi.org/saref4mari/TotalWeight s4mari:TotalWeight rdf:type owl:NamedIndividual , s4mari:CatchProperty ; + rdfs:label "TotalWeight"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Catch_TotalWeight.html" . ### https://saref.etsi.org/saref4mari/Tracking s4mari:Tracking rdf:type owl:NamedIndividual , - s4mari:ActionKind . + s4mari:ActionKind ; + rdfs:label "Tracking"@en . ### https://saref.etsi.org/saref4mari/Tractor s4mari:Tractor rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Tractor"@en . ### https://saref.etsi.org/saref4mari/Trailer s4mari:Trailer rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Trailer"@en . ### https://saref.etsi.org/saref4mari/Truck s4mari:Truck rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Truck"@en . ### https://saref.etsi.org/saref4mari/UAV s4mari:UAV rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "UAV"@en . ### https://saref.etsi.org/saref4mari/USV s4mari:USV rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "USV"@en . ### https://saref.etsi.org/saref4mari/UUV s4mari:UUV rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "UUV"@en . + + +### https://saref.etsi.org/saref4mari/UnderwaterPressure +s4mari:UnderwaterPressure rdf:type owl:NamedIndividual , + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minExclusive "0.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "Pressure under the water."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/UnderwaterPressure" ; + rdfs:label "UnderwaterPressure"@en . + + +### https://saref.etsi.org/saref4mari/UnderwaterSoundVelocity +s4mari:UnderwaterSoundVelocity rdf:type owl:NamedIndividual , + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minExclusive "0.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The velocity of underwater sound."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/UnderwaterSoundVelocity" ; + rdfs:label "UnderwaterSoundVelocity"@en . ### https://saref.etsi.org/saref4mari/UnexpectedMovement s4mari:UnexpectedMovement rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "UnexpectedMovement"@en . ### https://saref.etsi.org/saref4mari/Van s4mari:Van rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Van"@en . ### https://saref.etsi.org/saref4mari/VesselOutOfTrafficLanes s4mari:VesselOutOfTrafficLanes rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "VesselOutOfTrafficLanes"@en . ### https://saref.etsi.org/saref4mari/VesselWithErraticMovements s4mari:VesselWithErraticMovements rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "VesselWithErraticMovements"@en . ### https://saref.etsi.org/saref4mari/Visibility s4mari:Visibility rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "Visibility"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_Visibility.html" . ### https://saref.etsi.org/saref4mari/Voyage s4mari:Voyage rdf:type owl:NamedIndividual , - s4mari:MovementKind . + s4mari:MovementKind ; + rdfs:label "Voyage"@en . ### https://saref.etsi.org/saref4mari/VoyageLeg s4mari:VoyageLeg rdf:type owl:NamedIndividual , - s4mari:MovementKind . + s4mari:MovementKind ; + rdfs:label "VoyageLeg"@en . + + +### https://saref.etsi.org/saref4mari/WaterConductance +s4mari:WaterConductance rdf:type owl:NamedIndividual , + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minExclusive "0.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The conductance of water."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/WaterConductance" ; + rdfs:label "WaterConductance"@en . + + +### https://saref.etsi.org/saref4mari/WaterConductivity +s4mari:WaterConductivity rdf:type owl:NamedIndividual , + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minExclusive "0.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The conductivity of water."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/WaterConductivity" ; + rdfs:label "WaterConductivity"@en . ### https://saref.etsi.org/saref4mari/WaterTemperature s4mari:WaterTemperature rdf:type owl:NamedIndividual , - s4mari:MeteoOceanoConditionProperty ; - rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_WaterTemperature.html" . + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Class ; + owl:unionOf ( [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] + ) + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange xsd:double + ] ; + rdfs:comment "The temperature of water."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/WaterTemperature" ; + rdfs:label "WaterTemperature"@en ; + rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_WaveDirection.html" . + + +### https://saref.etsi.org/saref4mari/WaterTurbidity +s4mari:WaterTurbidity rdf:type owl:NamedIndividual , + s4mari:MeteoOceanoConditionProperty , + [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minInclusive "0.0"^^xsd:double + ] + ) + ] + ] ; + rdfs:comment "The turbidity of water."@en ; + rdfs:isDefinedBy "https://saref.etsi.org/saref4mari/WaterTurbidity" ; + rdfs:label "WaterTurbidity"@en . ### https://saref.etsi.org/saref4mari/WaveDirection s4mari:WaveDirection rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "WaveDirection"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_WaveDirection.html" . ### https://saref.etsi.org/saref4mari/WaveHeight s4mari:WaveHeight rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "WaveHeight"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_WaveHeight.html" . ### https://saref.etsi.org/saref4mari/WeaponsTrafficking s4mari:WeaponsTrafficking rdf:type owl:NamedIndividual , - s4mari:RiskKind . + s4mari:RiskKind ; + rdfs:label "WeaponsTrafficking"@en . ### https://saref.etsi.org/saref4mari/WindCurrentDirection s4mari:WindCurrentDirection rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "WindCurrentDirection"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_WindCurrentDirection.html" . ### https://saref.etsi.org/saref4mari/WindCurrentSpeed s4mari:WindCurrentSpeed rdf:type owl:NamedIndividual , s4mari:MeteoOceanoConditionProperty ; + rdfs:label "WindCurrentSpeed"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/MeteoOceanographicCondition_WindCurrentSpeed.html" . ### https://saref.etsi.org/saref4mari/WithoutAISTransmission s4mari:WithoutAISTransmission rdf:type owl:NamedIndividual , - s4mari:AnomalyKind . + s4mari:AnomalyKind ; + rdfs:label "WithoutAISTransmission"@en . ### https://saref.etsi.org/saref4mari/Wrecker s4mari:Wrecker rdf:type owl:NamedIndividual , - s4mari:OperationalAssetKind . + s4mari:OperationalAssetKind ; + rdfs:label "Wrecker"@en . ### https://saref.etsi.org/saref4mari/YearBuilt s4mari:YearBuilt rdf:type owl:NamedIndividual , s4mari:VesselProperty ; + rdfs:label "YearBuilt"@en ; rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/info/Vessel_YearBuilt.html" . -### Generated by the OWL API (version 4.5.26.2023-07-17T20:34:13Z) https://github.com/owlcs/owlapi + +### https://saref.etsi.org/saref4watr/Oxygen +s4watr:Oxygen rdf:type [ rdf:type owl:Restriction ; + owl:onProperty saref:isMeasuredIn ; + owl:hasValue + ] , + [ rdf:type owl:Restriction ; + owl:onProperty saref:hasValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + owl:onDataRange [ rdf:type rdfs:Datatype ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( [ xsd:minInclusive "0.0"^^xsd:double + ] + ) + ] + ] . + + +################################################################# +# Annotations +################################################################# + +s4mari:Aircraft rdfs:label "Aircraft"@en ; + rdfs:seeAlso "https://emsa.europa.eu/cise-documentation/cise-data-model-1.5.3/model/Object.html#aircraft" . + + +### Generated by the OWL API (version 4.5.29.2024-05-13T12:11:03Z) https://github.com/owlcs/owlapi