R/HK80UTM_TO_WGS84GEO.R

Defines functions HK80UTM_TO_WGS84GEO

Documented in HK80UTM_TO_WGS84GEO

HK80UTM_TO_WGS84GEO <-
function(N, E, zone){
    ### The unit for N and E is meter. The zone is either 49 or 50
    temp <- HK80UTM_TO_WGS84UTM(N, E, zone)
    res  <- WGS84UTM_TO_WGS84GEO(temp$N, temp$E, 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.