I have a binary image. I convert this image to GeoTiff image by python funntion:
def exportGeotiff(filename, raster, row, col, xResolution, minLon, minLat, yResolution,geoReference):
format = "GTiff"driver = gdal.GetDriverByName( format )dst_ds = driver.Create(filename, col, row, 1...