Latitude and longitude, and angles in general, can be written in more than one notation. Decimal degrees are compact and easy for software — 40.748817, -73.985428 — while degrees minutes seconds is traditional and readable in field notes — 40° 44′ 55.74″ N, 73° 59′ 7.54″ W. The coordinates converter and the degrees minutes seconds calculator both move between these representations, but they serve different scopes: one handles a full latitude-longitude pair with hemisphere letters, and the other converts any single angle with a sign.
What each calculator does
The coordinates converter converts a latitude and longitude pair between signed decimal degrees and DMS notation. In decimal mode it validates latitude from -90 to 90 and longitude from -180 to 180, and each sign becomes a direction letter: positive latitude is N, negative is S, positive longitude is E, and negative is W. Seconds display with two decimals, so 40.748817 becomes 40° 44′ 55.74″ N. In DMS mode it reads degree, minute, and second fields plus direction menus, rejects minutes or seconds of 60 or more, and returns signed decimal degrees with six decimals.
The degrees minutes seconds calculator converts a single angle between decimal degrees and DMS. In decimal-to-DMS mode it multiplies the absolute value by 3600, rounds the total seconds to the nearest 0.001, and splits that total into degrees, minutes, and seconds, displaying seconds with three decimals; a negative input keeps a minus sign. In DMS-to-decimal mode it reads a sign, degrees, minutes, and seconds, rejects negative pieces and minutes or seconds of 60 or more, and displays the result to up to six decimals along with total arcminutes and total arcseconds.
Side-by-side
| Coordinates converter | Degrees minutes seconds calculator | |
|---|---|---|
| Scope | Latitude and longitude pair | Any single angle |
| Input modes | Decimal degrees; DMS with direction menus | Decimal to DMS; DMS to decimal with sign selector |
| Range checks | Latitude -90 to 90; longitude -180 to 180 | Finite nonnegative degrees; minutes and seconds below 60 |
| Sign handling | Direction letters N, S, E, W | Plus or minus sign; minus shown in the formatted output |
| Decimal-to-DMS method | Split the absolute value by repeated multiplication by 60 | Multiply by 3600 and round the total seconds to 0.001 |
| DMS seconds precision | Two decimals | Three decimals |
| Extra outputs | None | Total arcminutes and total arcseconds |
| Typical uses | GPS coordinates, map and field-note formats | Bearings, astronomy separations, survey plats, math angles |
When to use which
Use the coordinates converter when your value is a geographic position: a latitude-longitude pair from a GPS receiver, a map, or a field note. Its hemisphere letters and per-axis range checks keep the two coordinates from being swapped or mislabeled, and it deliberately avoids projections, pointing to the lat long to UTM converter for meter-based grids.
Use the degrees minutes seconds calculator when your angle is not a coordinate pair, or when you want the full sexagesimal detail of a single value: a bearing, a telescope offset, a star position, an architectural angle, or one coordinate component on its own. Its total arcminutes and arcseconds readouts are useful for checking the arithmetic, and its sign-based output suits any convention where west or south is written as negative.
Limits and disclaimer
Format conversion never changes the location or the datum: a coordinate converted between decimal degrees and DMS stays in the datum it was already in, and neither tool applies a projection. DMS is base-60, not decimal — 10° 30′ is 10.5 degrees, not 10.30 — and minutes and seconds must be carried into the next unit instead of reaching 60. Sign conventions are easy to double: a west longitude written as 73° W is equivalent to a negative decimal longitude, and entering both a minus sign and a west label in the same system doubles the sign. More symbols do not mean more accuracy, since the original measurement precision controls the result. Both pages are educational converters for checking coordinate and angle arithmetic, not surveying or navigation instruments.