use of org.orekit.time.ChronologicalComparator in project Orekit by CS-SI.
the class BulletinBFilesLoaderTest method testNewFormatInconsistentDate.
@Test
public void testNewFormatInconsistentDate() throws OrekitException {
setRoot("new-bulletinB");
IERSConventions.NutationCorrectionConverter converter = IERSConventions.IERS_2010.getNutationCorrectionConverter();
SortedSet<EOPEntry> history = new TreeSet<EOPEntry>(new ChronologicalComparator());
try {
new BulletinBFilesLoader("bulletinb-inconsistent-date.270").fillHistory(converter, history);
Assert.fail("an exception should have been thrown");
} catch (OrekitException oe) {
Assert.assertEquals(OrekitMessages.INCONSISTENT_DATES_IN_IERS_FILE, oe.getSpecifier());
}
}
use of org.orekit.time.ChronologicalComparator in project Orekit by CS-SI.
the class BulletinBFilesLoaderTest method testStartDate.
@Test
public void testStartDate() throws OrekitException {
setRoot("regular-data");
IERSConventions.NutationCorrectionConverter converter = IERSConventions.IERS_2010.getNutationCorrectionConverter();
SortedSet<EOPEntry> history = new TreeSet<EOPEntry>(new ChronologicalComparator());
new BulletinBFilesLoader(FramesFactory.BULLETINB_2000_FILENAME).fillHistory(converter, history);
Assert.assertEquals(new AbsoluteDate(2005, 12, 5, TimeScalesFactory.getUTC()), new EOPHistory(IERSConventions.IERS_2010, history, true).getStartDate());
}
use of org.orekit.time.ChronologicalComparator in project Orekit by CS-SI.
the class BulletinBFilesLoaderTest method testNewFormatInconsistent.
@Test(expected = OrekitException.class)
public void testNewFormatInconsistent() throws OrekitException {
setRoot("new-bulletinB");
IERSConventions.NutationCorrectionConverter converter = IERSConventions.IERS_2010.getNutationCorrectionConverter();
SortedSet<EOPEntry> history = new TreeSet<EOPEntry>(new ChronologicalComparator());
new BulletinBFilesLoader("^bulletinb-inconsistent\\.270$").fillHistory(converter, history);
}
use of org.orekit.time.ChronologicalComparator in project Orekit by CS-SI.
the class BulletinBFilesLoaderTest method testOldFormat1980.
@Test
public void testOldFormat1980() throws OrekitException {
setRoot("old-bulletinB");
IERSConventions.NutationCorrectionConverter converter = IERSConventions.IERS_1996.getNutationCorrectionConverter();
SortedSet<EOPEntry> data = new TreeSet<EOPEntry>(new ChronologicalComparator());
new BulletinBFilesLoader("^bulletinb_IAU1980-220\\.txt$").fillHistory(converter, data);
EOPHistory history = new EOPHistory(IERSConventions.IERS_1996, data, true);
Assert.assertEquals(new AbsoluteDate(2006, 4, 4, TimeScalesFactory.getUTC()), history.getStartDate());
Assert.assertEquals(new AbsoluteDate(2006, 5, 4, TimeScalesFactory.getUTC()), history.getEndDate());
}
use of org.orekit.time.ChronologicalComparator in project Orekit by CS-SI.
the class EOPC04FilesLoaderTest method testEndDate.
@Test
public void testEndDate() throws OrekitException {
setRoot("regular-data");
IERSConventions.NutationCorrectionConverter converter = IERSConventions.IERS_2010.getNutationCorrectionConverter();
SortedSet<EOPEntry> history = new TreeSet<EOPEntry>(new ChronologicalComparator());
new EOPC04FilesLoader(FramesFactory.EOPC04_2000_FILENAME).fillHistory(converter, history);
Assert.assertEquals(new AbsoluteDate(2005, 12, 31, TimeScalesFactory.getUTC()), new EOPHistory(IERSConventions.IERS_2010, history, true).getEndDate());
}
Aggregations