I am new to spatial data analysis in R and would like to do something easy, I am still having difficulties...
I have a big table with latitudes
and longitudes
sample = structure(list(Longitude = c(-0.19117, -0.211708, -0.206458,
-0.173862, -0.156618), Latitude = c(51.489096, 51.520075, 51.525301,
51.482442, 51.495752), Location_Easting_OSGR = c(525680L, 524170L,
524520L, 526900L, 528060L), Location_Northing_OSGR = c(178240L,
181650L, 182240L, 177530L, 179040L)), .Names = c("Longitude",
"Latitude", "Location_Easting_OSGR", "Location_Northing_OSGR"
), row.names = c(NA, -5L), class = c("data.table", "data.frame"
))
I got a map of the UK from GADM (level 2 of UK map).
I would like to be able to
- plot points defined by longitude/latitude on the map
- build a heat map that shows where the points are more concentrated...
Is it easy ? If not do you have some pointers (only UK please) Cheers