CombinationType.java

  1. /* Copyright 2002-2024 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.estimation.measurements.gnss;

  18. /**
  19.  * Enumerate for combination of measurements types.
  20.  *
  21.  * @author Bryan Cazabonne
  22.  * @since 10.1
  23.  */
  24. public enum CombinationType {

  25.     /** Phase minus code combination. */
  26.     PHASE_MINUS_CODE("Phase minus code"),

  27.     /** GRoup And Phase Ionospheric Calibration (GRAPHIC) combination. */
  28.     GRAPHIC("GRAPHIC"),

  29.     /** Geometry-free combination. */
  30.     GEOMETRY_FREE("Geometry Free"),

  31.     /** Ionosphere-free combination. */
  32.     IONO_FREE("Ionosphere Free"),

  33.     /** Narrow-lane combination. */
  34.     NARROW_LANE("Narrow Lane"),

  35.     /** Wide-lane combination. */
  36.     WIDE_LANE("Wide Lane"),

  37.     /** Melbourne-Wübbena combination. */
  38.     MELBOURNE_WUBBENA("Melbourne Wubbena");

  39.     /** Name of the combination of measurements. */
  40.     private final String name;

  41.     /**
  42.      * Constructor.
  43.      * @param name name of the combination of measurements
  44.      */
  45.     CombinationType(final String name) {
  46.         this.name = name;
  47.     }

  48.     /**
  49.      * Get the name of the combination of measurements.
  50.      * @return the name
  51.      */
  52.     public String getName() {
  53.         return name;
  54.     }

  55. }