# Occupancies ## Example ``` operator,trip_id,line,weekday,trip_start_date,trip_dep_time,trip_arr_time,trip_dep_id,trip_arr_id,dep_id,occupancy,capacity,derived_capacity DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550001,3,480,LWD DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550232,4,480,LWD DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550231,4,480,LWD DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550230,4,480,LWD DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550229,4,480,LWD DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550228,2,480,LWD DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550227,2,480,LWD DB Regio,13050,RE5,0,2023-01-02 00:00:00,2023-01-02 04:31:00,2023-01-02 05:51:00,900550001,900550000,900550226,11,480,LWD ``` ## Field types ``` operator alphanumeric trip_id alphanumeric line alphanumeric weekday int64 trip_start_date datetime64[ns] trip_dep_time datetime64[ns] trip_arr_time datetime64[ns] trip_dep_id int64 trip_arr_id int64 dep_id int64 occupancy int64 capacity int64 derived_capacity alphanumeric ``` ## Field descriptions ``` operator Operator name trip_id Unique trip id for the whole trip, group by this line Line name weekday 0=Monday, 1=Tuesday,...) trip_start_date Departure date without time of the whole trip trip_dep_time Departure date with time for the whole trip trip_arr_time Arrival date with time for the whole trip trip_dep_id Departure stop id for the whole trip trip_arr_id Arrival stop id for the whole trip dep_id Departure stop id of one segment within the whole trip occupancy Counted persons (real persons, not percentage of capacity) capacity Capacity of the vehicle derived_capacity 'LWD', 'LWDA', 'LWA', 'ROOT', 'LW' ``` #### Field: derived_capacity HaCon does not evaluate this field, as we do not know the exact system topic behind it. | Code | Descripption | | ------ | -------------------------- | | 'LWD' | Counted by counting system | | 'LWDA' | Derived | | 'LWA' | Derived | | 'ROOT' | Derived | | 'LW' | Derived | ## Remarks The content of the "line" field may differ from the GTFS data in the space area. Furthermore, the individual journeys and times may differ from the journeys in the GTFS data. Here the user may have to match "soft" and "intelligent".