GPS.c 275 B

123456789101112131415
  1. /*
  2. * GPS.c
  3. *
  4. * Created on: 22 juil. 2022
  5. * Author: utilisateur
  6. */
  7. #include "GPS.h"
  8. #include "math.h"
  9. int distance(GPS gps1, GPS gps2){
  10. //ACOS(SIN(RADIANS(B2))*SIN(RADIANS(B3))+COS(RADIANS(B2))*COS(RADIANS(B3))*COS(RADIANS(C2-C3)))*6371
  11. //return acos(sin())
  12. }