上一页 1 ··· 15 16 17 18 19
摘要: 即描述一个GDAL data store能够包含的信息的类型。Dataset一个dataset (即一个GDALDataset 对象)是一组相关的raster bands和一些属于它们的公共信息的集合。尤其是dataset有一个适用于它所有bands的关于raster size的概念,它是用pixels 和 lines来描述的。这个dataset也负责它所有bands的地理参考的转换和坐标系统的定义。Dataset本身也可有相关的metadata,即以string形式的一张name/values pairs的列表。注意:GDAL dataset和raster band 的数据模型是基于 the 阅读全文
posted @ 2011-11-19 20:31 bigbigtree 阅读(1068) 评论(0) 推荐(0) 编辑
摘要: CString::MakeUppervoid MakeUpper( );Remarks备注Converts this CString object to an uppercase string.将原对象的所有小写英文字母转换为大写。(只是将小写的英文字母转换为大写,对于其它的字符不做变化,例如:大写字符,数字,汉字)Example实例The following example demonstrates the use of CString::MakeUpper.// example for CString::MakeUpperCString s( "abc" );s.Mak 阅读全文
posted @ 2011-11-18 10:39 bigbigtree 阅读(6511) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19