We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public double [] rotateEcef2Eci(double[] PosEcef, double dT) { /* Compensate for Earth Rotation PosEcef: array [3x1] containing ECEF x,y,z in meters dT: RX Time - SV TX Time in s */ final double omegaE = 7.2921151467e-5; // WGS-84 value of the earth rotation rate [rad/s] double theta = (omegaE * dT); double [] posEci = new double[3]; posEci[0] = Math.cos(theta)*PosEcef[0] + Math.sin(theta)*PosEcef[1]; posEci[1] = -Math.sin(theta)*PosEcef[0] + Math.cos(theta)*PosEcef[1]; posEci[2] = PosEcef[2]; return posEci; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: