diff --git a/Testing/Code/IO/CMakeLists.txt b/Testing/Code/IO/CMakeLists.txt index 95e5a558cab355bf51ca5feb93872da4bf75ec52..3009720cae6fbe111f0577e8c6478065f022faac 100644 --- a/Testing/Code/IO/CMakeLists.txt +++ b/Testing/Code/IO/CMakeLists.txt @@ -573,6 +573,14 @@ ADD_TEST(ioTuGDALImageIOCanRead_SPOT4 ${IO_TESTS5} otbGDALImageIOTestCanRead # ${LARGEDATA}/SPOT4/RIO_DE_JANEIRO/ ) ${LARGEDATA}/SPOT4/RIO_DE_JANEIRO/IMAG_01.DAT ) +ADD_TEST(ioTuGDALImageIOCanRead_IKONOS_NIR ${IO_TESTS5} otbGDALImageIOTestCanRead + ${LARGEDATA}/IKONOS/PARIS/po_79039_nir_0000000.tif) + +ADD_TEST(ioTuGDALImageIOCanRead_FORMOSAT2 ${IO_TESTS5} otbGDALImageIOTestCanRead + ${LARGEDATA}/FORMOSAT/Sudouest_20071013_MS_fmsat/IMAGERY.TIF) + + + ENDIF(OTB_DATA_USE_LARGEINPUT) ADD_TEST(ioTuGDALImageIOCanRead_SPOT5TIF ${IO_TESTS5} otbGDALImageIOTestCanRead @@ -1082,6 +1090,13 @@ ADD_TEST(ioTvOtbVectorImageTestSpot5 ${IO_TESTS9} ${LARGEDATA}/SPOT5/TEHERAN/ ${TEMP}/ioOtbVectorImageTestSpot5.txt) +ADD_TEST(ioTvOtbVectorImageTestFORMOSAT2 ${IO_TESTS9} + --compare-ascii ${EPS} ${BASELINE_FILES}/ioOtbVectorImageTestFORMOSAT2.txt + ${TEMP}/ioOtbVectorImageTestFORMOSAT2.txt + otbVectorImageTest + ${LARGEDATA}/FORMOSAT/Sudouest_20071013_MS_fmsat/ + ${TEMP}/ioOtbVectorImageTestFORMOSAT2.txt) + ENDIF(OTB_DATA_USE_LARGEINPUT) # --- otb::VectorImageReadWriteTest --- @@ -2032,6 +2047,10 @@ ADD_TEST(ioTuSpotImageMetadataInterfaceNew ${IO_TESTS18} otbSpotImageMetadataInterfaceNew ) +ADD_TEST(ioTuFormosatImageMetadataInterfaceNew ${IO_TESTS18} + otbFormosatImageMetadataInterfaceNew +) + ADD_TEST(ioTuIkonosImageMetadataInterfaceNew ${IO_TESTS18} otbIkonosImageMetadataInterfaceNew ) @@ -2158,6 +2177,20 @@ ADD_TEST(ioTvImageKeywordlistSPOT5 ${IO_TESTS18} ${TEMP}/ioTvImageKeywordlistSpot5_saveState_loadState.txt ) +ADD_TEST(ioTvImageKeywordlistFORMOSAT2 ${IO_TESTS18} + --ignore-order --compare-n-ascii ${NOTOL} 2 + ${BASELINE_FILES}/ioTvImageKeywordlistFORMOSAT2.txt + ${TEMP}/ioTvImageKeywordlistFORMOSAT2.txt + ${BASELINE_FILES}/ioTvImageKeywordlistFORMOSAT2.txt + ${TEMP}/ioTvImageKeywordlistFORMOSAT2_saveState_loadState.txt + --ignore-lines-with 3 support_data.metadata_file meters_per_pixel_x meters_per_pixel_y + otbImageKeywordlist + ${LARGEDATA}/FORMOSAT/Sudouest_20071013_MS_fmsat/IMAGERY.TIF + ${TEMP}/ioTvImageKeywordlistFORMOSAT2.txt + ${TEMP}/ioTvImageKeywordlistFORMOSAT2_saveState_loadState.txt +) + + ADD_TEST(ioTvImageKeywordlistQuickbird ${IO_TESTS18} --ignore-order --compare-n-ascii ${NOTOL} 2 ${BASELINE_FILES}/ioTvImageKeywordlistQuickbird.txt @@ -2597,6 +2630,7 @@ otbIOTests18.cxx otbImageKeywordlist.cxx otbTerraSarImageMetadataInterface.cxx otbSpotImageMetadataInterfaceNew.cxx +otbFormosatImageMetadataInterfaceNew.cxx otbQuickBirdImageMetadataInterfaceNew.cxx otbWorldView2ImageMetadataInterfaceNew.cxx otbIkonosImageMetadataInterfaceNew.cxx diff --git a/Testing/Code/IO/otbFormosatImageMetadataInterfaceNew.cxx b/Testing/Code/IO/otbFormosatImageMetadataInterfaceNew.cxx new file mode 100644 index 0000000000000000000000000000000000000000..dd08fa0be93dd6bf398be6769aa0637a50083209 --- /dev/null +++ b/Testing/Code/IO/otbFormosatImageMetadataInterfaceNew.cxx @@ -0,0 +1,36 @@ +/*========================================================================= + + Program: ORFEO Toolbox + Language: C++ + Date: $Date$ + Version: $Revision$ + + + Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. + 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. + +=========================================================================*/ + +#if defined(_MSC_VER) +#pragma warning ( disable : 4786 ) +#endif + +#include "itkExceptionObject.h" + +#include <iostream> + +#include "otbFormosatImageMetadataInterface.h" + +int otbFormosatImageMetadataInterfaceNew(int argc, char* argv[]) +{ + + otb::FormosatImageMetadataInterface::Pointer lImageMetadata = otb::FormosatImageMetadataInterface::New(); + + return EXIT_SUCCESS; + +} diff --git a/Testing/Code/IO/otbIOTests18.cxx b/Testing/Code/IO/otbIOTests18.cxx index 9a28073db0e91d348ff540f257f761fb7ea7388e..fb62a4590fd03d8c44e10afb03376b783d29afb4 100644 --- a/Testing/Code/IO/otbIOTests18.cxx +++ b/Testing/Code/IO/otbIOTests18.cxx @@ -29,6 +29,7 @@ void RegisterTests() REGISTER_TEST(otbTerraSarImageMetadataInterface); REGISTER_TEST(otbImageKeywordlist); REGISTER_TEST(otbSpotImageMetadataInterfaceNew); + REGISTER_TEST(otbFormosatImageMetadataInterfaceNew); REGISTER_TEST(otbIkonosImageMetadataInterfaceNew); REGISTER_TEST(otbQuickBirdImageMetadataInterfaceNew); REGISTER_TEST(otbWorldView2ImageMetadataInterfaceNew); diff --git a/Testing/Code/Projections/CMakeLists.txt b/Testing/Code/Projections/CMakeLists.txt index dc9e27955ee3aa431fbd3d4a07e08f7b19c335f7..00fcb0203cf222c779d62dd568eb3a70fb9e1ac4 100644 --- a/Testing/Code/Projections/CMakeLists.txt +++ b/Testing/Code/Projections/CMakeLists.txt @@ -112,6 +112,17 @@ ADD_TEST(prTvSensorModelSPOT5 ${PROJECTIONS_TESTS1} ${TEMP}/prTvSensorModelSpot5.txt ) +ADD_TEST(prTvSensorModelFORMOSAT2 ${PROJECTIONS_TESTS1} +# --ignore-order --compare-ascii ${NOTOL} +# ${BASELINE_FILES}/prTvSensorModelSpot5.txt +# ${TEMP}/prTvSensorModelSpot5.txt +#--ignore-lines-with 3 support_data.metadata_file meters_per_pixel_x meters_per_pixel_y + otbSensorModel + ${LARGEINPUT}/FORMOSAT/Sudouest_20071013_MS_fmsat/IMAGERY.TIF + ${TEMP}/prTvSensorModelFORMOSAT2.txt +) + + ADD_TEST(prTvSensorModelQuickbird ${PROJECTIONS_TESTS1} --ignore-order --compare-ascii ${NOTOL} ${BASELINE_FILES}/prTvSensorModelQuickbird.txt diff --git a/Testing/Code/Radiometry/CMakeLists.txt b/Testing/Code/Radiometry/CMakeLists.txt index 869d62c529307c1f861b51b969acfea1e9d673d8..e982a98be86c5ab91f309bf3639d68530faf4e05 100644 --- a/Testing/Code/Radiometry/CMakeLists.txt +++ b/Testing/Code/Radiometry/CMakeLists.txt @@ -343,6 +343,13 @@ ADD_TEST(raTvImageToReflectanceImageFilterAuto ${RADIOMETRY_TESTS2} ${LARGEINPUT}/SPOT5/TEHERAN/IMAGERY.TIF ${TEMP}/raTvImageToReflectanceImageFilterAuto.tif ) + +ADD_TEST(raTuImageToReflectanceImageFilterAutoFORMOSAT2 ${RADIOMETRY_TESTS2} + otbImageToReflectanceImageFilterAuto + ${LARGEINPUT}/FORMOSAT/Sudouest_20071013_MS_fmsat/IMAGERY.TIF + ${TEMP}/raTvImageToReflectanceImageFilterAutoFORMOSAT2.tif + ) + ENDIF(OTB_DATA_USE_LARGEINPUT) # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~