I'm trying to implement a script to project an image having the two matrices of Lat and Lon points. I've followed the steps proposed in: Unable to warp HDF5 files and everything is fine. I create the three .vrt files and than by using:
gdalwarp -geoloc -t_srs EPSG:4326 img.vrt output.tif
the final image is correctly projected. Also, just for visualization purposes the following code does is job:
plt.pcolormesh(lon,lat,img, cmap='rainbow')
plt.show()
Now, I want to create a script without having to create the .vrt files every time. So I started following Writing numpy array to raster file but I'm not able to obtain the desired projection (Actually, the output image is similar to the input one, just horizontally translate of some pixels). Here is the key part of code:
ny = img.shape[0]
nx = img.shape[1]
xmin, ymin, xmax, ymax = [lon.min(), lat.min(), lon.max(), lat.max()]
xres = (xmax - xmin) / float(nx)
yres = (ymax - ymin) / float(ny)
geotransform = (xmin, xres, 0, ymin, 0, -yres)
# create the 1-band raster file
dst_ds = gdal.GetDriverByName('GTiff').Create('myGeoTIFF.tif', ny, nx, 1, gdal.GDT_Byte)
dst_ds.SetGeoTransform(geotransform) # specify coords
srs = osr.SpatialReference() # establish encoding
srs.ImportFromEPSG(4326) # WGS84 lat/long
dst_ds.SetProjection(srs.ExportToWkt()) # export coords to file
dst_ds.GetRasterBand(1).WriteArray(img) # write r-band to the raster
dst_ds.FlushCache() # write to disk
dst_ds = None
I think I'm missing something when I create the geotransform matrix because in this way I introduce only one corner of the image without giving any info about the transformation.
How do I solve the problem?
-
Geotransform is just a linear transformation with scaling, while gdalwarp can do more sophisticated (/and accurate) reprojection. Keep in mind that the Earth is round ...AndreJ– AndreJ2017年09月08日 11:38:24 +00:00Commented Sep 8, 2017 at 11:38
-
Thanks. That exactly what I was thinking. I'll try to explore a bit more gdalwarp and see how to extract the correct transformation from the lat/lon matricesThomas– Thomas2017年09月08日 12:39:50 +00:00Commented Sep 8, 2017 at 12:39
-
Take a look at the files metadata or the download website. In most cases the projection is documented there.AndreJ– AndreJ2017年09月09日 06:38:43 +00:00Commented Sep 9, 2017 at 6:38
-
I did a small step back just to well understand the gdalwarp function. I've created with the tool of the image provider the geotiff image and I tried to apply to it the gdalwarp function in this way: gdalwarp -t_srs EPSG:4326 original.tif warp_ref.tif. But the resulting image is not projected. Do you have expirience with Sentinel 3 data? the metadata file says: srsName="opengis.net/def/crs/EPSG/0/4326">Thomas– Thomas2017年09月10日 09:40:26 +00:00Commented Sep 10, 2017 at 9:40
-
Can you point to the dataset you are having trouble with?AndreJ– AndreJ2017年09月13日 06:11:37 +00:00Commented Sep 13, 2017 at 6:11