Learn R Programming

GeodesiCL (version 1.0.0)

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

Description

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

Usage

UTM_zone_hemisphere(x, y)

Arguments

x

Sexagesimal longitude.

y

Sexagesimal latitude.

Value

value

Examples

Run this code
# NOT RUN {
#' # 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)
# }

Run the code above in your browser using DataLab