Skip to content
Snippets Groups Projects
Commit 940052d6 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

STYLE

parent 03f2277c
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,6 @@
=========================================================================*/
#ifdef _MSC_VER
#pragma warning ( disable : 4786 )
#endif
......@@ -70,7 +69,7 @@ TerraSarImageMetadataInterface::CanRead( const MetaDataDictionaryType & dict ) c
else
return false;
}
int
TerraSarImageMetadataInterface::GetDay( const MetaDataDictionaryType & dict ) const
......@@ -94,20 +93,20 @@ TerraSarImageMetadataInterface::GetDay( const MetaDataDictionaryType & dict ) co
ossimString separatorList;
key = "support_data.image_date";
separatorList = "-T";
ossimString keywordString = kwl.find(key.c_str());
std::vector<ossimString> keywordStrings = keywordString.split(separatorList);
if(keywordStrings.size() <= 2)
itkExceptionMacro(<<"Invalid Day");
ossimString day = keywordStrings[2];
return day.toInt();
*/
return 1;
}
int
......@@ -132,8 +131,8 @@ TerraSarImageMetadataInterface::GetMonth( const MetaDataDictionaryType & dict )
ossimString separatorList;
key = "support_data.image_date";
separatorList = "-T";
ossimString keywordString = kwl.find(key.c_str());
std::vector<ossimString> keywordStrings = keywordString.split(separatorList);
......@@ -141,7 +140,7 @@ TerraSarImageMetadataInterface::GetMonth( const MetaDataDictionaryType & dict )
itkExceptionMacro(<<"Invalid Month");
ossimString month = keywordStrings[1];
return month.toInt();
*/
return 1;
......@@ -262,7 +261,7 @@ TerraSarImageMetadataInterface::GetProductionDay( const MetaDataDictionaryType &
{
itkExceptionMacro(<<"Invalid Metadata, no TerraSar Image");
}
ImageKeywordlistType imageKeywordlist;
if (dict.HasKey(MetaDataKey::OSSIMKeywordlistKey))
......@@ -296,7 +295,7 @@ TerraSarImageMetadataInterface::GetProductionMonth( const MetaDataDictionaryType
{
itkExceptionMacro(<<"Invalid Metadata, no TerraSar Image");
}
ImageKeywordlistType imageKeywordlist;
if (dict.HasKey(MetaDataKey::OSSIMKeywordlistKey))
......@@ -331,7 +330,7 @@ TerraSarImageMetadataInterface::GetProductionYear( const MetaDataDictionaryType
{
itkExceptionMacro(<<"Invalid Metadata, no TerraSar Image");
}
ImageKeywordlistType imageKeywordlist;
if (dict.HasKey(MetaDataKey::OSSIMKeywordlistKey))
......
......@@ -15,6 +15,7 @@
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __otbTerraSarImageMetadataInterface_h
#define __otbTerraSarImageMetadataInterface_h
......@@ -46,13 +47,13 @@ public:
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(TerraSarImageMetadataInterface, itk::Object);
typedef itk::ImageBase< 2 > ImageType;
typedef itk::MetaDataDictionary MetaDataDictionaryType;
typedef MetaDataKey::VectorType VectorType;
......@@ -67,35 +68,35 @@ public:
/** Get the imaging acquisition day from the ossim metadata */
int GetDay( const MetaDataDictionaryType & ) const;
/** Get the imaging acquisition month from the ossim metadata */
int GetMonth( const MetaDataDictionaryType & ) const;
/** Get the imaging acquisition year from the ossim metadata */
int GetYear( const MetaDataDictionaryType & ) const;
/** Get the imaging acquisition hour from the ossim metadata */
int GetHour( const MetaDataDictionaryType & ) const;
/** Get the imaging acquisition minute from the ossim metadata */
int GetMinute( const MetaDataDictionaryType & ) const;
/** Get the imaging production day from the ossim metadata */
int GetProductionDay( const MetaDataDictionaryType & ) const;
/** Get the imaging production month from the ossim metadata */
int GetProductionMonth( const MetaDataDictionaryType & ) const;
/** Get the imaging production year from the ossim metadata */
int GetProductionYear( const MetaDataDictionaryType & ) const;
bool CanRead( const MetaDataDictionaryType & ) const;
protected:
TerraSarImageMetadataInterface();
virtual ~TerraSarImageMetadataInterface() {};
private:
TerraSarImageMetadataInterface(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
......
......@@ -10,9 +10,9 @@
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
......@@ -33,16 +33,16 @@ int otbTerraSarImageMetadataInterface (int argc, char* argv[])
// Verify the number of parameters in the command line
const char * inputFilename = argv[1];
const char * outputFilename = argv[2];
typedef otb::VectorImage< double, 2 > InputImageType;
typedef otb::ImageFileReader< InputImageType > ImageReaderType;
ImageReaderType::Pointer reader = ImageReaderType::New();
reader->SetFileName( inputFilename );
reader->UpdateOutputInformation();
otb::TerraSarImageMetadataInterface::Pointer lImageMetadata = otb::TerraSarImageMetadataInterface::New();
std::ofstream file;
file.open(outputFilename);
file<<"GetSensorID: "<<lImageMetadata->GetSensorID(reader->GetOutput()->GetMetaDataDictionary())<<std::endl;
......
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