1 /* Copyright 2002-2025 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 import org.orekit.gnss.metric.messages.common.ClockCorrection;
20 import org.orekit.gnss.metric.messages.common.OrbitCorrection;
21
22 /**
23 * Container for SSR IGM03 data.
24 * @author Bryan Cazabonne
25 * @since 11.0
26 */
27 public class SsrIgm03Data extends SsrIgmData {
28
29 /** GNSS IOD. */
30 private int gnssIod;
31
32 /** Container for SSR orbit correction data. */
33 private OrbitCorrection orbitCorrection;
34
35 /** Container for clock correction data. */
36 private ClockCorrection clockCorrection;
37
38 /** Constructor. */
39 public SsrIgm03Data() {
40 // Nothing to do ...
41 }
42
43 /**
44 * Get the GNSS IOD.
45 * <p>
46 * Users have to interpret the IOD value depending the
47 * satellite system of the current message.
48 * </p>
49 * @return the GNSS IOD
50 */
51 public int getGnssIod() {
52 return gnssIod;
53 }
54
55 /**
56 * Set the GNSS IOD.
57 * @param gnssIod the GNSS IOD to set
58 */
59 public void setGnssIod(final int gnssIod) {
60 this.gnssIod = gnssIod;
61 }
62
63 /**
64 * Get the orbit correction data.
65 * @return the orbit correction data
66 */
67 public OrbitCorrection getOrbitCorrection() {
68 return orbitCorrection;
69 }
70
71 /**
72 * Set the orbit correction data.
73 * @param orbitCorrection the data to set
74 */
75 public void setOrbitCorrection(final OrbitCorrection orbitCorrection) {
76 this.orbitCorrection = orbitCorrection;
77 }
78
79 /**
80 * Get the clock correction data.
81 * @return the clock correction data
82 */
83 public ClockCorrection getClockCorrection() {
84 return clockCorrection;
85 }
86
87 /**
88 * Set the clock correction data.
89 * @param clockCorrection the data to set
90 */
91 public void setClockCorrection(final ClockCorrection clockCorrection) {
92 this.clockCorrection = clockCorrection;
93 }
94
95 }