Skydel - Simulated Vehicle Location

How can I check Skydel for the current location of a simulated vehicle?

1 Like

Hi @mventresca,

We have a very useful sample script in the Skydel-SDX folder installation (Skydel-SDX\API\Python\example_vehicle_info.py). This script can be use to easily get vehicle inputs during real-time simulation. The script does not display the ECEF positions but you can add the following line (in the print section of the script) to get them:

print(“Position ECEF X,Y,Y (meters): %s” % info.ecef)

and this is what you will get in your command prompt when you run it:

Regards