Impulsado por el puntero Mike Toews a GetGeoTransform , logré crear un pequeño script gdal python que crea archivos mundiales para cualquier ráster georreferenciado compatible (creo). El código completo está aquí: gdal-makeworld.py
. Los bits esenciales son:
geotransform = dataset.GetGeoTransform()
if geotransform is not None:
x, x_size, x_rot, y, y_rot, y_size = geotransform
# correct for centre vs corner of pixel
x = x_size/2+x
y = y_size/2+y
world_file.write('%s\n' % x_size)
world_file.write('%s\n' % x_rot)
world_file.write('%s\n' % y_rot)
world_file.write('%s\n' % y_size)
world_file.write('%s\n' % x)
world_file.write('%s\n' % y)
world_file.close()
''' geotransform tuple key:
[0] /* top left x */
[1] /* w-e pixel resolution */
[2] /* rotation, 0 if image is "north up" */
[3] /* top left y */
[4] /* rotation, 0 if image is "north up" */
[5] /* n-s pixel resolution */
'''
Un agradecimiento adicional a Schuyler Erle por escribir gdalcopyproj.py
que utilicé como punto de partida.
Hat tip @AlisterH para "correcto para el centro frente a la esquina del píxel" , 30/05/2019