関数DegMinSecStr2DegMinSec マニュアル

(The documentation of function DegMinSecStr2DegMinSec)

Last Update: 2021/12/24


◆機能・用途(Purpose)

座標(度分秒表記)を表す文字列をstruct DegMinSec型構造体に変換する。
Convert a string that represents a coordinate (in degree-minute-second representation) to a struct DegMinSec-type structure.


◆形式(Format)

#include <coordinate.h>
inline struct DegMinSec DegMinSecStr2DegMinSec
(const char ∗DegMinSecStr)


◆引数(Arguments)

DegMinSecStr 変換したい座標を表す文字列。 度・分・秒をコロン(:)で区切った書式(「度:分:秒」)とする。 「度」は\(-180\)から\(180\)までの整数、 「分」は0から59までの整数、 「秒」は0.0以上60.0未満の実数とする。 「01」など頭に0が付く数値も可。
A string that represents a coordinate to convert, given by degrees, minutes, and seconds separated by colons (:) (i.e., “degree:minute;second”). Here, the degree must be an integer from \(-180\) to \(180\), the minute must be an integer from 0 to 59, and the second must be a real number greater than or equal to 0.0 and less than 60.0. Numerical values starting with 0 (e.g., “01”) are allowed.


◆戻り値(Return value)

文字列DegMinSecStrが表す座標。
The coordinate represented by the string DegMinSecStr.


◆使用例(Example)

struct DegMinSec N=DegMinSecStr2DegMinSec("35:09:16.56");