Skip to content

Commit 62ff243

Browse files
Markus WaldmannMarkus Waldmann
authored andcommitted
Moved TimeOfDay message back to evade confusion
Signed-off-by: Markus Waldmann <Markus.Waldmann@stud.hs-kempten.de>
1 parent 62fd3a9 commit 62ff243

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

osi_environment.proto

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,25 @@ message EnvironmentalConditions
2323
//
2424
optional TimeOfDay time_of_day = 2;
2525

26+
// The Unix epoch (or Unix time or POSIX time or Unix timestamp) is
27+
// the number of seconds that have elapsed since January 1, 1970
28+
// (midnight UTC/GMT [1]), not counting leap seconds [2].
29+
// Historically, the origin of UNIX system time was referred to as
30+
// "00:00:00 GMT, January 1, 1970" [2]. Literally speaking the epoch
31+
// is Unix time 0 (midnight 1/1/1970), but 'epoch' is often used as
32+
// a synonym for 'Unix time'. Many Unix systems store epoch dates as
33+
// a signed 32-bit integer, which might cause problems on January 19,
34+
// 2038 (known as the Year 2038 problem or Y2038).
35+
//
36+
// \note You can convert the timestamp using the following [routines
37+
// sorted by languages](https://www.epochconverter.com/#code).
38+
//
39+
// \par References:
40+
// [1] ITU Radiocommunication Assembly. (2002). <em>Recommondation ITU-R TF.460-6 Standard-frequency and time-signal emissions</em>. (Rec. ITU-R TF.460-6). Retrieved January 25, 2020, from http://www.itu.int/dms_pubrec/itu-r/rec/tf/R-REC-TF.460-6-200202-I!!PDF-E.pdf \n
41+
// [2] The Open Group. (2018). <em>POSIX.1-2017</em> The Open Group Base Specifications Issue 7, 2018 edition. IEEE Std 1003.1-2017 (Revision of IEEE Std 1003.1-2008). Retrieved January 25, 2020, from https://pubs.opengroup.org/onlinepubs/9699919799/xrat/contents.html
42+
//
43+
optional int64 unix_timestamp = 8;
44+
2645
// Atmospheric pressure in Pascal at z=0.0 in world frame (about 101325
2746
// Pa).
2847
//
@@ -68,25 +87,6 @@ message EnvironmentalConditions
6887
// Description of the fog.
6988
//
7089
optional Fog fog = 7;
71-
72-
// The Unix epoch (or Unix time or POSIX time or Unix timestamp) is
73-
// the number of seconds that have elapsed since January 1, 1970
74-
// (midnight UTC/GMT [1]), not counting leap seconds [2].
75-
// Historically, the origin of UNIX system time was referred to as
76-
// "00:00:00 GMT, January 1, 1970" [2]. Literally speaking the epoch
77-
// is Unix time 0 (midnight 1/1/1970), but 'epoch' is often used as
78-
// a synonym for 'Unix time'. Many Unix systems store epoch dates as
79-
// a signed 32-bit integer, which might cause problems on January 19,
80-
// 2038 (known as the Year 2038 problem or Y2038).
81-
//
82-
// \note You can convert the timestamp using the following [routines
83-
// sorted by languages](https://www.epochconverter.com/#code).
84-
//
85-
// \par References:
86-
// [1] ITU Radiocommunication Assembly. (2002). <em>Recommondation ITU-R TF.460-6 Standard-frequency and time-signal emissions</em>. (Rec. ITU-R TF.460-6). Retrieved January 25, 2020, from http://www.itu.int/dms_pubrec/itu-r/rec/tf/R-REC-TF.460-6-200202-I!!PDF-E.pdf \n
87-
// [2] The Open Group. (2018). <em>POSIX.1-2017</em> The Open Group Base Specifications Issue 7, 2018 edition. IEEE Std 1003.1-2017 (Revision of IEEE Std 1003.1-2008). Retrieved January 25, 2020, from https://pubs.opengroup.org/onlinepubs/9699919799/xrat/contents.html
88-
//
89-
optional int64 unix_timestamp = 8;
9090

9191
// Optional external reference to the environmental condition sources.
9292
//

0 commit comments

Comments
 (0)