Learn R Programming

parzer (version 0.4.4)

parse_llstr: parse string with lat and lon together

Description

parse string with lat and lon together

Usage

parse_llstr(str)

Value

A data.frame with parsed latitude and longitude in decimal degrees.

Arguments

str

(character) string with latitude and longitude, one or more in a vector.

Examples

Run this code
parse_llstr("N 04.1683, E 101.5823")
parse_llstr("N04.82344, E101.61320")
parse_llstr("N 04.25164, E 101.70695")
parse_llstr("N05.03062, E101.75172")
parse_llstr("N05.03062,E101.75172")
parse_llstr("N4.9196, E101.345")
parse_llstr("N4.9196, E101.346")
parse_llstr("N4.9196, E101.347")
# no comma
parse_llstr("N4.9196 E101.347")
# no space
parse_llstr("N4.9196E101.347")

# DMS
parse_llstr("N4 51'36\", E101 34'7\"")
parse_llstr(c("4 51'36\"S, 101 34'7\"W", "N4 51'36\", E101 34'7\""))

Run the code above in your browser using DataLab