As by default sequence order is not maintained in an OWL ontology. How can i model sequence in an OWL-DL ontology ?
相关问题
- R time series data, daily only working days
- How to sort a number sequence that wraps around
- Apply seq.Date using two dataframe columns [duplic
- Calculate the depth of subclass in the OWL ontolog
- It is possible to do a autonumber sequence in a SE
相关文章
- Given a list and a bitmask, how do I return the va
- rxjs timeout to first value
- Creating a sequence of dates with a special format
- arrange dataframe based on one column eliminating
- Meaning of owl:hasValue?
- Jena Fuseki assembler file + TDB + OWL reasoner
- Generating sequence number in C#
- Generate time sequence with step 7 seconds
One way to model a sequence and order its elements is to just introduc a
hasNext
property to capture sequence order:Then, assuming the items you want to sequence in order are represented as instances, you can capture their order in the sequence like so:
OWL allows you to state e.g.:
These statements allow you to describe sequences (possibly open-ended, i.e. with an infinite model).
(The above statements were written in ACE, use the ACE parser to convert them to OWL, where
item
becomes a class,follows
becomes an object property andItem1
andItem2
are individuals.)