From a62d1a58975252bf81602be9881effa9e0c59f88 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ga=C3=ABlle=20USSEGLIO?= <gaelle.usseglio@cnes.fr>
Date: Thu, 20 Feb 2020 09:43:38 +0000
Subject: [PATCH] ENH: Update ul_lon/lat, ur_lon/lat, lr_lon/lat and ll_lon/lat
 into geom file for CosmoSkymed Sensor

---
 .../OssimPlugins/src/ossim/ossimCosmoSkymedModel.cpp  | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/Modules/ThirdParty/OssimPlugins/src/ossim/ossimCosmoSkymedModel.cpp b/Modules/ThirdParty/OssimPlugins/src/ossim/ossimCosmoSkymedModel.cpp
index 820f479825..10f5d3c47b 100644
--- a/Modules/ThirdParty/OssimPlugins/src/ossim/ossimCosmoSkymedModel.cpp
+++ b/Modules/ThirdParty/OssimPlugins/src/ossim/ossimCosmoSkymedModel.cpp
@@ -505,7 +505,16 @@ namespace ossimplugins
     std::vector<std::string> vGeoCoor_BR;
     otb::Utils::ConvertStringToVector(geoCoor_BR, vGeoCoor_BR, "S01_SBI_Bottom_Right_Geodetic_Coordinates", " ");
    
-    
+    ///// Add Corner into the keywordlist ////
+    add(theProductKwl, "ul_lat", vGeoCoor_TL[0]); 
+    add(theProductKwl, "ul_lon", vGeoCoor_TL[1]);
+    add(theProductKwl, "ur_lat", vGeoCoor_TR[0]); 
+    add(theProductKwl, "ur_lon", vGeoCoor_TR[1]);
+    add(theProductKwl, "ll_lat", vGeoCoor_BL[0]); 
+    add(theProductKwl, "ll_lon", vGeoCoor_BL[1]);
+    add(theProductKwl, "lr_lat", vGeoCoor_BR[0]); 
+    add(theProductKwl, "lr_lon", vGeoCoor_BR[1]);
+
     // Mean
     std::vector<double> vGeoCoor_Mean;
     vGeoCoor_Mean.push_back((std::stod(vGeoCoor_TL[0]) + std::stod(vGeoCoor_TR[0]) + std::stod(vGeoCoor_BL[0]) +
-- 
GitLab