UTM_zone_hemisphere: To find the zone hemisphere from Longitude and Latitude the...

Description Usage Arguments Value Examples

View source: R/UTM_zone_hemisphere.R

Description

With this function it is possible to find the zone hemisphere from Geographic coordinate to obtain the UTM zone.

Usage

1

Arguments

x

Sexagesimal longitude.

y

Sexagesimal latitude.

Value

value

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#' # Longitude
g <- -71
m <- 18
s <- 44.86475

# Value in sexagesimal
sexa_long <- sexagesimal(g, m, s)

# Latitude
g1 <- -33
m1 <- 12
s1 <- 27.11457

# Value in sexagesimal
sexa_lat <- sexagesimal(g1, m1, s1)

value <- UTM_zone_hemisphere(sexa_long, sexa_lat)
print(value)

GeodesiCL documentation built on May 25, 2021, 5:10 p.m.