Class AmbiguityCache
- java.lang.Object
-
- org.orekit.estimation.measurements.gnss.AmbiguityCache
-
public class AmbiguityCache extends Object
Cache forAmbiguityDriver
.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Field Summary
Fields Modifier and Type Field Description static AmbiguityCache
DEFAULT_CACHE
Deprecated.this default cache is only a temporary hack for compatibility purposes it will be removed in Orekit 13.0
-
Constructor Summary
Constructors Constructor Description AmbiguityCache()
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AmbiguityDriver
getAmbiguity(String emitter, String receiver, double wavelength)
Get a cached driver for ambiguity.
-
-
-
Field Detail
-
DEFAULT_CACHE
@Deprecated public static final AmbiguityCache DEFAULT_CACHE
Deprecated.this default cache is only a temporary hack for compatibility purposes it will be removed in Orekit 13.0Default cache.
-
-
Method Detail
-
getAmbiguity
public AmbiguityDriver getAmbiguity(String emitter, String receiver, double wavelength)
Get a cached driver for ambiguity.A new parameter driver is created and cached the first time an emitter/receiver/wavelength triplet is used; after that, the cached driver will be returned when the same triplet is passed again
- Parameters:
emitter
- emitter idreceiver
- receiver idwavelength
- signal wavelength- Returns:
- parameter driver for the emitter/receiver/wavelength triplet
-
-