Here is a list of common math calculation that a Cartographer should know and do from time to time

Latitude and longitude Issues

Degrees Minutes Seconds and Decimal Degrees

Latitude and longitude values are report in several formats

Decimal Degree(D.d) to DMS

Example

DMS to Decimal Degree(D.d)

Example

Rectangler and Polar Coordinatees

Rectanglur (x,y) to Polar (R, Theta)

Basic forumlas R = SQRT(x^2 + y^2) and theta = arctan(y/x)
Example

Polar (R, Theta(units) to rectanglur x,y

Basic Formulas x = R cos(Theta) and y = R sin(Theta)
Examples

Great Cirle Calculation

basic forumla

Angle of Distance = arcCOS(sin(lat1)sin(lat2)+cos(long1)cos(long2)cos(long1 - long2)

the average distance of a degree on the earth is 69.09 miles or 111.18958km

Angle of Distance * miles or km constant = great circle distance

Examples