Class SigmaEigenvectorsCovariance
- All Implemented Interfaces:
Section
Beware that the Orekit getters and setters all rely on SI units. The parsers
and writers take care of converting these SI units into CCSDS mandatory units.
The Unit class provides useful
fromSi and
toSI methods in case the callers
already use CCSDS units instead of the API SI units. The general-purpose
Unit class (without an 's') and the
CCSDS-specific Units class
(with an 's') also provide some predefined units. These predefined units and the
fromSi and
toSI conversion methods are indeed
what the parsers and writers use for the conversions.
The positional covariance one-sigma dispersions corresponding to the major,
intermediate and minor eigenvalues, followed by the associated eigenvectors.
The data is presented on a single line (12 values separated by spaces).
(Condition: Mandatory if ALT_COV_TYPE = CSIG3EIGVEC3)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble[]Get the Sigma/Eigenvectors Covariance data.booleanGet the flag indicating whether the alternate covariance type set in the CDM Object metadata section is Sigma/Eigenvectors Covariance.voidsetCsig3eigvec3(double[] csig3eigvec3) Set the Sigma/Eigenvectors Covariance data.voidvalidate(double version) Check is all mandatory entries have been initialized.Methods inherited from class org.orekit.files.ccsds.section.CommentsContainer
acceptComments, addComment, checkAllowed, checkNotNaN, checkNotNegative, checkNotNull, getComments, refuseFurtherComments, setComments
-
Constructor Details
-
SigmaEigenvectorsCovariance
public SigmaEigenvectorsCovariance(boolean altCovFlag) Simple constructor.The Sigma/Eigenvectors Covariance data is only provided if
CdmMetadataKey.ALT_COV_TYPEisAltCovarianceType.CSIG3EIGVEC3, otherwise its terms will return NaN.- Parameters:
altCovFlag- Flag indicating whether the alternate covariance type set in the CDM Object metadata section is Sigma/Eigenvectors Covariance.
-
-
Method Details
-
validate
public void validate(double version) Check is all mandatory entries have been initialized.This method should throw an exception if some mandatory entries are missing or not compatible with version number.
- Specified by:
validatein interfaceSection- Overrides:
validatein classCommentsContainer- Parameters:
version- format version
-
getCsig3eigvec3
public double[] getCsig3eigvec3()Get the Sigma/Eigenvectors Covariance data.The Sigma/Eigenvectors Covariance data is only provided if
CdmMetadataKey.ALT_COV_TYPEisAltCovarianceType.CSIG3EIGVEC3, otherwise its terms will return NaN.- Returns:
- covarianceData the covariance data in the Sigma/Eigenvectors format.
-
setCsig3eigvec3
public void setCsig3eigvec3(double[] csig3eigvec3) Set the Sigma/Eigenvectors Covariance data.- Parameters:
csig3eigvec3- the covariance data in the Sigma/Eigenvectors format.
-
isAltCovFlagSet
public boolean isAltCovFlagSet()Get the flag indicating whether the alternate covariance type set in the CDM Object metadata section is Sigma/Eigenvectors Covariance.- Returns:
- the altCovFlag
-