FSUIPC Client DLL
.NET interface for FSUIPC
|
Represents a span of latitude in MS Flight Simulator. More...
Public Member Functions | |
FsLatitudeSpan (double DecimalDegrees) | |
Create a new latitude span represented by a number of degrees. | |
FsLatitudeSpan (int Degrees, double DecimalMinutes) | |
Create a new latitude span represented by a number of degrees and minutes. | |
FsLatitudeSpan (int Degrees, int Minutes, double DecimalSeconds) | |
Create a new latitude span represented by a number of degrees, minutes and seconds. | |
double | ToFeet () |
Gets the distance represented by the span in Feet. | |
double | ToNauticalMiles () |
Gets the distance represented by the span in Nautical Miles. | |
double | ToMetres () |
Gets the distance represented by the span in Metres. | |
override string | ToString () |
The span represented as a string in the default format of dd* mm.mmmm'. | |
string | ToString (string DetailLevel, int DecimalPlaces) |
The span represented as a string in the specified format. | |
Static Public Member Functions | |
static FsLatitudeSpan | FromFeet (double Feet) |
Create a new latitude span that represents a given distance in Feet. | |
static FsLatitudeSpan | FromNauticalMiles (double NauticalMiles) |
Create a new latitude span that represents a given distance in Nautical Miles. | |
static FsLatitudeSpan | FromMetres (double Metres) |
Create a new latitude span that represents a given distance in Metres. | |
static FsLatitudeSpan | BetweenTwoLatitides (FsLatitude Lat1, FsLatitude Lat2) |
Create a new latitude span from two latitudes. The span will be the shortest absolute distance between them. | |
Represents a span of latitude in MS Flight Simulator.
|
inline |
Create a new latitude span represented by a number of degrees.
DecimalDegrees | The number of degrees for the span |
|
inline |
Create a new latitude span represented by a number of degrees and minutes.
Degrees | The number of degrees for the span |
DecimalMinutes | The number of minutes for the span |
|
inline |
Create a new latitude span represented by a number of degrees, minutes and seconds.
Degrees | The number of degrees for the span |
Minutes | The number of minutes for the span |
DecimalSeconds | The number of seconds for the span |
|
inlinestatic |
Create a new latitude span from two latitudes. The span will be the shortest absolute distance between them.
Lat1 | The Latitude at one end of the span |
Lat2 | The Latitude at the other end of the span |
|
inlinestatic |
Create a new latitude span that represents a given distance in Feet.
Feet | The number of Feet to convert to a latitude span |
|
inlinestatic |
Create a new latitude span that represents a given distance in Metres.
Metres | The number of Metres to convert to a latitude span |
|
inlinestatic |
Create a new latitude span that represents a given distance in Nautical Miles.
NauticalMiles | The number of Nautical Miles to convert to a latitude span |
|
inline |
The span represented as a string in the default format of dd* mm.mmmm'.
|
inline |
The span represented as a string in the specified format.
DetailLevel | Specifies the detail level. "d" for degrees only, "m" for degrees and minutes, "s" for degrees, minutes and seconds |
DecimalPlaces | The number of decimal places to show |