Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix handling of warped VRT (refs #12264)
Loading of rasters requiring warped VRTs was broken, but the heatmap
plugin is still creating incorrect outputs which needs to be fixed.
  • Loading branch information
nyalldawson committed Feb 28, 2015
1 parent fe9161f commit ffaa498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/gdal/qgsgdalprovider.cpp
Expand Up @@ -2486,7 +2486,7 @@ void QgsGdalProvider::initBaseDataset()
}
else
{
hasGeoTransform = GDALGetGeoTransform( mGdalDataset, mGeoTransform );
hasGeoTransform = GDALGetGeoTransform( mGdalDataset, mGeoTransform ) == CE_None;
}
}
else
Expand Down

0 comments on commit ffaa498

Please sign in to comment.