diff --git a/src/uti_phgrm/CPP_BasicEpip.cpp b/src/uti_phgrm/CPP_BasicEpip.cpp index dc816a4105..ffa83830d0 100644 --- a/src/uti_phgrm/CPP_BasicEpip.cpp +++ b/src/uti_phgrm/CPP_BasicEpip.cpp @@ -121,7 +121,7 @@ cAppliEpiBasic::cAppliEpiBasic(int argc,char ** argv,bool aModeTestDeep) : mRatioInc (0.1), mNbProc (aModeTestDeep ? 1 : NbProcSys() ), mFileExp ("PxBasic.tif"), - mPyr ("Pyr") + mPyr ("Pyr/") { MMD_InitArgcArgv(argc,argv,2); diff --git a/src/uti_phgrm/SAT4GEO/SAT4GEO.h b/src/uti_phgrm/SAT4GEO/SAT4GEO.h index d1cbd0ce51..1f463566ca 100644 --- a/src/uti_phgrm/SAT4GEO/SAT4GEO.h +++ b/src/uti_phgrm/SAT4GEO/SAT4GEO.h @@ -95,6 +95,7 @@ class cCommonAppliSat3D /* Pairs param */ std::string mFilePairs; std::string mFPairsDirMEC; + Pt2dr mBtoHLim; /* Epip param */ bool mDoIm; diff --git a/src/uti_phgrm/SAT4GEO/cSAT4GEO.cpp b/src/uti_phgrm/SAT4GEO/cSAT4GEO.cpp index 18ec5b297e..83abe643a9 100644 --- a/src/uti_phgrm/SAT4GEO/cSAT4GEO.cpp +++ b/src/uti_phgrm/SAT4GEO/cSAT4GEO.cpp @@ -49,6 +49,7 @@ cCommonAppliSat3D::cCommonAppliSat3D() : mNbProc(8), mFilePairs("Pairs.xml"), mFPairsDirMEC("PairsDirMEC.xml"), + mBtoHLim (Pt2dr(0.01,0.3)), mDoIm(true), mOutRPC("EpiRPC"), mDegreRPC(0), @@ -72,7 +73,8 @@ cCommonAppliSat3D::cCommonAppliSat3D() : << EAM(mExe,"Exe",true,"Execute all, Def=true") << EAM(mNbProc,"NbP",true,"Num of parallel processes, Def=8") << EAM(mFilePairs,"Pairs",true,"File with overlapping pairs, Def=Pairs.xml") - << EAM(mFPairsDirMEC,"PairsDirMEC",true,"File with DirMECc of overlapping pairs, Def=PairsDirMEC.xml"); + << EAM(mFPairsDirMEC,"PairsDirMEC",true,"File with DirMECc of overlapping pairs, Def=PairsDirMEC.xml") + << EAM(mBtoHLim,"BH",true,"Base to height ratio limits, def=[0.01,0.3]"); *mArgEpip @@ -154,6 +156,7 @@ std::string cCommonAppliSat3D::ComParamPairs() std::string aCom; aCom += aCom + " Out=" + mFilePairs; aCom += " PairsDirMEC=" + mFPairsDirMEC; + aCom += " BH=" + ToString(mBtoHLim); return aCom; }