Troubles with RINEX coordinates processing

Discussion in 'GPS Technical Discussion' started by Emilien942702, Jun 14, 2019.

  1. Emilien942702

    Emilien942702

    Joined:
    Jun 14, 2019
    Messages:
    1
    Likes Received:
    0
    Hi,
    I'm trying to build a 3D map, similar to http://stuffin.space but with calculated satellites positions from RINEX navigation data.
    I'm processing RINEX 3.03 navigation data, calculating XYZ (ECEF). I'm then converting those ECEF coordinates to WGS-84 :
    ecef = pyproj.Proj(proj='geocent', ellps='WGS84', datum='WGS84')
    lla = pyproj.Proj(proj='latlong', ellps='WGS84', datum='WGS84')
    lon, lat, alt = pyproj.transform(ecef, lla, x, y, z, radians=False)
    I'm then adding those points to a JSON, and I use https://www.alexras.info/code/orbital_objects/ to put them on a 3d map.

    Here is what I'm getting for a single satellite, based on all the time predictions from the RINEX file :
    [​IMG]
    Why am I not getting a nice orbit (like this one) :
    [​IMG]

    I don't get what I am doing wrong

    Thanks a lot, and sorry if this has already been answered
     
    Last edited: Jun 14, 2019
    Emilien942702, Jun 14, 2019
    #1
  2. Emilien942702

    johnl

    Joined:
    Oct 14, 2019
    Messages:
    5
    Likes Received:
    0
    What is the plot in ECEF coordinates?
     
    johnl, Oct 14, 2019
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.
Similar Threads
There are no similar threads yet.
Loading...