1 /* Copyright 2002-2021 CS GROUP
2 * Licensed to CS GROUP (CS) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * CS licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 package org.orekit.gnss.metric.messages.ssr.igm;
18
19 /**
20 * Container for SSR IGM03 data.
21 * @author Bryan Cazabonne
22 * @since 11.0
23 */
24 public class SsrIgm03Data extends SsrIgmData {
25
26 /** GNSS IOD. */
27 private int gnssIod;
28
29 /** Container for SSR orbit correction data. */
30 private OrbitCorrection orbitCorrection;
31
32 /** Container for clock correction data. */
33 private ClockCorrection clockCorrection;
34
35 /** Constructor. */
36 public SsrIgm03Data() {
37 // Nothing to do ...
38 }
39
40 /**
41 * Get the GNSS IOD.
42 * <p>
43 * Users have to interpret the IOD value depending the
44 * satellite system of the current message.
45 * </p>
46 * @return the GNSS IOD
47 */
48 public int getGnssIod() {
49 return gnssIod;
50 }
51
52 /**
53 * Set the GNSS IOD.
54 * @param gnssIod the GNSS IOD to set
55 */
56 public void setGnssIod(final int gnssIod) {
57 this.gnssIod = gnssIod;
58 }
59
60 /**
61 * Get the orbit correction data.
62 * @return the orbit correction data
63 */
64 public OrbitCorrection getOrbitCorrection() {
65 return orbitCorrection;
66 }
67
68 /**
69 * Set the orbit correction data.
70 * @param orbitCorrection the data to set
71 */
72 public void setOrbitCorrection(final OrbitCorrection orbitCorrection) {
73 this.orbitCorrection = orbitCorrection;
74 }
75
76 /**
77 * Get the clock correction data.
78 * @return the clock correction data
79 */
80 public ClockCorrection getClockCorrection() {
81 return clockCorrection;
82 }
83
84 /**
85 * Set the clock correction data.
86 * @param clockCorrection the data to set
87 */
88 public void setClockCorrection(final ClockCorrection clockCorrection) {
89 this.clockCorrection = clockCorrection;
90 }
91
92 }