Helper function to convert northings/eastings to latitude/longitude respectively.
Usage
do_coord_conversion(northings, eastings)
Arguments
- northings
Numeric vector of northings to be converted.
- eastings
Numeric vector of eastings to be converted.
Value
A list object containing two vectors, one for latitude and one for longitude.
Examples
if (FALSE) {
do_coord_conversion(
292500,
72500
)
}