Added latlon.hpp for coordinates routine.
This commit is contained in:
parent
650b758425
commit
af68e7ceb6
2 changed files with 11 additions and 0 deletions
1
env/env.pro
vendored
1
env/env.pro
vendored
|
@ -21,6 +21,7 @@ HEADERS += \
|
|||
thread.hpp \
|
||||
message_std.hpp \
|
||||
reader.hpp \
|
||||
latlon.hpp \
|
||||
|
||||
SOURCES += \
|
||||
assert.cpp \
|
||||
|
|
10
env/latlon.hpp
vendored
Normal file
10
env/latlon.hpp
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
|
||||
namespace ll
|
||||
{
|
||||
|
||||
inline bool ValidLat(double lat) { return -90.0 <= lat && lat <= 90.0; }
|
||||
inline bool ValidLon(double lon) { return -180.0 <= lon && lon <= 180.0; }
|
||||
|
||||
}
|
Reference in a new issue