sir,
i would like to run
ValparaisoPPgis<-read.csv(file="kunduz_ST4 - Copy.csv",header=TRUE, stringsAsFactors = FALSE)
names(ValparaisoPPgis)[1]<-c("Code")
stations <- ValparaisoPPgis
( stations <- st_as_sf(stations, coords = c('lon', 'lat'), crs = 32642) )
ValparaisoSHP.utm <- sf::st_transform(ValparaisoSHP, crs=32642)
st.coords <- st_coordinates(stations.utm)
lon <- st.coords[, "X"]
lat <- st.coords[, "Y"]
ValparaisoPPgis.utm <- data.frame(ID=stations.utm[["Code"]], lon=lon, lat=lat)
but after runing all these i am getting CRS=NA.
i would like that this csv file should have utm zone 42 projection.
Regards