-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #177 from HSLdevcom/develop
1.3.20
- Loading branch information
Showing
24 changed files
with
9,873 additions
and
3,825 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
syntax = "proto2"; | ||
|
||
package proto; | ||
|
||
option java_package = "fi.hsl.common.transitdata.proto"; | ||
option java_outer_classname = "Eke"; | ||
|
||
message EkeSummary { | ||
required int64 ekeDate = 1; | ||
required int32 trainNumber = 2; | ||
required string topicPart = 3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
syntax = "proto2"; | ||
|
||
package proto; | ||
|
||
option java_package = "fi.hsl.common.passengercount.proto"; | ||
option java_outer_classname = "PassengerCount"; | ||
|
||
message Data { | ||
required int32 SchemaVersion = 1 [default = 1]; | ||
optional string topic = 2; | ||
required Payload payload = 3; | ||
} | ||
|
||
message Payload { | ||
required string desi = 1; | ||
required string dir = 2; | ||
required int32 oper = 3; | ||
required int32 veh = 4; | ||
required int64 tst = 5; | ||
required int64 tsi = 6; | ||
required double lat = 7; | ||
required double long = 8; | ||
required double odo = 9; | ||
required string oday = 10; | ||
required int32 jrn = 11; | ||
required int32 line = 12; | ||
required string start = 13; | ||
required string loc = 14; | ||
required int32 stop = 15; | ||
required string route = 16; | ||
required VehicleCounts vehicleCounts = 17; | ||
} | ||
|
||
message VehicleCounts{ | ||
required string countQuality = 1; | ||
required int32 vehicleLoad = 2; | ||
required double vehicleLoadRatio = 3; | ||
repeated DoorCount doorCounts = 4; | ||
optional string extensions = 5; | ||
} | ||
|
||
message DoorCount{ | ||
required string door = 1; | ||
repeated Count count = 2; | ||
} | ||
|
||
message Count{ | ||
required string clazz = 1; | ||
required int32 in = 2; | ||
required int32 out = 3; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.