Create Georeference in R

1.9k Views Asked by At

I work with R to analyse satellite data from MODIS (file attached). I want to georeference my .image/.tif file using R. This is my script that I used:

library(raster)

x <- raster('bali_test.tif')
extent(x) <- c(114,115,-8,-7)
projection(x) <- CRS("+proj=longlat +datum=WGS![enter image description here][1]84")

Unfortunately, when I plot it using levelplot and world map, it appears in the wrong position. The white area is land/island, and the black line is the Indonesian coastline

1

There are 1 best solutions below

0
On

You must use the levelplot() function from the rasterVis package. The levelplot function you are using is not for raster matrix.