N | 変換したい地点の緯度を表す文字列。
「度」単位の実数または「度:分:秒」表記(度・分は整数)で与える。 A string that represents the latitude of the point to convert, either in a real number in the degree unit or a “degree:minute:second” representation in which the degree and minute are integers. |
E | 変換したい地点の経度を表す文字列。
「度」単位の実数または「度:分:秒」表記(度・分は整数)で与える。 A string that represents the longitude of the point to convert, either in a real number in the degree unit or a “degree:minute:second” representation in which the degree and minute are integers. |
refN | 投影の基準点の緯度を表す文字列。
「度」単位の実数または「度:分:秒」表記(度・分は整数)で与える。 A string that represents the latitude of the reference point of the projection, either in a real number in the degree unit or a “degree:minute:second” representation in which the degree and minute are integers. |
refE | 投影の基準点の経度を表す文字列。
「度」単位の実数または「度:分:秒」表記(度・分は整数)で与える。 A string that represents the longitude of the reference point of the projection, either in a real number in the degree unit or a “degree:minute:second” representation in which the degree and minute are integers. |
x | 変換後の\(x\)座標(基準点から東方向、m)の代入先。
宣言しただけのdouble型変数を&を付けて与える。 The memory into which the \(x\) coordinate (in meters; eastward from the reference point) computed by the conversion will be inserted. Give an empty double-type variable with &. |
y | 変換後の\(y\)座標(基準点から北方向、m)の代入先。
宣言しただけのdouble型変数を&を付けて与える。 The memory into which the \(y\) coordinate (in meters; northward from the reference point) computed by the conversion will be inserted. Give an empty double-type variable with &. |