使用GDAL读取geotiff文件alttitude

时间:2014-07-25 11:28:56

标签: python gdal geotiff

我正在使用GDAL来读取geotiff文件。

我想阅读我的geotiff文件的坐标Z。

以前有人在处理案件吗?

方面,

1 个答案:

答案 0 :(得分:0)

我已经设法从osgeo import gdal

中读取了elavation
gdal.UseExceptions()

ds = gdal.Open('test_data.tif')
band = ds.GetRasterBand(1)
elevation = band.ReadAsArray()

print elevation.shape
print elevation