Skip to Content

traitement

  1. from osgeo import gdal
  2. gdal.AllRegister() #tous les formats d'images de Gdal sont ainsi reconnus
  3. raster = gdal.Open("montif.tif")
  4. #dimension du raster
  5. rasterx = raster.RasterXSize
  6. rastery = raster.RasterYSize
  7. bands = raster.RasterCount
  8. print rasterx,rastery,bands
  9. 7996 9995 1
  10. #paramètres du géoréférencement
  11. geotransform = raster.GetGeoTransform()
  12. #paramètres
  13. xsupgauche = geotransform[0]
  14. ysupgauche = geotransform[3]
  15. taillepixelx = geotransform[1]
  16. taillepixely = geotransform[5]
  17. print xsupgauche,ysupgauche, taillepixelx,taillepixely
  18. 162012.677881 108172.869385 1.00078911763 -1.00078911763