関数double2DegMinSec マニュアル

(The documentation of function double2DegMinSec)

Last Update: 2021/12/17


◆機能・用途(Purpose)

度単位の実数で与えられた緯度または経度を度分秒表記に変換する。
Convert a latitude or longitude, given by a real number in degree unit, to a degree-minute-second representation.


◆形式(Format)

#include <coordinate.h>
inline struct DegMinSec double2DegMinSec(const double deg)


◆引数(Arguments)

deg 緯度または経度(\(^{\circ}\))。
The latitude or longitude (\(^{\circ}\)).


◆戻り値(Return value)

引数degの度分秒表記。
The degree-minute-second representation of argument deg.


◆使用例(Example)

struct DegMinSec N=double2DegMinSec(35.15);