public abstract class GeoMagneticModelReader extends Object implements DataLoader, GeoMagneticDataProvider
The format of the expected model file is the following:
{model name} {epoch} {nMax} {nMaxSec} {nMax3} {validity start} {validity end} {minAlt} {maxAlt} {model name} {line number} {n} {m} {gnm} {hnm} {dgnm} {dhnm} {model name} {line number}
Example:
WMM2010 2010.00 12 12 0 2010.00 2015.00 -1.0 600.0 WMM2010 0 1 0 -29496.6 0.0 11.6 0.0 WMM2010 1 1 1 -1586.3 4944.4 16.5 -25.9 WMM2010 2
Modifier | Constructor and Description |
---|---|
protected |
GeoMagneticModelReader(String supportedNames)
Simple constructor.
|
Modifier and Type | Method and Description |
---|---|
protected void |
add(GeoMagneticField model)
Add a
GeoMagneticField to the models list. |
Collection<GeoMagneticField> |
getModels()
Returns a
Collection of the GeoMagneticField models that
have been successfully loaded. |
String |
getSupportedNames()
Get the regular expression for supported files names.
|
abstract void |
loadData(InputStream input,
String name)
Load data from a stream.
|
boolean |
stillAcceptsData()
Check if the loader still accepts new data.
|
protected GeoMagneticModelReader(String supportedNames)
Build an uninitialized reader.
supportedNames
- regular expression for supported files namespublic Collection<GeoMagneticField> getModels()
Collection
of the GeoMagneticField
models that
have been successfully loaded. The Collection
is in
insertion-order, thus it may not be sorted in order of the model epoch.getModels
in interface GeoMagneticDataProvider
Collection
of GeoMagneticField
modelspublic 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 abstract void loadData(InputStream input, String name) throws IOException, ParseException, PatriusException
loadData
in interface DataLoader
input
- data input streamname
- name of the file (or zip entry)IOException
- if data can't be readParseException
- if data can't be parsedPatriusException
- if some data is missing
or if some loader specific error occurspublic String getSupportedNames()
protected void add(GeoMagneticField model)
GeoMagneticField
to the models list.model
- model to add to listCopyright © 2017 CNES. All rights reserved.