Re: [gdal-dev] software can display geotiff file in 3D viewer.

2010-04-04 Thread Volker Wichmann
Markus Neteler schrieb: 2010/4/2 weixj2003ld weixj200...@163.com: Hi Could you tell me some open source softwares(base on windows) that can display geotiff files in 3D mode not in 2D mode? GRASS GIS has the NVIZ 3D viewer included: http://grass.osgeo.org/screenshots/viz.php Download

[gdal-dev] max y is less than min y

2010-04-04 Thread weixj2003ld
I read a .tif file ,and use the following code to get the MinX,MinY,MaxX and MaxY of the coordation of the tif image. ... double *m_AdGeoTransform=new double[6]; poDataset-GetGeoTransform(AdGeoTransform); nX=poDataset-GetReasXsize(); nY=poDataset-GetReasYsize(); MinX=AdGeoTransform[0];

Re: [gdal-dev] max y is less than min y

2010-04-04 Thread Frank Warmerdam
weixj2003ld wrote: I read a .tif file ,and use the following code to get the MinX,MinY,MaxX and MaxY of the coordation of the tif image. ... double *m_AdGeoTransform=new double[6]; poDataset-GetGeoTransform(AdGeoTransform); nX=poDataset-GetReasXsize(); nY=poDataset-GetReasYsize();