mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:06:34 +00:00
45c19baa45
- autopilot -> drone_controller - rtsp_ai_player -> ai_controller - added top level qmake project file - updated documentation - moved small demo applications from tmp/ to misc/
20 lines
330 B
C++
20 lines
330 B
C++
#pragma once
|
|
|
|
#include <ostream>
|
|
|
|
using namespace std;
|
|
|
|
const double INVALID_LATITUDE = -100000;
|
|
const double INVALID_LONGITUDE = -100000;
|
|
|
|
class AzCoordinate
|
|
{
|
|
public:
|
|
double latitude;
|
|
double longitude;
|
|
|
|
AzCoordinate(double lat, double lon);
|
|
|
|
friend ostream &operator<<(ostream &os, const AzCoordinate &obj);
|
|
};
|