Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
9cbcaf23
Commit
9cbcaf23
authored
Apr 26, 2019
by
Victor Poughon
Browse files
Merge branch '1891-gdal-fixup' into 'release-6.6'
BUG: remove .Fixup() for GDAL 2.5 compatibility See merge request
!479
parents
90cb7271
bb600e26
Changes
3
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
9cbcaf23
...
...
@@ -127,7 +127,7 @@ set(main_project_name ${_OTBModuleMacros_DEFAULT_LABEL})
# OTB version number.
set
(
OTB_VERSION_MAJOR
"6"
)
set
(
OTB_VERSION_MINOR
"6"
)
set
(
OTB_VERSION_PATCH
"
1
"
)
set
(
OTB_VERSION_PATCH
"
2
"
)
set
(
OTB_VERSION_STRING
"
${
OTB_VERSION_MAJOR
}
.
${
OTB_VERSION_MINOR
}
.
${
OTB_VERSION_PATCH
}
"
)
# Monteverdi version number (follows OTB)
...
...
Modules/Core/Transform/src/otbGeoInformationConversion.cxx
View file @
9cbcaf23
...
...
@@ -77,7 +77,9 @@ int GeoInformationConversion::ToEPSG(const std::string &wkt)
{
int
code
=
-
1
;
OGRSpatialReference
srs
(
wkt
.
c_str
());
#if GDAL_VERSION_NUM < 2050000
srs
.
Fixup
();
#endif
srs
.
AutoIdentifyEPSG
();
const
char
*
epsg
=
nullptr
;
if
(
srs
.
IsGeographic
())
...
...
RELEASE_NOTES.txt
View file @
9cbcaf23
OTB-v.6.6.2 - Changes since version 6.6.1 (April 26th, 2019)
------------------------------------------------------------
* Fix for GDAL 2.5 compatibility
OTB-v.6.6.1 - Changes since version 6.6.0 (December 12th, 2018)
-----------------------------------------------------------
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment