ENH: Add new files for modular build system
Showing
with
111577 additions
and
0 deletions
+111577
-0
- CMake/CTestCustom.cmake.in CMake/CTestCustom.cmake.in +68 -0
- CMake/CppcheckTargets.cmake CMake/CppcheckTargets.cmake +357 -0
- CMake/ExternalData.cmake CMake/ExternalData.cmake +789 -0
- CMake/ExternalData_config.cmake.in CMake/ExternalData_config.cmake.in +4 -0
- CMake/FindAgg.cmake CMake/FindAgg.cmake +28 -0
- CMake/FindFFTW.cmake CMake/FindFFTW.cmake +68 -0
- CMake/FindGeoTIFF.cmake CMake/FindGeoTIFF.cmake +27 -0
- CMake/FindICUUC.cmake CMake/FindICUUC.cmake +33 -0
- CMake/FindKWStyle.cmake CMake/FindKWStyle.cmake +54 -0
- CMake/FindLTDL.cmake CMake/FindLTDL.cmake +33 -0
- CMake/FindLibKML.cmake CMake/FindLibKML.cmake +65 -0
- CMake/FindMapnik.cmake CMake/FindMapnik.cmake +28 -0
- CMake/FindMuParser.cmake CMake/FindMuParser.cmake +34 -0
- CMake/FindMuParserX.cmake CMake/FindMuParserX.cmake +33 -0
- CMake/FindOpenThreads.cmake CMake/FindOpenThreads.cmake +128 -0
- CMake/FindTinyXML.cmake CMake/FindTinyXML.cmake +38 -0
- CMake/Findcppcheck.cmake CMake/Findcppcheck.cmake +202 -0
- CMake/Findcppcheck.cpp CMake/Findcppcheck.cpp +17 -0
- CMake/InsightValgrind-RHEL6.supp CMake/InsightValgrind-RHEL6.supp +182 -0
- CMake/InsightValgrind.supp CMake/InsightValgrind.supp +1802 -0
- CMake/OTBApplicationMacros.cmake CMake/OTBApplicationMacros.cmake +122 -0
- CMake/OTBConfig.cmake.in CMake/OTBConfig.cmake.in +52 -0
- CMake/OTBConfigVersion.cmake.in CMake/OTBConfigVersion.cmake.in +7 -0
- CMake/OTBExternalData.cmake CMake/OTBExternalData.cmake +50 -0
- CMake/OTBGroups.cmake CMake/OTBGroups.cmake +147 -0
- CMake/OTBModuleAPI.cmake CMake/OTBModuleAPI.cmake +92 -0
- CMake/OTBModuleCPPCheckTest.cmake CMake/OTBModuleCPPCheckTest.cmake +33 -0
- CMake/OTBModuleDoxygen.cmake CMake/OTBModuleDoxygen.cmake +49 -0
- CMake/OTBModuleEnablement.cmake CMake/OTBModuleEnablement.cmake +362 -0
- CMake/OTBModuleHeaderTest.cmake CMake/OTBModuleHeaderTest.cmake +94 -0
- CMake/OTBModuleInfo.cmake.in CMake/OTBModuleInfo.cmake.in +6 -0
- CMake/OTBModuleMacros.cmake CMake/OTBModuleMacros.cmake +289 -0
- CMake/OTBModuleRemote.cmake CMake/OTBModuleRemote.cmake +158 -0
- CMake/OTBSetStandardCompilerFlags.cmake CMake/OTBSetStandardCompilerFlags.cmake +298 -0
- CMake/OTB_CheckCCompilerFlag.cmake CMake/OTB_CheckCCompilerFlag.cmake +42 -0
- CMake/OTB_CheckCXXCompilerFlag.cmake CMake/OTB_CheckCXXCompilerFlag.cmake +42 -0
- CMake/PreventInBuildInstalls.cmake CMake/PreventInBuildInstalls.cmake +9 -0
- CMake/PreventInSourceBuilds.cmake CMake/PreventInSourceBuilds.cmake +43 -0
- CMake/PythonCompile.py CMake/PythonCompile.py +4 -0
- CMake/RemoveTemporaryFiles.cmake.in CMake/RemoveTemporaryFiles.cmake.in +22 -0
- CMake/TopologicalSort.cmake CMake/TopologicalSort.cmake +140 -0
- CMake/UseJava.cmake CMake/UseJava.cmake +862 -0
- CMake/UseJavaClassFilelist.cmake CMake/UseJavaClassFilelist.cmake +52 -0
- CMake/UseJavaSymlinks.cmake CMake/UseJavaSymlinks.cmake +32 -0
- CMake/UseOTB.cmake CMake/UseOTB.cmake +19 -0
- CMake/UseSWIGLocal.cmake CMake/UseSWIGLocal.cmake +268 -0
- CMake/otbcli.bat.buildtree.in CMake/otbcli.bat.buildtree.in +23 -0
- CMake/otbcli.bat.installtree.in CMake/otbcli.bat.installtree.in +23 -0
- CMake/otbcli.sh.buildtree.in CMake/otbcli.sh.buildtree.in +29 -0
- CMake/otbcli.sh.installtree.in CMake/otbcli.sh.installtree.in +29 -0
- CMake/otbcli_app.bat.in CMake/otbcli_app.bat.in +18 -0
- CMake/otbcli_app.sh.in CMake/otbcli_app.sh.in +20 -0
- CMake/otbgui.bat.buildtree.in CMake/otbgui.bat.buildtree.in +25 -0
- CMake/otbgui.bat.installtree.in CMake/otbgui.bat.installtree.in +25 -0
- CMake/otbgui.sh.buildtree.in CMake/otbgui.sh.buildtree.in +32 -0
- CMake/otbgui.sh.installtree.in CMake/otbgui.sh.installtree.in +32 -0
- CMake/otbgui_app.bat.in CMake/otbgui_app.bat.in +18 -0
- CMake/otbgui_app.sh.in CMake/otbgui_app.sh.in +20 -0
- CMake/pre-commit CMake/pre-commit +8 -0
- CMakeLists.txt CMakeLists.txt +373 -0
- CTestConfig.cmake CTestConfig.cmake +7 -0
- Examples/Application/CMakeLists.txt Examples/Application/CMakeLists.txt +9 -0
- Examples/Application/test/CMakeLists.txt Examples/Application/test/CMakeLists.txt +5 -0
- Examples/BasicFilters/CMakeLists.txt Examples/BasicFilters/CMakeLists.txt +36 -0
- Examples/BasicFilters/test/CMakeLists.txt Examples/BasicFilters/test/CMakeLists.txt +121 -0
- Examples/CMakeLists.txt Examples/CMakeLists.txt +38 -0
- Examples/ChangeDetection/CMakeLists.txt Examples/ChangeDetection/CMakeLists.txt +36 -0
- Examples/ChangeDetection/test/CMakeLists.txt Examples/ChangeDetection/test/CMakeLists.txt +65 -0
- Examples/Classification/CMakeLists.txt Examples/Classification/CMakeLists.txt +42 -0
- Examples/Classification/test/CMakeLists.txt Examples/Classification/test/CMakeLists.txt +39 -0
- Examples/DataRepresentation/CMakeLists.txt Examples/DataRepresentation/CMakeLists.txt +5 -0
- Examples/DataRepresentation/Containers/CMakeLists.txt Examples/DataRepresentation/Containers/CMakeLists.txt +8 -0
- Examples/DataRepresentation/Containers/test/CMakeLists.txt Examples/DataRepresentation/Containers/test/CMakeLists.txt +0 -0
- Examples/DataRepresentation/Image/CMakeLists.txt Examples/DataRepresentation/Image/CMakeLists.txt +45 -0
- Examples/DataRepresentation/Image/test/CMakeLists.txt Examples/DataRepresentation/Image/test/CMakeLists.txt +44 -0
- Examples/DataRepresentation/Mesh/CMakeLists.txt Examples/DataRepresentation/Mesh/CMakeLists.txt +26 -0
- Examples/DataRepresentation/Mesh/test/CMakeLists.txt Examples/DataRepresentation/Mesh/test/CMakeLists.txt +0 -0
- Examples/DataRepresentation/Path/CMakeLists.txt Examples/DataRepresentation/Path/CMakeLists.txt +8 -0
- Examples/DataRepresentation/Path/test/CMakeLists.txt Examples/DataRepresentation/Path/test/CMakeLists.txt +0 -0
- Examples/DimensionReduction/CMakeLists.txt Examples/DimensionReduction/CMakeLists.txt +20 -0
- Examples/DimensionReduction/test/CMakeLists.txt Examples/DimensionReduction/test/CMakeLists.txt +0 -0
- Examples/DisparityMap/CMakeLists.txt Examples/DisparityMap/CMakeLists.txt +17 -0
- Examples/DisparityMap/test/CMakeLists.txt Examples/DisparityMap/test/CMakeLists.txt +28 -0
- Examples/FeatureExtraction/CMakeLists.txt Examples/FeatureExtraction/CMakeLists.txt +91 -0
- Examples/FeatureExtraction/test/CMakeLists.txt Examples/FeatureExtraction/test/CMakeLists.txt +219 -0
- Examples/Filtering/CMakeLists.txt Examples/Filtering/CMakeLists.txt +67 -0
- Examples/Filtering/test/CMakeLists.txt Examples/Filtering/test/CMakeLists.txt +200 -0
- Examples/Fusion/CMakeLists.txt Examples/Fusion/CMakeLists.txt +12 -0
- Examples/Fusion/test/CMakeLists.txt Examples/Fusion/test/CMakeLists.txt +29 -0
- Examples/Hyperspectral/CMakeLists.txt Examples/Hyperspectral/CMakeLists.txt +9 -0
- Examples/Hyperspectral/test/CMakeLists.txt Examples/Hyperspectral/test/CMakeLists.txt +16 -0
- Examples/IO/CMakeLists.txt Examples/IO/CMakeLists.txt +60 -0
- Examples/IO/test/CMakeLists.txt Examples/IO/test/CMakeLists.txt +90 -0
- Examples/Installation/CMakeLists.txt Examples/Installation/CMakeLists.txt +9 -0
- Examples/Installation/test/CMakeLists.txt Examples/Installation/test/CMakeLists.txt +0 -0
- Examples/Iterators/CMakeLists.txt Examples/Iterators/CMakeLists.txt +51 -0
- Examples/Iterators/test/CMakeLists.txt Examples/Iterators/test/CMakeLists.txt +127 -0
- Examples/Learning/CMakeLists.txt Examples/Learning/CMakeLists.txt +48 -0
- Examples/Learning/test/CMakeLists.txt Examples/Learning/test/CMakeLists.txt +115 -0
- Examples/Markov/CMakeLists.txt Examples/Markov/CMakeLists.txt +21 -0
- Examples/Markov/test/CMakeLists.txt Examples/Markov/test/CMakeLists.txt +65 -0
- Examples/MultiScale/CMakeLists.txt Examples/MultiScale/CMakeLists.txt +18 -0
- Examples/MultiScale/test/CMakeLists.txt Examples/MultiScale/test/CMakeLists.txt +64 -0
- Examples/OBIA/CMakeLists.txt Examples/OBIA/CMakeLists.txt +24 -0
- Examples/OBIA/test/CMakeLists.txt Examples/OBIA/test/CMakeLists.txt +44 -0
- Examples/Patented/CMakeLists.txt Examples/Patented/CMakeLists.txt +22 -0
- Examples/Patented/test/CMakeLists.txt Examples/Patented/test/CMakeLists.txt +38 -0
- Examples/Projections/CMakeLists.txt Examples/Projections/CMakeLists.txt +33 -0
- Examples/Projections/test/CMakeLists.txt Examples/Projections/test/CMakeLists.txt +102 -0
- Examples/Radiometry/CMakeLists.txt Examples/Radiometry/CMakeLists.txt +18 -0
- Examples/Radiometry/test/CMakeLists.txt Examples/Radiometry/test/CMakeLists.txt +81 -0
- Examples/Registration/CMakeLists.txt Examples/Registration/CMakeLists.txt +18 -0
- Examples/Registration/test/CMakeLists.txt Examples/Registration/test/CMakeLists.txt +46 -0
- Examples/Segmentation/CMakeLists.txt Examples/Segmentation/CMakeLists.txt +39 -0
- Examples/Segmentation/test/CMakeLists.txt Examples/Segmentation/test/CMakeLists.txt +302 -0
- Examples/Simulation/CMakeLists.txt Examples/Simulation/CMakeLists.txt +15 -0
- Examples/Simulation/test/CMakeLists.txt Examples/Simulation/test/CMakeLists.txt +53 -0
- Examples/Tutorials/CMakeLists.txt Examples/Tutorials/CMakeLists.txt +27 -0
- Examples/Tutorials/test/CMakeLists.txt Examples/Tutorials/test/CMakeLists.txt +74 -0
- LICENSE LICENSE +505 -0
- Modules/Adapters/BoostAdapters/CMakeLists.txt Modules/Adapters/BoostAdapters/CMakeLists.txt +2 -0
- Modules/Adapters/BoostAdapters/otb-module.cmake Modules/Adapters/BoostAdapters/otb-module.cmake +10 -0
- Modules/Adapters/CurlAdapters/CMakeLists.txt Modules/Adapters/CurlAdapters/CMakeLists.txt +4 -0
- Modules/Adapters/CurlAdapters/otb-module.cmake Modules/Adapters/CurlAdapters/otb-module.cmake +12 -0
- Modules/Adapters/CurlAdapters/src/CMakeLists.txt Modules/Adapters/CurlAdapters/src/CMakeLists.txt +14 -0
- Modules/Adapters/CurlAdapters/test/CMakeLists.txt Modules/Adapters/CurlAdapters/test/CMakeLists.txt +23 -0
- Modules/Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx .../Adapters/CurlAdapters/test/otbCurlAdaptersTestDriver.cxx +5 -0
- Modules/Adapters/GdalAdapters/CMakeLists.txt Modules/Adapters/GdalAdapters/CMakeLists.txt +4 -0
- Modules/Adapters/GdalAdapters/otb-module.cmake Modules/Adapters/GdalAdapters/otb-module.cmake +14 -0
- Modules/Adapters/GdalAdapters/src/CMakeLists.txt Modules/Adapters/GdalAdapters/src/CMakeLists.txt +21 -0
- Modules/Adapters/GdalAdapters/test/CMakeLists.txt Modules/Adapters/GdalAdapters/test/CMakeLists.txt +16 -0
- Modules/Adapters/ITKPendingPatches/CMakeLists.txt Modules/Adapters/ITKPendingPatches/CMakeLists.txt +2 -0
- Modules/Adapters/ITKPendingPatches/otb-module.cmake Modules/Adapters/ITKPendingPatches/otb-module.cmake +10 -0
- Modules/Adapters/OSSIMAdapters/CMakeLists.txt Modules/Adapters/OSSIMAdapters/CMakeLists.txt +4 -0
- Modules/Adapters/OSSIMAdapters/otb-module.cmake Modules/Adapters/OSSIMAdapters/otb-module.cmake +20 -0
- Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt Modules/Adapters/OSSIMAdapters/src/CMakeLists.txt +27 -0
- Modules/Adapters/OSSIMAdapters/test/CMakeLists.txt Modules/Adapters/OSSIMAdapters/test/CMakeLists.txt +618 -0
- Modules/Adapters/OSSIMAdapters/test/otbOSSIMAdaptersTestDriver.cxx ...dapters/OSSIMAdapters/test/otbOSSIMAdaptersTestDriver.cxx +18 -0
- Modules/Adapters/OpenCVAdapters/CMakeLists.txt Modules/Adapters/OpenCVAdapters/CMakeLists.txt +2 -0
- Modules/Adapters/OpenCVAdapters/otb-module.cmake Modules/Adapters/OpenCVAdapters/otb-module.cmake +13 -0
- Modules/Adapters/OpenThreadsAdapters/CMakeLists.txt Modules/Adapters/OpenThreadsAdapters/CMakeLists.txt +4 -0
- Modules/Adapters/OpenThreadsAdapters/otb-module.cmake Modules/Adapters/OpenThreadsAdapters/otb-module.cmake +12 -0
- Modules/Adapters/OpenThreadsAdapters/src/CMakeLists.txt Modules/Adapters/OpenThreadsAdapters/src/CMakeLists.txt +10 -0
- Modules/Adapters/OpenThreadsAdapters/test/CMakeLists.txt Modules/Adapters/OpenThreadsAdapters/test/CMakeLists.txt +15 -0
- Modules/Adapters/OpenThreadsAdapters/test/otbOpenThreadsAdaptersTestDriver.cxx ...ThreadsAdapters/test/otbOpenThreadsAdaptersTestDriver.cxx +5 -0
- Modules/Applications/AppChangeDetection/CMakeLists.txt Modules/Applications/AppChangeDetection/CMakeLists.txt +2 -0
- Modules/Applications/AppChangeDetection/app/CMakeLists.txt Modules/Applications/AppChangeDetection/app/CMakeLists.txt +9 -0
- Modules/Applications/AppChangeDetection/otb-module.cmake Modules/Applications/AppChangeDetection/otb-module.cmake +14 -0
- Modules/Applications/AppChangeDetection/test/CMakeLists.txt Modules/Applications/AppChangeDetection/test/CMakeLists.txt +11 -0
- Modules/Applications/AppClassification/CMakeLists.txt Modules/Applications/AppClassification/CMakeLists.txt +2 -0
- Modules/Applications/AppClassification/app/CMakeLists.txt Modules/Applications/AppClassification/app/CMakeLists.txt +103 -0
- Modules/Applications/AppClassification/otb-module.cmake Modules/Applications/AppClassification/otb-module.cmake +35 -0
- Modules/Applications/AppClassification/test/CMakeLists.txt Modules/Applications/AppClassification/test/CMakeLists.txt +746 -0
- Modules/Applications/AppDescriptors/CMakeLists.txt Modules/Applications/AppDescriptors/CMakeLists.txt +2 -0
- Modules/Applications/AppDescriptors/app/CMakeLists.txt Modules/Applications/AppDescriptors/app/CMakeLists.txt +13 -0
- Modules/Applications/AppDescriptors/otb-module.cmake Modules/Applications/AppDescriptors/otb-module.cmake +17 -0
- Modules/Applications/AppDescriptors/test/CMakeLists.txt Modules/Applications/AppDescriptors/test/CMakeLists.txt +52 -0
- Modules/Applications/AppDimensionalityReduction/CMakeLists.txt ...es/Applications/AppDimensionalityReduction/CMakeLists.txt +2 -0
- Modules/Applications/AppDimensionalityReduction/app/CMakeLists.txt ...pplications/AppDimensionalityReduction/app/CMakeLists.txt +11 -0
- Modules/Applications/AppDimensionalityReduction/otb-module.cmake .../Applications/AppDimensionalityReduction/otb-module.cmake +16 -0
- Modules/Applications/AppDimensionalityReduction/test/CMakeLists.txt ...plications/AppDimensionalityReduction/test/CMakeLists.txt +20 -0
- Modules/Applications/AppEdge/CMakeLists.txt Modules/Applications/AppEdge/CMakeLists.txt +2 -0
- Modules/Applications/AppEdge/app/CMakeLists.txt Modules/Applications/AppEdge/app/CMakeLists.txt +18 -0
- Modules/Applications/AppEdge/otb-module.cmake Modules/Applications/AppEdge/otb-module.cmake +18 -0
- Modules/Applications/AppEdge/test/CMakeLists.txt Modules/Applications/AppEdge/test/CMakeLists.txt +31 -0
- Modules/Applications/AppFiltering/CMakeLists.txt Modules/Applications/AppFiltering/CMakeLists.txt +2 -0
- Modules/Applications/AppFiltering/app/CMakeLists.txt Modules/Applications/AppFiltering/app/CMakeLists.txt +16 -0
- Modules/Applications/AppFiltering/otb-module.cmake Modules/Applications/AppFiltering/otb-module.cmake +15 -0
- Modules/Applications/AppFiltering/test/CMakeLists.txt Modules/Applications/AppFiltering/test/CMakeLists.txt +33 -0
- Modules/Applications/AppFusion/CMakeLists.txt Modules/Applications/AppFusion/CMakeLists.txt +2 -0
- Modules/Applications/AppFusion/app/CMakeLists.txt Modules/Applications/AppFusion/app/CMakeLists.txt +17 -0
- Modules/Applications/AppFusion/otb-module.cmake Modules/Applications/AppFusion/otb-module.cmake +16 -0
- Modules/Applications/AppFusion/test/CMakeLists.txt Modules/Applications/AppFusion/test/CMakeLists.txt +49 -0
- Modules/Applications/AppHyperspectral/CMakeLists.txt Modules/Applications/AppHyperspectral/CMakeLists.txt +2 -0
- Modules/Applications/AppHyperspectral/app/CMakeLists.txt Modules/Applications/AppHyperspectral/app/CMakeLists.txt +16 -0
- Modules/Applications/AppHyperspectral/otb-module.cmake Modules/Applications/AppHyperspectral/otb-module.cmake +15 -0
- Modules/Applications/AppHyperspectral/test/CMakeLists.txt Modules/Applications/AppHyperspectral/test/CMakeLists.txt +35 -0
- Modules/Applications/AppImageUtils/CMakeLists.txt Modules/Applications/AppImageUtils/CMakeLists.txt +2 -0
- Modules/Applications/AppImageUtils/app/CMakeLists.txt Modules/Applications/AppImageUtils/app/CMakeLists.txt +103 -0
- Modules/Applications/AppImageUtils/otb-module.cmake Modules/Applications/AppImageUtils/otb-module.cmake +27 -0
- Modules/Applications/AppImageUtils/test/CMakeLists.txt Modules/Applications/AppImageUtils/test/CMakeLists.txt +384 -0
- Modules/Applications/AppIndices/CMakeLists.txt Modules/Applications/AppIndices/CMakeLists.txt +2 -0
- Modules/Applications/AppIndices/app/CMakeLists.txt Modules/Applications/AppIndices/app/CMakeLists.txt +10 -0
- Modules/Applications/AppIndices/otb-module.cmake Modules/Applications/AppIndices/otb-module.cmake +14 -0
- Modules/Applications/AppIndices/test/CMakeLists.txt Modules/Applications/AppIndices/test/CMakeLists.txt +26 -0
- Modules/Applications/AppMoments/CMakeLists.txt Modules/Applications/AppMoments/CMakeLists.txt +2 -0
- Modules/Applications/AppMoments/app/CMakeLists.txt Modules/Applications/AppMoments/app/CMakeLists.txt +10 -0
- Modules/Applications/AppMoments/otb-module.cmake Modules/Applications/AppMoments/otb-module.cmake +14 -0
- Modules/Applications/AppMoments/test/CMakeLists.txt Modules/Applications/AppMoments/test/CMakeLists.txt +12 -0
- Modules/Applications/AppMorphology/CMakeLists.txt Modules/Applications/AppMorphology/CMakeLists.txt +2 -0
- Modules/Applications/AppMorphology/app/CMakeLists.txt Modules/Applications/AppMorphology/app/CMakeLists.txt +15 -0
- Modules/Applications/AppMorphology/otb-module.cmake Modules/Applications/AppMorphology/otb-module.cmake +14 -0
- Modules/Applications/AppMorphology/test/CMakeLists.txt Modules/Applications/AppMorphology/test/CMakeLists.txt +30 -0
- Modules/Applications/AppOpticalCalibration/CMakeLists.txt Modules/Applications/AppOpticalCalibration/CMakeLists.txt +2 -0
- Modules/Applications/AppOpticalCalibration/app/CMakeLists.txt ...les/Applications/AppOpticalCalibration/app/CMakeLists.txt +11 -0
- Modules/Applications/AppOpticalCalibration/otb-module.cmake Modules/Applications/AppOpticalCalibration/otb-module.cmake +15 -0
- Modules/Applications/AppOpticalCalibration/test/CMakeLists.txt ...es/Applications/AppOpticalCalibration/test/CMakeLists.txt +111 -0
- Modules/Applications/AppProjection/CMakeLists.txt Modules/Applications/AppProjection/CMakeLists.txt +2 -0
- Modules/Applications/AppProjection/app/CMakeLists.txt Modules/Applications/AppProjection/app/CMakeLists.txt +69 -0
- Modules/Applications/AppProjection/otb-module.cmake Modules/Applications/AppProjection/otb-module.cmake +23 -0
- Modules/Applications/AppProjection/test/CMakeLists.txt Modules/Applications/AppProjection/test/CMakeLists.txt +294 -0
- Modules/Applications/AppSARCalibration/CMakeLists.txt Modules/Applications/AppSARCalibration/CMakeLists.txt +2 -0
- Modules/Applications/AppSARCalibration/app/CMakeLists.txt Modules/Applications/AppSARCalibration/app/CMakeLists.txt +9 -0
- Modules/Applications/AppSARCalibration/otb-module.cmake Modules/Applications/AppSARCalibration/otb-module.cmake +13 -0
- Modules/Applications/AppSARCalibration/test/CMakeLists.txt Modules/Applications/AppSARCalibration/test/CMakeLists.txt +2 -0
- Modules/Applications/AppSegmentation/CMakeLists.txt Modules/Applications/AppSegmentation/CMakeLists.txt +2 -0
- Modules/Applications/AppSegmentation/app/CMakeLists.txt Modules/Applications/AppSegmentation/app/CMakeLists.txt +57 -0
- Modules/Applications/AppSegmentation/otb-module.cmake Modules/Applications/AppSegmentation/otb-module.cmake +31 -0
- Modules/Applications/AppSegmentation/test/CMakeLists.txt Modules/Applications/AppSegmentation/test/CMakeLists.txt +265 -0
- Modules/Applications/AppStereo/CMakeLists.txt Modules/Applications/AppStereo/CMakeLists.txt +2 -0
- Modules/Applications/AppStereo/app/CMakeLists.txt Modules/Applications/AppStereo/app/CMakeLists.txt +44 -0
- Modules/Applications/AppStereo/otb-module.cmake Modules/Applications/AppStereo/otb-module.cmake +23 -0
- Modules/Applications/AppStereo/test/CMakeLists.txt Modules/Applications/AppStereo/test/CMakeLists.txt +137 -0
- Modules/Applications/AppTest/CMakeLists.txt Modules/Applications/AppTest/CMakeLists.txt +2 -0
- Modules/Applications/AppTest/app/CMakeLists.txt Modules/Applications/AppTest/app/CMakeLists.txt +8 -0
- Modules/Applications/AppTest/otb-module.cmake Modules/Applications/AppTest/otb-module.cmake +12 -0
- Modules/Applications/AppTest/test/CMakeLists.txt Modules/Applications/AppTest/test/CMakeLists.txt +1 -0
- Modules/Applications/AppTextures/CMakeLists.txt Modules/Applications/AppTextures/CMakeLists.txt +2 -0
- Modules/Applications/AppTextures/app/CMakeLists.txt Modules/Applications/AppTextures/app/CMakeLists.txt +17 -0
- Modules/Applications/AppTextures/otb-module.cmake Modules/Applications/AppTextures/otb-module.cmake +16 -0
- Modules/Applications/AppTextures/test/CMakeLists.txt Modules/Applications/AppTextures/test/CMakeLists.txt +25 -0
- Modules/Applications/AppVectorDataTranslation/CMakeLists.txt Modules/Applications/AppVectorDataTranslation/CMakeLists.txt +2 -0
- Modules/Applications/AppVectorDataTranslation/app/CMakeLists.txt .../Applications/AppVectorDataTranslation/app/CMakeLists.txt +10 -0
- Modules/Applications/AppVectorDataTranslation/otb-module.cmake ...es/Applications/AppVectorDataTranslation/otb-module.cmake +15 -0
- Modules/Applications/AppVectorDataTranslation/test/CMakeLists.txt ...Applications/AppVectorDataTranslation/test/CMakeLists.txt +94 -0
- Modules/Applications/AppVectorUtils/CMakeLists.txt Modules/Applications/AppVectorUtils/CMakeLists.txt +2 -0
- Modules/Applications/AppVectorUtils/app/CMakeLists.txt Modules/Applications/AppVectorUtils/app/CMakeLists.txt +33 -0
- Modules/Applications/AppVectorUtils/otb-module.cmake Modules/Applications/AppVectorUtils/otb-module.cmake +17 -0
- Modules/Applications/AppVectorUtils/test/CMakeLists.txt Modules/Applications/AppVectorUtils/test/CMakeLists.txt +71 -0
- Modules/Core/Common/CMakeLists.txt Modules/Core/Common/CMakeLists.txt +11 -0
- Modules/Core/Common/otb-module.cmake Modules/Core/Common/otb-module.cmake +12 -0
- Modules/Core/Common/src/CMakeLists.txt Modules/Core/Common/src/CMakeLists.txt +21 -0
- Modules/Core/Common/src/otbConfigure.h.in Modules/Core/Common/src/otbConfigure.h.in +21 -0
- Modules/Core/Common/test/CMakeLists.txt Modules/Core/Common/test/CMakeLists.txt +312 -0
- Modules/Core/Common/test/otbCommonTestDriver.cxx Modules/Core/Common/test/otbCommonTestDriver.cxx +33 -0
- Modules/Core/ImageBase/CMakeLists.txt Modules/Core/ImageBase/CMakeLists.txt +4 -0
- Modules/Core/ImageBase/otb-module.cmake Modules/Core/ImageBase/otb-module.cmake +17 -0
- Modules/Core/ImageBase/src/CMakeLists.txt Modules/Core/ImageBase/src/CMakeLists.txt +13 -0
- Modules/Core/ImageBase/test/CMakeLists.txt Modules/Core/ImageBase/test/CMakeLists.txt +497 -0
- Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx Modules/Core/ImageBase/test/otbImageBaseTestDriver.cxx +50 -0
- Modules/Core/Interpolation/CMakeLists.txt Modules/Core/Interpolation/CMakeLists.txt +2 -0
- Modules/Core/Interpolation/otb-module.cmake Modules/Core/Interpolation/otb-module.cmake +15 -0
- Modules/Core/Interpolation/test/CMakeLists.txt Modules/Core/Interpolation/test/CMakeLists.txt +208 -0
- Modules/Core/Interpolation/test/otbInterpolationTestDriver.cxx ...es/Core/Interpolation/test/otbInterpolationTestDriver.cxx +25 -0
- Modules/Core/LabelMap/CMakeLists.txt Modules/Core/LabelMap/CMakeLists.txt +2 -0
- Modules/Core/LabelMap/otb-module.cmake Modules/Core/LabelMap/otb-module.cmake +16 -0
- Modules/Core/LabelMap/test/CMakeLists.txt Modules/Core/LabelMap/test/CMakeLists.txt +67 -0
- Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx Modules/Core/LabelMap/test/otbLabelMapTestDriver.cxx +16 -0
- Modules/Core/Metadata/CMakeLists.txt Modules/Core/Metadata/CMakeLists.txt +4 -0
- Modules/Core/Metadata/otb-module.cmake Modules/Core/Metadata/otb-module.cmake +16 -0
- Modules/Core/Metadata/src/CMakeLists.txt Modules/Core/Metadata/src/CMakeLists.txt +37 -0
- Modules/Core/Metadata/test/CMakeLists.txt Modules/Core/Metadata/test/CMakeLists.txt +353 -0
- Modules/Core/Metadata/test/otbMetadataTestDriver.cxx Modules/Core/Metadata/test/otbMetadataTestDriver.cxx +24 -0
- Modules/Core/ObjectList/CMakeLists.txt Modules/Core/ObjectList/CMakeLists.txt +2 -0
- Modules/Core/ObjectList/otb-module.cmake Modules/Core/ObjectList/otb-module.cmake +13 -0
- Modules/Core/PointSet/CMakeLists.txt Modules/Core/PointSet/CMakeLists.txt +2 -0
- Modules/Core/PointSet/otb-module.cmake Modules/Core/PointSet/otb-module.cmake +18 -0
- Modules/Core/PointSet/test/CMakeLists.txt Modules/Core/PointSet/test/CMakeLists.txt +74 -0
- Modules/Core/PointSet/test/otbPointSetTestDriver.cxx Modules/Core/PointSet/test/otbPointSetTestDriver.cxx +12 -0
- Modules/Core/SpatialObjects/CMakeLists.txt Modules/Core/SpatialObjects/CMakeLists.txt +4 -0
- Modules/Core/SpatialObjects/otb-module.cmake Modules/Core/SpatialObjects/otb-module.cmake +19 -0
- Modules/Core/SpatialObjects/src/CMakeLists.txt Modules/Core/SpatialObjects/src/CMakeLists.txt +11 -0
- Modules/Core/SpatialObjects/test/CMakeLists.txt Modules/Core/SpatialObjects/test/CMakeLists.txt +81 -0
- Modules/Core/SpatialObjects/test/otbSpatialObjectsTestDriver.cxx .../Core/SpatialObjects/test/otbSpatialObjectsTestDriver.cxx +17 -0
- Modules/Core/Streaming/CMakeLists.txt Modules/Core/Streaming/CMakeLists.txt +4 -0
- Modules/Core/Streaming/otb-module.cmake Modules/Core/Streaming/otb-module.cmake +18 -0
- Modules/Core/Streaming/src/CMakeLists.txt Modules/Core/Streaming/src/CMakeLists.txt +13 -0
- Modules/Core/Streaming/test/CMakeLists.txt Modules/Core/Streaming/test/CMakeLists.txt +57 -0
- Modules/Core/Streaming/test/otbStreamingTestDriver.cxx Modules/Core/Streaming/test/otbStreamingTestDriver.cxx +10 -0
- Modules/Core/Transform/CMakeLists.txt Modules/Core/Transform/CMakeLists.txt +4 -0
- Modules/Core/Transform/otb-module.cmake Modules/Core/Transform/otb-module.cmake +19 -0
- Modules/Core/Transform/src/CMakeLists.txt Modules/Core/Transform/src/CMakeLists.txt +14 -0
- Modules/Core/Transform/test/CMakeLists.txt Modules/Core/Transform/test/CMakeLists.txt +392 -0
- Modules/Core/Transform/test/otbTransformTestDriver.cxx Modules/Core/Transform/test/otbTransformTestDriver.cxx +24 -0
- Modules/Core/VectorDataBase/CMakeLists.txt Modules/Core/VectorDataBase/CMakeLists.txt +4 -0
- Modules/Core/VectorDataBase/otb-module.cmake Modules/Core/VectorDataBase/otb-module.cmake +16 -0
- Modules/Core/VectorDataBase/src/CMakeLists.txt Modules/Core/VectorDataBase/src/CMakeLists.txt +14 -0
- Modules/Core/VectorDataBase/test/CMakeLists.txt Modules/Core/VectorDataBase/test/CMakeLists.txt +90 -0
- Modules/Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx .../Core/VectorDataBase/test/otbVectorDataBaseTestDriver.cxx +17 -0
- Modules/Detection/CloudDetection/CMakeLists.txt Modules/Detection/CloudDetection/CMakeLists.txt +2 -0
- Modules/Detection/CloudDetection/otb-module.cmake Modules/Detection/CloudDetection/otb-module.cmake +14 -0
- Modules/Detection/CloudDetection/test/CMakeLists.txt Modules/Detection/CloudDetection/test/CMakeLists.txt +66 -0
- Modules/Detection/CloudDetection/test/otbCloudDetectionTestDriver.cxx ...ction/CloudDetection/test/otbCloudDetectionTestDriver.cxx +9 -0
- Modules/Detection/ObjectDetection/CMakeLists.txt Modules/Detection/ObjectDetection/CMakeLists.txt +2 -0
- Modules/Detection/ObjectDetection/otb-module.cmake Modules/Detection/ObjectDetection/otb-module.cmake +23 -0
- Modules/Detection/ObjectDetection/test/CMakeLists.txt Modules/Detection/ObjectDetection/test/CMakeLists.txt +79 -0
- Modules/Detection/ObjectDetection/test/otbObjectDetectionTestDriver.cxx ...ion/ObjectDetection/test/otbObjectDetectionTestDriver.cxx +11 -0
- Modules/Detection/RoadExtraction/CMakeLists.txt Modules/Detection/RoadExtraction/CMakeLists.txt +2 -0
- Modules/Detection/RoadExtraction/otb-module.cmake Modules/Detection/RoadExtraction/otb-module.cmake +19 -0
- Modules/Detection/RoadExtraction/test/CMakeLists.txt Modules/Detection/RoadExtraction/test/CMakeLists.txt +229 -0
- Modules/Detection/RoadExtraction/test/otbRoadExtractionTestDriver.cxx ...ction/RoadExtraction/test/otbRoadExtractionTestDriver.cxx +30 -0
- Modules/Detection/UrbanArea/CMakeLists.txt Modules/Detection/UrbanArea/CMakeLists.txt +2 -0
- Modules/Detection/UrbanArea/otb-module.cmake Modules/Detection/UrbanArea/otb-module.cmake +15 -0
- Modules/Detection/UrbanArea/test/CMakeLists.txt Modules/Detection/UrbanArea/test/CMakeLists.txt +31 -0
- Modules/Detection/UrbanArea/test/otbUrbanAreaTestDriver.cxx Modules/Detection/UrbanArea/test/otbUrbanAreaTestDriver.cxx +6 -0
- Modules/Feature/Corner/CMakeLists.txt Modules/Feature/Corner/CMakeLists.txt +2 -0
- Modules/Feature/Corner/otb-module.cmake Modules/Feature/Corner/otb-module.cmake +20 -0
- Modules/Feature/Corner/test/CMakeLists.txt Modules/Feature/Corner/test/CMakeLists.txt +105 -0
- Modules/Feature/Corner/test/otbCornerTestDriver.cxx Modules/Feature/Corner/test/otbCornerTestDriver.cxx +11 -0
- Modules/Feature/Density/CMakeLists.txt Modules/Feature/Density/CMakeLists.txt +2 -0
- Modules/Feature/Density/otb-module.cmake Modules/Feature/Density/otb-module.cmake +17 -0
- Modules/Feature/Density/test/CMakeLists.txt Modules/Feature/Density/test/CMakeLists.txt +85 -0
- Modules/Feature/Density/test/otbDensityTestDriver.cxx Modules/Feature/Density/test/otbDensityTestDriver.cxx +14 -0
- Modules/Feature/Descriptors/CMakeLists.txt Modules/Feature/Descriptors/CMakeLists.txt +2 -0
- Modules/Feature/Descriptors/otb-module.cmake Modules/Feature/Descriptors/otb-module.cmake +20 -0
- Modules/Feature/Descriptors/test/CMakeLists.txt Modules/Feature/Descriptors/test/CMakeLists.txt +280 -0
- Modules/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx ...les/Feature/Descriptors/test/otbDescriptorsTestDriver.cxx +29 -0
- Modules/Feature/Edge/CMakeLists.txt Modules/Feature/Edge/CMakeLists.txt +2 -0
- Modules/Feature/Edge/otb-module.cmake Modules/Feature/Edge/otb-module.cmake +24 -0
- Modules/Feature/Edge/test/CMakeLists.txt Modules/Feature/Edge/test/CMakeLists.txt +360 -0
- Modules/Feature/Edge/test/otbEdgeTestDriver.cxx Modules/Feature/Edge/test/otbEdgeTestDriver.cxx +46 -0
- Modules/Feature/Moments/CMakeLists.txt Modules/Feature/Moments/CMakeLists.txt +2 -0
- Modules/Feature/Moments/otb-module.cmake Modules/Feature/Moments/otb-module.cmake +20 -0
- Modules/Feature/Moments/test/CMakeLists.txt Modules/Feature/Moments/test/CMakeLists.txt +246 -0
- Modules/Feature/Moments/test/otbMomentsTestDriver.cxx Modules/Feature/Moments/test/otbMomentsTestDriver.cxx +41 -0
- Modules/Feature/SeamCarving/CMakeLists.txt Modules/Feature/SeamCarving/CMakeLists.txt +2 -0
- Modules/Feature/SeamCarving/otb-module.cmake Modules/Feature/SeamCarving/otb-module.cmake +15 -0
- Modules/Feature/SeamCarving/test/CMakeLists.txt Modules/Feature/SeamCarving/test/CMakeLists.txt +20 -0
- Modules/Feature/SeamCarving/test/otbSeamCarvingTestDriver.cxx ...les/Feature/SeamCarving/test/otbSeamCarvingTestDriver.cxx +6 -0
- Modules/Feature/Textures/CMakeLists.txt Modules/Feature/Textures/CMakeLists.txt +2 -0
- Modules/Feature/Textures/otb-module.cmake Modules/Feature/Textures/otb-module.cmake +12 -0
- Modules/Feature/Textures/test/CMakeLists.txt Modules/Feature/Textures/test/CMakeLists.txt +165 -0
- Modules/Feature/Textures/test/otbTexturesTestDriver.cxx Modules/Feature/Textures/test/otbTexturesTestDriver.cxx +20 -0
- Modules/Filtering/ChangeDetection/CMakeLists.txt Modules/Filtering/ChangeDetection/CMakeLists.txt +2 -0
- Modules/Filtering/ChangeDetection/otb-module.cmake Modules/Filtering/ChangeDetection/otb-module.cmake +20 -0
- Modules/Filtering/ChangeDetection/test/CMakeLists.txt Modules/Filtering/ChangeDetection/test/CMakeLists.txt +146 -0
- Modules/Filtering/ChangeDetection/test/otbChangeDetectionTestDriver.cxx ...ing/ChangeDetection/test/otbChangeDetectionTestDriver.cxx +18 -0
- Modules/Filtering/ColorMap/CMakeLists.txt Modules/Filtering/ColorMap/CMakeLists.txt +2 -0
- Modules/Filtering/ColorMap/otb-module.cmake Modules/Filtering/ColorMap/otb-module.cmake +16 -0
- Modules/Filtering/ColorMap/test/CMakeLists.txt Modules/Filtering/ColorMap/test/CMakeLists.txt +40 -0
- Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx Modules/Filtering/ColorMap/test/otbColorMapTestDriver.cxx +8 -0
- Modules/Filtering/Convolution/CMakeLists.txt Modules/Filtering/Convolution/CMakeLists.txt +2 -0
- Modules/Filtering/Convolution/otb-module.cmake Modules/Filtering/Convolution/otb-module.cmake +13 -0
- Modules/Filtering/Convolution/test/CMakeLists.txt Modules/Filtering/Convolution/test/CMakeLists.txt +40 -0
- Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx ...s/Filtering/Convolution/test/otbConvolutionTestDriver.cxx +8 -0
- Modules/Filtering/DimensionalityReduction/CMakeLists.txt Modules/Filtering/DimensionalityReduction/CMakeLists.txt +2 -0
- Modules/Filtering/DimensionalityReduction/otb-module.cmake Modules/Filtering/DimensionalityReduction/otb-module.cmake +21 -0
- Modules/Filtering/DimensionalityReduction/test/CMakeLists.txt ...les/Filtering/DimensionalityReduction/test/CMakeLists.txt +387 -0
- Modules/Filtering/DimensionalityReduction/test/otbDimensionalityReductionTestDriver.cxx ...tyReduction/test/otbDimensionalityReductionTestDriver.cxx +27 -0
- Modules/Filtering/ImageManipulation/CMakeLists.txt Modules/Filtering/ImageManipulation/CMakeLists.txt +4 -0
- Modules/Filtering/ImageManipulation/otb-module.cmake Modules/Filtering/ImageManipulation/otb-module.cmake +25 -0
- Modules/Filtering/ImageManipulation/src/CMakeLists.txt Modules/Filtering/ImageManipulation/src/CMakeLists.txt +15 -0
- Modules/Filtering/ImageManipulation/test/CMakeLists.txt Modules/Filtering/ImageManipulation/test/CMakeLists.txt +922 -0
- Modules/Filtering/ImageManipulation/test/otbImageManipulationTestDriver.cxx ...ImageManipulation/test/otbImageManipulationTestDriver.cxx +99 -0
- Modules/Filtering/ImageNoise/CMakeLists.txt Modules/Filtering/ImageNoise/CMakeLists.txt +2 -0
- Modules/Filtering/ImageNoise/otb-module.cmake Modules/Filtering/ImageNoise/otb-module.cmake +11 -0
- Modules/Filtering/ImageNoise/test/CMakeLists.txt Modules/Filtering/ImageNoise/test/CMakeLists.txt +42 -0
- Modules/Filtering/ImageNoise/test/otbImageNoiseTestDriver.cxx ...les/Filtering/ImageNoise/test/otbImageNoiseTestDriver.cxx +7 -0
- Modules/Filtering/MathParser/CMakeLists.txt Modules/Filtering/MathParser/CMakeLists.txt +4 -0
- Modules/Filtering/MathParser/otb-module.cmake Modules/Filtering/MathParser/otb-module.cmake +20 -0
- Modules/Filtering/MathParser/src/CMakeLists.txt Modules/Filtering/MathParser/src/CMakeLists.txt +17 -0
- Modules/Filtering/MathParser/test/CMakeLists.txt Modules/Filtering/MathParser/test/CMakeLists.txt +127 -0
- Modules/Filtering/MathParser/test/otbMathParserTestDriver.cxx ...les/Filtering/MathParser/test/otbMathParserTestDriver.cxx +22 -0
- Modules/Filtering/MorphologicalPyramid/CMakeLists.txt Modules/Filtering/MorphologicalPyramid/CMakeLists.txt +2 -0
- Modules/Filtering/MorphologicalPyramid/otb-module.cmake Modules/Filtering/MorphologicalPyramid/otb-module.cmake +21 -0
- Modules/Filtering/MorphologicalPyramid/test/CMakeLists.txt Modules/Filtering/MorphologicalPyramid/test/CMakeLists.txt +152 -0
- Modules/Filtering/MorphologicalPyramid/test/otbMorphologicalPyramidTestDriver.cxx ...logicalPyramid/test/otbMorphologicalPyramidTestDriver.cxx +16 -0
- Modules/Filtering/Path/CMakeLists.txt Modules/Filtering/Path/CMakeLists.txt +2 -0
- Modules/Filtering/Path/otb-module.cmake Modules/Filtering/Path/otb-module.cmake +19 -0
- Modules/Filtering/Path/test/CMakeLists.txt Modules/Filtering/Path/test/CMakeLists.txt +257 -0
- Modules/Filtering/Path/test/otbPathTestDriver.cxx Modules/Filtering/Path/test/otbPathTestDriver.cxx +35 -0
- Modules/Filtering/Polarimetry/CMakeLists.txt Modules/Filtering/Polarimetry/CMakeLists.txt +4 -0
- Modules/Filtering/Polarimetry/otb-module.cmake Modules/Filtering/Polarimetry/otb-module.cmake +17 -0
- Modules/Filtering/Polarimetry/src/CMakeLists.txt Modules/Filtering/Polarimetry/src/CMakeLists.txt +11 -0
- Modules/Filtering/Polarimetry/test/CMakeLists.txt Modules/Filtering/Polarimetry/test/CMakeLists.txt +283 -0
- Modules/Filtering/Polarimetry/test/otbPolarimetryTestDriver.cxx ...s/Filtering/Polarimetry/test/otbPolarimetryTestDriver.cxx +36 -0
- Modules/Filtering/Projection/CMakeLists.txt Modules/Filtering/Projection/CMakeLists.txt +4 -0
- Modules/Filtering/Projection/otb-module.cmake Modules/Filtering/Projection/otb-module.cmake +27 -0
- Modules/Filtering/Projection/src/CMakeLists.txt Modules/Filtering/Projection/src/CMakeLists.txt +21 -0
- Modules/Filtering/Projection/test/CMakeLists.txt Modules/Filtering/Projection/test/CMakeLists.txt +1307 -0
- Modules/Filtering/Projection/test/otbProjectionTestDriver.cxx ...les/Filtering/Projection/test/otbProjectionTestDriver.cxx +67 -0
- Modules/Filtering/Smoothing/CMakeLists.txt Modules/Filtering/Smoothing/CMakeLists.txt +2 -0
- Modules/Filtering/Smoothing/otb-module.cmake Modules/Filtering/Smoothing/otb-module.cmake +13 -0
- Modules/Filtering/Smoothing/test/CMakeLists.txt Modules/Filtering/Smoothing/test/CMakeLists.txt +169 -0
- Modules/Filtering/Smoothing/test/otbSmoothingTestDriver.cxx Modules/Filtering/Smoothing/test/otbSmoothingTestDriver.cxx +15 -0
- Modules/Filtering/Statistics/CMakeLists.txt Modules/Filtering/Statistics/CMakeLists.txt +2 -0
- Modules/Filtering/Statistics/otb-module.cmake Modules/Filtering/Statistics/otb-module.cmake +25 -0
- Modules/Filtering/Statistics/test/CMakeLists.txt Modules/Filtering/Statistics/test/CMakeLists.txt +537 -0
- Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx ...les/Filtering/Statistics/test/otbStatisticsTestDriver.cxx +55 -0
- Modules/Filtering/VectorDataManipulation/CMakeLists.txt Modules/Filtering/VectorDataManipulation/CMakeLists.txt +2 -0
- Modules/Filtering/VectorDataManipulation/otb-module.cmake Modules/Filtering/VectorDataManipulation/otb-module.cmake +20 -0
- Modules/Filtering/VectorDataManipulation/test/CMakeLists.txt Modules/Filtering/VectorDataManipulation/test/CMakeLists.txt +102 -0
- Modules/Filtering/VectorDataManipulation/test/otbVectorDataManipulationTestDriver.cxx ...Manipulation/test/otbVectorDataManipulationTestDriver.cxx +15 -0
- Modules/Filtering/VectorDataRendering/CMakeLists.txt Modules/Filtering/VectorDataRendering/CMakeLists.txt +4 -0
- Modules/Filtering/VectorDataRendering/otb-module.cmake Modules/Filtering/VectorDataRendering/otb-module.cmake +15 -0
- Modules/Filtering/VectorDataRendering/src/CMakeLists.txt Modules/Filtering/VectorDataRendering/src/CMakeLists.txt +12 -0
- Modules/Filtering/VectorDataRendering/test/CMakeLists.txt Modules/Filtering/VectorDataRendering/test/CMakeLists.txt +94 -0
- Modules/Filtering/VectorDataRendering/test/otbVectorDataRenderingTestDriver.cxx ...orDataRendering/test/otbVectorDataRenderingTestDriver.cxx +12 -0
- Modules/Filtering/Wavelet/CMakeLists.txt Modules/Filtering/Wavelet/CMakeLists.txt +4 -0
- Modules/Filtering/Wavelet/otb-module.cmake Modules/Filtering/Wavelet/otb-module.cmake +13 -0
- Modules/Filtering/Wavelet/src/CMakeLists.txt Modules/Filtering/Wavelet/src/CMakeLists.txt +12 -0
- Modules/Filtering/Wavelet/test/CMakeLists.txt Modules/Filtering/Wavelet/test/CMakeLists.txt +574 -0
- Modules/Filtering/Wavelet/test/otbWaveletTestDriver.cxx Modules/Filtering/Wavelet/test/otbWaveletTestDriver.cxx +17 -0
- Modules/Fusion/Fuzzy/CMakeLists.txt Modules/Fusion/Fuzzy/CMakeLists.txt +4 -0
- Modules/Fusion/Fuzzy/otb-module.cmake Modules/Fusion/Fuzzy/otb-module.cmake +16 -0
- Modules/Fusion/Fuzzy/src/CMakeLists.txt Modules/Fusion/Fuzzy/src/CMakeLists.txt +12 -0
- Modules/Fusion/Fuzzy/test/CMakeLists.txt Modules/Fusion/Fuzzy/test/CMakeLists.txt +41 -0
- Modules/Fusion/Fuzzy/test/otbFuzzyTestDriver.cxx Modules/Fusion/Fuzzy/test/otbFuzzyTestDriver.cxx +11 -0
- Modules/Fusion/MajorityVoting/CMakeLists.txt Modules/Fusion/MajorityVoting/CMakeLists.txt +2 -0
- Modules/Fusion/MajorityVoting/otb-module.cmake Modules/Fusion/MajorityVoting/otb-module.cmake +13 -0
- Modules/Fusion/MajorityVoting/test/CMakeLists.txt Modules/Fusion/MajorityVoting/test/CMakeLists.txt +42 -0
- Modules/Fusion/MajorityVoting/test/otbMajorityVotingTestDriver.cxx ...usion/MajorityVoting/test/otbMajorityVotingTestDriver.cxx +6 -0
- Modules/Fusion/PanSharpening/CMakeLists.txt Modules/Fusion/PanSharpening/CMakeLists.txt +2 -0
- Modules/Fusion/PanSharpening/otb-module.cmake Modules/Fusion/PanSharpening/otb-module.cmake +19 -0
- Modules/Fusion/PanSharpening/test/CMakeLists.txt Modules/Fusion/PanSharpening/test/CMakeLists.txt +63 -0
- Modules/Fusion/PanSharpening/test/otbPanSharpeningTestDriver.cxx .../Fusion/PanSharpening/test/otbPanSharpeningTestDriver.cxx +11 -0
- Modules/Hyperspectral/AnomalyDetection/CMakeLists.txt Modules/Hyperspectral/AnomalyDetection/CMakeLists.txt +2 -0
- Modules/Hyperspectral/AnomalyDetection/otb-module.cmake Modules/Hyperspectral/AnomalyDetection/otb-module.cmake +16 -0
- Modules/Hyperspectral/AnomalyDetection/test/CMakeLists.txt Modules/Hyperspectral/AnomalyDetection/test/CMakeLists.txt +14 -0
- Modules/Hyperspectral/AnomalyDetection/test/otbAnomalyDetectionTestDriver.cxx ...l/AnomalyDetection/test/otbAnomalyDetectionTestDriver.cxx +7 -0
- Modules/Hyperspectral/EndmembersExtraction/CMakeLists.txt Modules/Hyperspectral/EndmembersExtraction/CMakeLists.txt +2 -0
- Modules/Hyperspectral/EndmembersExtraction/otb-module.cmake Modules/Hyperspectral/EndmembersExtraction/otb-module.cmake +18 -0
- Modules/Hyperspectral/EndmembersExtraction/test/CMakeLists.txt ...es/Hyperspectral/EndmembersExtraction/test/CMakeLists.txt +53 -0
- Modules/Hyperspectral/EndmembersExtraction/test/otbEndmembersExtractionTestDriver.cxx ...bersExtraction/test/otbEndmembersExtractionTestDriver.cxx +10 -0
- Modules/Hyperspectral/Unmixing/CMakeLists.txt Modules/Hyperspectral/Unmixing/CMakeLists.txt +2 -0
- Modules/Hyperspectral/Unmixing/otb-module.cmake Modules/Hyperspectral/Unmixing/otb-module.cmake +20 -0
- Modules/Hyperspectral/Unmixing/test/CMakeLists.txt Modules/Hyperspectral/Unmixing/test/CMakeLists.txt +78 -0
- Modules/Hyperspectral/Unmixing/test/otbUnmixingTestDriver.cxx ...les/Hyperspectral/Unmixing/test/otbUnmixingTestDriver.cxx +15 -0
- Modules/IO/Carto/CMakeLists.txt Modules/IO/Carto/CMakeLists.txt +4 -0
- Modules/IO/Carto/otb-module.cmake Modules/IO/Carto/otb-module.cmake +27 -0
- Modules/IO/Carto/src/CMakeLists.txt Modules/IO/Carto/src/CMakeLists.txt +22 -0
- Modules/IO/Carto/test/CMakeLists.txt Modules/IO/Carto/test/CMakeLists.txt +86 -0
- Modules/IO/Carto/test/otbCartoTestDriver.cxx Modules/IO/Carto/test/otbCartoTestDriver.cxx +12 -0
- Modules/IO/ExtendedFilename/CMakeLists.txt Modules/IO/ExtendedFilename/CMakeLists.txt +4 -0
- Modules/IO/ExtendedFilename/otb-module.cmake Modules/IO/ExtendedFilename/otb-module.cmake +16 -0
- Modules/IO/ExtendedFilename/src/CMakeLists.txt Modules/IO/ExtendedFilename/src/CMakeLists.txt +14 -0
- Modules/IO/ExtendedFilename/test/CMakeLists.txt Modules/IO/ExtendedFilename/test/CMakeLists.txt +143 -0
- Modules/IO/ExtendedFilename/test/otbExtendedFilenameTestDriver.cxx ...O/ExtendedFilename/test/otbExtendedFilenameTestDriver.cxx +8 -0
- Modules/IO/IOBSQ/CMakeLists.txt Modules/IO/IOBSQ/CMakeLists.txt +4 -0
- Modules/IO/IOBSQ/otb-module.cmake Modules/IO/IOBSQ/otb-module.cmake +12 -0
- Modules/IO/IOBSQ/src/CMakeLists.txt Modules/IO/IOBSQ/src/CMakeLists.txt +13 -0
- Modules/IO/IOBSQ/test/CMakeLists.txt Modules/IO/IOBSQ/test/CMakeLists.txt +20 -0
- Modules/IO/IOBSQ/test/otbIOBSQTestDriver.cxx Modules/IO/IOBSQ/test/otbIOBSQTestDriver.cxx +6 -0
- Modules/IO/IOGDAL/CMakeLists.txt Modules/IO/IOGDAL/CMakeLists.txt +4 -0
- Modules/IO/IOGDAL/otb-module.cmake Modules/IO/IOGDAL/otb-module.cmake +19 -0
- Modules/IO/IOGDAL/src/CMakeLists.txt Modules/IO/IOGDAL/src/CMakeLists.txt +23 -0
- Modules/IO/IOGDAL/test/CMakeLists.txt Modules/IO/IOGDAL/test/CMakeLists.txt +221 -0
- Modules/IO/IOGDAL/test/otbIOGDALTestDriver.cxx Modules/IO/IOGDAL/test/otbIOGDALTestDriver.cxx +17 -0
- Modules/IO/IOJPEG2000/CMakeLists.txt Modules/IO/IOJPEG2000/CMakeLists.txt +4 -0
- Modules/IO/IOJPEG2000/otb-module.cmake Modules/IO/IOJPEG2000/otb-module.cmake +18 -0
- Modules/IO/IOJPEG2000/src/CMakeLists.txt Modules/IO/IOJPEG2000/src/CMakeLists.txt +18 -0
- Modules/IO/IOJPEG2000/test/CMakeLists.txt Modules/IO/IOJPEG2000/test/CMakeLists.txt +60 -0
- Modules/IO/IOJPEG2000/test/otbIOJPEG2000TestDriver.cxx Modules/IO/IOJPEG2000/test/otbIOJPEG2000TestDriver.cxx +7 -0
- Modules/IO/IOKML/CMakeLists.txt Modules/IO/IOKML/CMakeLists.txt +4 -0
- Modules/IO/IOKML/otb-module.cmake Modules/IO/IOKML/otb-module.cmake +17 -0
- Modules/IO/IOKML/src/CMakeLists.txt Modules/IO/IOKML/src/CMakeLists.txt +17 -0
- Modules/IO/IOKML/test/CMakeLists.txt Modules/IO/IOKML/test/CMakeLists.txt +42 -0
- Modules/IO/IOKML/test/otbIOKMLTestDriver.cxx Modules/IO/IOKML/test/otbIOKMLTestDriver.cxx +8 -0
- Modules/IO/IOLUM/CMakeLists.txt Modules/IO/IOLUM/CMakeLists.txt +4 -0
- Modules/IO/IOLUM/otb-module.cmake Modules/IO/IOLUM/otb-module.cmake +12 -0
- Modules/IO/IOLUM/src/CMakeLists.txt Modules/IO/IOLUM/src/CMakeLists.txt +13 -0
- Modules/IO/IOLUM/test/CMakeLists.txt Modules/IO/IOLUM/test/CMakeLists.txt +20 -0
- Modules/IO/IOLUM/test/otbIOLUMTestDriver.cxx Modules/IO/IOLUM/test/otbIOLUMTestDriver.cxx +6 -0
- Modules/IO/IOMSTAR/CMakeLists.txt Modules/IO/IOMSTAR/CMakeLists.txt +4 -0
- Modules/IO/IOMSTAR/otb-module.cmake Modules/IO/IOMSTAR/otb-module.cmake +13 -0
- Modules/IO/IOMSTAR/src/CMakeLists.txt Modules/IO/IOMSTAR/src/CMakeLists.txt +13 -0
- Modules/IO/IOMSTAR/test/CMakeLists.txt Modules/IO/IOMSTAR/test/CMakeLists.txt +19 -0
- Modules/IO/IOMSTAR/test/otbIOMSTARTestDriver.cxx Modules/IO/IOMSTAR/test/otbIOMSTARTestDriver.cxx +5 -0
- Modules/IO/IOMW/CMakeLists.txt Modules/IO/IOMW/CMakeLists.txt +4 -0
- Modules/IO/IOMW/otb-module.cmake Modules/IO/IOMW/otb-module.cmake +12 -0
- Modules/IO/IOMW/src/CMakeLists.txt Modules/IO/IOMW/src/CMakeLists.txt +13 -0
- Modules/IO/IOMW/test/CMakeLists.txt Modules/IO/IOMW/test/CMakeLists.txt +27 -0
- Modules/IO/IOMW/test/otbIOMWTestDriver.cxx Modules/IO/IOMW/test/otbIOMWTestDriver.cxx +6 -0
- Modules/IO/IOONERA/CMakeLists.txt Modules/IO/IOONERA/CMakeLists.txt +4 -0
- Modules/IO/IOONERA/otb-module.cmake Modules/IO/IOONERA/otb-module.cmake +12 -0
- Modules/IO/IOONERA/src/CMakeLists.txt Modules/IO/IOONERA/src/CMakeLists.txt +13 -0
- Modules/IO/IOONERA/test/CMakeLists.txt Modules/IO/IOONERA/test/CMakeLists.txt +16 -0
- Modules/IO/IOONERA/test/otbIOONERATestDriver.cxx Modules/IO/IOONERA/test/otbIOONERATestDriver.cxx +5 -0
- Modules/IO/IORAD/CMakeLists.txt Modules/IO/IORAD/CMakeLists.txt +4 -0
- Modules/IO/IORAD/otb-module.cmake Modules/IO/IORAD/otb-module.cmake +12 -0
- Modules/IO/IORAD/src/CMakeLists.txt Modules/IO/IORAD/src/CMakeLists.txt +13 -0
- Modules/IO/IORAD/test/CMakeLists.txt Modules/IO/IORAD/test/CMakeLists.txt +25 -0
- Modules/IO/IORAD/test/otbIORADTestDriver.cxx Modules/IO/IORAD/test/otbIORADTestDriver.cxx +5 -0
- Modules/IO/IOTileMap/CMakeLists.txt Modules/IO/IOTileMap/CMakeLists.txt +4 -0
- Modules/IO/IOTileMap/otb-module.cmake Modules/IO/IOTileMap/otb-module.cmake +16 -0
- Modules/IO/IOTileMap/src/CMakeLists.txt Modules/IO/IOTileMap/src/CMakeLists.txt +16 -0
- Modules/IO/IOTileMap/test/CMakeLists.txt Modules/IO/IOTileMap/test/CMakeLists.txt +53 -0
- Modules/IO/IOTileMap/test/otbIOTileMapTestDriver.cxx Modules/IO/IOTileMap/test/otbIOTileMapTestDriver.cxx +8 -0
- Modules/IO/IOXML/CMakeLists.txt Modules/IO/IOXML/CMakeLists.txt +2 -0
- Modules/IO/IOXML/otb-module.cmake Modules/IO/IOXML/otb-module.cmake +12 -0
- Modules/IO/ImageIO/CMakeLists.txt Modules/IO/ImageIO/CMakeLists.txt +4 -0
- Modules/IO/ImageIO/otb-module.cmake Modules/IO/ImageIO/otb-module.cmake +29 -0
- Modules/IO/ImageIO/src/CMakeLists.txt Modules/IO/ImageIO/src/CMakeLists.txt +25 -0
- Modules/IO/ImageIO/test/CMakeLists.txt Modules/IO/ImageIO/test/CMakeLists.txt +942 -0
- Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx +135 -0
- Modules/IO/KMZWriter/CMakeLists.txt Modules/IO/KMZWriter/CMakeLists.txt +2 -0
- Modules/IO/KMZWriter/otb-module.cmake Modules/IO/KMZWriter/otb-module.cmake +19 -0
- Modules/IO/KMZWriter/test/CMakeLists.txt Modules/IO/KMZWriter/test/CMakeLists.txt +84 -0
- Modules/IO/KMZWriter/test/otbKMZWriterTestDriver.cxx Modules/IO/KMZWriter/test/otbKMZWriterTestDriver.cxx +7 -0
- Modules/IO/TestKernel/CMakeLists.txt Modules/IO/TestKernel/CMakeLists.txt +4 -0
- Modules/IO/TestKernel/otb-module.cmake Modules/IO/TestKernel/otb-module.cmake +20 -0
- Modules/IO/TestKernel/src/CMakeLists.txt Modules/IO/TestKernel/src/CMakeLists.txt +15 -0
- Modules/IO/VectorDataIO/CMakeLists.txt Modules/IO/VectorDataIO/CMakeLists.txt +4 -0
- Modules/IO/VectorDataIO/otb-module.cmake Modules/IO/VectorDataIO/otb-module.cmake +17 -0
- Modules/IO/VectorDataIO/src/CMakeLists.txt Modules/IO/VectorDataIO/src/CMakeLists.txt +14 -0
- Modules/IO/VectorDataIO/test/CMakeLists.txt Modules/IO/VectorDataIO/test/CMakeLists.txt +146 -0
- Modules/IO/VectorDataIO/test/otbVectorDataIOTestDriver.cxx Modules/IO/VectorDataIO/test/otbVectorDataIOTestDriver.cxx +13 -0
- Modules/Learning/DempsterShafer/CMakeLists.txt Modules/Learning/DempsterShafer/CMakeLists.txt +2 -0
- Modules/Learning/DempsterShafer/otb-module.cmake Modules/Learning/DempsterShafer/otb-module.cmake +22 -0
- Modules/Learning/DempsterShafer/test/CMakeLists.txt Modules/Learning/DempsterShafer/test/CMakeLists.txt +355 -0
- Modules/Learning/DempsterShafer/test/otbDempsterShaferTestDriver.cxx ...rning/DempsterShafer/test/otbDempsterShaferTestDriver.cxx +21 -0
- Modules/Learning/LearningBase/CMakeLists.txt Modules/Learning/LearningBase/CMakeLists.txt +4 -0
- Modules/Learning/LearningBase/otb-module.cmake Modules/Learning/LearningBase/otb-module.cmake +14 -0
- Modules/Learning/LearningBase/src/CMakeLists.txt Modules/Learning/LearningBase/src/CMakeLists.txt +12 -0
- Modules/Learning/LearningBase/test/CMakeLists.txt Modules/Learning/LearningBase/test/CMakeLists.txt +194 -0
- Modules/Learning/LearningBase/test/otbLearningBaseTestDriver.cxx .../Learning/LearningBase/test/otbLearningBaseTestDriver.cxx +40 -0
- Modules/Learning/Markov/CMakeLists.txt Modules/Learning/Markov/CMakeLists.txt +2 -0
- Modules/Learning/Markov/otb-module.cmake Modules/Learning/Markov/otb-module.cmake +15 -0
- Modules/Learning/Markov/test/CMakeLists.txt Modules/Learning/Markov/test/CMakeLists.txt +153 -0
- Modules/Learning/Markov/test/otbMarkovTestDriver.cxx Modules/Learning/Markov/test/otbMarkovTestDriver.cxx +26 -0
- Modules/Learning/SOM/CMakeLists.txt Modules/Learning/SOM/CMakeLists.txt +2 -0
- Modules/Learning/SOM/otb-module.cmake Modules/Learning/SOM/otb-module.cmake +17 -0
- Modules/Learning/SOM/test/CMakeLists.txt Modules/Learning/SOM/test/CMakeLists.txt +122 -0
- Modules/Learning/SOM/test/otbSOMTestDriver.cxx Modules/Learning/SOM/test/otbSOMTestDriver.cxx +20 -0
- Modules/Learning/SVMLearning/CMakeLists.txt Modules/Learning/SVMLearning/CMakeLists.txt +4 -0
- Modules/Learning/SVMLearning/otb-module.cmake Modules/Learning/SVMLearning/otb-module.cmake +20 -0
- Modules/Learning/SVMLearning/src/CMakeLists.txt Modules/Learning/SVMLearning/src/CMakeLists.txt +19 -0
- Modules/Learning/SVMLearning/test/CMakeLists.txt Modules/Learning/SVMLearning/test/CMakeLists.txt +406 -0
- Modules/Learning/SVMLearning/test/otbSVMLearningTestDriver.cxx ...es/Learning/SVMLearning/test/otbSVMLearningTestDriver.cxx +48 -0
- Modules/OBIA/RCC8/CMakeLists.txt Modules/OBIA/RCC8/CMakeLists.txt +4 -0
- Modules/OBIA/RCC8/otb-module.cmake Modules/OBIA/RCC8/otb-module.cmake +21 -0
- Modules/OBIA/RCC8/src/CMakeLists.txt Modules/OBIA/RCC8/src/CMakeLists.txt +14 -0
- Modules/OBIA/RCC8/test/CMakeLists.txt Modules/OBIA/RCC8/test/CMakeLists.txt +198 -0
- Modules/OBIA/RCC8/test/otbRCC8TestDriver.cxx Modules/OBIA/RCC8/test/otbRCC8TestDriver.cxx +27 -0
- Modules/Radiometry/Indices/CMakeLists.txt Modules/Radiometry/Indices/CMakeLists.txt +2 -0
- Modules/Radiometry/Indices/otb-module.cmake Modules/Radiometry/Indices/otb-module.cmake +22 -0
- Modules/Radiometry/Indices/test/CMakeLists.txt Modules/Radiometry/Indices/test/CMakeLists.txt +779 -0
- Modules/Radiometry/Indices/test/otbIndicesTestDriver.cxx Modules/Radiometry/Indices/test/otbIndicesTestDriver.cxx +61 -0
- Modules/Radiometry/OpticalCalibration/CMakeLists.txt Modules/Radiometry/OpticalCalibration/CMakeLists.txt +4 -0
- Modules/Radiometry/OpticalCalibration/otb-module.cmake Modules/Radiometry/OpticalCalibration/otb-module.cmake +22 -0
- Modules/Radiometry/OpticalCalibration/src/CMakeLists.txt Modules/Radiometry/OpticalCalibration/src/CMakeLists.txt +24 -0
- Modules/Radiometry/OpticalCalibration/test/CMakeLists.txt Modules/Radiometry/OpticalCalibration/test/CMakeLists.txt +814 -0
- Modules/Radiometry/OpticalCalibration/test/otbOpticalCalibrationTestDriver.cxx ...ticalCalibration/test/otbOpticalCalibrationTestDriver.cxx +47 -0
- Modules/Radiometry/SARCalibration/CMakeLists.txt Modules/Radiometry/SARCalibration/CMakeLists.txt +2 -0
- Modules/Radiometry/SARCalibration/otb-module.cmake Modules/Radiometry/SARCalibration/otb-module.cmake +16 -0
- Modules/Radiometry/SARCalibration/test/CMakeLists.txt Modules/Radiometry/SARCalibration/test/CMakeLists.txt +262 -0
- Modules/Radiometry/SARCalibration/test/otbSARCalibrationTestDriver.cxx ...metry/SARCalibration/test/otbSARCalibrationTestDriver.cxx +26 -0
- Modules/Radiometry/Simulation/CMakeLists.txt Modules/Radiometry/Simulation/CMakeLists.txt +4 -0
- Modules/Radiometry/Simulation/otb-module.cmake Modules/Radiometry/Simulation/otb-module.cmake +27 -0
- Modules/Radiometry/Simulation/src/CMakeLists.txt Modules/Radiometry/Simulation/src/CMakeLists.txt +19 -0
- Modules/Radiometry/Simulation/test/CMakeLists.txt Modules/Radiometry/Simulation/test/CMakeLists.txt +274 -0
- Modules/Radiometry/Simulation/test/otbSimulationTestDriver.cxx ...es/Radiometry/Simulation/test/otbSimulationTestDriver.cxx +30 -0
- Modules/Registration/DisparityMap/CMakeLists.txt Modules/Registration/DisparityMap/CMakeLists.txt +2 -0
- Modules/Registration/DisparityMap/otb-module.cmake Modules/Registration/DisparityMap/otb-module.cmake +21 -0
- Modules/Registration/DisparityMap/test/CMakeLists.txt Modules/Registration/DisparityMap/test/CMakeLists.txt +149 -0
- Modules/Registration/DisparityMap/test/otbDisparityMapTestDriver.cxx ...istration/DisparityMap/test/otbDisparityMapTestDriver.cxx +18 -0
- Modules/Registration/DisplacementField/CMakeLists.txt Modules/Registration/DisplacementField/CMakeLists.txt +2 -0
- Modules/Registration/DisplacementField/otb-module.cmake Modules/Registration/DisplacementField/otb-module.cmake +20 -0
- Modules/Registration/DisplacementField/test/CMakeLists.txt Modules/Registration/DisplacementField/test/CMakeLists.txt +118 -0
- Modules/Registration/DisplacementField/test/otbDisplacementFieldTestDriver.cxx ...DisplacementField/test/otbDisplacementFieldTestDriver.cxx +20 -0
- Modules/Registration/Stereo/CMakeLists.txt Modules/Registration/Stereo/CMakeLists.txt +2 -0
- Modules/Registration/Stereo/otb-module.cmake Modules/Registration/Stereo/otb-module.cmake +20 -0
- Modules/Registration/Stereo/test/CMakeLists.txt Modules/Registration/Stereo/test/CMakeLists.txt +418 -0
- Modules/Registration/Stereo/test/otbStereoTestDriver.cxx Modules/Registration/Stereo/test/otbStereoTestDriver.cxx +21 -0
- Modules/Remote/CMakeLists.txt Modules/Remote/CMakeLists.txt +7 -0
- Modules/Segmentation/CCOBIA/CMakeLists.txt Modules/Segmentation/CCOBIA/CMakeLists.txt +2 -0
- Modules/Segmentation/CCOBIA/otb-module.cmake Modules/Segmentation/CCOBIA/otb-module.cmake +20 -0
- Modules/Segmentation/CCOBIA/test/CMakeLists.txt Modules/Segmentation/CCOBIA/test/CMakeLists.txt +82 -0
- Modules/Segmentation/CCOBIA/test/otbCCOBIATestDriver.cxx Modules/Segmentation/CCOBIA/test/otbCCOBIATestDriver.cxx +10 -0
- Modules/Segmentation/Conversion/CMakeLists.txt Modules/Segmentation/Conversion/CMakeLists.txt +2 -0
- Modules/Segmentation/Conversion/otb-module.cmake Modules/Segmentation/Conversion/otb-module.cmake +25 -0
- Modules/Segmentation/Conversion/test/CMakeLists.txt Modules/Segmentation/Conversion/test/CMakeLists.txt +216 -0
- Modules/Segmentation/Conversion/test/otbConversionTestDriver.cxx .../Segmentation/Conversion/test/otbConversionTestDriver.cxx +21 -0
- Modules/Segmentation/EdisonMeanShift/CMakeLists.txt Modules/Segmentation/EdisonMeanShift/CMakeLists.txt +2 -0
- Modules/Segmentation/EdisonMeanShift/otb-module.cmake Modules/Segmentation/EdisonMeanShift/otb-module.cmake +16 -0
- Modules/Segmentation/EdisonMeanShift/test/CMakeLists.txt Modules/Segmentation/EdisonMeanShift/test/CMakeLists.txt +126 -0
- Modules/Segmentation/EdisonMeanShift/test/otbEdisonMeanShiftTestDriver.cxx ...ion/EdisonMeanShift/test/otbEdisonMeanShiftTestDriver.cxx +8 -0
- Modules/Segmentation/Labelling/CMakeLists.txt Modules/Segmentation/Labelling/CMakeLists.txt +2 -0
- Modules/Segmentation/Labelling/otb-module.cmake Modules/Segmentation/Labelling/otb-module.cmake +18 -0
- Modules/Segmentation/Labelling/test/CMakeLists.txt Modules/Segmentation/Labelling/test/CMakeLists.txt +59 -0
- Modules/Segmentation/Labelling/test/otbLabellingTestDriver.cxx ...es/Segmentation/Labelling/test/otbLabellingTestDriver.cxx +10 -0
- Modules/Segmentation/MeanShift/CMakeLists.txt Modules/Segmentation/MeanShift/CMakeLists.txt +2 -0
- Modules/Segmentation/MeanShift/otb-module.cmake Modules/Segmentation/MeanShift/otb-module.cmake +15 -0
- Modules/Segmentation/MeanShift/test/CMakeLists.txt Modules/Segmentation/MeanShift/test/CMakeLists.txt +48 -0
- Modules/Segmentation/MeanShift/test/otbMeanShiftTestDriver.cxx ...es/Segmentation/MeanShift/test/otbMeanShiftTestDriver.cxx +6 -0
- Modules/Segmentation/Metrics/CMakeLists.txt Modules/Segmentation/Metrics/CMakeLists.txt +2 -0
- Modules/Segmentation/Metrics/otb-module.cmake Modules/Segmentation/Metrics/otb-module.cmake +13 -0
- Modules/Segmentation/Metrics/test/CMakeLists.txt Modules/Segmentation/Metrics/test/CMakeLists.txt +42 -0
- Modules/Segmentation/Metrics/test/otbMetricsTestDriver.cxx Modules/Segmentation/Metrics/test/otbMetricsTestDriver.cxx +8 -0
- Modules/Segmentation/MorphologicalProfiles/CMakeLists.txt Modules/Segmentation/MorphologicalProfiles/CMakeLists.txt +2 -0
- Modules/Segmentation/MorphologicalProfiles/otb-module.cmake Modules/Segmentation/MorphologicalProfiles/otb-module.cmake +15 -0
- Modules/Segmentation/MorphologicalProfiles/test/CMakeLists.txt ...es/Segmentation/MorphologicalProfiles/test/CMakeLists.txt +242 -0
- Modules/Segmentation/MorphologicalProfiles/test/otbMorphologicalProfilesTestDriver.cxx ...gicalProfiles/test/otbMorphologicalProfilesTestDriver.cxx +27 -0
- Modules/Segmentation/OGRProcessing/CMakeLists.txt Modules/Segmentation/OGRProcessing/CMakeLists.txt +2 -0
- Modules/Segmentation/OGRProcessing/otb-module.cmake Modules/Segmentation/OGRProcessing/otb-module.cmake +21 -0
- Modules/Segmentation/OGRProcessing/test/CMakeLists.txt Modules/Segmentation/OGRProcessing/test/CMakeLists.txt +85 -0
- Modules/Segmentation/OGRProcessing/test/otbOGRProcessingTestDriver.cxx ...ntation/OGRProcessing/test/otbOGRProcessingTestDriver.cxx +7 -0
- Modules/Segmentation/Watersheds/CMakeLists.txt Modules/Segmentation/Watersheds/CMakeLists.txt +2 -0
- Modules/Segmentation/Watersheds/otb-module.cmake Modules/Segmentation/Watersheds/otb-module.cmake +11 -0
- Modules/Segmentation/Watersheds/test/CMakeLists.txt Modules/Segmentation/Watersheds/test/CMakeLists.txt +24 -0
- Modules/Segmentation/Watersheds/test/otbWatershedsTestDriver.cxx .../Segmentation/Watersheds/test/otbWatershedsTestDriver.cxx +5 -0
- Modules/ThirdParty/6S/CMakeLists.txt Modules/ThirdParty/6S/CMakeLists.txt +7 -0
- Modules/ThirdParty/6S/otb-module.cmake Modules/ThirdParty/6S/otb-module.cmake +12 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AATSR.P Modules/ThirdParty/6S/src/6SV1.0B/AATSR.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AATSR.c Modules/ThirdParty/6S/src/6SV1.0B/AATSR.c +3624 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AATSR.f Modules/ThirdParty/6S/src/6SV1.0B/AATSR.f +85 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AATSR.h Modules/ThirdParty/6S/src/6SV1.0B/AATSR.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.P Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.P +36 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.c Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.c +1150 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.f Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.f +495 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.h Modules/ThirdParty/6S/src/6SV1.0B/ABSTRA.h +36 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.P Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.c Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.c +161 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.f Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.f +86 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.h Modules/ThirdParty/6S/src/6SV1.0B/AEROPROF.h +13 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.P Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.P +15 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.c Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.c +793 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.f Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.f +285 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.h Modules/ThirdParty/6S/src/6SV1.0B/AEROSO.h +9 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.P Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.P +29 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.c Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.c +3112 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.f Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.f +1603 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.h Modules/ThirdParty/6S/src/6SV1.0B/AKTOOL.h +65 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.P Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.c Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.c +322 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.f Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.f +149 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.h Modules/ThirdParty/6S/src/6SV1.0B/ATMREF.h +43 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.P Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.c Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.c +1393 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.f Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.f +482 -0
- Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.h Modules/ThirdParty/6S/src/6SV1.0B/AVHRR.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BBM.P Modules/ThirdParty/6S/src/6SV1.0B/BBM.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BBM.c Modules/ThirdParty/6S/src/6SV1.0B/BBM.c +692 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BBM.f Modules/ThirdParty/6S/src/6SV1.0B/BBM.f +1132 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BBM.h Modules/ThirdParty/6S/src/6SV1.0B/BBM.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BDM.P Modules/ThirdParty/6S/src/6SV1.0B/BDM.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BDM.c Modules/ThirdParty/6S/src/6SV1.0B/BDM.c +694 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BDM.f Modules/ThirdParty/6S/src/6SV1.0B/BDM.f +1133 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BDM.h Modules/ThirdParty/6S/src/6SV1.0B/BDM.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.P Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.c Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.c +94 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.f Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.f +24 -0
- Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.h Modules/ThirdParty/6S/src/6SV1.0B/BRDFGRID.h +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CHAND.P Modules/ThirdParty/6S/src/6SV1.0B/CHAND.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CHAND.c Modules/ThirdParty/6S/src/6SV1.0B/CHAND.c +155 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CHAND.f Modules/ThirdParty/6S/src/6SV1.0B/CHAND.f +71 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CHAND.h Modules/ThirdParty/6S/src/6SV1.0B/CHAND.h +7 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.P Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.c Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.c +122 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.f Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.f +42 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.h Modules/ThirdParty/6S/src/6SV1.0B/CLEARW.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.P Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.c Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.c +99 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.f Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.f +27 -0
- Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.h Modules/ThirdParty/6S/src/6SV1.0B/CSALBR.h +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA1.P Modules/ThirdParty/6S/src/6SV1.0B/DICA1.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA1.c Modules/ThirdParty/6S/src/6SV1.0B/DICA1.c +299 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA1.f Modules/ThirdParty/6S/src/6SV1.0B/DICA1.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA1.h Modules/ThirdParty/6S/src/6SV1.0B/DICA1.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA2.P Modules/ThirdParty/6S/src/6SV1.0B/DICA2.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA2.c Modules/ThirdParty/6S/src/6SV1.0B/DICA2.c +300 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA2.f Modules/ThirdParty/6S/src/6SV1.0B/DICA2.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA2.h Modules/ThirdParty/6S/src/6SV1.0B/DICA2.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA3.P Modules/ThirdParty/6S/src/6SV1.0B/DICA3.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA3.c Modules/ThirdParty/6S/src/6SV1.0B/DICA3.c +239 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA3.f Modules/ThirdParty/6S/src/6SV1.0B/DICA3.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DICA3.h Modules/ThirdParty/6S/src/6SV1.0B/DICA3.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.P Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.P +12 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.c Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.c +409 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.f Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.f +202 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.h Modules/ThirdParty/6S/src/6SV1.0B/DISCOM.h +29 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.P Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.c Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.c +120 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.f Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.f +41 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.h Modules/ThirdParty/6S/src/6SV1.0B/DISCRE.h +13 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DUST.P Modules/ThirdParty/6S/src/6SV1.0B/DUST.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DUST.c Modules/ThirdParty/6S/src/6SV1.0B/DUST.c +721 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DUST.f Modules/ThirdParty/6S/src/6SV1.0B/DUST.f +1133 -0
- Modules/ThirdParty/6S/src/6SV1.0B/DUST.h Modules/ThirdParty/6S/src/6SV1.0B/DUST.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.P Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.c Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.c +156 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.f Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.f +70 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.h Modules/ThirdParty/6S/src/6SV1.0B/ENVIRO.h +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.P Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.c Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.c +71 -0
- Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.f Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.f +21 -0
- Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.h Modules/ThirdParty/6S/src/6SV1.0B/EQUIVWL.h +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.P Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.c Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.c +99 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.f Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.f +31 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.h Modules/ThirdParty/6S/src/6SV1.0B/GAUSS.h +7 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GLI.P Modules/ThirdParty/6S/src/6SV1.0B/GLI.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GLI.c Modules/ThirdParty/6S/src/6SV1.0B/GLI.c +2366 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GLI.f Modules/ThirdParty/6S/src/6SV1.0B/GLI.f +350 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GLI.h Modules/ThirdParty/6S/src/6SV1.0B/GLI.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GOES.P Modules/ThirdParty/6S/src/6SV1.0B/GOES.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GOES.c Modules/ThirdParty/6S/src/6SV1.0B/GOES.c +212 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GOES.f Modules/ThirdParty/6S/src/6SV1.0B/GOES.f +77 -0
- Modules/ThirdParty/6S/src/6SV1.0B/GOES.h Modules/ThirdParty/6S/src/6SV1.0B/GOES.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.P Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.c Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.c +126 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.f Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.f +45 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.h Modules/ThirdParty/6S/src/6SV1.0B/HAPKALBE.h +7 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.P Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.c Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.c +116 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.f Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.f +44 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.h Modules/ThirdParty/6S/src/6SV1.0B/HAPKBRDF.h +11 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HRV.P Modules/ThirdParty/6S/src/6SV1.0B/HRV.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HRV.c Modules/ThirdParty/6S/src/6SV1.0B/HRV.c +674 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HRV.f Modules/ThirdParty/6S/src/6SV1.0B/HRV.f +149 -0
- Modules/ThirdParty/6S/src/6SV1.0B/HRV.h Modules/ThirdParty/6S/src/6SV1.0B/HRV.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.P Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.P +11 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.c Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.c +395 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.f Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.f +164 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.h Modules/ThirdParty/6S/src/6SV1.0B/IAPIALBE.h +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.P Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.P +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.c Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.c +380 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.f Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.f +154 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.h Modules/ThirdParty/6S/src/6SV1.0B/IAPIBRDF.h +14 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.P Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.P +15 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.c Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.c +986 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.f Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.f +477 -0
- Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.h Modules/ThirdParty/6S/src/6SV1.0B/IAPITOOLS.h +45 -0
- Modules/ThirdParty/6S/src/6SV1.0B/INTERP.P Modules/ThirdParty/6S/src/6SV1.0B/INTERP.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/INTERP.c Modules/ThirdParty/6S/src/6SV1.0B/INTERP.c +794 -0
- Modules/ThirdParty/6S/src/6SV1.0B/INTERP.f Modules/ThirdParty/6S/src/6SV1.0B/INTERP.f +388 -0
- Modules/ThirdParty/6S/src/6SV1.0B/INTERP.h Modules/ThirdParty/6S/src/6SV1.0B/INTERP.h +49 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ISO.P Modules/ThirdParty/6S/src/6SV1.0B/ISO.P +7 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ISO.c Modules/ThirdParty/6S/src/6SV1.0B/ISO.c +937 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ISO.f Modules/ThirdParty/6S/src/6SV1.0B/ISO.f +454 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ISO.h Modules/ThirdParty/6S/src/6SV1.0B/ISO.h +14 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.P Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.c Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.c +299 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.f Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.f +104 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.h Modules/ThirdParty/6S/src/6SV1.0B/KERNEL.h +8 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.P Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.c Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.c +505 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.f Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.f +197 -0
- Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.h Modules/ThirdParty/6S/src/6SV1.0B/KERNELPOL.h +14 -0
- Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.P Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.c Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.c +126 -0
- Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.f Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.f +56 -0
- Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.h Modules/ThirdParty/6S/src/6SV1.0B/LAKEW.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MAS.P Modules/ThirdParty/6S/src/6SV1.0B/MAS.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MAS.c Modules/ThirdParty/6S/src/6SV1.0B/MAS.c +819 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MAS.f Modules/ThirdParty/6S/src/6SV1.0B/MAS.f +120 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MAS.h Modules/ThirdParty/6S/src/6SV1.0B/MAS.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MERIS.P Modules/ThirdParty/6S/src/6SV1.0B/MERIS.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MERIS.c Modules/ThirdParty/6S/src/6SV1.0B/MERIS.c +1193 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MERIS.f Modules/ThirdParty/6S/src/6SV1.0B/MERIS.f +133 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MERIS.h Modules/ThirdParty/6S/src/6SV1.0B/MERIS.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METEO.P Modules/ThirdParty/6S/src/6SV1.0B/METEO.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METEO.c Modules/ThirdParty/6S/src/6SV1.0B/METEO.c +132 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METEO.f Modules/ThirdParty/6S/src/6SV1.0B/METEO.f +65 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METEO.h Modules/ThirdParty/6S/src/6SV1.0B/METEO.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH1.P Modules/ThirdParty/6S/src/6SV1.0B/METH1.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH1.c Modules/ThirdParty/6S/src/6SV1.0B/METH1.c +300 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH1.f Modules/ThirdParty/6S/src/6SV1.0B/METH1.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH1.h Modules/ThirdParty/6S/src/6SV1.0B/METH1.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH2.P Modules/ThirdParty/6S/src/6SV1.0B/METH2.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH2.c Modules/ThirdParty/6S/src/6SV1.0B/METH2.c +237 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH2.f Modules/ThirdParty/6S/src/6SV1.0B/METH2.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH2.h Modules/ThirdParty/6S/src/6SV1.0B/METH2.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH3.P Modules/ThirdParty/6S/src/6SV1.0B/METH3.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH3.c Modules/ThirdParty/6S/src/6SV1.0B/METH3.c +195 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH3.f Modules/ThirdParty/6S/src/6SV1.0B/METH3.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH3.h Modules/ThirdParty/6S/src/6SV1.0B/METH3.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH4.P Modules/ThirdParty/6S/src/6SV1.0B/METH4.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH4.c Modules/ThirdParty/6S/src/6SV1.0B/METH4.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH4.f Modules/ThirdParty/6S/src/6SV1.0B/METH4.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH4.h Modules/ThirdParty/6S/src/6SV1.0B/METH4.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH5.P Modules/ThirdParty/6S/src/6SV1.0B/METH5.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH5.c Modules/ThirdParty/6S/src/6SV1.0B/METH5.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH5.f Modules/ThirdParty/6S/src/6SV1.0B/METH5.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH5.h Modules/ThirdParty/6S/src/6SV1.0B/METH5.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH6.P Modules/ThirdParty/6S/src/6SV1.0B/METH6.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH6.c Modules/ThirdParty/6S/src/6SV1.0B/METH6.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH6.f Modules/ThirdParty/6S/src/6SV1.0B/METH6.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/METH6.h Modules/ThirdParty/6S/src/6SV1.0B/METH6.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.P Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.c Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.c +80 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.f Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.f +50 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.h Modules/ThirdParty/6S/src/6SV1.0B/MIDSUM.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.P Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.c Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.c +82 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.f Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.f +50 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.h Modules/ThirdParty/6S/src/6SV1.0B/MIDWIN.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIE.P Modules/ThirdParty/6S/src/6SV1.0B/MIE.P +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIE.c Modules/ThirdParty/6S/src/6SV1.0B/MIE.c +899 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIE.f Modules/ThirdParty/6S/src/6SV1.0B/MIE.f +443 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MIE.h Modules/ThirdParty/6S/src/6SV1.0B/MIE.h +21 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.P Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.c Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.c +27 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.f Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.f +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.h Modules/ThirdParty/6S/src/6SV1.0B/MINNALBE.h +5 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.P Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.c Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.c +67 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.f Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.f +14 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.h Modules/ThirdParty/6S/src/6SV1.0B/MINNBRDF.h +8 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.P Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.c Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.c +233 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.f Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.h Modules/ThirdParty/6S/src/6SV1.0B/MOCA1.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.P Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.c Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.c +243 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.f Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.h Modules/ThirdParty/6S/src/6SV1.0B/MOCA2.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.P Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.c Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.c +224 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.f Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.h Modules/ThirdParty/6S/src/6SV1.0B/MOCA3.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.P Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.c Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.f Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.h Modules/ThirdParty/6S/src/6SV1.0B/MOCA4.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.P Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.c Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.f Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.h Modules/ThirdParty/6S/src/6SV1.0B/MOCA5.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.P Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.c Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.f Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.h Modules/ThirdParty/6S/src/6SV1.0B/MOCA6.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODIS.P Modules/ThirdParty/6S/src/6SV1.0B/MODIS.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODIS.c Modules/ThirdParty/6S/src/6SV1.0B/MODIS.c +656 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODIS.f Modules/ThirdParty/6S/src/6SV1.0B/MODIS.f +80 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODIS.h Modules/ThirdParty/6S/src/6SV1.0B/MODIS.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.P Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.c Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.c +27 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.f Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.f +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.h Modules/ThirdParty/6S/src/6SV1.0B/MODISALBE.h +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.P Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.c Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.c +143 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.f Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.f +58 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.h Modules/ThirdParty/6S/src/6SV1.0B/MODISBRDF.h +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MSS.P Modules/ThirdParty/6S/src/6SV1.0B/MSS.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MSS.c Modules/ThirdParty/6S/src/6SV1.0B/MSS.c +364 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MSS.f Modules/ThirdParty/6S/src/6SV1.0B/MSS.f +92 -0
- Modules/ThirdParty/6S/src/6SV1.0B/MSS.h Modules/ThirdParty/6S/src/6SV1.0B/MSS.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/Makefile_ref Modules/ThirdParty/6S/src/6SV1.0B/Makefile_ref +46 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.P Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.c Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.c +268 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.f Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.h Modules/ThirdParty/6S/src/6SV1.0B/NIOX1.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.P Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.c Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.c +199 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.f Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.h Modules/ThirdParty/6S/src/6SV1.0B/NIOX2.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.P Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.c Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.c +195 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.f Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.h Modules/ThirdParty/6S/src/6SV1.0B/NIOX3.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.P Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.c Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.f Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.h Modules/ThirdParty/6S/src/6SV1.0B/NIOX4.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.P Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.c Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.f Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.h Modules/ThirdParty/6S/src/6SV1.0B/NIOX5.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.P Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.c Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.c +206 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.f Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.h Modules/ThirdParty/6S/src/6SV1.0B/NIOX6.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEA.P Modules/ThirdParty/6S/src/6SV1.0B/OCEA.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEA.c Modules/ThirdParty/6S/src/6SV1.0B/OCEA.c +710 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEA.f Modules/ThirdParty/6S/src/6SV1.0B/OCEA.f +1135 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEA.h Modules/ThirdParty/6S/src/6SV1.0B/OCEA.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.P Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.c Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.c +107 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.f Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.f +51 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.h Modules/ThirdParty/6S/src/6SV1.0B/OCEAALBE.h +8 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.P Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.P +5 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.c Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.c +285 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.f Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.f +130 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.h Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDF.h +15 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.P Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.c Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.c +197 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.f Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.f +119 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.h Modules/ThirdParty/6S/src/6SV1.0B/OCEABRDFFAST.h +12 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.P Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.P +5 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.c Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.c +748 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.f Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.f +415 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.h Modules/ThirdParty/6S/src/6SV1.0B/OCEATOOLS.h +35 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODA550.P Modules/ThirdParty/6S/src/6SV1.0B/ODA550.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODA550.c Modules/ThirdParty/6S/src/6SV1.0B/ODA550.c +111 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODA550.f Modules/ThirdParty/6S/src/6SV1.0B/ODA550.f +55 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODA550.h Modules/ThirdParty/6S/src/6SV1.0B/ODA550.h +5 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.P Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.c Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.c +101 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.f Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.f +33 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.h Modules/ThirdParty/6S/src/6SV1.0B/ODRAYL.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OS.P Modules/ThirdParty/6S/src/6SV1.0B/OS.P +9 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OS.c Modules/ThirdParty/6S/src/6SV1.0B/OS.c +1401 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OS.f Modules/ThirdParty/6S/src/6SV1.0B/OS.f +681 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OS.h Modules/ThirdParty/6S/src/6SV1.0B/OS.h +20 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.P Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.P +9 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.c Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.c +2104 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.f Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.f +997 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.h Modules/ThirdParty/6S/src/6SV1.0B/OSPOL.h +26 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.P Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.c Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.c +235 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.f Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.h Modules/ThirdParty/6S/src/6SV1.0B/OXYG3.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.P Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.c Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.c +214 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.f Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.h Modules/ThirdParty/6S/src/6SV1.0B/OXYG4.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.P Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.c Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.c +242 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.f Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.h Modules/ThirdParty/6S/src/6SV1.0B/OXYG5.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.P Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.c Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.c +219 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.f Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.h Modules/ThirdParty/6S/src/6SV1.0B/OXYG6.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OZON1.P Modules/ThirdParty/6S/src/6SV1.0B/OZON1.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OZON1.c Modules/ThirdParty/6S/src/6SV1.0B/OZON1.c +235 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OZON1.f Modules/ThirdParty/6S/src/6SV1.0B/OZON1.f +557 -0
- Modules/ThirdParty/6S/src/6SV1.0B/OZON1.h Modules/ThirdParty/6S/src/6SV1.0B/OZON1.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.P Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.c Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.c +85 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.f Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.f +39 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.h Modules/ThirdParty/6S/src/6SV1.0B/PLANPOL.h +5 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLDER.P Modules/ThirdParty/6S/src/6SV1.0B/POLDER.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLDER.c Modules/ThirdParty/6S/src/6SV1.0B/POLDER.c +657 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLDER.f Modules/ThirdParty/6S/src/6SV1.0B/POLDER.f +89 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLDER.h Modules/ThirdParty/6S/src/6SV1.0B/POLDER.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.P Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.c Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.c +286 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.f Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.f +158 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.h Modules/ThirdParty/6S/src/6SV1.0B/POLGLIT.h +17 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.P Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.c Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.c +121 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.f Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.f +63 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.h Modules/ThirdParty/6S/src/6SV1.0B/POLNAD.h +8 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGE.P Modules/ThirdParty/6S/src/6SV1.0B/POSGE.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGE.c Modules/ThirdParty/6S/src/6SV1.0B/POSGE.c +162 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGE.f Modules/ThirdParty/6S/src/6SV1.0B/POSGE.f +61 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGE.h Modules/ThirdParty/6S/src/6SV1.0B/POSGE.h +13 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGW.P Modules/ThirdParty/6S/src/6SV1.0B/POSGW.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGW.c Modules/ThirdParty/6S/src/6SV1.0B/POSGW.c +162 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGW.f Modules/ThirdParty/6S/src/6SV1.0B/POSGW.f +61 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSGW.h Modules/ThirdParty/6S/src/6SV1.0B/POSGW.h +13 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.P Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.c Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.c +54 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.f Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.f +20 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.h Modules/ThirdParty/6S/src/6SV1.0B/POSLAN.h +11 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.P Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.c Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.c +162 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.f Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.f +60 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.h Modules/ThirdParty/6S/src/6SV1.0B/POSMTO.h +13 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.P Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.c Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.c +146 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.f Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.f +60 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.h Modules/ThirdParty/6S/src/6SV1.0B/POSNOA.h +15 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.P Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.c Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.c +197 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.f Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.f +104 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.h Modules/ThirdParty/6S/src/6SV1.0B/POSSOL.h +23 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.P Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.c Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.c +54 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.f Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.f +21 -0
- Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.h Modules/ThirdParty/6S/src/6SV1.0B/POSSPO.h +11 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.P Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.c Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.c +204 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.f Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.f +80 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.h Modules/ThirdParty/6S/src/6SV1.0B/PRESPLANE.h +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.P Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.c Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.c +187 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.f Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.f +70 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.h Modules/ThirdParty/6S/src/6SV1.0B/PRESSURE.h +5 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.P Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.c Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.c +55 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.f Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.f +9 -0
- Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.h Modules/ThirdParty/6S/src/6SV1.0B/PRINT_ERROR.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.P Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.c Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.c +137 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.f Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.f +52 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.h Modules/ThirdParty/6S/src/6SV1.0B/RAHMALBE.h +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.P Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.c Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.c +157 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.f Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.f +72 -0
- Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.h Modules/ThirdParty/6S/src/6SV1.0B/RAHMBRDF.h +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.P Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.c Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.c +133 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.f Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.f +53 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.h Modules/ThirdParty/6S/src/6SV1.0B/ROUJALBE.h +6 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.P Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.c Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.c +108 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.f Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.f +35 -0
- Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.h Modules/ThirdParty/6S/src/6SV1.0B/ROUJBRDF.h +10 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SAND.P Modules/ThirdParty/6S/src/6SV1.0B/SAND.P +1 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SAND.c Modules/ThirdParty/6S/src/6SV1.0B/SAND.c +153 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SAND.f Modules/ThirdParty/6S/src/6SV1.0B/SAND.f +138 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SAND.h Modules/ThirdParty/6S/src/6SV1.0B/SAND.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.P Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.P +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.c Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.c +300 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.f Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.f +133 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.h Modules/ThirdParty/6S/src/6SV1.0B/SCATRA.h +30 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.P Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.c Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.c +708 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.f Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.f +315 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.h Modules/ThirdParty/6S/src/6SV1.0B/SEAWIFS.h +3 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.P Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.P +2 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.c Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.c +247 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.f Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.f +253 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.h Modules/ThirdParty/6S/src/6SV1.0B/SOLIRR.h +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SOOT.P Modules/ThirdParty/6S/src/6SV1.0B/SOOT.P +4 -0
- Modules/ThirdParty/6S/src/6SV1.0B/SOOT.c Modules/ThirdParty/6S/src/6SV1.0B/SOOT.c +696 -0
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.
CMake/CTestCustom.cmake.in
0 → 100644
CMake/CppcheckTargets.cmake
0 → 100644
This diff is collapsed.
CMake/ExternalData.cmake
0 → 100644
This diff is collapsed.
CMake/FindAgg.cmake
0 → 100644
CMake/FindFFTW.cmake
0 → 100644
CMake/FindGeoTIFF.cmake
0 → 100644
CMake/FindICUUC.cmake
0 → 100644
CMake/FindKWStyle.cmake
0 → 100644