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

added new definition in Transportation.kif #404

Merged
merged 1 commit into from
Dec 27, 2024
Merged
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
42 changes: 42 additions & 0 deletions Transportation.kif
Original file line number Diff line number Diff line change
Expand Up @@ -2228,6 +2228,12 @@ includes all non-locomotive, non-self-powered &%RailVehicles.")
all the &%RailroadTrack and any outbuildings or other related structure
in the terminal, as well as the &%TrainStation (if there is one).")

(typicalPart RailroadTrack RailwayTerminal)

(=>
(instance ?R RailwayTerminal)
(trafficableForTrafficType ?R Train))

(subclass Railhead Railway)
(documentation Railhead EnglishLanguage "A &%Railhead is a point on a A point on a railway
system where goods (or passengers) are loaded, unloaded or transferred to other transport. [Wiktionary]")
Expand Down Expand Up @@ -3637,9 +3643,45 @@ travellers or transportation devices begin or end their journeys, or
where passengers and/or goods may be transferred. At a terminal,
&%TransportationDevices may be received, assigned, sent out, or
stored.")
(typicalPart ParkingRegion TransitTerminal)


(=>
(instance ?TERM TransitTerminal)
(hasPurpose ?TERM
(exists (?T ?P ?)
(and
(instance ?T Translocation)
(locatedAtTime ?P ?TIME ?TERM)
(or
(passenger ?T ?P)
(conveyance ?T ?P))
(equal ?TIME
(or
(BeginFn (WhenFn ?T))
(EndFn (WhenFn ?T))))))))

(=>
(instance ?TERM TransitTerminal)
(hasPurpose ?TERM
(exists (?T ?D)
(and
(patient ?T ?D)
(instance ?D TransportationDevice)
(or
(instance ?T Arriving)
(instance ?T Leaving))
(eventLocated ?T ?TERM)))))

(subclass TrainStation TransitTerminal)

(=>
(instance ?TS TrainStation)
(exists (?RT)
(and
(instance ?RT RailwayTerminal)
(located ?TS ?RT))))

(subclass MultimodalTransitPoint Region)
(subclass MultimodalTransitPoint TransitTerminal)
(documentation MultimodalTransitPoint EnglishLanguage "&%MultimodalTransitPoint is facility that
Expand Down
Loading