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
Sébastien Peillet
otb
Commits
a7487d3e
Commit
a7487d3e
authored
9 years ago
by
Stéphane Albert
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Added generic SRT global functions.
parent
411191f1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Common/Core/mvdAbstractLayerModel.cxx
+45
-21
45 additions, 21 deletions
Code/Common/Core/mvdAbstractLayerModel.cxx
Code/Common/Core/mvdAbstractLayerModel.h
+24
-8
24 additions, 8 deletions
Code/Common/Core/mvdAbstractLayerModel.h
with
69 additions
and
29 deletions
Code/Common/Core/mvdAbstractLayerModel.cxx
+
45
−
21
View file @
a7487d3e
...
...
@@ -38,6 +38,8 @@
//
// Monteverdi includes (sorted by alphabetic order)
#include
"mvdTypes.h"
namespace
mvd
{
...
...
@@ -62,35 +64,32 @@ char const * const STR_UNKNOWN = QT_TRANSLATE_NOOP( "mvd::AbstractLayerModel", "
/*****************************************************************************/
/* STATIC IMPLEMENTATION SECTION */
/*****************************************************************************/
/* CLASS IMPLEMENTATION SECTION */
/*******************************************************************************/
AbstractLayerModel
::
AbstractLayerModel
(
QObject
*
parent
)
:
AbstractModel
(
parent
),
VisibleInterface
()
SpatialReferenceType
GetSpatialReferenceType
(
const
std
::
string
&
filename
)
{
}
DefaultImageFileReaderType
::
Pointer
reader
(
DefaultImageFileReaderType
::
New
()
);
assert
(
!
reader
.
IsNull
()
);
/*******************************************************************************/
AbstractLayerModel
::~
AbstractLayerModel
()
{
reader
->
SetFileName
(
filename
);
reader
->
UpdateOutputInformation
();
DefaultImageType
*
image
=
reader
->
GetOutput
();
assert
(
image
!=
NULL
);
return
GetSpatialReferenceType
(
image
->
GetProjectionRef
(),
image
->
GetImageKeywordlist
().
GetSize
()
>
0
);
}
/*******************************************************************************/
AbstractLayerModel
::
SpatialReferenceType
AbstractLayerModel
::
GetSpatialReferenceType
()
const
/*****************************************************************************/
SpatialReferenceType
GetSpatialReferenceType
(
const
std
::
string
&
wkt
,
bool
hasKwl
)
{
std
::
string
wkt
(
GetWkt
()
);
if
(
wkt
.
empty
()
)
return
H
asKwl
()
h
asKwl
?
SRT_SENSOR
:
SRT_UNKNOWN
;
...
...
@@ -109,6 +108,31 @@ AbstractLayerModel
return
SRT_UNKNOWN
;
}
/*****************************************************************************/
/* CLASS IMPLEMENTATION SECTION */
/*******************************************************************************/
AbstractLayerModel
::
AbstractLayerModel
(
QObject
*
parent
)
:
AbstractModel
(
parent
),
VisibleInterface
()
{
}
/*******************************************************************************/
AbstractLayerModel
::~
AbstractLayerModel
()
{
}
/*******************************************************************************/
SpatialReferenceType
AbstractLayerModel
::
GetSpatialReferenceType
()
const
{
return
mvd
::
GetSpatialReferenceType
(
GetWkt
(),
HasKwl
()
);
}
/*******************************************************************************/
std
::
string
AbstractLayerModel
...
...
This diff is collapsed.
Click to expand it.
Code/Common/Core/mvdAbstractLayerModel.h
+
24
−
8
View file @
a7487d3e
...
...
@@ -66,6 +66,30 @@ namespace mvd
// Internal classes pre-declaration.
//
// Global types.
/**
*/
enum
SpatialReferenceType
{
SRT_UNKNOWN
=
0
,
SRT_CARTO
,
SRT_GEO
,
SRT_SENSOR
,
};
//
// Global functions.
/**
*/
SpatialReferenceType
GetSpatialReferenceType
(
const
std
::
string
&
filename
);
/**
*/
SpatialReferenceType
GetSpatialReferenceType
(
const
std
::
string
&
wkt
,
bool
hasKwl
);
/*****************************************************************************/
/* CLASS DEFINITION SECTION */
...
...
@@ -89,14 +113,6 @@ class Monteverdi2_EXPORT AbstractLayerModel :
// Public methods.
public:
enum
SpatialReferenceType
{
SRT_UNKNOWN
,
SRT_SENSOR
,
SRT_CARTO
,
SRT_GEO
,
};
/** \brief Destructor. */
virtual
~
AbstractLayerModel
();
...
...
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