Click or drag to resize

LongLatSouth Method

Returns a LongLat that represents a position the specified distance South of this.

Namespace: DegreeDays.Geo
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public LongLat South(
	Distance distance
)

Parameters

distance  Distance
A distance indicating how far South of this the returned LongLat position should be. (Or how far North if distance is negative.)

Return Value

LongLat
A LongLat that represents a position the specified distance South of this.
Remarks

If distance is negative, the returned LongLat will represent a position North of this.

Movements North and South are capped by the poles. At the South Pole, there is no way to go further South. So, for example, if position a is 50 kilometres from the South Pole, calling a.South(Distance.Kilometres(200)) will return the position of the South Pole. It won't overshoot and start going North.

See Also