Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use byte raster bands for relief plugin to generate smaller output ra…
…sters
  • Loading branch information
mhugent committed Jan 18, 2012
1 parent e6fe59b commit 53500e7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions src/analysis/raster/qgsrelief.cpp
Expand Up @@ -164,9 +164,9 @@ int QgsRelief::processRaster( QProgressDialog* p )
float* scanLine2 = ( float * ) CPLMalloc( sizeof( float ) * xSize );
float* scanLine3 = ( float * ) CPLMalloc( sizeof( float ) * xSize );

int* resultRedLine = ( int * ) CPLMalloc( sizeof( int ) * xSize );
int* resultGreenLine = ( int * ) CPLMalloc( sizeof( int ) * xSize );
int* resultBlueLine = ( int * ) CPLMalloc( sizeof( int ) * xSize );
char* resultRedLine = ( char * ) CPLMalloc( sizeof( char ) * xSize );
char* resultGreenLine = ( char * ) CPLMalloc( sizeof( char ) * xSize );
char* resultBlueLine = ( char * ) CPLMalloc( sizeof( char ) * xSize );

if ( p )
{
Expand Down Expand Up @@ -247,9 +247,9 @@ int QgsRelief::processRaster( QProgressDialog* p )
}
}

GDALRasterIO( outputRedBand, GF_Write, 0, i, xSize, 1, resultRedLine, xSize, 1, GDT_Int32, 0, 0 );
GDALRasterIO( outputGreenBand, GF_Write, 0, i, xSize, 1, resultGreenLine, xSize, 1, GDT_Int32, 0, 0 );
GDALRasterIO( outputBlueBand, GF_Write, 0, i, xSize, 1, resultBlueLine, xSize, 1, GDT_Int32, 0, 0 );
GDALRasterIO( outputRedBand, GF_Write, 0, i, xSize, 1, resultRedLine, xSize, 1, GDT_Byte, 0, 0 );
GDALRasterIO( outputGreenBand, GF_Write, 0, i, xSize, 1, resultGreenLine, xSize, 1, GDT_Byte, 0, 0 );
GDALRasterIO( outputBlueBand, GF_Write, 0, i, xSize, 1, resultBlueLine, xSize, 1, GDT_Byte, 0, 0 );
}

if ( p )
Expand Down Expand Up @@ -278,7 +278,7 @@ int QgsRelief::processRaster( QProgressDialog* p )
}

bool QgsRelief::processNineCellWindow( float* x1, float* x2, float* x3, float* x4, float* x5, float* x6, float* x7, float* x8, float* x9,
int* red, int* green, int* blue )
char* red, char* green, char* blue )
{
//1. component: colour and hillshade from 300 degrees
int r = 0;
Expand Down Expand Up @@ -363,9 +363,9 @@ bool QgsRelief::processNineCellWindow( float* x1, float* x2, float* x3, float* x
b = b3 * 0.1 + b * 0.9;
}

*red = r;
*green = g;
*blue = b;
*red = ( char )r;
*green = ( char )g;
*blue = ( char )b;
return true;
}

Expand Down Expand Up @@ -444,7 +444,7 @@ GDALDatasetH QgsRelief::openOutputFile( GDALDatasetH inputDataset, GDALDriverH o
papszOptions = CSLSetNameValue( papszOptions, "COMPRESS", "PACKBITS" );

//create three band raster (reg, green, blue)
GDALDatasetH outputDataset = GDALCreate( outputDriver, mOutputFile.toLocal8Bit().data(), xSize, ySize, 3, GDT_Int32, papszOptions );
GDALDatasetH outputDataset = GDALCreate( outputDriver, mOutputFile.toLocal8Bit().data(), xSize, ySize, 3, GDT_Byte, papszOptions );
if ( outputDataset == NULL )
{
return outputDataset;
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/raster/qgsrelief.h
Expand Up @@ -89,7 +89,7 @@ class ANALYSIS_EXPORT QgsRelief
QList< ReliefColor > mReliefColors;

bool processNineCellWindow( float* x1, float* x2, float* x3, float* x4, float* x5, float* x6, float* x7, float* x8, float* x9,
int* red, int* green, int* blue );
char* red, char* green, char* blue );

/**Opens the input file and returns the dataset handle and the number of pixels in x-/y- direction*/
GDALDatasetH openInputFile( int& nCellsX, int& nCellsY );
Expand Down

0 comments on commit 53500e7

Please sign in to comment.