Skip to content
Snippets Groups Projects
Commit b0341eaf authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

BUG : correct RADARSAT2 metadata

parent 6f650995
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
#include <ossim/base/ossimKeywordNames.h>
#include <ossim/imaging/ossimJpegTileSource.h>
#include <ossim/imaging/ossimRadarSatTileSource.h>
#include <ossim/imaging/ossimRadarSat2TileSource.h>
#include <ossim/imaging/ossimTerraSarTileSource.h>
static const ossimTrace traceDebug("ossimImageHandlerFactory:debug");
......@@ -120,6 +121,20 @@ ossimImageHandler* ossimImageHandlerFactory::open(const ossimFilename& fileName)
{
return result;
}
delete result;
// test if Radarsat2
if(traceDebug())
{
ossimNotify(ossimNotifyLevel_DEBUG)
<< "Radarsat2"
<< std::endl;
}
result = new ossimRadarSat2TileSource;
if(result->open(copyFilename))
{
return result;
}
delete result;
// test if TerraSAR
......@@ -481,6 +496,21 @@ ossimImageHandler* ossimImageHandlerFactory::open(const ossimKeywordlist& kwl,
return result;
}
delete result;
// RadarSat2
if(traceDebug())
{
ossimNotify(ossimNotifyLevel_DEBUG)
<< "trying RadarSat2"
<< std::endl;
}
result = new ossimRadarSat2TileSource;
if(result->loadState(kwl, prefix))
{
return result;
}
delete result;
// TerraSAR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment