WGS84Coordinate

WGS84 coordinate.

struct WGS84Coordinate (
T = double
) if (
isFloatingPoint!T
) {
@safe
T latitude;
@safe
T longitude;
}

Constructors

this
this(T latitude, T longitude)

Construct from latitude and longitude.

this
this(const(char)[] s, string separator)

Construct from string s and separator separator.

Members

Functions

toString
auto toString(void delegate(scope const(char)[]) @(safe) sink)

Convert to string.

See Also

Meta