In my example, I have a single dji image in *JPG:
library(terra)
single.image <-stack("https://github.com/Leprechault/trash/raw/main/DJI_0274.JPG")
plotRGB(single.image, r = 3, g = 2, b = 1, stretch = "lin")
# class : RasterStack
# dimensions : 3648, 4864, 17743872, 3 (nrow, ncol, ncell, nlayers)
# resolution : 1, 1 (x, y)
# extent : 0, 4864, 0, 3648 (xmin, xmax, ymin, ymax)
# crs : NA
# names : DJI_0274_1, DJI_0274_2, DJI_0274_3
and the correspond Metadata in *jgw file:
single.image.mtd <- read.table("https://github.com/Leprechault/trash/raw/main/DJI_0274.jgw", header = FALSE, skip=1)
single.image.mtd
# V1
# 1 -3.532000e-07
# 2 2.600000e-09
# 3 3.100000e-09
# 4 2.976000e-07
# 5 -5.170865e+01
# 6 -1.973617e+01
This values are:
# X-cell size
# rotation (usually 0)
# rotation (usually 0)
# Y-cell size (always negative)
# Upper left X
# Upper left Y
I'd like to know if is possible to use the metadata in order to have a georeferenced image and save it in geoTIFF format?
Thanks in advance!
Alexandre
From my point of view, reading your jpg file works on-the-fly if you used
{terra}
for importing instead of{raster}
. Meta data present in *.jgw seems to be utilized automatically if the files are placed in the same directory.However, it seems like you have to change the leading signs of your lines 1 and 4 of the *.jgw file (y is "always negative") to respect compliance with ESRI World File format. So proceeding with the following *.jgw file leads to following results:
Note that it was necessary to execute
rectify()
to adjust the rotated SpatRaster into a non-rotated object - otherwise R crashed when executingwriteRaster()
.