摘要: //GDALTest.cpp : 定义控制台应用程序的入口点。#include "stdafx.h"#include "gdal_priv.h"#include <iostream>using namespace std;int main(int argc, char* argv[]) {if(argc!=2){return 0;}GDALDataset *poDataset; //数据集对象指针 GDALAllRegister(); //注册驱动poDataset = (GDALDataset *) GDALOpen(argv[1] , G 阅读全文
posted @ 2013-06-14 17:58 慧由心生 阅读(2965) 评论(0) 推荐(0)