R/HK80GEO_TO_WGS84UTM.R

Defines functions HK80GEO_TO_WGS84UTM

Documented in HK80GEO_TO_WGS84UTM

HK80GEO_TO_WGS84UTM <-
function(latitude, longitude){
    #### The latitude and longitude should be both in decimal format. 
    temp <- HK80GEO_TO_HK80UTM(latitude, longitude)
    res <- HK80UTM_TO_WGS84UTM(temp$N, temp$E, zone = temp$zone)
    return(res)
}

Try the HK80 package in your browser

Any scripts or data that you put into this service are public.

HK80 documentation built on May 2, 2019, 2:10 a.m.