PlotLongLat: To plot using Geographic coordinate WGS84.

View source: R/PlotLongLat.R

PlotLongLatR Documentation

To plot using Geographic coordinate WGS84.

Description

With this function it is possible to plot using Longitude and Latitude (Geographic coordinate WGS84).

Usage

PlotLongLat(longlat_df)

Arguments

longlat_df

Point name, Sexagesimal longitude and latitude as dataframe.

Value

leaflet map.

See Also

data.frame

Examples


# Point name
Pto <- "St1"

# 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)

# Longitude and Latitude as data.frame
longlat_df <- data.frame(Pto,sexa_long,sexa_lat)

value <- PlotLongLat(longlat_df)
print(value)


diegoalarc/GeodesiCL documentation built on July 24, 2022, 9:14 p.m.