Skip to content

Commit

Permalink
-Padded band numbers with leading zeros
Browse files Browse the repository at this point in the history
-Added patch to keep older project files from breaking
-Closes ticket #1567

git-svn-id: http://svn.osgeo.org/qgis/trunk@10278 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
ersts committed Mar 14, 2009
1 parent c620953 commit 23f865a
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 13 deletions.
8 changes: 4 additions & 4 deletions src/core/raster/qgscolorrampshader.cpp
Expand Up @@ -17,7 +17,7 @@ originally part of the larger QgsRasterLayer class
* (at your option) any later version. *
* *
***************************************************************************/
#define REALLY_SMALL 0.0000001
#define DOUBLE_DIFF_THRESHOLD 0.0000001

#include "qgslogger.h"

Expand Down Expand Up @@ -69,7 +69,7 @@ bool QgsColorRampShader::discreteColor( double theValue, int* theReturnRedValue,
{
mCurrentColorRampItemIndex--;
}
else if ( theValue <= myColorRampItem.value || myTinyDiff <= REALLY_SMALL )
else if ( theValue <= myColorRampItem.value || myTinyDiff <= DOUBLE_DIFF_THRESHOLD )
{
*theReturnRedValue = myColorRampItem.color.red();
*theReturnGreenValue = myColorRampItem.color.green();
Expand Down Expand Up @@ -106,7 +106,7 @@ bool QgsColorRampShader::exactColor( double theValue, int* theReturnRedValue, in
//Start searching from the last index - assumtion is that neighboring pixels tend to be similar values
myColorRampItem = mColorRampItemList.value( mCurrentColorRampItemIndex );
myTinyDiff = fabs( theValue - myColorRampItem.value );
if ( theValue == myColorRampItem.value || myTinyDiff <= REALLY_SMALL )
if ( theValue == myColorRampItem.value || myTinyDiff <= DOUBLE_DIFF_THRESHOLD )
{
*theReturnRedValue = myColorRampItem.color.red();
*theReturnGreenValue = myColorRampItem.color.green();
Expand Down Expand Up @@ -160,7 +160,7 @@ bool QgsColorRampShader::interpolatedColor( double theValue, int* theReturnRedVa
{
mCurrentColorRampItemIndex--;
}
else if ( mCurrentColorRampItemIndex != 0 && ( theValue <= myColorRampItem.value || myTinyDiff <= REALLY_SMALL ) )
else if ( mCurrentColorRampItemIndex != 0 && ( theValue <= myColorRampItem.value || myTinyDiff <= DOUBLE_DIFF_THRESHOLD ) )
{
QgsColorRampShader::ColorRampItem myPreviousColorRampItem = mColorRampItemList.value( mCurrentColorRampItemIndex - 1 );
myCurrentRampRange = myColorRampItem.value - myPreviousColorRampItem.value;
Expand Down
72 changes: 63 additions & 9 deletions src/core/raster/qgsrasterlayer.cpp
Expand Up @@ -104,6 +104,7 @@ QgsRasterLayer::QgsRasterLayer(
mColorShadingAlgorithm = QgsRasterLayer::UndefinedShader;
mRasterShader = new QgsRasterShader();

mBandCount = 0;
mHasPyramids = false;
mNoDataValue = -9999;
mValidNoDataValue = false;
Expand Down Expand Up @@ -638,7 +639,7 @@ int CPL_STDCALL progressCallback( double dfComplete,

unsigned int QgsRasterLayer::bandCount()
{
return mRasterStatsList.size();
return mBandCount;
}

const QString QgsRasterLayer::bandName( int theBandNo )
Expand Down Expand Up @@ -1838,7 +1839,7 @@ bool QgsRasterLayer::identify( const QgsPoint& thePoint, QMap<QString, QString>&
// Outside the raster
for ( int i = 1; i <= GDALGetRasterCount( mGdalDataset ); i++ )
{
theResults[ tr( "Band%1" ).arg( i )] = tr( "out of extent" );
theResults[ generateBandName( i ) ] = tr( "out of extent" );
}
}
else
Expand Down Expand Up @@ -1882,7 +1883,8 @@ bool QgsRasterLayer::identify( const QgsPoint& thePoint, QMap<QString, QString>&
{
v.setNum( value );
}
theResults[tr( "Band%1" ).arg( i )] = v;

theResults[ generateBandName( i ) ] = v;

CPLFree( data );
}
Expand Down Expand Up @@ -4888,6 +4890,37 @@ void QgsRasterLayer::closeDataset()
mRasterStatsList.clear();
}

QString QgsRasterLayer::generateBandName( int theBandNumber )
{
//Calculate magnitude of band count for padding
QString myBandName = tr( "Band" ) + " ";
int myBandCount = bandCount();
int myLeadingZeros = 0;
int myWholeNumber = myBandCount / 10;
while( myWholeNumber > 0 )
{
myLeadingZeros++;
myWholeNumber = myBandCount / pow( 10, myLeadingZeros + 1 );
}

//Pad the band number of needed
int myMagnitude = 0;
myWholeNumber = theBandNumber / 10;
while( myWholeNumber > 0 )
{
myMagnitude++;
myWholeNumber = theBandNumber / pow( 10, myMagnitude + 1 );
}

for( int myPadder = 0; myPadder < myLeadingZeros - myMagnitude; myPadder++ )
{
myBandName += "0";
}
myBandName += QString::number( theBandNumber );

return myBandName;
}

/**
* This method looks to see if a given band name exists.
*@note This function is no longer really needed and about to be removed
Expand Down Expand Up @@ -5166,13 +5199,12 @@ bool QgsRasterLayer::readFile( QString const &theFilename )
mRasterTransparency.initializeTransparentPixelList( mNoDataValue );
}

//initialise the raster band stats and contrast enhancement vector
for ( int i = 1; i <= GDALGetRasterCount( mGdalDataset ); i++ )
mBandCount = GDALGetRasterCount( mGdalDataset );
for ( int i = 1; i <= mBandCount; i++ )
{
GDALRasterBandH myGdalBand = GDALGetRasterBand( mGdalDataset, i );
QgsRasterBandStats myRasterBandStats;
//myRasterBandStats.bandName = myColorQString ;
myRasterBandStats.bandName = "Band " + QString::number( i );
myRasterBandStats.bandName = generateBandName( i );
myRasterBandStats.bandNumber = i;
myRasterBandStats.statsGathered = false;
myRasterBandStats.histogramVector = new QgsRasterBandStats::HistogramVector();
Expand Down Expand Up @@ -5347,12 +5379,34 @@ QString QgsRasterLayer::validateBandName( QString const & theBandName )
}
QgsDebugMsg( "No matching band name found in raster band stats" );

QgsDebugMsg( "Testing for non zero-buffered names" );
//TODO Remove test in v2.0 or earlier
QStringList myBandNameComponents = theBandName.split( " " );
if ( myBandNameComponents.size() == 2 )
{
int myBandNumber = myBandNameComponents.at( 1 ).toInt();
if ( myBandNumber > 0 )
{
QString myBandName = generateBandName( myBandNumber );
for ( int myIterator = 0; myIterator < mRasterStatsList.size(); ++myIterator )
{
//find out the name of this band
if ( mRasterStatsList[myIterator].bandName == myBandName )
{
QgsDebugMsg( "Matching band name found" );
return myBandName;
}
}
}
}

QgsDebugMsg( "Testing older naming format" );
//See of the band in an older format #:something.
//TODO Remove test in v2.0
//TODO Remove test in v2.0 or earlier
myBandNameComponents.clear();
if ( theBandName.contains( ':' ) )
{
QStringList myBandNameComponents = theBandName.split( ":" );
myBandNameComponents = theBandName.split( ":" );
if ( myBandNameComponents.size() == 2 )
{
int myBandNumber = myBandNameComponents.at( 0 ).toInt();
Expand Down
7 changes: 7 additions & 0 deletions src/core/raster/qgsrasterlayer.h
Expand Up @@ -668,6 +668,7 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
//
// Private methods
//

/** \brief Drawing routine for multiband image */
void drawMultiBandColor( QPainter * theQPainter,
QgsRasterViewPort * theRasterViewPort,
Expand Down Expand Up @@ -724,6 +725,9 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
/** \brief Close data set and release related data */
void closeDataset();

/** \brief helper function to create zero padded band names */
QString generateBandName( int );

/** \brief Find out whether a given band exists. */
bool hasBand( const QString & theBandName );

Expand Down Expand Up @@ -759,6 +763,9 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
const QString QSTRING_NOT_SET;
const QString TRSTRING_NOT_SET;

/** \brief The number of bands in the dataset */
int mBandCount;

/** \brief The band to be associated with the color blue - usually 3 */
QString mBlueBandName;

Expand Down

0 comments on commit 23f865a

Please sign in to comment.