FieldGPSAlmanac.java
/* Copyright 2022-2026 Luc Maisonobe
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.orekit.propagation.analytical.gnss.data;
import org.hipparchus.CalculusFieldElement;
import org.orekit.orbits.FieldKeplerianOrbit;
import org.orekit.time.FieldGNSSDate;
import org.orekit.time.TimeScales;
import java.util.function.Function;
/**
* This class holds a GPS almanac as read from SEM or YUMA files.
*
* <p>Depending on the source (SEM or YUMA), some fields may be filled in or not.
* An almanac read from a YUMA file doesn't hold SVN number, average URA and satellite
* configuration.</p>
*
* @param <T> type of the field elements
* @author Luc Maisonobe
* @since 13.0
*
*/
public class FieldGPSAlmanac<T extends CalculusFieldElement<T>>
extends FieldGnssOrbitalElements<T, GPSAlmanac> {
/** Source of the almanac. */
private final String source;
/** SVN number. */
private final int svn;
/** Health status. */
private final int health;
/** Average URA. */
private final int ura;
/** Satellite configuration. */
private final int satConfiguration;
/** Creates a new instance.
* @param angularVelocity mean angular velocity of the Earth for the GNSS model
* @param weeksInCycle number of weeks in the GNSS cycle
* @param timeScales known time scales
* @param type type (null if not a navigation message)
* @param prn PRN number of the satellite
* @param toe time of ephemeris (<em>must</em> be consistent with {@code orbit})
* @param orbit Keplerian orbit in Earth-frozen frame
* @param nonKeplerian 15 non-Keplerian parameters (in the order given by {@link NonKeplerianDriversFactory}
* @param tgd group delay differential TGD for L1-L2 correction
* @param toc time of clock
* @param source source of the almanac
* @param svn SVN number
* @param health health status
* @param ura average URA
* @param satConfiguration satellite configuration
* @since 14.0
*/
public FieldGPSAlmanac(final double angularVelocity, final int weeksInCycle,
final TimeScales timeScales, final String type, final int prn,
final FieldGNSSDate<T> toe, final FieldKeplerianOrbit<T> orbit,
final T[] nonKeplerian, final T tgd,
final FieldGNSSDate<T> toc, final String source, final int svn,
final int health, final int ura, final int satConfiguration) {
super(angularVelocity, weeksInCycle, timeScales, type, prn, toe, orbit, nonKeplerian, tgd, toc);
this.source = source;
this.svn = svn;
this.health = health;
this.ura = ura;
this.satConfiguration = satConfiguration;
}
/** {@inheritDoc} */
@Override
public GPSAlmanac toNonField() {
return new GPSAlmanac(this);
}
/** {@inheritDoc} */
@Override
public <U extends CalculusFieldElement<U>>
FieldGPSAlmanac<U> toField(final FieldKeplerianOrbit<U> orbit,
final U[] nonKeplerian,
final Function<T, U> converter) {
return new FieldGPSAlmanac<>(getAngularVelocity(), getWeeksInCycle(), getTimeScales(),
getType(), getPrn(),
new FieldGNSSDate<>(orbit.getDate().getField(),
getTimeOfEphemeris().getGnssDate()),
orbit, nonKeplerian,
converter.apply(getTgd()),
new FieldGNSSDate<>(orbit.getDate().getField(),
getTimeOfClock().getGnssDate()),
getSource(), getSVN(), getHealth(),
getURA(), getSatConfiguration());
}
/**
* Gets the source of this GPS almanac.
* <p>Sources can be SEM or YUMA, when the almanac is read from a file.</p>
*
* @return the source of this GPS almanac
*/
public String getSource() {
return source;
}
/**
* Gets the satellite "SVN" reference number.
*
* @return the satellite "SVN" reference number
*/
public int getSVN() {
return svn;
}
/**
* Gets the Health status.
*
* @return the Health status
*/
public int getHealth() {
return health;
}
/**
* Gets the average URA number.
*
* @return the average URA number
*/
public int getURA() {
return ura;
}
/**
* Gets the satellite configuration.
*
* @return the satellite configuration
*/
public int getSatConfiguration() {
return satConfiguration;
}
}