Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 07-cm.adoc #96

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 2 additions & 83 deletions 23-049/sections/07-cm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,87 +5,6 @@ This Temporal Abstract Conceptual Model follows <<iso19111>>, which is the ISO a

The model is also informed by the <<w3cowltime,W3C Time Ontology in OWL>>.

[plantuml]
....
@startuml
abstract class ReferenceSystem {
dimension "dimension >= 1"
locationOfApplicability = 0..1
timeOfApplicability = 0..1
domainOfApplicability = 0..1
}
[[fig-abstract-conceptual-model]]
image::images/Figure1Mermaid.JPG[]

note right of ReferenceSystem
Note: Has at least one of:
* SpatialReferenceSystem, or
* TemporalReferenceSystem
end note

abstract class SpatialReferenceSystem {
}

abstract class TemporalReferenceSystem {
dimension = 1
}

note left of TemporalReferenceSystem
Note: Consists of one only of:
* TemporalCoordinateReferenceSystem,
* Calendar, or
* OrdinalTemporalReferenceSystem
end note

ReferenceSystem <|-- SpatialReferenceSystem : is a
ReferenceSystem <|-- TemporalReferenceSystem : is a

class OrdinalTemporalReferenceSystem {
}
class TemporalCoordinateReferenceSystem {
}
class Calendar {
}
class Timeline {
}
TemporalReferenceSystem <|-- OrdinalTemporalReferenceSystem : is a
TemporalReferenceSystem <|-- TemporalCoordinateReferenceSystem : is a
TemporalReferenceSystem <|-- Calendar : is a

OrdinalTemporalReferenceSystem "1" o-- "(ordered)" Events : consists of
OrdinalTemporalReferenceSystem "1" o-- "0..1" Epoch : anchored by
OrdinalTemporalReferenceSystem "1" --> "1..*" Notation : is represented by
TemporalCoordinateReferenceSystem "1" o-- "1" Epoch : anchored by
TemporalCoordinateReferenceSystem "1" --> "1..*" Notation : is represented by
TemporalCoordinateReferenceSystem "1" o-- "1" Timescale : must have

Calendar "1" o-- "0..1" Epoch : anchored by
Calendar "1" --> "1..*" Notation : is represented by
Calendar "1" o-- "1" Timeline : has a

Timeline "1" o-- "1..*" Algorithm : defined by

class Timescale {
StartCount
EndCount
arithmetic
}

Timescale "1" o-- "1" Clock : determined by
Timescale "1" o-- "1" UnitOfMeasure : has a

class Clock {
}
Clock "1" o-- "1..*" Ticks : counts
class Ticks {
}

class UnitOfMeasure {
Direction
}

class Algorithm {
}
Algorithm "1" o-- "2..*" Timescale : uses

@enduml

....
Loading