- /*
- * GPS.c
- *
- * Created on: 22 juil. 2022
- * Author: utilisateur
- */
- #include "GPS.h"
- #include "math.h"
- int distance(GPS gps1, GPS gps2){
- //ACOS(SIN(RADIANS(B2))*SIN(RADIANS(B3))+COS(RADIANS(B2))*COS(RADIANS(B3))*COS(RADIANS(C2-C3)))*6371
- //return acos(sin())
- }
|