Package org.orekit.gnss
Class RinexLoader
- java.lang.Object
-
- org.orekit.gnss.RinexLoader
-
public class RinexLoader extends Object
Loader for Rinex measurements files.Supported versions are: 2.00, 2.10, 2.11, 2.12 (unofficial), 2.20 (unofficial), 3.00, 3.01, 3.02, and 3.03.
- Since:
- 9.2
- See Also:
- rinex 2.0, rinex 2.10, rinex 2.11, unofficial rinex 2.12, unofficial rinex 2.20, rinex 3.00, rinex 3.01, rinex 3.02, rinex 3.03
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
RinexLoader.Parser
Parser for rinex files.
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_RINEX_2_SUPPORTED_NAMES
Default supported files name pattern for rinex 2 observation files.static String
DEFAULT_RINEX_3_SUPPORTED_NAMES
Default supported files name pattern for rinex 3 observation files.
-
Constructor Summary
Constructors Constructor Description RinexLoader(InputStream input, String name)
Simple constructor.RinexLoader(String supportedNames)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description List<ObservationDataSet>
getObservationDataSets()
Get parsed rinex observations data sets.Map<RinexHeader,List<ObservationDataSet>>
getObservations()
Deprecated.as of 9.3 replaced bygetObservationDataSets()
-
-
-
Field Detail
-
DEFAULT_RINEX_2_SUPPORTED_NAMES
public static final String DEFAULT_RINEX_2_SUPPORTED_NAMES
Default supported files name pattern for rinex 2 observation files.- See Also:
- Constant Field Values
-
DEFAULT_RINEX_3_SUPPORTED_NAMES
public static final String DEFAULT_RINEX_3_SUPPORTED_NAMES
Default supported files name pattern for rinex 3 observation files.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RinexLoader
public RinexLoader(String supportedNames)
Simple constructor.This constructor is used when the rinex files are managed by the global
DataProvidersManager
.- Parameters:
supportedNames
- regular expression for supported files names
-
RinexLoader
public RinexLoader(InputStream input, String name)
Simple constructor.- Parameters:
input
- data input streamname
- name of the file (or zip entry)
-
-
Method Detail
-
getObservations
@Deprecated public Map<RinexHeader,List<ObservationDataSet>> getObservations()
Deprecated.as of 9.3 replaced bygetObservationDataSets()
Get parsed rinex observations.- Returns:
- unmodifiable view of parsed rinex observations
-
getObservationDataSets
public List<ObservationDataSet> getObservationDataSets()
Get parsed rinex observations data sets.- Returns:
- unmodifiable view of parsed rinex observations
- Since:
- 9.3
-
-