Skip to content
Snippets Groups Projects
Commit 8d0a1e6e authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Added ITRF equinox, for applications that rely on it...

parent 7393ad2b
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,9 @@ public interface Rugged {
/** Constant for International Terrestrial Reference Frame. */
ITRF,
/** Constant for International Terrestrial Reference Frame based on older equinox paradigm. */
ITRF_EQUINOX,
/** Constant for Geocentric True Of Date frame. */
GTOD
......
......@@ -246,6 +246,8 @@ public class RuggedImpl implements Rugged {
switch (bodyRotatingFrame) {
case ITRF :
return FramesFactory.getITRF(IERSConventions.IERS_2010, true);
case ITRF_EQUINOX :
return FramesFactory.getITRFEquinox(IERSConventions.IERS_1996, true);
case GTOD :
return FramesFactory.getGTOD(IERSConventions.IERS_1996, true);
default :
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment