Hi all,
I want to reproject points in R that are currently in WGS84 (longitude 16.77359
latitude 47.97259).I found a script for australia but I don't know which code and projected coordinate reference system to use for austria.
That is the code from the script:
#Reading and reprojecting vector (points) objects can be done with the sf package:
library(sf)
# downloading the points
download.file("https://raw.githubusercontent.com/Nowosad/lsm-bp1/master/data/sample_points.csv",
destfile = "data/sample_points.csv")
# reading the point data and reprojecting it
points = read.csv("data/sample_points.csv") %>%
st_as_sf(coords = c("longitude", "latitude")) %>%
st_set_crs(4326) %>%
st_transform("+proj=aea +lat_1=-18 +lat_2=-36 +lat_0=0 +lon_0=132 +x_0=0 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs ")
Do you have any suggestions what to use for st_transform?