文件名称:在vc++中用GDAL读取tif文件中任意一点的高程值
文件大小:9.27MB
文件格式:ZIP
更新时间:2020-12-13 07:41:26
GDAL,tif
int main(int argc, char* argv[]) { int num_iamge_size=0; BYTE *pafScanblock1; //开辟缓存区 char *file_path_name="C:/webservices/data/srtm/chinaclip.tif"; GDALDataset *poDataset; //GDAL数据集 GDALAllRegister(); //注册所有的驱动 poDataset = (GDALDataset *) GDALOpen(file_path_name, GA_ReadOnly );