Newbie here, so please be gentle with me!
My council has released some data about tree protection orders (TPOs) in EPSG 27700 format. So an example would be 448098.4741, 271753.1604
I want to convert this to latitude and longitude so I can add it to a Google map. I've tried using this web tool https://gridreferencefinder.com/batchConvert/batchConvert.php This seemed to give accurate results.
But I have a lot of points to convert and would rather use R to handle the large amount of data. I'm using the sgo_transform function in the sgo package but it is giving very slightly different results to the web tool. I know nothing about GIS and am winging it. Does anyone know which is likely to be more accurate?
The web tool converts my example to 52.341754, -1.2954299 The sgo package gives 52.34177, -1.295411
My R code:
x <- c(448098.4741, 448028.2853)
y <- c(271753.1604, 271665.0542)
locations <- sgo_points(list(x, y), epsg=27700)
locations.osgb36 <- sgo_transform(locations, to=4326)
As you can see, I'm testing this with 2 points, but the example I've described is the first point.
Thanks in advance...Carrie