|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.orekit.frames.configuration.eop.RapidDataAndPredictionColumnsLoader
public class RapidDataAndPredictionColumnsLoader
Loader for IERS rapid data and prediction files in columns format (finals file).
Rapid data and prediction files contain Earth Orientation Parameters
for several years periods, in one file
only that is updated regularly.
These files contain both the data from IERS Bulletin A and IERS bulletin B. This class parses only the part from Bulletin A.
The rapid data and prediction file is recognized thanks to its base name,
which must match one of the the patterns finals.*
or
finals2000A.*
(or the same ending with .gz
for gzip-compressed files) where * stands for a word like "all", "daily",
or "data". The file with 2000A in their name correspond to the
IAU-2000 precession-nutation model whereas the files without any identifier
correspond to the IAU-1980 precession-nutation model. The files with the all
suffix start from 1973-01-01, the file with the data suffix start
from 1992-01-01 and the files with the daily suffix.
Constructor Summary | |
---|---|
RapidDataAndPredictionColumnsLoader(String supportedNames)
Build a loader for IERS bulletins B files. |
Method Summary | |
---|---|
void |
fillHistory(EOP1980History history)
Load celestial body. |
void |
fillHistory(EOP2000History history)
Load celestial body. |
void |
loadData(InputStream input,
String name)
Load data from a stream. |
boolean |
stillAcceptsData()
Check if the loader still accepts new data. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RapidDataAndPredictionColumnsLoader(String supportedNames)
supportedNames
- regular expression for supported files namesMethod Detail |
---|
public boolean stillAcceptsData()
This method is used to speed up data loading by interrupting crawling the data sets as soon as a loader has found the data it was waiting for. For loaders that can merge data from any number of sources (for example JPL ephemerides or Earth Orientation Parameters that are split among several files), this method should always return true to make sure no data is left over.
stillAcceptsData
in interface DataLoader
public void loadData(InputStream input, String name) throws OrekitException, IOException
loadData
in interface DataLoader
input
- data input streamname
- name of the file (or zip entry)
OrekitException
- if some data is missing
or if some loader specific error occurs
IOException
- if data can't be readpublic void fillHistory(EOP1980History history) throws OrekitException
fillHistory
in interface EOP1980HistoryLoader
history
- history to fill up
OrekitException
- if the history cannot be loadedpublic void fillHistory(EOP2000History history) throws OrekitException
fillHistory
in interface EOP2000HistoryLoader
history
- history to fill up
OrekitException
- if the history cannot be loaded
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |