dd_to_ddm | R Documentation |
Convert decimal degrees (DD) to degrees decimal minutes (DDM). This function only accepts coordinates north of the equator and west of the prime meridian.
dd_to_ddm(dd_coord)
dd_coord |
Coordinate in DD |
The given coordinate converted to DDM
boat_coords <- data.frame(lat = 44.58509, lon = -80.93900)
boat_coords$dd_lat <- dd_to_ddm(boat_coords$lat)
boat_coords$dd_lon <- dd_to_ddm(boat_coords$lon)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.