Admin
2021-02-22 abd45567c3fc695d0f360929b80730cbb61d69c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package safeluck.drive.evaluation.bean;
 
/**
 * @ProjectName: DriveJudge
 * @Package: safeluck.drive.evaluation.bean
 * @ClassName: RTKInfoBean
 * @Description: java类作用描述
 * @Author: 李占伟
 * @CreateDate: 20/7/20 上午11:27
 * @UpdateUser: 更新者
 * @UpdateDate: 20/7/20 上午11:27
 * @UpdateRemark: 更新说明
 * @Version: 1.0
 */
 
public class RTKInfoBean {
 
    /**
     * utc : 20200720032340.60
     * qf : 3
     * coord_x : -7600.317
     * coord_x_dir : N
     * coord_y : 16574.11
     * coord_y_dir : E
     * heading : 0.0
     * pitch : 0.0
     * roll : 0.0
     * sat_num : 14
     * rtcm_length : 14
     * latitude : 33.270174833333336
     * longitude : 120.78765005
     * altitude : 58.9666
     * speed : 1.72591488
     * track_ture : 0.0
     */
 
    private String utc;
    private int qf;
    private double coord_x;
    private String coord_x_dir;
    private double coord_y;
    private String coord_y_dir;
    private double heading;
    private double pitch;
    private double roll;
    private int sat_num;
    private int rtcm_length;
    private double latitude;
    private double longitude;
    private double altitude;
    private double speed;
    private double track_ture;
 
    public String getUtc() {
        return utc;
    }
 
    public void setUtc(String utc) {
        this.utc = utc;
    }
 
    public int getQf() {
        return qf;
    }
 
    public void setQf(int qf) {
        this.qf = qf;
    }
 
    public double getCoord_x() {
        return coord_x;
    }
 
    public void setCoord_x(double coord_x) {
        this.coord_x = coord_x;
    }
 
    public String getCoord_x_dir() {
        return coord_x_dir;
    }
 
    public void setCoord_x_dir(String coord_x_dir) {
        this.coord_x_dir = coord_x_dir;
    }
 
    public double getCoord_y() {
        return coord_y;
    }
 
    public void setCoord_y(double coord_y) {
        this.coord_y = coord_y;
    }
 
    public String getCoord_y_dir() {
        return coord_y_dir;
    }
 
    public void setCoord_y_dir(String coord_y_dir) {
        this.coord_y_dir = coord_y_dir;
    }
 
    public double getHeading() {
        return heading;
    }
 
    public void setHeading(double heading) {
        this.heading = heading;
    }
 
    public double getPitch() {
        return pitch;
    }
 
    public void setPitch(double pitch) {
        this.pitch = pitch;
    }
 
    public double getRoll() {
        return roll;
    }
 
    public void setRoll(double roll) {
        this.roll = roll;
    }
 
    public int getSat_num() {
        return sat_num;
    }
 
    public void setSat_num(int sat_num) {
        this.sat_num = sat_num;
    }
 
    public double getLatitude() {
        return latitude;
    }
 
    public void setLatitude(double latitude) {
        this.latitude = latitude;
    }
 
    public double getLongitude() {
        return longitude;
    }
 
    public void setLongitude(double longitude) {
        this.longitude = longitude;
    }
 
    public double getAltitude() {
        return altitude;
    }
 
    public void setAltitude(double altitude) {
        this.altitude = altitude;
    }
 
    public double getSpeed() {
        return speed;
    }
 
    public void setSpeed(double speed) {
        this.speed = speed;
    }
 
    public double getTrack_ture() {
        return track_ture;
    }
 
    public void setTrack_ture(double track_ture) {
        this.track_ture = track_ture;
    }
 
    public int getRtcm_length() {
        return rtcm_length;
    }
 
    public void setRtcm_length(int rtcm_length) {
        this.rtcm_length = rtcm_length;
    }
 
    @Override
    public String toString() {
        return "RTKInfoBean{" +
                "utc='" + utc + '\'' +
                ", qf=" + qf +
                ", coord_x=" + coord_x +
                ", coord_x_dir='" + coord_x_dir + '\'' +
                ", coord_y=" + coord_y +
                ", coord_y_dir='" + coord_y_dir + '\'' +
                ", heading=" + heading +
                ", pitch=" + pitch +
                ", roll=" + roll +
                ", sat_num=" + sat_num +
                ", sat_num=" + rtcm_length +
                ", latitude=" + latitude +
                ", longitude=" + longitude +
                ", altitude=" + altitude +
                ", speed=" + speed +
                ", track_ture=" + track_ture +
                '}';
    }
}