I have a dataset with UTM coordinates and site names. I have transformed my UTM coordinates to DD using this code:
coordinates(Spatial)<-~Longitude+Latitude
sputm <- SpatialPoints(Spatial, proj4string=CRS("+proj=utm +zone=32V +datum=WGS84"))
spgeo <- spTransform(sputm, CRS("+proj=longlat +datum=WGS84"))
lnlt <- coordinates(spgeo)
However, then I loose the section name which I need to know which coordinate belongs to what section. Anyone know how I can solve this?