Neha Patil (Editor)

Decimal degrees

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Decimal degrees (DD) express latitude and longitude geographic coordinates as decimal fractions and are used in many geographic information systems (GIS), web mapping applications such as OpenStreetMap, and GPS devices. Decimal degrees are an alternative to using degrees, minutes, and seconds (DMS). As with latitude and longitude, the values are bounded by ±90° and ±180° respectively.

Contents

Positive latitudes are north of the equator, negative latitudes are south of the equator. Positive longitudes are east of Prime Meridian, negative longitudes are west of the Prime Meridian. Latitude and longitude are usually expressed in that sequence, latitude before longitude.

Precision

The radius of the semi-major axis of the Earth at the equator is 6,378,137.0 meters resulting in a circumference of 40,075,161.2 meters. The equator is divided into 360 degrees of longitude, so each degree at the equator represents 111,319.9 meters or approximately 111.32 km. As one moves away from the equator towards a pole, however, one degree of longitude is multiplied by the cosine of the latitude, decreasing the distance, approaching zero at the pole. The number of decimal places required for a particular precision at the equator is:

A value in decimal degrees to a precision of 4 decimal places is precise to 11.132 meters at the equator. A value in decimal degrees to 5 decimal places is precise to 1.1132 meter at the equator. Elevation also introduces a small error. At 6,378 m elevation, the radius and surface distance is increased by 0.001 or 0.1%. Because the earth is not flat, the precision of the longitude part of the coordinates increases the further from the equator you get. The precision of the latitude part does not increase so much, more strictly however, a meridian arc length per 1 second depends on latitude at point concerned. The discrepancy of 1 second meridian arc length between equator and pole is about 0.3 metres because the earth is an oblate spheroid.

Example

A DMS value is converted to decimal degrees using the formula:

D dec = D + M 60 + S 3600

For instance, the decimal degree representation for

38° 53′ 23″ N, 77° 00′ 32″ W

(the location of the United States Capitol) is

38.8897°, -77.0089°

In most systems, such as OpenStreetMap, the degree symbols are omitted, reducing the representation to

38.8897,-77.0089

To calculate the D, M and S components, the following formulas can be used:

D = trunc ( D dec ) M = trunc ( ( D dec × 60 ) mod 60 ) S = ( | D dec | × 3600 ) mod 60

where |Ddec| is the absolute value of Ddec, trunc is the truncation function, and mod is the modulo operator. Note that with this formula, only D can be negative and only S may have a fractional value.

References

Decimal degrees Wikipedia


Similar Topics