Given a DMS coordinate such as W87°43’41», it’s trivial to convert it to a number of decimal degrees using the following method:
- Calculate the total number of seconds, 43’41» = (43*60 + 41) = 2621 seconds.
- The fractional part is total number of seconds divided by 3600. 2621 / 3600 = ~0.728056
- Add fractional degrees to whole degrees to produce the final result: 87 + 0.728056 = 87.728056
- Since it is a West longitude coordinate, negate the result.
- The final result is -87.728056.
Geographic coordinate conversion.
Una tarde aburrida intentando determinar un punto en un mapa…
{ 2 comentarios… read them below or add one }
Yo tuve que hacer eso mismo hace poco, aunque, bueno, la precisión no era un factor relevante
Si al final encontré una página que las convertía automáticamente y me ahorraba el trabajo XDDD