Changes between Version 6 and Version 7 of pkg-gdal-ecw
- Timestamp:
- 02/07/11 08:53:02 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pkg-gdal-ecw
v6 v7 1 1 = gdal-ecw = 2 2 3 * Plugin for ECW and JPEG2000 Raster Formats4 * Requires gdal and manually-installed ECW 3.3Runtime libraries5 * Includes bug fix for [http://trac.osgeo.org/gdal/ticket/2320 GDAL ticket 2320] so that both ECW and JP2ECW drivers are registered.3 * Read-only plugin for ECW and JPEG2000 Raster Formats 4 * Requires gdal and manually-installed ECW 4.1 Runtime libraries 5 * Write support for ECW and JPEG2000 via the ECW SDK is not available as part of OSGeo4W 6 6 * Maintainer is FrankWarmerdam 7 7 8 8 == Installing ECW SDK == 9 9 10 The GDAL ECW Plugin requires the ECW 3.3 Runtime library, which was distributed by ERDAS, but is no longer available for download (see [wiki:pkg-gdal17-ecw] for newer version that is available for download from ERDAS). In order to use the runtime libraries, the end user is required to install the DLLs into a system directory.10 The GDAL ECW Plugin requires the ECW 4.1 Runtime library, which is by ERDAS. In order to use the runtime libraries, the end user is required to download and install the DLLs into a system directory. 11 11 12 ERDAS Web Site: http://www.erdas.com/ Products/ERDASProductInformation/tabid/84/currentid/1142/default.aspx12 ERDAS Web Site: http://www.erdas.com/products/ERDASECWJPEG2000SDK/Downloads.aspx 13 13 14 After installation, please copy the DLL files from the {{{redistributable\vc71}}} directory to somewhere appropriate, like {{{C:\windows\system32}}}, or {{{C:\Windows\SysWOW64}}} for 64-bit Windows.14 After downloading and installing the ECW SDK it is necessary to copy the runtime DLLs somewhere appropriate like {{{C:\windows\system32}}}, or {{{C:\Windows\SysWOW64}}} for 64-bit Windows, or {{{C:\\OSGeo4W\bin}}}. 15 15 16 16 E.g.: 17 17 {{{ 18 copy "C:\Program Files\E arth Resource Mapping\ECW SDK\redistributable\vc71\*.dll" C:\windows\system3218 copy "C:\Program Files\ERDAS\ERDAS ECW JPEG2000 Read SDK\bin\vc9\win32\*.dll" C:\windows\system32 19 19 }}} 20 20 21 21 Note that downloading and installing these DLLs requires agreeing to a license. Please review the license terms carefully. 22 22 23 It is imperative that the VC 7.1 ECW 3.3 SDK binaries be used. Any other ECW (NCS*) DLLs are unlikely to work properly. Failure to install the correct ECW libraries will normally result in a popup message reading "This application has failed to start because NCSEcw.dll was not found." or a console error report like:23 It is imperative that the VC9 ECW 4.1 SDK binaries be used. Any other ECW (NCS*) DLLs are unlikely to work properly. Failure to install the correct ECW libraries will normally result in a popup message reading "This application has failed to start because NCSEcw4_RO.dll was not found." or a console error report like: 24 24 25 25 {{{ 26 26 C:\warmerda>gdalinfo 27 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\ gdal_ECW.dll27 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\1.8\gdal_ECW_JP2ECW.dll 28 28 126: The specified module could not be found. 29 29 30 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\ gdal_ECW.dll30 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\1.8\gdal_ECW_JP2ECW.dll 31 31 126: The specified module could not be found. 32 32 33 Usage: gdalinfo [--help-general] [-mm] [-stats] [- nogcp] [-nomd]34 [-no ct] [-checksum] [-mdd domain]* datasetname33 Usage: gdalinfo [--help-general] [-mm] [-stats] [-hist] [-nogcp] [-nomd] 34 [-norat] [-noct] [-checksum] [-mdd domain]* datasetname 35 35 }}} 36 36