Submissions:VesselSpecies

From Odp

(Difference between revisions)
Jump to: navigation, search
m (Text replace - 'SubmittedBy=User:' to 'SubmittedBy=')
(Imported from OWL file.)
Line 4: Line 4:
}}
}}
{{Content OP Proposal Template
{{Content OP Proposal Template
 +
|Name=VesselSpecies
|SubmittedBy=AlessandroAdamou
|SubmittedBy=AlessandroAdamou
-
|Name=VesselSpecies
 
-
|Intent=to provide a direct relation between aquatic species and vessels that are able to catch them, regardless of the fishing gear used.
 
-
|CompetencyQuestion=what vessel types can catch what species?
 
|ReusableOWLBuildingBlock=http://www.ontologydesignpatterns.org/cp/owl/fsdas/vesselspecies.owl
|ReusableOWLBuildingBlock=http://www.ontologydesignpatterns.org/cp/owl/fsdas/vesselspecies.owl
 +
|RelatedCP=
 +
|HasComponent=,
|Consequences=This pattern should be used in scenarios where a VesselType can be deemed suitable for catching some AquaticSpecies for reasons other than mounting some fishing gear of a suitable GearType. It is strictly related to the gearspecies pattern, in that it uses the catchesSpecies and isCaught property pair to define this behaviour. For the sake of reuse, no domain is declared for catchesSpecies, appropriate restrictions having beed applied instead.
|Consequences=This pattern should be used in scenarios where a VesselType can be deemed suitable for catching some AquaticSpecies for reasons other than mounting some fishing gear of a suitable GearType. It is strictly related to the gearspecies pattern, in that it uses the catchesSpecies and isCaught property pair to define this behaviour. For the sake of reuse, no domain is declared for catchesSpecies, appropriate restrictions having beed applied instead.
|Scenario=give me the species caught using 'gillneters'
|Scenario=give me the species caught using 'gillneters'
 +
|CompetencyQuestion=what vessel types can catch what species? (provided that species are caught by geartypes are used by vessel types)
 +
|Intent=to provide a direct relation between aquatic species and vessels that are able to catch them, regardless of the fishing gear used.
}}
}}
{{Element list header}}
{{Element list header}}
{{Has Element Template
{{Has Element Template
-
|HasElement=AquaticSpecies
+
|HasElement=isCaughtBy
-
}}
+
-
{{Has Element Template
+
-
|HasElement=VesselType
+
}}
}}
{{Has Element Template
{{Has Element Template
|HasElement=catchesSpecies
|HasElement=catchesSpecies
-
}}
 
-
{{Has Element Template
 
-
|HasElement=isCaughtBy
 
}}
}}
{{Has Element Template
{{Has Element Template
|HasElement=isCaughtByVesselType
|HasElement=isCaughtByVesselType
}}
}}
 +
 +
{{Scenarios about me}}
 +
{{Reviews about me}}
 +
This pattern composes gearvessel.owl and gearspecies.owl.
 +
This must be inferred compositionally, and requires either  more sophisticated logical pattern, like 'property chain', available in OWL2 (but not in OWL1), or a complex reasoning pattern, like 'DL classifier+SPARQL', or 'DL classifier+SWRL rule firing'.
 +
(type): http://www.w3.org/2002/07/owl#Ontology
(type): http://www.w3.org/2002/07/owl#Ontology
 +
 +
(versionInfo): Created by Alessandro Adamou
 +
 +
(comment): This pattern composes gearvessel.owl and gearspecies.owl.
 +
This must be inferred compositionally, and requires either  more sophisticated logical pattern, like 'property chain', available in OWL2 (but not in OWL1), or a complex reasoning pattern, like 'DL classifier+SPARQL', or 'DL classifier+SWRL rule firing'.
(relatedCPs): http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearspecies.owl
(relatedCPs): http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearspecies.owl
 +
 +
(hasComponent): <http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearspecies.owl>
(imports): http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl
(imports): http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl
-
(versionInfo): Created by Alessandro Adamou
+
(imports): http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearspecies.owl
-
(versionInfo): 1.0
+
(hasComponent): <http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearvessel.owl>
-
{{Scenarios about me}}
+
 
-
{{Reviews about me}}
+
(imports): http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearvessel.owl
 +
 
 +
(versionInfo): 1.1

Revision as of 22:55, 27 April 2009


This pattern has been certified.

Related submission, with evaluation history, can be found here

If you are a member of quality committee please visit the

evaluation section

If you are author of this proposal or you want to contribute to this pattern's review, you can:

In general, it could be useful to visit the evaluation section to have information about the evaluation process of this proposal

Current revision ID: 3917

Image:Vesselspecies.jpg

General description

Name: VesselSpecies
Submitted by: AlessandroAdamou
Also Known As:
Intent: to provide a direct relation between aquatic species and vessels that are able to catch them, regardless of the fishing gear used.
Domains:
Competency Questions:
  • what vessel types can catch what species? (provided that species are caught by geartypes are used by vessel types)
Solution description:
Reusable OWL Building Block: http://www.ontologydesignpatterns.org/cp/owl/fsdas/vesselspecies.owl (794)
Consequences: This pattern should be used in scenarios where a VesselType can be deemed suitable for catching some AquaticSpecies for reasons other than mounting some fishing gear of a suitable GearType. It is strictly related to the gearspecies pattern, in that it uses the catchesSpecies and isCaught property pair to define this behaviour. For the sake of reuse, no domain is declared for catchesSpecies, appropriate restrictions having beed applied instead.
Scenarios: give me the species caught using 'gillneters'
Known Uses:
Web References:
Other References:
Examples (OWL files):
Extracted From:
Reengineered From:
Has Components:
Specialization Of:
Related CPs:


Elements

The VesselSpecies Content OP locally defines the following ontology elements:

ObjectProperty isCaughtBy (owl:ObjectProperty) Actually a composed property: this needs either a property chain, a SPARQL query, or a SWRL rule to gather a value. E.g. in SPARQL:


CONSTRUCT {?x :catchesSpecies ?y . ?y isCaughtBy ?x}

WHERE {

?x gearvessel:usesGearType ?z .

?z gearspecies:catchesSpecies ?y

}

isCaughtBy page
ObjectProperty catchesSpecies (owl:ObjectProperty) Actually a composed property: this needs either a property chain, a SPARQL query, or a SWRL rule to gather a value. E.g. in SPARQL:


CONSTRUCT {?x :catchesSpecies ?y . ?y isCaughtBy ?x}

WHERE {

?x gearvessel:usesGearType ?z .

?z gearspecies:catchesSpecies ?y

}

catchesSpecies page
ObjectProperty isCaughtByVesselType (owl:ObjectProperty)
isCaughtByVesselType page


Scenarios

Scenarios about VesselSpecies

No scenario is added to this Content OP.

Reviews

Reviews about VesselSpecies
Review article Posted on About revision (current is 3917)
AldoGangemi about VesselSpecies 245490817 March 2009 36863,686

This revision (revision ID 3917) takes in account the reviews: AldoGangemi about VesselSpecies

Other info at evaluation tab

This pattern composes gearvessel.owl and gearspecies.owl. This must be inferred compositionally, and requires either more sophisticated logical pattern, like 'property chain', available in OWL2 (but not in OWL1), or a complex reasoning pattern, like 'DL classifier+SPARQL', or 'DL classifier+SWRL rule firing'.

(type): http://www.w3.org/2002/07/owl#Ontology

(versionInfo): Created by Alessandro Adamou

(comment): This pattern composes gearvessel.owl and gearspecies.owl. This must be inferred compositionally, and requires either more sophisticated logical pattern, like 'property chain', available in OWL2 (but not in OWL1), or a complex reasoning pattern, like 'DL classifier+SPARQL', or 'DL classifier+SWRL rule firing'.

(relatedCPs): http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearspecies.owl

(hasComponent): <http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearspecies.owl>

(imports): http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl

(imports): http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearspecies.owl

(hasComponent): <http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearvessel.owl>

(imports): http://www.ontologydesignpatterns.org/cp/owl/fsdas/gearvessel.owl

(versionInfo): 1.1

Personal tools
Quality Committee
Content OP publishers