Hi all,
I’m using orekit python to read antex file.
Here is my code :
import orekit
orekit.initVM()
import java.io
import org.orekit
filename = r'inputs\igs20.atx'
GPS_time = org.orekit.time.TimeScalesFactory.getGPS()
antex_data = org.orekit.gnss.antenna.AntexLoader(org.orekit.data.DataSource(filename), GPS_time)
My problem is that the object return by getSatelliteAntennas is a list of java.lang.object and not a list of TimeSpanMap :
This object has not TimeSpanMap methods (getSpan, …) so I cant’t do anything.
I don’t have this problem with getReceiverAntennas method.
Could you help me ?
Thanks
Victor