Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 60a60164

Přidáno uživatelem Roman Kalivoda před téměř 4 roky(ů)

Re #8955 refactoring

Zobrazit rozdíly:

Server/ServerApp/Predictor/ModelInput.cs
13 13
    /// </summary>
14 14
    public class ModelInput
15 15
    {
16
        /// <summary>
17
        /// Start time of the information.
18
        /// </summary>
19
        public DateTime Time { get; set; }
20

  
16 21
        /// <summary>
17 22
        /// A label of this training input.
18 23
        /// </summary>
......
26 31
        public float Temp { get; set; }
27 32

  
28 33
        /// <summary>
29
        /// Time of the predicted turnout.
34
        /// Hour of the predicted turnout.
30 35
        /// </summary>
31
        [ColumnName("Time"), LoadColumn(2)]
32
        public DateTime Time { get; set; }
36
        [ColumnName("Hour"), LoadColumn(2)]
37
        public int Hour { get; set; }
33 38

  
34 39
        /// <summary>
35
        /// Wind velocity in ? units
40
        /// Wind velocity in m/s
36 41
        /// </summary>
37 42
        [ColumnName("Wind"), LoadColumn(3)]
38 43
        public float Wind { get; set; }
39 44

  
40 45
        /// <summary>
41
        /// Precipitation
46
        /// Precipitation in %
42 47
        /// </summary>
43 48
        [ColumnName("Rain"), LoadColumn(4)]
44 49
        public float Rain { get; set; }

Také k dispozici: Unified diff