← Back to carmenta.com
Carmenta Engine SDK Documentation
×

Crs.ParseLongitude Methods

Reads a longitude from strings representing degrees, minutes, optionally seconds, and hemisphere.

Thread safety: This method is thread-safe.

Overload List

 NameDescription
StaticPublic methodParseLongitude(System.String degrees, System.String minutes, System.String hemisphere)Reads a longitude from strings representing degrees, minutes and hemisphere.
StaticPublic methodParseLongitude(System.String degrees, System.String minutes, System.String seconds, System.String hemisphere)Reads a longitude from strings representing degrees, minutes, seconds and hemisphere.

ParseLongitude(System.String degrees, System.String minutes, System.String hemisphere)

Reads a longitude from strings representing degrees, minutes and hemisphere.

Syntax

C#
public static System.Double ParseLongitude (
    System.String degrees,
    System.String minutes,
    System.String hemisphere
)

Parameters

degrees
Type: System.String
Represents the degrees as an integer in the range 0 to 999.
minutes
Type: System.String
Represents the minutes as a real number in the range 0.0 to 59.999... As decimal separator, either a dot or a comma can be used, regardless of numeric locale.
hemisphere
Type: System.String
Represents the hemisphere ("E" for east or "W" for west).

Return Value

Type: System.Double
A longitude in degrees.

Remarks

Longitudes are considered to be positive east.

The method will throw an exception if it fails to parse the strings.

Longitudes in Carmenta Engine should usually be in the range -180 to 180, but in some contexts a range of 0 to 360 is preferred. This method accepts longitudes in the range -999 to 999 without exceptions or normalization, so it is up to your application to do a more stringent range checking and/or normalization.

ParseLongitude(System.String degrees, System.String minutes, System.String seconds, System.String hemisphere)

Reads a longitude from strings representing degrees, minutes, seconds and hemisphere.

Syntax

C#
public static System.Double ParseLongitude (
    System.String degrees,
    System.String minutes,
    System.String seconds,
    System.String hemisphere
)

Parameters

degrees
Type: System.String
Represents the degrees as an integer in the range 0 to 999.
minutes
Type: System.String
Represents the minutes as an integer in the range 0 to 59.
seconds
Type: System.String
Represents the seconds as a real number in the range 0.0 to 59.999... As decimal separator, either a dot or a comma can be used, regardless of numeric locale.
hemisphere
Type: System.String
Represents the hemisphere ("E" for east or "W" for west).

Return Value

Type: System.Double
A longitude in degrees.

Remarks

Longitudes are considered to be positive east.

The method will throw an exception if it fails to parse the strings.

Longitudes in Carmenta Engine should usually be in the range -180 to 180, but in some contexts a range of 0 to 360 is preferred. This method accepts longitudes in the range -999 to 999 without exceptions or normalization, so it is up to your application to do a more stringent range checking and/or normalization.

Platforms

Windows, Linux, Android

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept