Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
Orekit
Orekit
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 52
    • Issues 52
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge Requests 6
    • Merge Requests 6
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • CI / CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Orekit
  • OrekitOrekit
  • Issues
  • #137

Closed
Open
Opened May 18, 2013 by Luc Maisonobe@lucOwner

Conversion from Cartesian to geodetic coordinates fails for very far points.

When attempting conversion from Cartesian coordinates to geodetic coordinates for very far points (typically Sun),
the conversion fails with an internal error exception as a loop which should always converge fails to converge.

Changing the accuracy threshold sometimes work, but it really error prone.

An example of such a case is:

@Test
public void testFarPoint() throws OrekitException {
    AbsoluteDate date = AbsoluteDate.J2000_EPOCH;
    Frame frame = FramesFactory.getITRF2005(true);
    OneAxisEllipsoid model = new OneAxisEllipsoid(90.0, 5.0 / 9.0, frame);
    Vector3D point     = new Vector3D(1.0e15, 2.0e15, -1.0e12);
    GeodeticPoint gp = model.transform(point, frame, date);
    Vector3D rebuilt = model.transform(gp);
    Assert.assertEquals(0.0, rebuilt.distance(point), 1.0e-15 * point.getNorm());
}

(from redmine: issue id 137, created on 2013-05-18, closed on 2013-05-18)

To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking
None
Due date
None
Reference: orekit/orekit#137