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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
David Youssefi
otb
Commits
50c15537
Commit
50c15537
authored
12 years ago
by
Luc Hermitte
Browse files
Options
Downloads
Patches
Plain Diff
TEST: OTB-134/OGR -> set/get geometries
parent
4e6ceeef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Testing/Code/UtilitiesAdapters/OGRAdapters/otbOGRDataSourceWrapperNew.cxx
+56
-0
56 additions, 0 deletions
...litiesAdapters/OGRAdapters/otbOGRDataSourceWrapperNew.cxx
with
56 additions
and
0 deletions
Testing/Code/UtilitiesAdapters/OGRAdapters/otbOGRDataSourceWrapperNew.cxx
+
56
−
0
View file @
50c15537
...
...
@@ -22,6 +22,7 @@
#define BOOST_TEST_MODULE "otb::org::DataSource creation unit testing"
#define BOOST_TEST_DYN_LINK
#include
<boost/test/unit_test.hpp>
#include
<boost/foreach.hpp>
#include
"otbOGRDataSourceWrapper.h"
...
...
@@ -305,6 +306,61 @@ BOOST_AUTO_TEST_CASE(OGRDataSource_new_shp_with_features)
l
.
CreateFeature
(
g0
);
}
BOOST_AUTO_TEST_CASE
(
Local_Geometries
)
{
ogr
::
UniqueGeometryPtr
gp
(
OGRGeometryFactory
::
createGeometry
(
wkbPoint
));
BOOST_REQUIRE
(
gp
);
OGRPoint
*
p
=
dynamic_cast
<
OGRPoint
*>
(
gp
.
get
());
BOOST_REQUIRE
(
p
);
p
->
setX
(
0
);
p
->
setY
(
0
);
OGRPoint
x0
(
-
10
,
0
);
OGRPoint
x1
(
+
10
,
0
);
OGRLineString
X
;
X
.
addPoint
(
&
x0
);
X
.
addPoint
(
&
x1
);
OGRPoint
y0
(
0
,
-
10
);
OGRPoint
y1
(
0
,
+
10
);
OGRLineString
Y
;
Y
.
addPoint
(
&
y0
);
Y
.
addPoint
(
&
y1
);
ogr
::
UniqueGeometryPtr
i
=
ogr
::
Intersection
(
X
,
Y
);
BOOST_CHECK
(
ogr
::
Equals
(
*
i
,
*
p
));
BOOST_CHECK
(
ogr
::
Equals
(
*
i
,
*
gp
));
}
BOOST_AUTO_TEST_CASE
(
Add_n_Read_Geometries
)
{
ogr
::
DataSource
::
Pointer
ds
=
ogr
::
DataSource
::
New
();
ogr
::
Layer
l
=
ds
->
CreateLayer
(
k_one
,
0
,
wkbPoint
);
OGRFeatureDefn
&
defn
=
l
.
GetLayerDefn
();
for
(
int
u
=-
10
;
u
!=
10
;
++
u
)
{
ogr
::
Feature
f
(
defn
);
const
OGRPoint
p
(
u
,
u
);
f
.
SetGeometry
(
&
p
);
l
.
CreateFeature
(
f
);
}
BOOST_CHECK_EQUAL
(
l
.
GetFeatureCount
(
false
),
20
);
int
u
=-
10
;
BOOST_FOREACH
(
ogr
::
Feature
f
,
l
)
{
const
OGRPoint
ref
(
u
,
u
);
ogr
::
UniqueGeometryPtr
p
=
f
.
StealGeometry
();
BOOST_REQUIRE
(
p
);
BOOST_CHECK
(
!
f
.
GetGeometry
());
BOOST_CHECK
(
ogr
::
Equals
(
*
p
,
ref
));
f
.
SetGeometryDirectly
(
boost
::
move
(
p
));
BOOST_CHECK
(
!
p
);
++
u
;
}
}
#if 0
BOOST_AUTO_TEST_CASE(OGRDataSource_new_shp_with_features_raw)
{
...
...
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