User Tools

Site Tools


api:thinkgeo.mapsuite.shapes.decimaldegreeshelper

ThinkGeo.MapSuite.Shapes.DecimalDegreesHelper

Inheritance Hierarchy

  • System.Object
    • ThinkGeo.MapSuite.Shapes.DecimalDegreesHelper

Members Summary

Public Constructors

Protected Constructors

Public Methods

ToString()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

Equals(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • obj
    • Type:Object
    • Description:N/A

GetHashCode()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32
  • Description:N/A
Parameters

GetType()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Type
  • Description:N/A
Parameters

GetDegreesMinutesStringFromDecimalDegreePoint(Feature,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees and minutes from a decimal degree point.
Parameters
  • point
    • Type:Feature
    • Description:The feature you want to convert.
  • decimals
    • Type:Int32
    • Description:Number of decimals for the Minutes value

GetDegreesMinutesStringFromDecimalDegreePoint(Feature)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees and minutes from a decimal degree point.
Parameters
  • point
    • Type:Feature
    • Description:The point you want to convert.

GetDegreesMinutesStringFromDecimalDegreePoint(PointShape)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees and minutes from a decimal degree point.
Parameters

GetDegreesMinutesStringFromDecimalDegreePoint(PointShape,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees and minutes from a decimal degree point.
Parameters
  • decimals
    • Type:Int32
    • Description:Number of decimals for the Minutes value

GetDegreesMinutesSecondsFromDecimalDegree(Double)

  • N/A
Remarks
  • The method allows you pass in a decimal degree number and return the degree, minute, second as variables passed in on the method call.
Return Value
  • Description:This method returns a degrees, minutes and seconds structure from a decimal degree value.
Parameters
  • decimalDegreesValue
    • Type:Double
    • Description:The decimal degree value you want to convert.

GetDegreesMinutesSecondsStringFromDecimalDegree(Double)

  • N/A
Remarks
  • Example: If you enter 75.358 as the number of decimal degrees, the result would be 75 degrees, 21 minutes, 28 seconds. Thus, the return string would be 75?21' 28“.
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees, minutes and seconds from a decimal degree value.
Parameters
  • decimalDegreesValue
    • Type:Double
    • Description:The number of decimal degrees to convert.

GetDegreesMinutesSecondsStringFromDecimalDegree(Double,Int32)

  • N/A
Remarks
  • Example: If you enter 75.358 as the number of decimal degree and 12 as decimals, the result would be 75 degrees, 21 minutes, 28.80000000015 seconds. Thus, the return string would be 75?21' 28.80000000015”.
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees, minutes and seconds from a decimal degree value.
Parameters
  • decimalDegreesValue
    • Type:Double
    • Description:The number of decimal degree to convert.
  • decimals
    • Type:Int32
    • Description:The number of float decision for the second.

GetDegreesMinutesSecondsStringFromDecimalDegreePoint(PointShape)

  • N/A
Remarks
  • Passing in a point will return the point's location represented in degrees, minutes, and seconds. For example, if the point's location in decimal degrees is (75.358, 36.345), the actual returned string would be “75?21' 29E 36?20' 42N”.
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees, minutes and seconds from a decimal degree value.
Parameters
  • pointShape
    • Description:The point you want to convert.

GetDegreesMinutesSecondsStringFromDecimalDegreePoint(PointShape,Int32)

  • N/A
Remarks
  • None
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees, minutes and seconds from a decimal degree value.
Parameters
  • pointShape
    • Description:The point of decimal degree to convert.
  • decimals
    • Type:Int32
    • Description:The number of decimal degree to convert.

GetDegreesMinutesSecondsStringFromDecimalDegreePoint(Feature,Int32)

  • N/A
Remarks
  • None
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees, minutes and seconds from a decimal degree value.
Parameters
  • point
    • Type:Feature
    • Description:The feature whose decimal degrees to convert.
  • decimalPlaces
    • Type:Int32
    • Description:The number of decimal degree to convert.

GetDegreesMinutesSecondsStringFromDecimalDegreePoint(Feature)

  • N/A
Remarks
  • None
Return Value
  • Type:String
  • Description:This method returns a string representation in degrees, minutes and seconds from a decimal degree value.
Parameters
  • point
    • Type:Feature
    • Description:The feature whose decimal degrees to convert.

GetDecimalDegreeFromDegreesMinutesSeconds(String)

  • N/A
Remarks
  • If you pass in “75?21' 28''” as a string, then the result will be 75.35777777784.
Return Value
  • Type:Double
  • Description:This method returns a decimal degree value based on a string containing degrees, minutes, and seconds.
Parameters
  • degreesMinutesSeconds
    • Type:String
    • Description:This parameter represents the degrees, minutes and seconds in a string.

GetDecimalDegreeFromDegreesMinutesSeconds(DegreesMinutesSeconds)

  • N/A
Remarks
  • If you pass in 75, 21 and 28, the result passed back will be 75.2577777778.
Return Value
  • Type:Double
  • Description:This method returns a decimal degree value based on a degree, minute and second structure.
Parameters
  • degreesMinutesSeconds

GetDecimalDegreeFromDegreesMinutesSeconds(Int32,Int32,Double)

  • N/A
Remarks
  • If you pass in 75, 21 and 28, the result passed back will be 75.2577777778.
Return Value
  • Type:Double
  • Description:This method returns a decimal degree value based on a set of degrees, minutes, and seconds.
Parameters
  • degrees
    • Type:Int32
    • Description:This parameter represents the degree component of the degrees, minutes and seconds.
  • minutes
    • Type:Int32
    • Description:This parameter represents the minute component of the degrees, minutes and seconds.
  • seconds
    • Type:Double
    • Description:This parameter represents the second component of the degrees, minutes and seconds.

GetDistanceFromDecimalDegrees(PointShape,PointShape,DistanceUnit)

  • N/A
Remarks
  • None
Return Value
  • Type:Double
  • Description:This method returns the distance between two decimal degree points in the unit specified by the returningUnit parameter.
Parameters
  • fromPoint
    • Description:The point shape you will measure from.
  • toPoint
    • Description:The point shape you will measure to.
  • returningUnit
    • Description:The unit you would like your results back in, such as miles or kilometers.

GetDistanceFromDecimalDegrees(Feature,Feature,DistanceUnit)

  • N/A
Remarks
  • None
Return Value
  • Type:Double
  • Description:This method returns the distance between two decimal degree points in the unit specified by the returningUnit parameter.
Parameters
  • fromPointFeature
    • Type:Feature
    • Description:The feature you will measure from.
  • toPointFeature
    • Type:Feature
    • Description:The feature you will measure to.
  • returningUnit
    • Description:The unit you would like your results back in, such as miles or kilometers.

GetDistanceFromDecimalDegrees(Double,Double,Double,Double,DistanceUnit)

  • N/A
Remarks
  • None
Return Value
  • Type:Double
  • Description:This method returns the distance between two decimal degree points in the unit specified by the returningUnit parameter.
Parameters
  • fromLongitude
    • Type:Double
    • Description:This is the from longitude value.
  • fromLatitude
    • Type:Double
    • Description:This is the from latitude value.
  • toLongitude
    • Type:Double
    • Description:This is the to longitude value.
  • toLatitude
    • Type:Double
    • Description:This is the to latitude value.
  • returningUnit
    • Description:This is the distance unit you would like to use in the return value. For example, if you select miles as your returningUnit, then the distance will be returned in miles.

GetLongitudeDifferenceFromDistance(Double,DistanceUnit,Double)

  • N/A
Remarks
  • None
Return Value
  • Type:Double
  • Description:Double representing the distance.
Parameters
  • distance
    • Type:Double
    • Description:The distance over which you would like to know the change in longitude.
  • distanceUnit
    • Description:The unit the distance is in, such as miles or kilometers.
  • latitude
    • Type:Double
    • Description:The latitude on the globe that the distance is measured at.

GetLatitudeDifferenceFromDistance(Double,DistanceUnit)

  • N/A
Remarks
  • None
Return Value
  • Type:Double
  • Description:Double representing the distance.
Parameters
  • distance
    • Type:Double
    • Description:The distance over which you would like to know the change in longitude.
  • distanceUnit
    • Description:The unit the distance is in, such as miles or kilometers.

ConvertToMgrs(Double,Double)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:The MGRS corresponding to input latitude and longitude.
Parameters
  • longitude
    • Type:Double
    • Description:Longitude coordinate.
  • latitude
    • Type:Double
    • Description:Latitude coordinate.

ConvertFromMgrs(String)

  • N/A
Remarks
  • N/A
Return Value
  • Description:The converted coordinate.
Parameters
  • mgrs
    • Type:String
    • Description:MGRS string

Protected Methods

Finalize()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

MemberwiseClone()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters

GetDegreesMinutesStringFromDecimalDegree(Double)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters
  • decimalDegreesValue
    • Type:Double
    • Description:N/A

GetDegreesMinutesStringFromDecimalDegree(Double,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters
  • decimalDegreesValue
    • Type:Double
    • Description:N/A
  • decimals
    • Type:Int32
    • Description:N/A

GetLatitudeFromDistanceAndDegree(Double,Double,Double,DistanceUnit,Double)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:N/A
Parameters
  • fromLongitude
    • Type:Double
    • Description:N/A
  • fromLatitude
    • Type:Double
    • Description:N/A
  • distance
    • Type:Double
    • Description:N/A
  • degree
    • Type:Double
    • Description:N/A

GetLongitudeFromDistanceAndDegree(Double,Double,Double,DistanceUnit,Double)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:N/A
Parameters
  • fromLongitude
    • Type:Double
    • Description:N/A
  • fromLatitude
    • Type:Double
    • Description:N/A
  • distance
    • Type:Double
    • Description:N/A
  • degree
    • Type:Double
    • Description:N/A

GetGreatCircle(PointShape,PointShape,Int32)

  • N/A
Remarks
  • N/A
Return Value
Parameters
  • count
    • Type:Int32
    • Description:N/A

GetDistanceFromDecimalDegreesLine(Double,Double,Double,Double,PointShape,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:N/A
Parameters
  • fromPointX
    • Type:Double
    • Description:N/A
  • fromPointY
    • Type:Double
    • Description:N/A
  • toPointX
    • Type:Double
    • Description:N/A
  • toPointY
    • Type:Double
    • Description:N/A

GetNearestPointFromPointShapeDecimalDegreesLine(Double,Double,Double,Double,PointShape)

  • N/A
Remarks
  • N/A
Return Value
Parameters
  • fromPointX
    • Type:Double
    • Description:N/A
  • fromPointY
    • Type:Double
    • Description:N/A
  • toPointX
    • Type:Double
    • Description:N/A
  • toPointY
    • Type:Double
    • Description:N/A

GetXFromDegreeOnSphere(Double,Double,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:N/A
Parameters
  • degreeX
    • Type:Double
    • Description:N/A
  • degreeY
    • Type:Double
    • Description:N/A

GetYFromDegreeOnSphere(Double,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:N/A
Parameters
  • degreeY
    • Type:Double
    • Description:N/A

Public Properties

Protected Properties

Public Events

api/thinkgeo.mapsuite.shapes.decimaldegreeshelper.txt · Last modified: 2017/01/11 06:49 (external edit)