LatLngIsValidLatitude Method (Int32, Int32, Double) |
doogal.co.uk Home
Determines whether the specified latitude is valid.
Namespace:
DotNetCoords
Assembly:
DotNetCoords (in DotNetCoords.dll) Version: 1.0.0.24 (1.0.0.24)
Syntaxpublic static bool IsValidLatitude(
int latitudeDegrees,
int latitudeMinutes,
double latitudeSeconds
)
Public Shared Function IsValidLatitude (
latitudeDegrees As Integer,
latitudeMinutes As Integer,
latitudeSeconds As Double
) As Boolean
public:
static bool IsValidLatitude(
int latitudeDegrees,
int latitudeMinutes,
double latitudeSeconds
)
static member IsValidLatitude :
latitudeDegrees : int *
latitudeMinutes : int *
latitudeSeconds : float -> bool
Parameters
- latitudeDegrees
- Type: SystemInt32
The degrees part of the latitude. - latitudeMinutes
- Type: SystemInt32
The minutes part of the latitude. - latitudeSeconds
- Type: SystemDouble
The seconds part of the latitude.
Return Value
Type:
Booleantrue if the latitude is valid; otherwise,
false.
See Also