I have a georeferenced raster and I need to extract a list with the coordinates of pixel in reference system (EPSG:32631) and the coordinate of pixel in raster reference.
I want a list like this (just an example):
x_raster,y_raster,Nord,East
0,0,700000,4780000
0,1,700000,4780010
...
...
How can I do using Python and GDAL?