Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Solar System Corpus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tetras MARS
corpus
Solar System Corpus
Commits
b54acbda
Commit
b54acbda
authored
2 years ago
by
David Rouquet
Browse files
Options
Downloads
Patches
Plain Diff
maner as dataproperty and related axioms
parent
0b7514b3
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
data/SSC-01/SSC-01-01/SSC-01-01.owl.ttl
+169
-0
169 additions, 0 deletions
data/SSC-01/SSC-01-01/SSC-01-01.owl.ttl
with
169 additions
and
0 deletions
data/SSC-01/SSC-01-01/SSC-01-01.owl.ttl
0 → 100644
+
169
−
0
View file @
b54acbda
@prefix
:
<https://tetras-libre.fr/mars/ssc#>
.
@prefix
owl:
<http://www.w3.org/2002/07/owl#>
.
@prefix
rdf:
<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
.
@prefix
xml:
<http://www.w3.org/XML/1998/namespace>
.
@prefix
xsd:
<http://www.w3.org/2001/XMLSchema#>
.
@prefix
rdfs:
<http://www.w3.org/2000/01/rdf-schema#>
.
@base
<http://www.w3.org/2002/07/owl#>
.
[
rdf:
type
owl:
Ontology
]
.
#################################################################
# Object Properties
#################################################################
### https://tetras-libre.fr/mars/ssc#bind
:
bind
rdf:
type
owl:
ObjectProperty
;
owl:
inverseOf
:
bind-by
.
### https://tetras-libre.fr/mars/ssc#bind-by
:
bind-by
rdf:
type
owl:
ObjectProperty
.
### https://tetras-libre.fr/mars/ssc#direct-orbit
:
direct-orbit
rdf:
type
owl:
ObjectProperty
;
rdfs:
subPropertyOf
:
orbit
.
### https://tetras-libre.fr/mars/ssc#has-part
:
has-part
rdf:
type
owl:
ObjectProperty
;
owl:
inverseOf
:
part-of
.
### https://tetras-libre.fr/mars/ssc#not-direct-orbit
:
not-direct-orbit
rdf:
type
owl:
ObjectProperty
;
rdfs:
subPropertyOf
:
orbit
.
### https://tetras-libre.fr/mars/ssc#orbit
:
orbit
rdf:
type
owl:
ObjectProperty
.
### https://tetras-libre.fr/mars/ssc#part-of
:
part-of
rdf:
type
owl:
ObjectProperty
.
#################################################################
# Data properties
#################################################################
### https://tetras-libre.fr/mars/ssc#manner
:
manner
rdf:
type
owl:
DatatypeProperty
.
#################################################################
# Classes
#################################################################
### http://www.w3.org/2002/07/owl#individual
owl:
individual
rdf:
type
owl:
Class
.
### http://www.w3.org/2002/07/owl#objectProperty
owl:
objectProperty
rdf:
type
owl:
Class
.
### https://tetras-libre.fr/mars/ssc#gravitation
:
gravitation
rdf:
type
owl:
Class
.
### https://tetras-libre.fr/mars/ssc#gravitationally-bound-system
:
gravitationally-bound-system
rdf:
type
owl:
Class
;
rdfs:
subClassOf
:
system
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
:
bind-by
;
owl:
hasValue
:
gravitation
]
.
### https://tetras-libre.fr/mars/ssc#object
:
object
rdf:
type
owl:
Class
.
### https://tetras-libre.fr/mars/ssc#object-orbit-sun
:
object-orbit-sun
rdf:
type
owl:
Class
;
rdfs:
subClassOf
:
object
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
:
orbit
;
owl:
hasValue
:
sun
]
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
:
part-of
;
owl:
hasValue
:
solar-system
]
.
### https://tetras-libre.fr/mars/ssc#object-orbit-sun-directly
:
object-orbit-sun-directly
rdf:
type
owl:
Class
;
rdfs:
subClassOf
:
object-orbit-sun
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
:
direct-orbit
;
owl:
hasValue
:
sun
]
.
### https://tetras-libre.fr/mars/ssc#object-orbit-sun-indirectly
:
object-orbit-sun-indirectly
rdf:
type
owl:
Class
;
rdfs:
subClassOf
:
object-orbit-sun
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
:
not-direct-orbit
;
owl:
hasValue
:
sun
]
.
### https://tetras-libre.fr/mars/ssc#system
:
system
rdf:
type
owl:
Class
.
#################################################################
# Individuals
#################################################################
### https://tetras-libre.fr/mars/ssc#bind
:
bind
rdf:
type
owl:
NamedIndividual
,
owl:
objectProperty
.
### https://tetras-libre.fr/mars/ssc#direct-orbit
:
direct-orbit
rdf:
type
owl:
NamedIndividual
;
:
manner
"direct"
.
### https://tetras-libre.fr/mars/ssc#gravitation
:
gravitation
rdf:
type
owl:
NamedIndividual
.
### https://tetras-libre.fr/mars/ssc#not-direct-orbit
:
not-direct-orbit
rdf:
type
owl:
NamedIndividual
;
:
manner
"not-direct"
.
### https://tetras-libre.fr/mars/ssc#solar-system
:
solar-system
rdf:
type
owl:
NamedIndividual
,
owl:
individual
,
:
gravitationally-bound-system
.
### https://tetras-libre.fr/mars/ssc#sun
:
sun
rdf:
type
owl:
NamedIndividual
,
owl:
individual
;
:
part-of
:
solar-system
.
#################################################################
# General axioms
#################################################################
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
:
manner
;
owl:
hasValue
"direct"
;
owl:
disjointWith
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
:
manner
;
owl:
hasValue
"not-direct"
]
]
.
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment