関数DegMinSec_plus_sec マニュアル
(The documentation of function
DegMinSec_plus_sec
)
Last Update: 2021/12/17
◆機能・用途
(Purpose)
度分秒表記で与えられた座標に指定した秒数を加算する。
Add a given quantity in second to a coordinate expressed by degree-minute-second representation.
◆形式
(Format)
#include <coordinate.h>
inline struct DegMinSec DegMinSec_plus_sec
(const struct DegMinSec original,const double sec_to_add)
◆引数
(Arguments)
original
元々の緯度または経度。
The original latitude or longitude.
sec_to_add
加算する秒数。
The quantity of second to add.
◆戻り値
(Return value)
originalにsec_to_add秒を加えた座標。
The coordinate obtained by adding
sec_to_add
sec to
original
.
◆使用例
(Example)
struct DegMinSec N1,N2;
N1.sign=1;
N1.deg=35;
N1.min=59;
N1.sec=59.0;
N2=DegMinSec_plus_sec(N1,2.0);
この例ではN1が35°59’59”であり、 これに2秒足した値(36°00’01”)がN2になる。
In this example,
N1
is 35°59’59”, and adding 2 sec to this coordinate results in an
N2
value of 36°00’01”.