Convert_LL_to_UTM_Fn: Convert Latitute/Longitude to UTM (i.e. Eastings-Northings)

Usage Arguments Examples

Usage

1
Convert_LL_to_UTM_Fn(Lon, Lat, zone = "10")

Arguments

Lon
Lat
zone

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (Lon, Lat, zone = "10") 
{
    Tmp = cbind(PID = 1, POS = 1:length(Lon), X = Lon, Y = Lat)
    attr(Tmp, "projection") = "LL"
    attr(Tmp, "zone") = zone
    tmpUTM = convUL(Tmp)
    return(tmpUTM)
  }

aaronmberger/Geo_dGLMM_habitat documentation built on May 10, 2019, 3:20 a.m.