関数latlonStr2double マニュアル

(The documentation of function latlonStr2double)

Last Update: 2023/4/25


◆機能・用途(Purpose)

緯度または経度を表す文字列を実数に変換する。
Convert a string that represents a latitude or longitude to a real number.


◆形式(Format)

#include <coordinate.h>
inline double latlonStr2double(const char ∗coordinateStr)


◆引数(Arguments)

coordinateStr 座標を表す文字列。 度単位または「度:分:秒」表記で与える。
A string that represents a coordinate, either in the degree unit or with a degree:minute:second representation.


◆戻り値(Return value)

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


◆使用例(Example)

double coordinate1=latlonStr2double("35.6789");
double coordinate2=latlonStr2double("35:01:23.4");