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 { ...@@ -67,6 +67,9 @@ public interface Rugged {
/** Constant for International Terrestrial Reference Frame. */ /** Constant for International Terrestrial Reference Frame. */
ITRF, ITRF,
/** Constant for International Terrestrial Reference Frame based on older equinox paradigm. */
ITRF_EQUINOX,
/** Constant for Geocentric True Of Date frame. */ /** Constant for Geocentric True Of Date frame. */
GTOD GTOD
......
...@@ -246,6 +246,8 @@ public class RuggedImpl implements Rugged { ...@@ -246,6 +246,8 @@ public class RuggedImpl implements Rugged {
switch (bodyRotatingFrame) { switch (bodyRotatingFrame) {
case ITRF : case ITRF :
return FramesFactory.getITRF(IERSConventions.IERS_2010, true); return FramesFactory.getITRF(IERSConventions.IERS_2010, true);
case ITRF_EQUINOX :
return FramesFactory.getITRFEquinox(IERSConventions.IERS_1996, true);
case GTOD : case GTOD :
return FramesFactory.getGTOD(IERSConventions.IERS_1996, true); return FramesFactory.getGTOD(IERSConventions.IERS_1996, true);
default : 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