R/WGS84UTM_TO_HK80GEO.R

Defines functions WGS84UTM_TO_HK80GEO

Documented in WGS84UTM_TO_HK80GEO

WGS84UTM_TO_HK80GEO <-
function(N, E, zone){
    ### The unit for N and E is meter, and zone is either 49 or 50
    temp1 <- WGS84UTM_TO_WGS84GEO(N, E, zone)
    res <- WGS84GEO_TO_HK80GEO(temp1$latitude, temp1$longitude)
    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.