Skip to content

Commit

Permalink
Add SAT4Geo BH et sauvgarde des pyramides dans Pyr
Browse files Browse the repository at this point in the history
  • Loading branch information
erupnik committed May 20, 2021
1 parent bea3eca commit 62b7599
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/uti_phgrm/CPP_BasicEpip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
1 change: 1 addition & 0 deletions src/uti_phgrm/SAT4GEO/SAT4GEO.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class cCommonAppliSat3D
/* Pairs param */
std::string mFilePairs;
std::string mFPairsDirMEC;
Pt2dr mBtoHLim;

/* Epip param */
bool mDoIm;
Expand Down
5 changes: 4 additions & 1 deletion src/uti_phgrm/SAT4GEO/cSAT4GEO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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
Expand Down Expand Up @@ -154,6 +156,7 @@ std::string cCommonAppliSat3D::ComParamPairs()
std::string aCom;
aCom += aCom + " Out=" + mFilePairs;
aCom += " PairsDirMEC=" + mFPairsDirMEC;
aCom += " BH=" + ToString(mBtoHLim);

return aCom;
}
Expand Down

0 comments on commit 62b7599

Please sign in to comment.