SignalCode.java

  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;

  18. /**
  19.  * Enumerate for satellite signal code.
  20.  *
  21.  * @author Bryan Cazabonne
  22.  * @since 10.1
  23.  */
  24. public enum SignalCode {

  25.     /** Galileo A PRS / NavIC A SPS / GLONASS L1OCd and L2CSI / Beidou B1A and B3A codes. */
  26.     A,

  27.     /** Galileo B I/NAV and B C/NAV / NavIC B RS / GLONASS L1OCp and LO2Cp codes. */
  28.     B,

  29.     /** GPS C/A / GLONASS C/A / Galileo C / SBAS C/A / QZSS C/A / QZSS C/B / NavIC C RS(P) codes. */
  30.     C,

  31.     /** GPS L1(C/A) + (P2-P1) / QZSS L5D / Beidou Data codes. */
  32.     D,

  33.     /** QZSS L6E and L6 (D+E) codes. */
  34.     E,

  35.     /** GPS I / GLONASS I / Galileo I F/NAV, I I/NAV and I / SBAS I/  Beidou I codes. */
  36.     I,

  37.     /** GPS L1C (P) and L2C (L) / QZSS L1C (P), L2C (L) and L code. */
  38.     L,

  39.     /** GPS M code. */
  40.     M,

  41.     /** Beidou B1 Codeless. */
  42.     N,

  43.     /** GPS P (AS off) / GLONASS P / QZSS L5P / Beidou Pilot codes. */
  44.     P,

  45.     /** GPS Q / GLONASS Q / Galileo Q / SBAS Q / QZSS Q / Beidou Q codes. */
  46.     Q,

  47.     /** GPS L1C (D), L2C (M) / QZSS L1C (D), L2C (M) and S codes. */
  48.     S,

  49.     /** GPS Z - tracking and similar (AS off) /  code. */
  50.     W,

  51.     /** GPS L1C (D+P), L2C (M+L) and I+Q / GLONASS I+Q, L1OCd+L1OCp and L2CSI+LO2Cp / Galileo B+C and I+Q / SBAS I+Q / QZSS L1C (D+P), L2C (M+L), I+Q and S+L / Beidou B1 (I+Q), B2b I+Q, B2a Data+Pilot, B3 (I+Q) / NavIC B+C codes. */
  52.     X,

  53.     /** GPS Y code. */
  54.     Y,

  55.     /** Galileo A+B+C / QZSS L1-SAIF, L5(D+P) and L6(D+E) / Beidou B2b Data+Pilot codes. */
  56.     Z,

  57.     /** Codeless. */
  58.     CODELESS

  59. }