2005-11-20 01:57:36 +00:00
|
|
|
/** \brief This struct is used to store pyramid info for the raster layer. */
|
|
|
|
class QgsRasterPyramid
|
|
|
|
{
|
2007-01-09 02:39:15 +00:00
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgsrasterpyramid.h>
|
|
|
|
%End
|
|
|
|
|
2005-11-20 01:57:36 +00:00
|
|
|
public:
|
|
|
|
/** \brief The pyramid level as implemented in gdal (level 2 is half orignal raster size etc) */
|
2008-01-11 06:38:10 +00:00
|
|
|
int level;
|
2005-11-20 01:57:36 +00:00
|
|
|
/** \brief XDimension for this pyramid layer */
|
2008-01-11 06:38:10 +00:00
|
|
|
int xDim;
|
2005-11-20 01:57:36 +00:00
|
|
|
/** \brief YDimension for this pyramid layer */
|
2008-01-11 06:38:10 +00:00
|
|
|
int yDim;
|
2005-11-20 01:57:36 +00:00
|
|
|
/** \brief Whether the pyramid layer has been built yet */
|
|
|
|
bool existsFlag;
|
|
|
|
|
|
|
|
};
|