public class InterpolationTableLoader extends Object implements DataLoader
Constructor and Description |
---|
InterpolationTableLoader() |
Modifier and Type | Method and Description |
---|---|
double[] |
getAbscissaGrid()
Returns a copy of the abscissa grid for the interpolation function.
|
double[] |
getOrdinateGrid()
Returns a copy of the ordinate grid for the interpolation function.
|
double[][] |
getValuesSamples()
Returns a copy of the values samples for the interpolation function.
|
void |
loadData(InputStream input,
String name)
Loads an bi-variate interpolation table from the given
InputStream . |
boolean |
stillAcceptsData()
Check if the loader still accepts new data.
|
public double[] getAbscissaGrid()
null
if the file could not be readpublic double[] getOrdinateGrid()
null
if the file could not be readpublic double[][] getValuesSamples()
null
if the file could not be readpublic 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 IOException, ParseException, PatriusException
InputStream
.
The format of the table is as follows (number of rows/columns can be extended):
Table: tableName | 0.0 | 60.0 | 66.0 ------------------------- 0 | 0.0 | 0.003 | 0.006 500 | 0.0 | 0.003 | 0.006
loadData
in interface DataLoader
input
- the input stream to read data fromname
- the name of the input fileIOException
- if data can't be readParseException
- if data can't be parsedPatriusException
- if some data is missing or unexpected
data is encounteredCopyright © 2021 CNES. All rights reserved.