Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Belvire
otb
Commits
8b58ff75
Commit
8b58ff75
authored
15 years ago
by
Cyrille Valladeau
Browse files
Options
Downloads
Patches
Plain Diff
ENH : add xml auto search in terrasar
parent
407bf087
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Utilities/otbossimplugins/ossim/ossimTerraSarModel.cpp
+52
-6
52 additions, 6 deletions
Utilities/otbossimplugins/ossim/ossimTerraSarModel.cpp
Utilities/otbossimplugins/ossim/ossimTerraSarModel.h
+8
-0
8 additions, 0 deletions
Utilities/otbossimplugins/ossim/ossimTerraSarModel.h
with
60 additions
and
6 deletions
Utilities/otbossimplugins/ossim/ossimTerraSarModel.cpp
+
52
−
6
View file @
8b58ff75
...
...
@@ -163,6 +163,7 @@ bool ossimplugins::ossimTerraSarModel::open(const ossimFilename& file)
<<
"file: "
<<
file
<<
"
\n
"
;
}
/*
ossimFilename filePath = ossimFilename(file.path());
ossimDirectory directory = ossimDirectory(filePath.path());
...
...
@@ -170,9 +171,12 @@ bool ossimplugins::ossimTerraSarModel::open(const ossimFilename& file)
ossimString reg = ".xml";
directory.findAllFilesThatMatch( vectName, reg, 1 );
*/
bool
result
=
false
;
ossimFilename
xmlfile
;
bool
findMeatadataFile
=
findTSXLeader
(
file
,
xmlfile
);
/*
bool goodFileFound = false;
unsigned int loop = 0;
while(loop<vectName.size() && !goodFileFound)
...
...
@@ -183,12 +187,9 @@ bool ossimplugins::ossimTerraSarModel::open(const ossimFilename& file)
else
loop++;
}
//if ( file.exists() && (file.ext().downcase() == "xml") )
if
(
goodFileFound
)
*/
if
(
findMeatadataFile
)
{
xmlfile
=
vectName
[
loop
];
//---
// Instantiate the XML parser:
//---
...
...
@@ -1789,5 +1790,50 @@ bool ossimplugins::ossimTerraSarModel::initNoise(
return
result
;
}
bool
ossimplugins
::
ossimTerraSarModel
::
findTSXLeader
(
const
ossimFilename
&
file
,
ossimFilename
&
metadataFile
)
{
bool
res
=
false
;
if
(
file
.
exists
()
&&
(
file
.
ext
().
downcase
()
==
"xml"
)
)
{
metadataFile
=
file
;
res
=
true
;
}
else
{
ossimFilename
filePath
=
ossimFilename
(
file
.
path
());
ossimDirectory
directory
=
ossimDirectory
(
filePath
.
path
());
std
::
vector
<
ossimFilename
>
vectName
;
ossimString
reg
=
".xml"
;
directory
.
findAllFilesThatMatch
(
vectName
,
reg
,
1
);
bool
goodFileFound
=
false
;
unsigned
int
loop
=
0
;
while
(
loop
<
vectName
.
size
()
&&
!
goodFileFound
)
{
ossimFilename
curFile
=
vectName
[
loop
];
if
(
curFile
.
file
().
beforePos
(
3
)
==
ossimString
(
"TSX"
))
goodFileFound
=
true
;
else
loop
++
;
}
if
(
goodFileFound
)
{
metadataFile
=
vectName
[
loop
];
res
=
true
;
}
else
{
if
(
traceDebug
())
{
this
->
print
(
ossimNotify
(
ossimNotifyLevel_DEBUG
));
ossimNotify
(
ossimNotifyLevel_DEBUG
)
<<
"ossimplugins::ossimTerraSarModel::findTSXLeader "
<<
" exit status = "
<<
(
res
?
"true"
:
"false
\n
"
)
<<
std
::
endl
;
}
}
}
return
res
;
}
This diff is collapsed.
Click to expand it.
Utilities/otbossimplugins/ossim/ossimTerraSarModel.h
+
8
−
0
View file @
8b58ff75
...
...
@@ -156,6 +156,14 @@ namespace ossimplugins
bool
initNoise
(
const
ossimXmlDocument
*
xdoc
,
const
ossimTerraSarProductDoc
&
tsDoc
);
/**
* @brief Method to find the metadata file
* TerraSAR file (image or xml).
* @param file image or metadata path.
* @param metadataFile matadata path.
* @return ture if mateadata found, false otherwise.
*/
bool
findTSXLeader
(
const
ossimFilename
&
file
,
ossimFilename
&
metadataFile
);
/**
* @brief Slant Range TO Ground Range Projection reference point
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment