SpacecraftStateInterpolator constructor ignores extrapolation threshold
Regardless of which constructor is used, SpacecraftStateInterpolator will always use DEFAULT_EXTRAPOLATION_THRESHOLD_SEC
@Test
public void testConstructor() {
Frame gcrf = DataContext.getDefault().getFrames().getGCRF();
SpacecraftStateInterpolator spacecraftStateInterpolator = new SpacecraftStateInterpolator(5, 7.0, gcrf, gcrf);
assertEquals(7.0, spacecraftStateInterpolator.getExtrapolationThreshold());
}
Edit: Orekit 12.0
Edited by Christopher Schank