1= GDAL/OGR 3.3.3 Release Notes = 2 3The 3.3.3 release is a bug fix release. 4 5== Build == 6 7* Use pkg-config for libdap when dap-config is not available. 8* Fix build against Poppler 21.10.0 9* fix mrf 'make clean' when lercv1 not defined 10* Windows: fix TileDB build (#4631) 11* Windows: remove unneeded qualifier on CPLMSVCSafeIntException class to fix pedantic build (#4698) 12 13== Port == 14 15* Google cloud: avoid issue with some openssl versions and 2 line endings in private key 16* /vsimem/: fix Read(buffer,nSize=0,nCount=1) to return 0 17* /vsicurl/: fix for curl 7.79.0 to get file size when retrieving headers only. 18* /vsicurl/: make it work without explicit CPL_VSIL_CURL_USE_HEAD=FALSE with .earthdata.nasa.gov/ URLs (#4641) 19* VSI cache: fix crash when a Read() to the underlying file fails (#4559) 20* CPL logging mechanism: fix writing non-ASCII UTF-8 filenames on Windows (#4492) 21 22== GDAL core == 23 24* GDALOpenInfo(): fix issue when passing a directory on netBSD and potentially other BSDs 25* Warper: avoid selecting Float64 working data type with a Float32 raster and a nodata value compatible of it (#4469) 26* GDALMDReaderPleiades::LoadRPCXmlFile(): fix nullptr dereference on non-conformant file (ossfuzz #38998) 27* GDALDataset::BlockBasedRasterIO(): fix when an overview is selected and non-integer window coordinates are involved (#4665) 28 29== GDAL utilities == 30 31* gdal2tiles: fix tile grid origin of openlayers with xyz and geodetic profile as arguments (#4425) 32* gdal2tiles: avoid potential race when creating directories (#4691) 33* gdal_sieve: preserve NoData value when output to a new file 34* pct2rgb: fix parsing arguments 35* fix GetOutputDriversFor for ext == 'nc' (#4671, #4498) 36 37== GDAL drivers == 38 39COG driver: 40 * fix error messages when creating JPEG compressed COGs from RGBA 41 42EEDAI driver: 43 * Make Earth Engine driver use the highvolume API endpoint by default (#4695) 44 45ERS driver: 46 * fix off-by-one error when reading ERS header (#4609) 47 48GeoRaster driver: 49 * Add owner checking in the query (#4565) 50 51GRIB driver: 52 * fix stack read buffer overflow (ossfuzz #38610) 53 * fix potential crashes on big GRIB1 files on low-memory condition (ossfuzz #38971) 54 55GTiff driver: 56 * fix nullptr deref read with PROJ master and a CompoundCRS where the ellipsoid definition is invalid 57 * fix corruption in TIFF directory chaining when altering nodata value after IFD crystallization (#3746) 58 * do not try to export a DerivedGeographic CRS to GeoTIFF, but fallback to PAM 59 * Internal libtiff: fix rewrite in place that could cause corruption in some situations. (#4538) 60 61JP2KAK driver: 62 * fix Unix build with Kakadu 8.2 (#4306) 63 64PDS4 driver: 65 * fix opening of some .xml files with large number of <?xml-model> tags 66 * accept optional <Reference_List> element in template 67 * fixes for compatibility with sp:Spectral_Characteristics in template. 68 69netCDF driver: 70 * accept degree_north/degree_east (degree singular) as acceptable unit for latitude/longitude axis (#4439) 71 * Tolerate "degrees_E"/"degrees_N" as valid axis names (#4581) 72 * parse correctly valid_range/valid_min/valid_max attributes when they are of non-integer type (#4443) 73 * multidim: avoid crash when getting data type of a char variable with 2 dimensions 74 * multidim GetBlockSize(): fix heap buffer write overflow on 2D char variables (ossfuzz #39258) 75 * multidim: fix use of coordinates attribute to find the indexing variable of a dimension 76 77WCS driver: 78 * fix requests involving negative coordinates (#4550) 79 80VRT driver: 81 * fix issue with sources with nodata and OverviewList resampling='average' that triggers a 'recursion error' message (relates to #4620) 82 * GDALAutoCreateWarpedVRTEx(): do not set padfSrcNoDataReal/padfDstNoDataReal if already set in passed-in options (rasterio/rasterio#2233) 83 * avoid recursion issue on ComputeStatistics()/.ComputeRasterMinMax()/GetHistogram() with implicit overviews and approximation enabled (#4661) 84 85WMTS driver: 86 * do not take into account a TileMatrixSetLink that points to a non-existing TileMatrixSet. 87 88== OGRSpatialReference == 89 90* OGRSpatialReference::GetAxesCount(): fix on CompoundCRS of BoundCRS 91* fix retrieving projection parameters from WKT1 name on a Projected 3D CRS (OSGeo/PROJ#2846) 92* Fix EPSGTreatsAsLatLong with compoundCRS (#4505) 93* OSRProjTLSCache: avoid use of exceptions (#4531) 94* exportToWkt(): use WKT2 for DerivedProjectedCRS (#3927) 95* OGR_CT with OGR_CT_OP_SELECTION=BEST_ACCURACY: fix for non-Greenwich prime meridian (#4632) 96 97== OGR drivers == 98 99CouchDB driver: 100 * avoid message about deprecated driver when the driver rejects the connection string (#4601) 101 102ESRIJSON driver: 103 * make 'ESRIJSON:http://' connection string scroll results 104 105FileGDB driver: 106 * Fix reading of field domains when data source is wrapped in OGRDataSourceWithTransaction (#4651) 107 108FlatGeoBuf driver: 109 * fix memory leaks on invalid geometries (ossfuzz #38166) 110 111GeoJSON driver: 112 * recognize URL of likely OAPIF items response page (fixes #4601) 113 114GML driver: 115 * fix warning when reading .gfs file with a polyhedral surface 116 117OSM driver: 118 * better validation of coordinates in XML to avoid integer overflow (ossfuzz #40257) 119 120PDS4 driver: 121 * avoid warning about wrong field subtype when parsing ASCII_Boolean 122 123== Python bindings == 124 125* fix resampleAlg=gdal.GRA_Sum/Med/Min/Max/Q1/Q3 in gdal.Warp() 126* Fix potential OSError exception in __init__ on Windows and Python >= 3.8 (#4644) 127* remove call to __del__() in Geometry.Destroy(), which no longer exists in SWIG 4 128 129= GDAL/OGR 3.3.2 Release Notes = 130 131The 3.3.2 release is a bug fix release. 132 133== Build == 134 135* Fix compilation error and warnings in C++20 136* Fix 'One definition rule' violations related to 12-bit JPEG support, FromHandle() methods and SQLite related drivers 137* Unix build: Fix GEOS detection in cross compilation (#4368) 138 139== Port == 140 141* VSIGetMemFileBuffer(): delay destroying VSIMemFile on bUnlinkAndSeize (#4158, #4179) 142* /vsizip/: fix memory leak in error code path (oss-fuzz #29715) 143* minixml parser: fix performance issue on very large processing instructions (oss-fuzz #37113) 144 145== GDAL algorithms == 146 147* Polygonize: fix self intersection polygon when raster image contains complex holes (#3337, #1158, #3319) 148* OpenCL warper: remove extra double quote character in resampling kernel (#4404) 149 150== GDAL utilities == 151 152* gdalwarp: fix exporting to WKT when a projection that isn't supported in WKT1 is involved (#4133) 153* gdalwarp: allow reprojecting a rater with geotransform = (0,1,0,0,0,-1) (#4147) 154* gdalwarp: slightly change default behavior of unified src band masking when a pixel is evaluate to the nodata value on all bands (#4253) 155* gdal_viewshed: fix incorrect calculation if target height is specified (#4381) 156* gdal_viewshed: fix incorrect progress reporting (#4390) 157* gdal_calc.py - fix `hideNoData` for input: `NoDataValue!='none'`, `hideNoData=True` 158* gdal_fillnodata.py: fix -si option (#4192) 159 160== osgeo_utils == 161 162* util.py - fix get_raster_min_max() (#4312) 163* color_table.py - fix get_color_table_from_raster for ds w/o color table + tests 164 165== GDAL core == 166 167* CPLKeywordParser / IMD parser: accept .IMD files with non-properly quoted values (#4037) 168* IMD writer: properly quote values that have spaces (#4037) 169* rasterio.cpp: fixed progress calculation 170* GetIndexColorTranslationTo(): fix non-exact color matching when palettes don't have the same number of entries (#4156) 171* Block cache: fix potential infinite loop in case of high concurrency and multi-threaded writing (#3848) 172* GDALDataset::GetFileList(): avoid cyclic calls on odd/corrupted datasets... 173* Overview building: fix crash possibility if user interrupting multi-threaded computation 174* GDALDatasetPool: avoid potential crash during destruction (#4318) 175 176== GDAL drivers == 177 178AIGRID driver: 179 * fix crash when accessing twice to a broken tile (#4316) 180 181BAG driver: 182 * ignore pixel at nodata value when updating min/max attributes (#4057) 183 184DERIVED driver: 185 * Derived dataset: copy RPC metadata if it exists (#4048) 186 187ENVI driver: 188 * Open(): use .hdr as an additional extension in priority over a replacement one (#4317) 189 190ERS driver: 191 * avoid long open delay on bogus datasets that reference themselves 192 193GeoRaster driver: 194 * Set the SRID value for the extent when flushing the metadata to the database. (#4110, #4106) 195 196GTiff driver: 197 * set color interpretation on overview bands (#3939) 198 * SRS reading: ignore vertical information when one of the tag has a value in the private user range (#4197) 199 200JPEG driver: 201 * fix wrong detection of bit ordering (msb instead of lsb) of mask band (#4351) 202 203netCDF driver: 204 * fix reading MODIS_ARRAY.nc file that has non CF-compliant way of expressing axis and CRS (#4075) 205 * properly deal with Polar Stereographic in reading and writing (#4144) 206 207NITF driver: 208 * fix writing of COMRAT field in JPEG/JPEG2000 mode, when there are FILE TREs 209 210PCIDSK driver: 211 * fix retrieval of RPC metadata (3.3 regression) (#4118) 212 213PDF driver: 214 * avoid potential nullptr dereference on corrupted datasets (oss-fuzz #28635) 215 * Poppler backend: limit CPU time when reading extremely corrupted file. 216 217SAR_CEOS driver: 218 * fix memory leak (oss-fuzz #35634) 219 220TGA driver: 221 * fix heap buffer overflow (oss-fuzz #35520) 222 223VRT driver: 224 * avoid potential very deep call stack if SourceFilename contains empty string. (oss-fuzz 37530) 225 226ZMap driver: 227 * undeprecate it since we got feedback it is still useful (#4086) 228 229== OGRSpatialReference == 230 231* AutoIdentifyEPSG(): do not add AUTHORITY node if the axis order of the geographic CRS contradicts the one from EPSG (#4038) 232* OGRCoordinateTransformation: fix transformation between CRS that only differ by axis order (#4038) 233* OGRCoordinateTransformation: when a WKT def contradicts its AUTHORITY node, use the WKT def (#4038) 234* OGRCoordinateTransformation: deal with bogus NaN coordinates as output of PROJ (#4224) 235 236== OGR drivers == 237 238DWG driver: 239 * Make Closed AcDb2dPolyline and AcDb3dPolyline to Closed OGRLineString (#4264) 240 241[geomedia, walk] drivers: 242 * Check sql tables for required tables before trying to query them when trying to open a .mdb dataset 243 244FlatGeobuf driver: 245 * fix memory leaks when reading invalid geometries (oss-fuzz #37752, #37834) 246 247GML driver: 248 * fix reading compound curves with gml:ArcByCenterPoint and in a projected CRS in northing/easting axis order (#4155) 249 * avoid read heap-buffer-overflow. (oss-fuzz #35363) 250 251GMLAS driver: 252 * avoid uncaught exception when opening corrupted .xsd 253 254GPX driver: 255 * avoid potential integer overflow on writing (oss-fuzz #30937) 256 257MongoDB3 driver: 258 * build: fix deprecation warnings with mongocxx >= 3.6 259 260MVT driver: 261 * use 'number' instead of wrong 'numeric' when generating metadata tilestats (#4160) 262 * reader: be tolerant to broken points generated by Mapserver 263 264ODBC driver: 265 * improvements regarding DSN 266 * Update ODBC driver metadata 267 268OpenFileGDB driver: 269 * fix reading of raster fields 270 271PGeo driver: 272 * Correctly reflect that non-spatial tables have no geometry, not unknown geometry 273 * Fix "GetNextFeature() returned non NULL feature after end of iteration" errors raised by test_ogrsf 274 * Add more internal tables to block list 275 * Fixes for sql based layers 276 277XLS driver: 278 * Set OLCStringsAsUTF8 capability to TRUE 279 280== Python bindings == 281 282* Build windows python wrappers with -threads argument 283* fix behavior of SetMetadata() when a value is of type bytes (#4292) 284* fix GDALPythonObjectFromCStr() to return a bytes() object rather than a corrupted unicode string when invalid UTF-8 sequences are found 285 286= GDAL/OGR 3.3.1 Release Notes = 287 288The 3.3.1 release is a bug fix release. 289 290== Build == 291 292* configure: fix explicit disabling of geos/sfcgal 293* fix build against OpenEXR 3.0.1 (#3770) 294* fix lack of compilation of nasakeywordhandler.o with some old/non-gnu 295 versions of grep (#3836) 296 297== Port == 298 299* /vsiaz/: avoid appending same chunk several times 300* /vsiaz/: advertise missing AZURE_NO_SIGN_REQUEST option 301* IVSIS3LikeFSHandler::Sync(): add missing lock 302* VSIS3FSHandler::GetOptions(): fix non-XML conformity (fixes 303 https://github.com/postgis/postgis/pull/618#discussion_r652143176) 304* /vsiswift/: Fix openstack swift endpoint detection, add application_credential 305 authentication support (#3960) 306* /vsiswift/: advertise missing options 307* Fix incorrect ODBC type mapping for a number of SQL types 308 309== GDAL utilities == 310 311* gdal_contour: fix bad coordinate order when outputting from raster with 312 geographic CRS to KML driver (#3757) 313* gdalasyncread.cpp: add missing .h to gdal_version include. (#3951) 314 315== Python scripts == 316 317* gdalattachpct.py: and add types hints and init `driver_name` variable 318* osgeo_utils/auxiliary/color_table.py - fix type hints 319* osgeo_utils/auxiliary/array_util.py - add ArrayLike, ScalarLike, 320 ArrayOrScalarLike types (to be used instead of NumpyCompatibleArray, 321 NumpyCompatibleArrayOrReal), removes numpy dependency 322* osr_util.py, gdallocationinfo.py, numpy_util.py - use new types 323* osgeo_utils/auxiliary/osr_util.py - get_srs() - add `default_axis_order` flag 324 (with get and set) to allow the user to change the default; add get_srs_pj(), 325 are_srs_equivalent() support functions 326* osgeo_utils/samples/gdallocationinfo.py - adapt for the new axis_order variable 327* util.py - `get_bands(ovr_idx)` to support also negative `ovr_idx` and resolution 328* osgeo_utils/auxiliary/base.py - fix `num()` 329* osgeo_utils/auxiliary/util.py - fix `get_bands()` for `ovr_idx==0` 330* batch_creator.py - accept also `root: str` 331* gdal_calc.py - fix type hint - color_table: Optional[ColorTableLike] 332* osgeo_utils/auxiliary/color_palette.py - merge read() + read_color_file() 333 logic and fix the functions for reading qlr, qml files; rename some internal 334 functions 335* osgeo_utils/auxiliary/color_table.py - get_color_palette now raises an 336 Exception to indicate a failure 337 338== GDAL core == 339 340* GDALRasterBand::AsMDArray(): fix data axis to SRS Axis mapping in the return 341 of GetSpatialRef() 342* GDALMDArray::AsClassicDataset(): fix RasterIO() when buffer data type is not 343 native data type 344* fixed issue with GDALLoadRPBFile failing when RPB file does not contain 345 errBias or errRand fields 346* GMLJP2v2 writing: fix axis order issue for gml:Envelope (#3866) 347* Overview/rasterio: fix RMS on large Float32 values 348 349== GDAL algorithms == 350 351* Warp kernel: prevent potential int overflows for > 2 GB work buffers 352 353== GDAL drivers == 354 355COG driver: 356 * don't crash if GDALCreateGenImgProjTransformer2() fails 357 358GRIB driver: 359 * add/fill a few GRIB1 ECMWF table to read a ERA5 product 360 * turn debug messages about unknown GRIB1 table as warnings 361 362GTiff driver: 363 * GTiff/COG: fix overviews with NaN nodata value 364 * Fix RAT SetDefaultRAT for GTiff driver (#3783) 365 * when reading NoData value of Float32 dataset, cast it to float to avoid 366 overprecision (#3791) 367 * GTiff signedbyte: do not write 0 values for tiles/strips entirely at a 368 negative nodata value (#3984) 369 * Internal libtiff: fix when writing a IFD with a single tile that is a sparse 370 one, on big endian hosts 371 * Internal libtiff: merge upstream changes to make JPEG-in-TIFF generation work 372 with mozjpeg and libjpeg 9d 373 374HDF5 driver: 375 * multidim API: fix crash when extracting a field from a compound HDF5 data type 376 377netCDF driver: 378 * fix wrong offsetting by -360 of longitude values when huge nodata value found 379 at beginning or end of line 380 * be more restrictive on axis to decide if to advertise a geotransform 381 382PostgisRaster driver: 383 * support for libpq services (#3820) 384 385== OGR core == 386 387* Support multiline WKT geometry input 388* OGRSQL: fix wrong evaluation of attribute filter when a OR with >= 3 clauses 389 is nested inside in another OR 390* OGRSQL: Support ISO-8601 literal dates with IN operator (#3977) 391* OGRFeature::GetFieldAsSerializedJSon(): fix nullptr dereference on empty 392 string list (#3831) 393 394== OGRSpatialReference == 395 396* Fix crash in AutoIdentifyEPSG/GetEPSGGeogCS() on some WKTs (#3915) 397* WKT: prevent putting quotes around spatial CS type 398* Add `DERIVEDPROJCRS` to WKT keywords for `OGRSpatialReference::SetFromUserInput` 399* Support GetLinearUnits for ellipsoidal and spherical coordinate systems that 400 have a height axis (#4030) 401 402== OGR drivers == 403 404FlatGeobuf driver: 405 * accept COORDINATEMETADATA[] construct on reading but ignore it 406 407GeoJSON driver: 408 * GeoJSON writer: emit error msg when geometry type is not supported in 409 GeoJSON (#4006) 410 411GeoPackage driver: 412 * accept CreateField with a column with the fid column name and type=real, 413 width=20, precision=0 414 * add code to correct files with wrong gpkg_metadata_reference_column_name_update 415 trigger definition. 416 417MapInfo driver: 418 * Fix mapping of mapinfo symbol numbers to corresponding OGR symbol IDs 419 420OCI driver: 421 * Fix the Oracle DB connection when user and pwd are empty, while Oracle wallet 422 is used. (#3768) 423 * Don't try to create new layer with TRUNCATE option (#4027) 424 425PLScenes driver: 426 * add PSScene and SkySatVideo item types to conf, and update other item types 427 428Shapefile driver: 429 * fix wrong SRS when reading a WGS 84 SRS with a TOWGS84[0,0,0,0,0,0,0] (#3958) 430 431SQLite driver: 432 * fix crash when calling GetMetadataItem() with domain==nullptr 433 * VirtualOGR module: avoid bad interaction with PROJ 8.1 database handling 434 435VRT driver: 436 * Fix vrt spatial filter for geometry columns with space 437 438== Python bindings == 439 440* Python >= 3.8 import: fix FileNotFoundError when PATH has nonexistent paths 441 on Windows (#3898) 442* fix MDArray.ReadAsArray() with CInt16/CInt32 data type 443* fix crash when reading null strings with MDArray.Read() 444* fix memleak in gdal|ogr|osr.DontUseExceptions() 445 446= GDAL/OGR 3.3.0 Release Notes 447 448== In a nutshell... == 449 450* RFC 77 (https://gdal.org/development/rfc/rfc77_drop_python2_support.html): Drop Python 2 support in favor of Python 3.6 (#3142) 451* RFC 78 (https://gdal.org/development/rfc/rfc78_gdal_utils_package.html): Add a gdal-utils Python package 452* New driver: 453 - STACTA: raster driver to read Spatio-Temporal Asset Catalog Tiled Assets 454* Add /vsiadls/ virtual file system for Azure Data Lake Storage Gen2 455* Improved drivers: DIMAP, NITF 456* Number of improvements in Python bindings 457* Add automatic loading of configuration options from a file 458* Add support for enumerated, constraint and glob field domains in MEM, FileGDB/OpenFileGDB and GeoPackage drivers 459* Deprecation: 460 - Disable by default raster drivers DODS, JPEG2000(Jasper), JPEGLS, MG4LIDAR, FUJIBAS, IDA, INGR, ZMAP and vector driver ARCGEN, ArcObjects, CLOUDANT, COUCHDB, DB2, DODS, FME, GEOMEDIA, GTM, INGRES, MONGODB, REC, WALK at runtime, unless the GDAL_ENABLE_DEPRECATED_DRIVER_{drivername} configuration option is set to YES. Those drivers are planned for removal in GDAL 3.5 461 - Perl bindings are deprecated. Removal planned for GDAL 3.5. Use Geo::GDAL::FFI instead 462* Removal of BNA, AeronavFAA, HTF, OpenAir, SEGUKOOA, SEGY, SUA, XPlane, BPG, E00GRID, EPSILON, IGNFHeightASCIIGrid, NTV1 drivers. Moved to (unsupported) https://github.com/OSGeo/gdal-extra-drivers repository. 463* Continued code linting (cppcheck, CoverityScan, etc.) 464* Bump of shared lib major version 465 466== Backward compatibility issues == 467 468See MIGRATION_GUIDE.txt 469 470== GDAL/OGR 3.3.0 - General Changes == 471 472General: 473 * fix build with recent gcc/clang 474 475Build(Unix): 476 * Support CharLS 2.1 on Debian as well. (#3083) 477 * disable LERC on big-endian hosts, as it is not big-endian ready 478 * gdal-config (non installed): add -I/gnm in CFLAGS 479 * fix compilation failure with gcc < 5 in Elasticsearch driver 480 * configure: Also save LDFLAGS when checking compatibility. 481 * configure: Ensure --with-geos/sfcgal fail if unavailable. 482 * configure: check presence of linux/fs.h for Linux builds 483 * configure: Fix gdal compilation when using proj-8.0.0 and libtiff with static jpeg support 484 * GDALmake.opt.in: in non-libtool LD_SHARED builds, do not link applications against libgdal dependencies, but only against libgdal itself 485 486Build(Windows): 487 * add missing makefile.vc for heif 488 489== GDAL 3.3.0 - Overview of Changes == 490 491Port: 492 * GOA2GetRefreshToken(): avoid nullptr dereference in some cases 493 * /vsicurl/: for debug messages, use the debug key of derived filesystem, such as 'S3' instead of 'VSICURL' 494 * /vsicurl/: fix issue when trying to read past end of file. 495 * /vsicurl/: use less restrictive check for S3-like signed URLs to be usable by OpenIO (#3703) 496 * /vsicurl/: fix handling of X-Amz-Expires type of signed URLs (#3703) 497 * VSICurlStreamingClearCache(): fix cache clearing for /vsiaz_streaming/ 498 * /vsimem/, /vsisubfile/: fix memleak if destroying the C++ handle with delete instead of using VSIFCloseL() (ossfuzz #28422 #28446) 499 * /vsiaz/: fetch credentials from Azure Active Directory when run from a Azure VM when AZURE_STORAGE_ACCOUNT is set. 500 * /vsiaz/: add SAS query string in HTTP Get Range requests. 501 * /vsiaz/: implement GetFileMetadata() / SetFileMetadata() 502 * /vsiaz/: fix Stat('/vsiaz/container') when shared access signature is enabled 503 * /vsis3/, /vsiaz/, /vsigs/: set Content-Type from filename extension for a few select file types 504 * /vsis3/ sync: improve upload performance by setting the default number of threads and increase the chunk size 505 * VSICachedFile::Read(): avoid division by zero if nSize == 0 (#3331) 506 * Make creation of global hCOAMutex thread-safer on Windows (#3399) 507 * Add VSIFOpenEx2L() to be able to specify headers such as Content-Type or Content-Encoding at file creation time 508 * CPLHTTP: Allow to set GSSAPI credential delegation type with GSSAPI_DELEGATION option / GDAL_GSSAPI_DELEGATION config. option 509 * CPLHTTPGetNewRetryDelay(): match 'Operation timed out' curl error 510 * CPLDebug: in CPL_TIMESTAMP mode, display also elapsed time since first trace 511 * Use _stricmp / _strnicmp for Windows EQUAL / EQUALN() macros 512 513Core: 514 * Add automatic loading of configuration options from a file (located in {sysconfdir}/gdal/gdalrc or $(USERPROFILE)/.gdal/gdalrc) 515 * RasterIO: massive speed-up of nearest-neighbour downsampling when the downsampling factor is a integer value 516 * RasterIO: speed-up average downsampling when the downsampling factor is 2 and with Byte/UInt16/Float32 data type 517 * GDALDataset::BlockBasedRasterIO(): make it take into account floating-point window coordinates, as GDALRasterBand::IRasterIO() generic case does (#3101) 518 * GDALOpenEx(): supports OVERVIEW_LEVEL=NONE to indicate overviews shouldn't be exposed 519 * GDALCopyWholeRasterGetSwathSize(): take into account COMPRESSION IMAGE_STRUCTURE metadata item at dataset level (helps for DIMAP) 520 * cpl_userfaultfd.cpp: enable to disable it at runtime with CPL_ENABLE_USERFAULTFD=NO 521 * Python embedding: fix symbol conflicts with python library (#3215) 522 * Python embedding: fix loading in QGIS/Windows (or any process with more than 100 modules) 523 * Python embedding: make it work on Ubuntu 20.04 when python-is-python3 package that symlinks python to python3 is installed 524 * GDALUnrolledCopy_GByte: improve base SSE2 implementation so that specialized SSSE3 is no longer needer 525 * RPC: add parameters ERR_BIAS and ERR_RAND (#3484) 526 527Multidim API: 528 * CreateCopy() multidim: allow to provide array-level creation options by prefixing them with "ARRAY:" 529 * [Set/Get][Offset/Scale](): extend to get/set storage data type. Add 'Ex' suffixed C API functions for that 530 * GDALMDArrayUnscaled: implement Write() to be able to get from unscaled values to raw values 531 * GDALMDArrayUnscaled::IWrite(): speed optimization when writing to netCDF 4 532 * GDALGroup::CopyFrom(): add ARRAY:AUTOSCALE=YES and ARRAY:AUTOSCALE_DATA_TYPE=Byte/UInt16/Int16/UInt32/Int32 creation options 533 * CreateCopy(): allow IF(NAME={name}) to be a full qualified name 534 * GDALExtendedDataType::Create(): do not allow creating compound data type with no component 535 536Algorithms: 537 * Add RMS (Quadratic Mean) subsampling to RasterIO, overviews and warp kernel (#3210) 538 * Warping: improve performance related to PROJ usage for warping of small rasters 539 * Warper ComputeSourceWindow(): avoid potential integer overflow with a ill-behaved transformer/inverse projection 540 * Warper: fix assertion/crash in debug mode in GWKCheckAndComputeSrcOffsets() in some circumstances 541 * Pansharpening: fix wrong band assignment when input multispectral bands not in order 1,2,... and NoData set as PansharpeningOptions and not present in input bands 542 * internal_libqhull/poly.c: avoid int overflow on 32bit 543 * Fix failure in overview generation for certain raster sizes and overview factor, on raster with color table in particular (#3336) 544 * GDALSuggestedWarpOutput2(): avoid potential crash if an approximate transformer is provided 545 546Utilities: 547 * gdalinfo: add -approx_stats in synopsis (#3296) 548 * gdal_translate -tr: make non-nearest resampling honour the specified resolution to avoid potential sub-pixel misalignment when the spatial extent, resolution and dimensions in pixels don't perfectly match 549 * gdal_translate: preserve source block size when not subsetting, and preserve as well COMPRESSION IMAGE_STRUCTURE metadata item 550 * gdal_translate / gdalwarp: do not copy CACHE_PATH metadata item from WMS driver 551 * gdalwarp: make -of COG work with multiple input sources when BigTIFF temporary output is needed (#3212) 552 * gdalwarp: preserve scale/offset settings of source bands to output (#3232) 553 * gdalwarp: address (one situation of) geometry invalidity when reprojecting the cutline to the source image 554 * gdal_create: add a -if option to specify a prototype input file 555 * gdal_rasterize: make -i work again (#3124) 556 * gdaldem TRI: add a -alg Riley option to use the Riley 1999 formula, for terrestrial use cases (#3320), and make it the new default 557 * gdal2tiles: Allow automatic max zoom when min zoom is specified 558 * gdal2tiles: change from cdn.leafletjs.com to unpkg.com for leaflet .css and .js (#3084) 559 * gdal2tiles: take into account --xyz in leafleft output (#3359) 560 * gdal_calc: multiple improvements (nodata, multiple inputs in the same alpha, checks, extent with union/intersection logic, color table, ...) 561 * gdal_edit: Correctly handle the error of parameter '-scale' with no number given 562 * gdal_ls.py: display file mode when available 563 * gdal2xyz.py: various improvements (nodata, band selection, etc.) 564 * pct2rgb.py and rgb2pct.py: added support for an input pct_filename 565 * gdalattachpct.py: new utility from attachpct.py sample 566 * validate_gpkg.py: various improvements 567 * add gdallocationinfo.py sample script 568 569Resource files: 570 * tms_MapML_CBMTILE.json: fix it to use correct resolution / scaleDenominator. Unfortunately this makes it non-usable by gdal2tiles, but still by the COG driver 571 572Multi driver changes: 573 * gdal2tiles/COG/MBTiles/GeoPackage: adjustments for EPSG:3857 output (due to PROJ 8 changes) 574 575BAG driver: 576 * fix inversion of width and height in XML metadata (#3605) 577 578BLX driver: 579 * fix potential free of uninitialized variable in case memory allocation would fail 580 581BYN driver: 582 * relax checks in header bytes to allow products with some unset/invalid fields we don't use 583 584COG driver: 585 * allow customising overview compression type (#3453) 586 587DAAS driver: 588 * fix pixel retrieval of dataset with UInt16 data type and one mask band (#3061), and also use pixelType from bands[] instead of deprecated top-level one 589 590DIMAP driver: 591 * add support for VHR 2020 Multispectral Full Spectrum products 592 * add support for multiple components / subdatasets 593 * set source block size to DIMAP VRT band (helps for performance with JP2KAK) 594 595ECW driver: 596 * fix build with original ECW SDK 5.4 (#2776) 597 598ENVI, Ehdr, and other "raw" drivers: 599 * lower memory requirements for BIP interleave, and improve efficiency (#3213) 600 601FIT driver: 602 * reject negative value PAGESIZE creation option (ossfuzz #26596) 603 604FITS driver: 605 * apply vertical mirroring on reading/writing 606 * add support for creation and update of binary tables 607 * display more informative error message when opening raster dataset in vector mode, or vice-verca 608 * avoid stack smash overflow with 32 bit Linux builds in GetRawBinaryLayout() 609 * set physical filename when opening subdataset 610 611GRIB driver: 612 * fix reading subfields reusing the bitmap of a previous one (#3099) 613 * degrib: avoid erroneous unit conversion when section 4 has vertical values coordinates (#3158) 614 * degrib: add surface type 150 = Generalized Vertical Height Coordinate (#3158) 615 * Update MRMS Local Table to v12 (#3328) 616 * fix writing of ComplexPacking with nodata values and a single valid value (#3352) 617 618GTiff driver: 619 * Internal libtiff resync with libtiff 4.3.0. Includes: 620 - tif_lerc.c: fix encoding of datasets with NaN values (#3055) 621 - TIFFStartStrip(): avoid potential crash in WebP codec when using scanline access on corrupted files (ossfuzz #26650) 622 * Export JPEG compression tags to metadata 623 * Report PREDICTOR in IMAGE_STRUCTURE dataset metadata domain (when it is set) 624 * avoid setting compoundCRS name to 'unknown' when the GTCitationGeoKey is absent 625 * better parse VerticalCitationGeoKey that is in the form 'VCS Name = foo|...' 626 * rely on libtiff for LERC codec instead of internal libtiff-only codec previously 627 * avoid GetSpatialRef() to return non-NULL on dataset with GCPs (#3642) 628 629HDF5 driver: 630 * fix reading files whose HDF5 signature is not at offset 0 (#3188) 631 632HFA driver: 633 * fix reading SRS with NAD83 favors, like 'NAD83(CORS96)' 634 635JP2KAK driver: 636 * JP2KAKCreateCopy(): add validation of BLOCKXSIZE/BLOCKYSIZE to avoid Coverity warning about division by zero (CID 1086659, 1086660) 637 638JPEG driver: 639 * add support for reading FLIR (infrared) metadata and thermal image 640 * read XMP tag from EXIF and expose its content in xml:XMP metadata domain 641 * CreateCopy(): add a warning when writing a non-CMYK 4-band dataset, and improve doc 642 * switch internal libjpeg internal memory allocator to default (malloc/free) (#3601) 643 644LercLib (third_party): 645 * fix portability issue on non-Intel platforms 646 647MRF driver: 648 * Restore raw Lerc1 detection (#3109) 649 * Support LERC1 compression improvements with non-finite values (#3335) 650 651netCDF driver: 652 * fix reading netCDF4/HDF5 files whose HDF5 signature is not at offset 0 (#3188) 653 * accept relative variations in X/longitude and Y/latitude spacing of up to 0.2% for float variables or 0.05% for double. Add a GDAL_NETCDF_IGNORE_EQUALLY_SPACED_XY_CHECK config option to ignore those checks if needed (#3244, #3663) 654 * open /vsimem/ files without requiring Linux userfaultfd mechanism 655 * Set scope for raster/vector-only options in driver metadata 656 * multidim: add a GROUP_BY=SAME_DIMENSION option to GetGroupNames() 657 * change the 'No UNIDATA NC_GLOBAL:Conventions attribute' from a warning to a debug message 658 659NITF driver: 660 * Add support for SNIP TREs: CSRLSB, CSWRPB, RSMAPB, RSMDCB, RSMECB, SECURA and SNSPSB 661 * Add xml:DES metadata domain and DES creation option (#3153) 662 * Add support for ISO8859-1 fields in NITF TREs 663 664NWT_GRD driver: 665 * fix portability issue on non-Intel platforms 666 667OGCAPI driver: 668 * add missing Windows build support 669 * fixes to handle links without type, in the coverage code path (Rasdaman use case) 670 * fix when coverage uses a compoundCRS with a time component (#3665) 671 672PCIDSK driver: 673 * resynchronization of PCIDSK SDK with the internal repository maintained by PCI 674 * make GetMetadataItem() returns the same const char* for a given key (while SetMetadata/SetMetadataItem is not called) 675 676PDS4 driver: 677 * update value of <parsing_standard_id> for TIFF/BigTIFF to what is expected by PDS4 IM (#3362) 678 679RMF driver: 680 * Better support for sparse files. Fill null tiles with NoData value. 681 * Fix portability issues on non-Intel platforms 682 683TileDB driver: 684 * Add support for array versioning (#3293) 685 * do not try to identify /vsis3/ files ending with .tif 686 * add /vsigs/ support 687 688VRT driver: 689 * add a <UseMaskBand>true</UseMaskBand> element of <ComplexSource> to allow compositing of overlapping sources (#1148) 690 * AddBand() support BLOCKXSIZE and BLOCKYSIZE options; serialize/deserialize block size as attributes of VRTRasterBand element 691 * VRTPansharpenedDataset: fix crash when the spectral bands have no nodata value, but we have one declared in PansharpeningOptions, and when the VRTPansharpenedDataset exposes overviews (#3189) 692 * close sources at dataset closing (#3253) 693 694WCS driver: 695 * fix memory leak in error code path (ossfuzz #28345) 696 697WMS driver: 698 * tWMS: improves usability with NASA GIBS services (#3463) 699 * properly deal with northing,easting ordered CRS in WMS 1.3.0 when using connection string being a GetMap URL request (#3191) 700 * add option to specify HTTP Accept header 701 * Use noDataValue on empty blocks (#3375) 702 * Let pass expected NoDataValue to MRF for reading data (#3388) 703 * Update default values for VirtualEarth minidriver 704 705WMTS driver: 706 * Map CURLE_FILE_COULDNT_READ_FILE to 404 (#2941) 707 708XYZ driver: 709 * support reading datasets organized by columns, such as the ones of https://www.opengeodata.nrw.de/produkte/geobasis/hm/dgm1_xyz/dgm1_xyz 710 711== OGR 3.3.0 - Overview of Changes == 712 713Core: 714 * Add UUID string field subtype 715 * OGRFeature::GetFieldAsString() and GeoJSON output: do not output Float32 with excessive precision 716 * IsPolarToWGS84(): make detection of polar projections more specific 717 * OGR SQL: fix potential crash or incorrect result on multi column ORDER BY (#3249) 718 * Expose prepared geometry API to C and in SWIG bindings 719 * OGRGeometry::ExportToJson(): takes into account CRS and axis order to swap 720 * OGRShapeCreateCompoundCurve(): fix memory leak in error code path. (ossfuzz #28923) 721 * Add OGR_G_Normalize() and bind it to SWIG (#3506) 722 * OGRPoint: make it empty when x or y is NaN (refs #3542) 723 * Avoid SWIG generating exception on OGRGeometry::IsValid (#3578) 724 * OGRGeometry::exportToWkt(): rebustify implementation against out-of-memory, and make it slightly more efficient for some huge geometries 725 * OGRSimpleCurve: fix copy constructor / assignment operator of empty Z/M geometries in some cases 726 * OGRGeometry: make sure that the return type of clone() for all classes is their own type 727 * OGRGeometry: make getGeometryRef() in subclasses return a better type 728 * OGRGeometry: Handle WKB > 2 GB. Add OGR_G_WkbSizeEx() and OGR_G_CreateFromWkbEx() 729 * Add OGRSimpleCurve::removePoint() 730 731OGRSpatialReference: 732 * Fix exportToWkt() after morphToESRI() on Geographic/Projected 3D CRS. 733 * GetEPSGGeogCS(): make it use database lookups if needed (and avoid misidentification of 'NAD83(CORS96)' for example 734 * exportToWKT(): add a ALLOW_ELLIPSOIDAL_HEIGHT_AS_VERTICAL_CRS=YES option to allow export of Geographic/Projected 3D CRS in WKT1_GDAL as CompoundCRS with a VerticalCRS being an ellipsoidal height (for LAS 1.4) 735 * Add OGRCoordinateTransformation::TransformWithErrorCodes() and OCTTransform4DWithErrorCodes() to get PROJ (>= 8) error codes 736 * Add OCTCoordinateTransformationOptionsSetDesiredAccuracy() and OCTCoordinateTransformationOptionsSetBallparkAllowed(), and map them to SWIG 737 * GetEPSGGeogCS(): fix when projected CRS can't be exported to WKT2 738 * SetFromUserInput() allow https:// when loading CRS from opengis.net (#3548) 739 * Add Get/Set for PROJ auxiliary database filenames (#3590) 740 * Delegate to PROJ (>= 8.1) import from OGC URN and URL (OSGeo/PROJ#2656) 741 742Utilities: 743 * ogrinfo: report field domain type and add '-fielddomain name' switch 744 * ogr2ogr: add -emptyStrAsNull option 745 * ogr2ogr: add propagation of field domains 746 * ogr2ogr: add a -resolveDomains switch 747 748AmigoCloud driver: 749 * Fix date/datetime field type handling. 750 * Fix json encoder to handle nested strings. (#3483) 751 * Fix SQL delete (#3512) 752 753CAD driver: 754 * fixes for big endian hosts 755 756DGN driver: 757 * avoid assert() in case of very low memory condition (ossfuzz #27006) 758 759DGN and DGNv8 driver: 760 * Support for reading User Data Linkage data (#3089) 761 762DXF driver: 763 * Skip hatch polyline segments with one vertex 764 765Elasticsearch driver: 766 * support WKT geo_shape encoding, and make GetExtent() use server-side query for geo_shape if ES >= 7.8 and XPack is installed 767 * fix GetFeatureCount() when SetAttributeFilter() is a ElasticSearch JSON filter 768 * add open options for timeouts and maximum number of features 769 770FlatGeobuf driver: 771 * add editable capabilities 772 * fix crash when writing a geometry collection with an empty polygon (ossfuzz #29291) 773 * fix crash in GetFileList() on a dataset opened in update mode 774 * fix crash when writing features larger than 32 KB 775 776GeoPackage driver: 777 * Add support for GeoPackage 1.3 (creation still defaults to 1.2) 778 * Fix handling of invalid SRS ID (#3286) 779 * always write milliseconds in a DATETIME field for strict compliance with the spec (#3423) 780 * no longer create triggers on gpkg_metadata and gpkg_metadata_reference 781 * Take into account OGR_CURRENT_DATE config option in gpkg_metadata_reference table (fixes #3537) 782 * Remove creation support for data_type='aspatial' legacy tables 783 * fix update of gpkg_metadata_reference when renaming or dropping a column, and this table references it 784 785GeoJSON driver: 786 * writer: avoid invalid .0 suffix to be added to numeric values like 1eXX (#3172) 787 * writer: avoid CPLDebug() messages when writing BBOX in RFC7946 mode 788 * reader: accept files starting with {"bbox":...,"features":[... (#1537) 789 * reader: fix opening of file containing a Feature object and starting with a large properties (fixes #3280) 790 791GML driver: 792 * fix layer extent with wrong axis order in some cases (#3091) 793 * recognize AIXM ElevatedSurface to be able to proper axis swapping (#3091) 794 * GML geometry parsing: handle km unit for radius of arcs (#3118) 795 * fix nullptr dereference on invalid GML (ossfuzz #28040) 796 797LVBAG driver: 798 * Update to the new XSD schema (#3324) 799 * Minor fixes (#3467, #3462) 800 * Convert MultiPolygon to Polygon (#3581) 801 802MapInfo driver: 803 * Support for font and custom symbols (#3081) 804 * Explicitly set pen cap and join params for pen tools 805 806NAS driver: 807 * don't skip prescan, if NAS_GFS_TEMPLATE is given, but still don't write .gfs 808 809NGW driver: 810 * Add extensions support. 811 * Add alternative field name support. 812 813OAPIF driver: 814 * report url of STAC asset items 815 816ODBC driver: 817 * Remove text trimming behavior 818 819PGeo driver: 820 * don't silently ignore rows with NULLs for Memo fields 821 822PostGIS driver: 823 * on reading, instantiate SRS from EPSG when possible instead of srtext to avoid axis order issues, and strip TOWGS84 on known datum (#3174) 824 * when detecting srid from table contents, ignore null geometries. 825 826Shapefile driver: 827 * writer: do not write coordinates with non-finite values (#3542) 828 829SQLite driver: 830 * recognize col decltype 'INTEGER_OR_TEXT' as a string 831 * better detection of view column types 832 833SXF driver: 834 * fix reading on big-endian architectures 835 836WFS driver: 837 * fix CreateFeature() for WFS 2 (#3323). And for WFS 2, make CreateFeature() and SetFeature() use GML 3 838 839XLSX driver: 840 * fix read cells with inline formatting (#3729) 841 842== SWIG Language Bindings == 843 844All bindings: 845 * avoid nullptr deref if providing some NULL arguments to gdal.Debug() and gdal.GOA2xxxxx() methods 846 * fix return type of Dataset.SetSpatialRef() 847 * fix expansion of ODsCRandomLayerWrite constant 848 * add missing GRA_Sum constant (#3724) 849 850CSharp bindings: 851 * Replace ToInt32 calls with ToInt64 to prevent an ArithmeticException when executing against large images in a 64-bit context. 852 * Sign csharp assemblies as part of the netcore build process, verify signature during tests (#1368) (#3332) 853 * fix 'make' target on Linux/Mac 854 855Java bindings: 856 * Add CoordinateTransformation.TransformPointWithErrorCode() 857 858Python bindings: 859 * Add Dataset.WriteArray() 860 * Make Dataset.ReadRaster() and ReadAsArray() accept floating-point coordinates (#3101) 861 * Make methods such as WriteRaster() accept a bytearray object 862 * Return bytearray object as return of ReadRaster(), ReadBlock(), VSIFReadL(), MDArray.Read(), ... 863 * Add a band_list optional argument to Dataset.ReadAsArray() 864 * Make methods such as WriteRaster() accept any memoryview compatible of PyBUF_SIMPLE 865 * Make ogr.GetFieldAsBinary(), geom.ExportTo[Iso]Wkb() return a bytearray instead of a bytes object 866 * Make ReadRaster() and ReadBlock() accept an existing buf_obj buffer 867 * Make ReadAsArray(buf_obj = ar) fail if ar.flags.writable is False 868 * Make WriteRaster() accept a numpy array (when used without the buf_ overriders) 869 * Allow list or array types as input of MDArray.Write() for 1D arrays 870 * Prepare all samples scripts for reuse 871 * Add osgeo_utils.auxiliary submodules for auxiliary functions. 872 * [epsg_tr|esri2wkt|gcps2vec|gcps2wld|gdal_auth|gdalchksum|gdalident|gdalimport|mkgraticule].py - move undocumented untested utils to the `samples` subfolder where they belong 873 * Implement correct behavior for copy.copy() and copy.deepcopy() on a Geometry object (#3278) 874 * Add CoordinateTransformation.TransformPointWithErrorCode() 875 * Remove deprecated NumPy aliases for standard types. 876 * Better validation of Band.ReadAsArray() input shape (#3466) 877 * Dictionary typemap: accept key/value not being strings 878 * Add batch_creator.py, a Windows batch file creator 879 * Fix 'make generate' target on Unix builds (#3696) 880 881= GDAL/OGR 3.2.0 Release Notes = 882 883== In a nutshell... == 884 885 * New GDAL drivers: 886 - ESRIC: ESRI bundle cache read-only driver (#2663) 887 - HEIF: read-only driver for HEIF/HEIC file. Requires libheif 888 - OGCAPI: tiles/maps/coverage raster/vector experimental driver 889 - TGA: read/only driver to read TGA image file format 890 * New OGR drivers: 891 - LVBAG: read-only support for Dutch LVBAG/Kadaster 2.0 vector format 892 * New utilities: 893 - gdal_create: to create/initialize a new raster file 894 * Other improvements: 895 - Multi-threaded overview computation (if GDAL_NUM_THREADS set) 896 - COG driver: TILING_SCHEME creation option 897 - OpenFileGDB driver: add support for using spatial indexes 898 - BAG driver: multiple improvements 899 - FITS driver: multiple improvements (MEF and binary table support) 900 - NITF driver: support for SNIP TREs 901 - OGRFieldDefn: support UNIQUE constraint 902 - OGRFieldDefn: support a AlternativeName (alias) property (#2729) 903 - Python bindings: move implementation of scripts (except gdal2tiles) in osgeo.utils package to be reusable 904 - Faster GTIFF Deflate compression/decompression through libdeflate (if using internal libtiff or libtiff > 4.1.0) 905 * Removed functionality: 906 - Python bindings: old-style "import gdal" is no longer available. Use "from osgeo import gdal" instead 907 - API_PROXY mechanism: likely never used for real usage. 908 - Removal of GDAL and OGR ArcSDE drivers 909 910== Backward compatibility issues == 911 912See MIGRATION_GUIDE.txt 913 914== New installed files == 915 916 * data/tms_NZTM2000.json 917 * data/tms_LINZAntarticaMapTileGrid.json 918 * data/tms_MapML_APSTILE.json 919 * data/tms_MapML_CBMTILE.json 920 * data/template_tiles.mapml 921 922== GDAL/OGR 3.2.0 - General Changes == 923 924General: 925 * fix building against Jasper 2.0.19 and 2.0.21 926 * Add optional libdeflate dependency for faster Deflate compression/decompression 927 928Build(Unix): 929 * GNUmakefile: split long line to avoid 32K character limitation on MSYS2 930 * configure: Configure proj dependencies before proj (#2512) 931 * configure. add $with_proj_extra_lib_for_test n LIBS when detecting PROJ when no path is specified (#2672) 932 * configure: fix CharLS 2.1 detection on case insensitive filesystems (#2710) 933 * configure: fix --with-hdf4 and --disable-all-optional-drivers (#2740) 934 * GNUmakefile: make 'all' target an alias of the default one to avoid potential double build of OGR objects (fixes #2777) 935 * configure: add ODA lib requirements to compile GDAL with ODA 2021 (#2812) 936 * configure: fix detection of minor version number of Poppler with the new YY.MM.X numbering scheme (#2823) 937 * configure: fix detection of Spatialite 5 build against PROJ >= 6 (#2826) 938 * configure: fix detection of libtiff and libjpeg on mingw (fixes #2881) 939 * configure: fix linking order for Informix libraries 940 * configure: support CharLS 2.1 on Debian as well. (#3083) 941 * configure: disable LERC on big-endian hosts, as it is not big-endian ready 942 * fix compilation issue of gdallinearsystem.cpp on Slackware 14.2 (#2883) 943 * Update scripts/gdal-bash-completion.sh 944 945Build(Windows): 946 * nmake.opt: mention shell32.lib in PROJ_LIBRARY 947 * nmake.opt: Add a PYEXEC var to specify the python executable when building GDAL/bindings on Windows. 948 * nmake.opt: add hint about adding ole32.lib to PROJ_LIBRARY for PROJ 7.1 when static linking (#2743) 949 * only expand CPL_DLL to__declspec(dllexport) when building GDAL (shared configuration) (#2664) 950 * add missing Windows build support for EXR driver 951 * generate_vcxproj.bat: add vs2019 compatibility (#2676) 952 * fix build in AVC driver in VSIL_STRICT_ENFORCE mode 953 954== GDAL 3.2.0 - Overview of Changes == 955 956Port: 957 * cpl_json.h: change the Type and PrettyFormat 'enum' to 'enum class', so that Double doesn't conflict with a C enum from OGDI include files 958 * cpl_json.h: add an iterator on array items, and fix const correctness of LoadUrl() method 959 * Add logging capabilities for /vsicurl, /vsis3 and the like. Add VSINetworkStatsGetAsSerializedJSON() and VSINetworkStatsReset(), CPL_VSIL_NETWORK_STATS_ENABLED and CPL_VSIL_SHOW_NETWORK_STATS config options 960 * /vsis3/ and other cloud file system: allow random-write access (for GTiff creation in particular) through temporary local file when CPL_VSIL_USE_TEMP_FILE_FOR_RANDOM_WRITE config option is set to YES 961 * /vsis3/: recognize AWS_PROFILE in addition to obsolete AWS_DEFAULT_PROFILE (#2470) 962 * /vsis3/: use IMDSv2 protocol to retrieve IAM role and credentials 963 * /vsis3/: add CPL_VSIS3_USE_BASE_RMDIR_RECURSIVE=YES for some S3-like APIs do not support DeleteObjects 964 * /vsis3/: additional retry on failures on write operations 965 * VSIS3FSHandler::SetFileMetadata(): fix memleak 966 * Improved AWS EC2 detection on Windows 967 * /vsicurl/: defer reading of CPL_VSIL_CURL_CHUNK_SIZE and CPL_VSIL_CURL_CACHE_SIZE config options until a /vsicurl/ access (or other network filesystem) is done 968 * /vsiaz/: do not consider directory absence as an error situation for Rmdir() 969 * /vsiaz/: fix OpenDir()/NextDirEntry() that returned S_IFDIR for regular files 970 * /vsiaz/: update to latest version of API (2019-12-12) 971 * /vsiaz/: add a AZURE_NO_SIGN_REQUEST=YES config option for unsigned public buckets and AZURE_SAS to provided Shared Access Signature. Both to be used with AZURE_STORAGE_ACCOUNT (#2766) 972 * /vsiaz/: ReadDir(): fix caching of file properties with space in the name 973 * VSISync(): implement chunking of large files for /vsiaz/ upload when CHUNK_SIZE and NUM_THREADS are set 974 * VSISync(): split large files on download/upload for /vsis3/ and /vsiaz/ (#2786) 975 * VSISync(): add a SYNC_STRATEGY=OVERWRITE to always overwrite target file 976 * RmdirRecursive(): use OpenDir() in recursive mode to have more efficient directory deletion on /vsiaz/ for example 977 * /vsimem/: fix normalization of slashes in filenames to avoid potential infinite loop in VSIDirGeneric::NextDirEntry() 978 * VSI plugin: add caching option (#2901) 979 * VSI plugin: add callback to explicitly list sibling files (#2980) 980 * CPLWorkerThreadPool: add capability to create several job queues 981 * CPLStrtodDelim(): recognize '1.#SNAN' as a NaN value 982 * CPLAtoGIntBigEx(): use strtoll() when available since POSIX doesn't guarantee atoll() will return ERANGE (and libmusl for example does not return it) 983 * CPLIsFilenameRelative(): treat "scheme://.." filenames as absolute 984 * Add GDAL_CURL_CA_BUNDLE environment variable (#3025) 985 * CPLHTTPFetch: fix reading FORM_FILE_PATH on Windows (#2971) 986 * Add CPLHTTP[Push|Pop]FetchCallback() and CPLHTTPSetFetchCallback() callback mechanisms to replace curl implementation (to be used by QGIS) 987 * VSI_CACHE: do not trust unreliable file size from underlying layer as in fixes #3006 988 * CPLMultiPerformWait(): use curl_multi_poll() for curl >= 7.66 989 990Core: 991 * Overview building: add multi-threading of resampling computations when GDAL_NUM_THREADS config option is set 992 * add a TileMatrixSet class to parse OGC Two Dimensional Tile Matrix Set 17-083r2 JSON encoded definitions, and add NZTM2000 and LINZAntarticaMapTileGrid definitions 993 * Add GDALAutoCreateWarpedVRTEx function to GDAL API to accept extra options for transformer (#2565) 994 * add a global thread pool mechanism 995 * GDALDataset::IRasterIO(): Fixes wrong IO of subpixel shifted window (#2057) 996 * GDALDriver::QuietDelete(): partially revert 3.1 commit f60392c8 997 * gdal_priv.h: export EXIFExtractMetadata() for plugin uses 998 * DumpJPK2CodeStream(): fix reported offset of EOC marker when PSOT = 0 (#2724) 999 * Overview generation: fix progress percentage when using USE_RRD=YES (#2722) 1000 * reader_geo_eye.cpp and reader_pleiades.cpp: avoid potential issue with overuse of per-thread CPLPath static buffers 1001 * GDALDataset::IRasterIO(): make it try overviews when non-nearest resampling is done before doing RasterIOResampled() on full resolution dataset 1002 * Workaround issue with UTF-8 precomposed vs decomposed encodings on MacOS filesystems that affect sidecar file discovery (#2903) 1003 * GDALBuildVRT(): add support for sources such as MEM dataset or non-materialized VRT files 1004 * GDALDataset::BlockBasedRasterIO(): make it take into account floating-point window coordinates, as GDALRasterBand::IRasterIO() generic case does (#3101) 1005 1006Multidim API: 1007 * GetMask(): use underlying parent data type as much as possible, instead of double, to avoid potential performance issues 1008 * GetMask(): optimize when we know the mask is always at 1, and when output buffer is contiguous Byte 1009 * Add GDALGroupOpenMDArrayFromFullname() and GDALGroupOpenGroupFromFullname(), and exose them to SWIG (#2790) 1010 * Add GDALGroup::ResolveMDArray() and map it to C and SWIG 1011 * Add GDALMDArrayGetStatistics(), GDALMDArrayComputeStatistics() and GDALDatasetClearStatistics() 1012 * Make sliced and transpose arrays access the attributes of their source array 1013 * add GDALMDArrayAdviseRead() and implement it in netCDF driver for DAP datasets 1014 1015Algorithms: 1016 * Warper/transformer: avoid error about invalid latitude when warping a dataset in Geographic CRS whose north/south lat is > 90deg (#2535) 1017 * Warper: use gcore global thread pool when doing multithreaded operations 1018 * Warper: fix average resampling that lead to very wrong results in some circumstances (#2665) (3.1.0 regression) 1019 * Warper: ComputeSourceWindow(): modify extra source pixel computation in anti-meridian warping situations 1020 * Warper: fix computation of kernel resampling width when wrapping across the antimeridian 1021 * Warper: emit error message instead of assertion if cutline is not a (multi)polygon (#3037) 1022 * RPC transformer: Add RPC_DEM_SRS option to override SRS of RPC_DEM. (#2680) 1023 * TPS transformer: fix handling of duplicated GCPs (fixes #2917) 1024 * Polygonize: make sure not to use dummy geotransform 1025 1026Utilities: 1027 * gdalinfo, gdal_translate, gdalwarp: add a -if switch to be able to specify input driver(s) (#2641) 1028 * gdalinfo: json output: report nan/inf values as a string instead of invalid JSON 1029 * gdalinfo: json output: do not escape forward slash 1030 * gdal_translate (and GTiff driver): copy XMP metadata unless -noxmp is specified (#3050) 1031 * gdal_viewshed: adjust computation of observer position (#2599) 1032 * gdaldem: ignore 'nv' entry in color file if there is no nodata value in input file 1033 * gdalwarp: fix crash if warping a dataset without source or target CRS when -ct is specified (#2675) 1034 * gdalwarp: improve logic for selecting input overview when target bounds and resolution are specified 1035 * gdalwarp: better guess of target resolution when target extent is specified (#2754) 1036 * gdalbuildvrt: for easier understanding, and replicate gdal_translate -of VRT behavior, clamp xSize/ySize of SrcRect/DstRect if outside raster dimensions. Not a fix per se 1037 * gdalbuildvrt: add support for automatically declaring virtual overviews in very restricted situations 1038 * gdalbuildvrt: fix -srcnodata / -vrtnodata handling in -separate mode (#2978) 1039 * gdal_grid: Addition of -tr option (#2839) 1040 * gdal_contour: major speed up in polygon mode (#2908) 1041 * gdal2tiles: make general cmd line switches like --formats work without exception (#2522) 1042 * gdal2tiles: fix issue in nativezoom computation with --profile=raster on a raster whose size is below the tile size 1043 * gdal2tiles: fix --xyz with -p raster, fix KML generation with --xyz (#2463) and update OpenLayers export to OpenLayers 6.3.1 1044 * gdal2tiles: add -w mapml output, and possibilities to use custom tiling scheme / profile 1045 * gdal2tiles.py: fix generation of tiles at high zoom levels when input is small (#2896) 1046 * gdal2tiles.py: make sure configuration options specified with --config are passed to worker processes (#2950) 1047 * gdal2tiles.py: fix --profile=raster on a non-georeferenced image (#2998) 1048 * gdal2tiles: change from cdn.leafletjs.com to unpkg.com for leaflet .css and .js (#3084) 1049 * gdal_merge.py: fix rounding of source coordinates, when they are very close to an integer, which would otherwise result in a one-pixel shift 1050 * gdal_calc: support multiple calc arguments to produce a multiband file (#3003) 1051 * gdal_calc.py: raise exception in case of I/O error. Fixes QGIS #36867 1052 * gdal_sieve.py: do not write geotransform to the target if the source doesn't have one (#2830) 1053 * gdalcompare.py - export def find_diff(golden_file, new_file, check_sds=False) into a function for reuse 1054 * gdalcompare.py: fix floor division in Python 3 1055 * validate_cloud_optimized_geotiff.py: update to support SPARSE_OK=YES files 1056 1057Multi driver changes: 1058 * Driver metadata: fix XML errors in option declarations and add testing (#2656) 1059 * JPEG2000 drivers: extent signature for JPEG2000 codestream to avoid false positive detections. 1060 1061LERC: 1062 * Fixed a bug in Lerc2 decoder (https://github.com/Esri/lerc/pull/129) 1063 * Fixed a bug in Lerc1 decoder (https://github.com/Esri/lerc/pull/121) 1064 1065AAIGrid: 1066 * mention dataset name in errors (#3051) 1067 1068BAG driver: 1069 * add support for reading georeferenced metadata 1070 * remove support for interpolated resampled raster 1071 * add support for COUNT VALUE_POPULATION strategy 1072 * support reading other single resolution layers on the root node 1073 * add support for Create()/warp operation 1074 * add support for reading the tracking list (with OGR API) 1075 * fix reporting of vertical CRS 1076 * fix missing nodes at right and top edges of supergrids in resampling mode (#2737) 1077 * allow it to be used in multidimensional mode through the generic HDF5 driver 1078 * fix for big endian arch 1079 * avoid crash on non-standard dataset 1080 1081COG driver: 1082 * add support for using custom TILING_SCHEME using OGC 17-083r2 JSON encoded definitions 1083 * add ZOOM_LEVEL_STRATEGY creation option 1084 * add WARP_RESAMPLING and OVERVIEW_RESAMPLING to override general RESAMPLING option (#2671) 1085 * write information about tiling scheme in a TILING_SCHEME metadata domain 1086 * add a SPARSE_OK=YES option to create sparse files 1087 * TIFF/COG: report content of the header ghost area in metadata 1088 * skip reprojection when source dataset matches reprojection specifications 1089 * fix rounding issue when computing overview dimensions 1090 * fix crash if passing an invalid (warp) resampling 1091 * fix crash when source dataset is non-Byte/non-UInt16 with a color table (fixes #2946) 1092 1093DIMAP driver: 1094 * fix loading when R1C1 tile is not present (#2999) 1095 1096DTED driver: 1097 * add support for EGM08 for dted metadata "E08" (#3047) 1098 1099E00grid driver: 1100 * avoid recursive call in _GetNextSourceChar(). Fixes ossfuzz#25161 1101 1102ECW driver: 1103 * fix related to network files with SDK >= 5.5 (#2652) 1104 1105ENVI driver: 1106 * write nodata value in 'data ignore value' header field 1107 * add support for writing south-up / rotation=180 datasets 1108 1109FIT driver: 1110 * reject negative value PAGESIZE creation option (ossfuzz#26596) 1111 1112FITS driver: 1113 * add support for reading multiple-extension FITS files through subdatasets 1114 * add support for reading binary tables 1115 * initialize default geotransform 1116 * do not emit error if no georeferencing is found 1117 1118GPKG driver: 1119 * perf improvement: when inserting more than 100 features in a transaction in an existing layer, switch to a deferred insertion strategy for spatial index entries 1120 * on reading of gridded coverage data with PNG tiles, select -FLT_MAX as the nodata value (#2857) 1121 * add support for using custom TILING_SCHEME using OGC 17-083r2 JSON encoded definitions 1122 * increase limitation of number of tables to 10000, and make it configurable through OGR_TABLE_LIMIT config option as for vector tables 1123 * more robust and simple logic to build overviews and compute overview factor (#2858) 1124 * make ST_Transform() fallback to EPSG code when no SRS with the given srs_id can be found in gpkg_spatial_ref_sys 1125 * CreateSpatialIndex(): slight optimization by bumping batches to 500K features 1126 * make SELECT DisableSpatialIndex(...) run faster 1127 * fix when writing a tile with uniform negative values or values > 65535 (when nodata is set) in PNG tiles (#3044) 1128 * fix GDAL 3.0 regression regarding some update scenarios (#2325) 1129 1130GRASS driver: 1131 * simplified to GRASS GIS 7+ only (#2945) 1132 * fix reading GRASS groups (#2876) 1133 1134GRIB driver: 1135 * correctly report PDS template number for messages with subgrids (#3004) 1136 * avoid rejecting valid product due to security check 1137 * fix retrieval of nodata value for GRIB1 products (GDAL 3.1 regression, #2962) 1138 * fix reading subfields reusing the bitmap of a previous one (GDAL 3.1 regression, #3099) 1139 * Degrib g2clib: rename symbols of our internal modified copy (#2775) 1140 1141GTiff driver: 1142 * add read support for overviews/masks referenced through TIFFTAG_SUBIFD (#1690) 1143 * add WEBP_LEVEL_OVERVIEW config option to set WebP compression level on overviews 1144 * fix wrong direction for half-pixel shift with GCPs and PixelIsPoint convention 1145 * for Geodetic TIFF grids (GTG), report the 'grid_name' metadata item in the subdataset description 1146 * fix reading/writing GEO_METADATA TIFF tag on big-endian 1147 * fix importing WGS_1984_Web_Mercator / ESRI:102113 (#2560) 1148 * use gcore global thread pool when doing multithreaded operations 1149 * allow multi-threaded JPEG compression. This can help a bit 1150 * fix potential crash when generating degenerate 1x1 overviews 1151 * in CreateCopy() mode, avoid closing and re-opening the file handle 1152 * add earlier check to bail out when attempting JPEG compression with paletted image 1153 * LERC codec: do not write TIFFTAG_LERC_PARAMETERS several times as it cause spurious directory rewrites, and breaks for example COG creation 1154 * LERC codec: fix encoding of datasets with NaN values (#3055) 1155 * SRS reader: interpret infinite value in GeogInvFlatteningGeoKey as 0 (fixes PROJ #2317) 1156 * support hidden SHIFT_ORIGIN_IN_MINUS_180_PLUS_180=YES open option used by GDALOpenVerticalShiftGrid() 1157 * Internal libtiff: updated to latest upstream master version 1158 * Internal libgeotiff: updated to latest upstream master version 1159 1160HDF4 driver: 1161 * do not report SDS when there are EOS_SWATH or EOS_GRID in it. Add LIST_SDS open option 1162 * multidim: fix issue when reading transposed array, and duplicate attribute names (#2848) 1163 1164HDF5 driver: 1165 * add support for new 'CSK 2nd generation' (CSG) (#2930) 1166 * multidim: fixes for big endian host 1167 * multidim: fix performance issue when reading from sliced array 1168 1169HFA driver: 1170 * do not report TOWGS84 when reading SRS with WGS84, NAD27 or NAD83 datums (unless OSR_STRIP_TOWGS84 config option is set to NO) (fixes QGIS #36837) 1171 1172ISCE driver: 1173 * avoid crashing division by zero on corrupted datasets. Fixes ossfuzz#24252 1174 1175ISIS3 driver: 1176 * make sure that in-line label size is at least 65536 bytes (#2741) 1177 1178JP2KAK driver: 1179 * add ORGtparts creation option 1180 1181JP2OpenJPEG driver: 1182 * add support for generating files with PLT marker segments (OpenJPEG > 2.3.1) 1183 * add support to enable multi-threaded encoded (OpenJPEG > 2.3.1) 1184 * writer: acquire input data in background thread 1185 * fix reading overviews on Sentinel2 PVI files (343x343 size, with 8x8 tiles) (#2984) 1186 1187LCP driver: 1188 * add extension checking in Identify() (#2641) 1189 1190MRF driver: 1191 * add support for interleaved LERC (#2846) 1192 * LERC V1 support for NaN and other bug fixes (#2891) 1193 * missing data return on initial caching of nodata tiles (#2913) 1194 * Fixes for Create() (#2923) 1195 1196NetCDF driver: 1197 * GrowDim(): fix issue with non-ASCII filename on Windows 1198 * fix setting offset and scale in CreateCopy() 1199 * allow a NETCDF:http://example.com/my.nc DAP dataset to be opened 1200 * multidim: fix performance issue when reading from sliced array 1201 * multidim: optimize reading into a data type 'larger' than the native one 1202 * multidim: identify the indexing variable of a dimension through the 'coordinates' attribute of other variables (#2805) 1203 * multidim: add CHECKSUM and FILTER creation options. Make SetRawNoDataValue() use nc_def_var_fill() 1204 * multidim: fix retrieval of missing_attribute, etc... when reading mask 1205 1206NITF driver: 1207 * add support for various TREs for Spectral NITF Implementation Profile (SNIP): MATESA, GRDPSB, BANDSB, ACCHZB, ACCVTB, MSTGTA, PIATGB, PIXQLA, PIXMTA, CSEXRB, ILLUMB, CSRLSB, CSWRPB 1208 * Add nested variable support in xml:TRE 1209 1210PAux driver: 1211 * avoid ingesting large binary unrelated files (found when investigating #2722) 1212 1213PCRaster driver: 1214 * fix Create() mode by propagating eAccess = GA_Update (#2948) 1215 1216PDF driver: 1217 * update to pdfium/4272 with https://github.com/rouault/pdfium_build_gdal_3_2 1218 1219PDS driver: 1220 * take into account FIRST_STANDARD_PARALLEL for Mercator projection (#2490) 1221 1222RMF driver: 1223 * Better support for sparse files. Fill null tiles with NoData value. 1224 1225RS2 driver: 1226 * remove support for CharLS compression since it is removed from upstream librasterlite2 1227 1228SAFE driver: 1229 * deal correctly with WV swaths (#2843) 1230 1231TileDB driver: 1232 * support for pixel interleave and single formats (#2703) 1233 1234TSX driver: 1235 * fix issue with reading dataset in .zip file on Windows (#2814) 1236 1237VICAR driver: 1238 * fix for Basic compression and non-Byte type on big endian host 1239 * avoid potential null-dereference on corrupted dataset. Fixes ossfuzz#24254 1240 1241VRT driver: 1242 * Add support for explicit virtual overviews. Can be built with gdaladdo --config VRT_VIRTUAL_OVERVIEW YES (#2955) 1243 * VRTDataset::IRasterIO(): allow source overviews to be used when non-nearest resampling is used, and the VRT bands don't expose overviews (#2911) 1244 * fix VRTRasterBand nodata handling when creating implicit overviews (#2920) 1245 * round src/dst coordinates to integer within 1e-3 margin 1246 * prevent potential infinite recursion in VRTDataset::IRasterIO() 1247 1248WMS driver: 1249 * Add a GDAL_MAX_CONNECTIONS config option 1250 * WMS cache: add a <CleanTimeout> in <Cache> XML configuration (#2966) 1251 1252WMTS driver: 1253 * Add support for DataType tag in service description XML (#2794) 1254 1255== OGR 3.2.0 - Overview of Changes == 1256 1257Core: 1258 * Add unique constraints to OGRFieldDefn in core, GML, PG, PGDump, GPKG, SQLite and VRT drivers (#2622) 1259 * Add support for field AlternativeName to OGRFieldDefn, read alias in openfilegdb driver (#2729) 1260 * Add GDALDataset::AbortSQL (#2953) 1261 * OGRFeature::GetFieldAsString(): remove 80 character limitation when formatting string/integer/real lists (#2661) 1262 * Add OGRLayerUniquePtr and OGRExpatUniquePtr aliases (#2635) 1263 * OGRSQL: take into account second part of arithmetic expression to correctly infer 1264 result type. 1265 * OGRSQL: support constructs 'A AND B AND C ... AND N' with many successive AND ((#2989) 1266 * OGRSQL: Fixed buffer overflow in BuildParseInfo for SQL query when joining multiple tables that each have implicit FID columns. 1267 * ogr_geometry.h: export OGRWktOptions class (#2576) 1268 * ogr_swq.h: type nOperation as swq_op 1269 1270OGRSpatialReference: 1271 * Make GetAuthorityCode('PROJCS') work on a WKT1 COMPD_CS with a VERT_DATUM type = 2002 (Ellipsoid height) 1272 * Make OSRGetPROJSearchPaths() return the value set by OSRSetPROJSearchPaths() 1273 * exportToProj4(): make it add +geoidgrids= when possible (needs PROJ 7.2) 1274 * Add OSRDemoteTo2D() and expose it to SWIG 1275 * fix GetUTMZone() to work on 3D projected CRS 1276 * exportToWkt(): accept FORMAT=WKT2_2019 (alias of WKT2_2018) 1277 * fixes to avoid crashes with datum ensemble objects (needs PROJ 7.2) 1278 * Avoid warnings in GetProjTLSContextHolder() when PROJ resource path is not already set (PROJ #2242) 1279 * ogr_proj_p.cpp: make sure init() is called in OSRPJContextHolder() constructor to avoid potential use of default NULL PROJ context (#2691) 1280 * fix issue with PROJ context and OSRCleanup() (#2744) 1281 * Fix exportToWkt() after morphToESRI() on Geographic/Projected 3D CRS. But only works with PROJ 7.2 1282 1283Utilities: 1284 * ogrinfo: report field unique constraint 1285 * ogrinfo: report field alternative name 1286 * ogrinfo: report SUBDATASETS domain 1287 * ogrinfo/ogr2ogr: fix issues with -sql @filename where SQL comments are not at start of line (#2811) 1288 * ogr2ogr: bump default value of -gt to 100 000 1289 1290Multi driver changes: 1291 * Avoid copy&paste implementations of GetNextFeature() relying on GetNextRawFeature() through OGRGetNextFeatureThroughRaw class 1292 * make sure GetNextFeature() always return nullptr after the first time it did (ie no implicit ResetReading()) in GPKG, SQLite, PCIDSK, MSSQLSpatial and MySQL driver 1293 * better support for layers with field names differing by case in OGR SQL, SQL SQLite and VRT 1294 1295CSV driver: 1296 * do not try to read .csvt if CSV filename has no extension (#3006) 1297 1298DXF driver: 1299 * Propagate PaperSpace field from INSERTs to subfeatures 1300 * Fix wrong transformer composition for ASM entities 1301 * do not rely on tail recursion and avoid potential big stack calls when eliminated 999 comment lines. Fixes ossfuzz#22668 1302 1303Elasticsearch driver: 1304 * make OVERWRITE_INDEX=YES work properly by re-creating the index afterwards 1305 1306ESRIJSON driver: 1307 * fix GetFeatureCount() and GetExtent() 1308 1309FileGDB/OpenFileGDB drivers: 1310 * qualify DateTime values with UTC timezone when <IsTimeInUTC>true</IsTimeInUTC> is present in layer metadata (#2719) 1311 1312FileGDB driver: 1313 * generate layer definition XML with HasSpatialIndex=true to better reflect reality. 1314 * add support for reading and writing field alternative names 1315 * simplify spatial filtering, and apply full intersection in GetFeatureCount() instead of BBOX one, so as to be similar to OpenFileGDB 1316 1317FlatGeoBuf driver: 1318 * Metadata extensions (#2929) 1319 * fix illegal use of std::vector (#2773) 1320 * make GetExtent() work on feature write (#2874) 1321 1322GeoJSON driver: 1323 * fix opening of file starting with {"coordinates" (#2720) 1324 * fix opening of file starting with {"geometry":{"coordinates" (#2787) 1325 * RFC7946 writer: fix processing of geometry that covers the whole world (#2833) 1326 * writer: use JSON_C_TO_STRING_NOSLASHESCAPE when available to avoid escaping forward slash, and very partial resync of internal libjson-c to get it 1327 1328GML driver: 1329 * add a WRITE_GFS=AUTO/YES/NO open option (#2982) 1330 * writer: correctly format OFTDate and OFTDateTime fields (#2897) 1331 * hugefileresolver: add missing xmlns:xlink to make Xerces parser happy 1332 * fix typo in VFR GFS files BonitovaneDilRizeniId -> BonitovanyDilRizeniId (#2685) 1333 * when encountering XML issue, defer emission of error message until we return a NULL feature, so as to avoid to confuse ogr2ogr (#2730) 1334 * XSD parser: recognized unsignedLong data type 1335 * avoid 'Destination buffer too small' error to be emitted on /vsicurl_streaming/ URLs with filters coming from the WFS driver 1336 * fix layer extent with wrong axis order in some cases (#3091) 1337 * recognize AIXM ElevatedSurface to be able to proper axis swapping (#3091) 1338 1339GMLAS driver: 1340 * avoid running out of file descriptors in case of big number of layers 1341 * fix so as to get same unique ids on big-endian arch 1342 1343GPKG driver: 1344 * add a PRELUDE_STATEMENTS open option that can be used for example to attach other databases 1345 * add a DATETIME_FORMAT=WITH_TZ/UTC dataset creation option (defaults to WITH_TZ) to specify how to deal with non-UTC datetime values (#2898) 1346 * hide view "geometry_columns" 1347 * fix wrong RTree _update3 trigger on existing files (QGIS #36935) 1348 1349GRASS driver: 1350 * simplified to GRASS GIS 7+ only (#2945) 1351 1352GTM driver: 1353 * on write, do not consider TZFlag=1 (localtime) as a timezone value (refs #2696) 1354 * on write, take into correctly timezone value to convert to UTC (refs #2696) 1355 1356LIBKML driver: 1357 * do not advertise RandomWrite capability (unless on a update layer, when datasource is created with UPDATE_TARGETHREF creation option) (fixes QGIS 39087) 1358 1359MDB driver: 1360 * fix warning when parsing 'false' boolean value 1361 1362MITAB driver: 1363 * fix reading and writing of Transverse Mercator projections based on KKJ 1364 * .tab: fix writing empty/null Time fields (#2612) 1365 * fix reading and writing of non-metre linear units 1366 * Support for font and custom symbols in mitab (#3081) 1367 1368MVT driver: 1369 * fix 'random' failures in test_ogr_mvt_point_polygon_clip() by sorting sub-directory names, and also revise logic to attribute FID when reading directories (#2566) 1370 * writing: fix crashes in multi-threading mode (#2764) 1371 1372NAS driver: 1373 * add support for new GID7 updates 1374 * also filter for wfs:member (as in GID7) 1375 * do not try to write a .gfs file when NAS_GFS_TEMPLATE is specified 1376 1377netCDF driver: 1378 * simple geometries: fix for big-endian 1379 1380OAPIF driver: 1381 * avoid re-adding user query parameters if they are found in URLs returned by the API (#2873) 1382 * do not list raster or coverage collections 1383 * support opening of a collection when its URL is non-standard such as in MOAW workflows 1384 * fix memory leak when reading schema from .xsd 1385 1386ODBC driver: 1387 * Allow mdb files to be opened with the generic ODBC driver on non-windows platforms 1388 * Fix w.r.t fallback to alternative Access ODBC driver name 1389 * Fix DSN string construction for Windows Access ODBC driver, template candidate preference order (#2878) 1390 * Correctly handle datetime fields provided by the mdbtools ODBC driver 1391 * Read MS Access databases with ACCDB and STYLE extensions (#2880) 1392 1393OCI driver: 1394 * fix server 12.2 version detection 1395 1396ODS driver: 1397 * do not create files with Zip64 extension, to avoid compatibility issue with LibreOffice Calc 1398 * avoid potential deep call stack in formula evaluation. Fixes ossfuzz#22237 1399 1400OpenFileGDB driver: 1401 * add support for reading .spx spatial index file 1402 * more reliable .gdbtable header reading 1403 1404OSM driver: 1405 * remove limitation to 10000 nodes per way (#849) 1406 * Replace hard-coded tag filter with variable 1407 * Optionally disable early tag filtering 1408 * Don't filter out explicit attributes (#2603) 1409 1410PDF driver: 1411 * write correctly attribute object dictionary when there is no field to write, and read back correctly broken files we generated before (#2624) 1412 1413PDS4 driver: 1414 * fix potential double free if RenameFileTo() fails 1415 1416PGeo driver: 1417 * Quote DBQ value in PGEO driver template to avoid issues opening MDB paths with spaces 1418 * Fixes to automatic ODBC driver installation (#2838) 1419 * Read non-spatial tables (#2889) 1420 1421PG driver: 1422 * Make ogr2ogr -f PostgreSQL work when using PG:service= syntax (actually a workaround in GDALDriver::Create()) 1423 * take into potential generated columns (PostgreSQL >= 12) to avoid issuing INSERT, UPDATE or COPY statements with them 1424 * PG (and PostgisRaster driver): set the application name in PostgreSQL connections (#2658) 1425 * apply standard libpq parsing rules for connection parameters for our custom connection parameters (schemas, active_schemas, tables) (#2824) 1426 1427PGDump driver: 1428 * change default value of POSTGIS_VERSION layer creation option to 2.2 1429 1430SEGY driver: 1431 * avoid opening FITS files 1432 1433Shapefile driver: 1434 * do not claim to support DateTime data type 1435 * when several candidate SRS are found with confidence >= 90%, take the one from EPSG (contributes to fixes QGIS #32255) 1436 * SHPRestoreSHX: fix for (64 bit) big endian 1437 1438S57 driver: 1439 * apply update to DSID_EDTN field (#2498) 1440 * report attributes tagged as list in S57 dictionaries as StringList fields. Add a LIST_AS_STRINGLIST open option that can be set to OFF to restore GDAL < 3.2 behavior (#2660) 1441 1442SXF driver: 1443 * fixes for big-endian 1444 1445SQLite/Spatialite driver: 1446 * add a PRELUDE_STATEMENTS open option that can be used for example to attach other databases 1447 1448WFS driver: 1449 * avoid /vsicurl_streaming/ URL to be truncated in case of big filter (but the server might reject it) 1450 1451XLSX driver: 1452 * do not create files with Zip64 extension, to avoid compatibility issue with LibreOffice Calc 1453 * fix numeric precision issue when reading datetime that could lead to an error of 1 second (#2683) 1454 1455== SWIG Language Bindings == 1456 1457All bindings: 1458 * OGRDriver.CopyDataSource(): check that source dataset is not NULL 1459 * validate range of resample_alg algorithm (#2591) 1460 * expose CPLSetCurrentErrorHandlerCatchDebug() as gdal.SetCurrentErrorHandlerCatchDebug() 1461 1462CSharp bindings: 1463 * Add build support for .NET core (#1368) 1464 * SWIG 4.0 compatibility (#2802) 1465 * Adding typemaps C# for wrapper_GDALWarpDestDS and wrapper_GDALWarpDestName (#2621) 1466 * Expose Dataset.GetSpatialRef() (#2620) 1467 * Expose OSR.GetCRSInfoListFromDatabase (#1665) 1468 * Fixed implementation of Utf8BytesToString (#2649) 1469 1470Java bindings: 1471 * update minimum source/target Java version to 7 to please JDK 11 (#2594) 1472 * make 'install' target copy maven artifacts (gdal-X.Y.Z.jar) to /usr/share/java 1473 1474Perl bindings: 1475 1476Python bindings: 1477 * Move implementation of scripts in osgeo.utils package to be reusable 1478 * Fix Python2 install to be synchronous and report all errors (#2515) 1479 * add a colorSelection='nearest_color_entry'/'exact_color_entry' argument to gdal.DEMProcessing() 1480 * accept string as value for gdal.Translate() metadataOptions and creationOptions argument when providing single option (#2709) 1481 * gdal.Info(): make options=['-json'] work properly 1482 * remove use of deprecated PyObject_AsReadBuffer() function 1483 * makefile.vc: remove '-modern -new_repr' on python target for SWIG 4 compatibility 1484 * add GDALMDArray.shape attribute and GDALMDArray.ReadAsMaskedArray() method 1485 * make Dataset.ReadRaster() and Dataset.ReadAsArray() accept floating-point coordinates (#3101) 1486 1487= GDAL/OGR 3.1.0 Release Notes = 1488 1489== In a nutshell... == 1490 1491 * Implement RFC 75: support for multidimensional arrays in MEM, VRT, netCDF, HDF4, HDF5 and GRIB drivers. Read/write for MEM and netCDF. Read/only for others. Add gdalmdiminfo and gdalmdimtranslate utilities. 1492 * Implement RFC76: add capability of writing vector drivers in Python 1493 * New GDAL drivers: 1494 - COG: write-only, for Cloud Optimized GeoTIFF 1495 - EXR: read/write driver, relying on OpenEXR library 1496 - ISG: read-only, for geoid models of the International Service for the Geoid 1497 - RDB: read-only, for RIEGL Database .mpx RDB 2 files (#1538) (needs proprietary SDK) 1498 * New OGR drivers: 1499 - FlatGeoBuf: read-support and creation (#1742) 1500 - MapML: read/write driver for experimental web spec 1501 * Improved drivers: 1502 - OAPIF driver (renamed from WFS3): updated to OGC API - Features 1.0 core spec 1503 - GTiff: improve performance of internal overview creation 1504 - GTiff: GeoTIFF 1.1 support 1505 - Shapefile driver: add read/creation/update support for .shz and .shp.zip 1506 - netCDF vector: read/write support for CF-1.8 Encoded Geometries (#1287) 1507 - VICAR: multiple improvements and write support (#1855) 1508 - DDS: add read support 1509 * Other improvements: 1510 - gdalwarp: accept output drivers with only CreateCopy() capabilities 1511 - gdal_viewshed: new utility for viewshed algorithm 1512 * Remove GFT driver now that the online service no longer exists (#2050) 1513 * New Sphinx-based documentation 1514 * Multiple security related fixes (ossfuzz) 1515 * Continued code linting (cppcheck, CoverityScan, etc.) 1516 * Compatibility with GDAL 3.0: 1517 - C and C++ API: backward compatible changes 1518 - C ABI: backward compatible changes 1519 - C++ ABI: modified 1520 - Functional changes: see MIGRATION_GUIDE.TXT 1521 1522== GDAL/OGR 3.1.0 - General Changes == 1523 1524Build(Unix): 1525 * use pkg-config for libxml2 detection (#2173) 1526 * fix detection of libpq in a non-standard place (#1542) 1527 * do not use absolute path in linking command. Helps Mac OS and cygwin builds (#2075) 1528 * Enable Bash completions and control installation 1529 * GDALmake.opt.in: silence datarootdir warning 1530 * Doc: allow user full control over installation directory 1531 * fix JVM detection for HDFS support on MacOS (#2313) 1532 * Remove #define HOST_FILLORDER from cpl_config.h (#2345) 1533 * Added search for proj library in lib64 directory. 1534 * configure: strip -L/usr/lib and similar from netCDF, MySQL, GEOS and SFCGAL lib path (#2395) 1535 * configure: remove useless -lproj from --with-spatialite detection 1536 1537Build(Windows): 1538 * parametrize number of CPUs for parallel builds with CPU_COUNT variable (#1922) 1539 * add HDF5_H5_IS_DLL variable to switch the scenario when HDF5 is built as a DLL (#1931) 1540 * add POSTFIX that defaults to _d for GDAL .dll, .lib and .pdb for DEBUG builds (#1901) 1541 * Fix issues with thread_local and C++ objects that don't work well with DLL on Windows 1542 1543All: 1544 * Support Poppler 0.82, 0.83, 0.85 1545 1546== GDAL 3.1.0 - Overview of Changes == 1547 1548== Algorithms == 1549 1550* Warper: add sum resampling method (#1437) 1551* Average resampling (warp and overview/translate): use weighted average for border source pixels 1552* GDALReprojectImage(): properly take into account source/target alpha bands 1553* GDALCreateReprojectionTransformerEx(): do not emit error if reverse transformation fails, and fix crash when trying to use null reverse transformation 1554* Warper: fix GDAL 2.3 regression in a situation with source nodata value, multiple bands and nearest resampling where the logic to detect which source pixels are nodata was inverted (#1656) 1555* GWKAverageOrModeThread(): reject invalid source pixels for average/q1/q3/mode/min/max resampling (#2365) 1556* Multithreaded warper: make sure a transformer object is used by the thread which created it (#1989). This workarounds a PROJ bug also fixed per https://github.com/OSGeo/PROJ/pull/1726 1557* Contour: fix SegmentMerger list iterator skipping and out of bounds error (#1670) 1558* Contour: fix (over) precision issue when comparing pixel value to NoData on Float32 rasters (#1987) 1559* Contour: add sanity checks for interval based contouring, in case the dataset contains extreme values regarding the settings, which would lead to a lot of memory allocations / too large computation time 1560* TPS warper: enhance precision without armadillo support (#1809) 1561* RPC warper: fix issue when source image has a geotransform (#2460) 1562* GDALRasterizeGeometries(): fix potential integer overflow / memory allocation failure, depending on GDAL_CACHEMAX and raster dimensions (#2261) 1563* Rasterize: speed optimization for geometry collections (#2369) 1564* GDALContourGenerate(): propagate raster acquisition error (#2410) 1565 1566== Port == 1567 1568* /vsitar/: support >100 character file names (#1559) 1569* /vsitar/: accept space as end of field terminator 1570* /vsigz/: fix seeking within .gz/.tgz files larger than 2 GB (#2315) 1571* /vsicurl (and derived filesystems): fix concurrency issue with multithreaded reads (#1244) 1572* /vsicurl/: avoid downloading one extra block when the end offset is just at a chunk boundary 1573* /vsicurl/: fix CPL_VSIL_CURL_ALLOWED_EXTENSIONS with query string (#1614) 1574* /vsicurl/: allow 'Connection timed out' CURL errors as candidate for HTTP retry 1575* /vsicurl/: GetFileSize(): when HEAD request does not return Content-Length header, retry with GET 1576* /vsis3/: for a long living file handle, refresh credentials coming from EC2/AIM (#1593) 1577* /vsis3/: invalidate cached non-existing file is AWS_ config options are changed in the meantime (#2294) 1578* /vsis3/ /vsigs/ /vsiaz/: implement Rename() first doing a copy of the original file and then deleting it 1579* /vsis3/ and similar: add a NUM_THREADS option to Sync() for parallelized copy 1580* AWS: Fix error in loading ~/.aws/config file (#2203) 1581* VSISync(): when copying from /vsis3/ to /vsis3/ (or /vsigs/->/vsigs/, /vsiaz/->/vsiaz/), use CopyObject() method to use server side copy 1582* VSISync(): make file copying from /vsis3/ actually use /vsis3_streaming/ to reduce number of GET requests 1583* VSISync(): add a CHUNK_SIZE option to Sync() to split large objects and get parallelization of their download and upload 1584* Add VSIUnlinkBatch() for batch deletion of files, and add optimized /vsis3/ implementation 1585* Add efficient VSIRmdirRecursive() implementation for /vsis3/ 1586* Add VSIGetFileMetadata()/VSISetFileMetadata() and implement them to get/set HTTP headers, and AWS S3 object tagging 1587* /vsis3/ and other network filesystems: avoid useless network requests when we already got a directory listing (#2429) 1588* /vsiswift/: V3 authentication method, handling auth token expiration 1589* /vsimem/: make Rename() error if destination file is not in /vsimem/ 1590* /vsizip/ writing: in ZIP64 mode, also advertise 45 as the version in the central directory (avoids a warning from 'zip' utility) 1591* Add CPLCanRecode function and use it in MITAB, Shape and SXF drivers to decide when to advertise UTF-8 capability 1592* CPLConfigOptionSetter: only reset thread-locale value, not global one 1593* CPLJSONObject::GetType(): return Long when the value doesn't fit on a int32 1594* CPLJSON: distinguish Null type from Unknown/invalid type 1595* CPLEscapeString(): escape double-quote for CPLES_URL 1596* Add a CPLCondTimedWait() 1597* cpl_safemaths.hpp: safe + and * for GUInt64 1598* Add CPLJSonStreamingWriter class 1599* Add cpl_error_internal.h with logic with error accumulator 1600* Add VSIOverwriteFile() 1601* Add CPLLaunderForFilename() 1602* cpl_error.h: add a CPLDebugOnly() macro that expands to CPLDebug() only for DEBUG builds 1603* QuietDelete: support expliciting the drivers to use 1604 1605== Core == 1606 1607* Block cache: fix corruption on multithreaded write on datasets (#2011) 1608* GDALInvGeoTransform(): make it work with scale and rotation/skew coefficients of small absolute value (#1615) 1609* GDALCopyWholeRasterGetSwathSize(): fix potential int overflows for big values of GDAL_SWATH_SIZE or GDAL_CACHEMAX 1610* PAMRasterBand: add presence flag for Offset and SetScale so that GetOffset()/GetScale() properly reports if they are defined in PAM 1611* GDALDefaultOverviews::BuildOverviews(): fix typo in detection of 1x1 overview (#1730) 1612* Fix precision loss at GDALResampleChunkC32R with complex data 1613* Fix precision loss at GDALComputeBandStats with complex data 1614* Proxy pool: Load band block sizes if not provided at creation. Fixes floating point exception on copy overviews from PRF dataset to destination dataset. 1615* GTiff and PAM: allow serializing WKT2 for SRS using non-WKT1 compatible projections such as Vertical Perspective (#1856) 1616* RasterIO(): fix non-neareset resampling over nodata blocks (#1941) 1617* Overview dataset (-oo OVERVIEW_LEVEL): expose mask if the source dataset has a mask with overviews 1618* GDALUnrolledCopy<GByte,2,1>: fix SSE2-only implementation (when SSSE3 is not available, on older AMD CPUs) 1619* PAM: support reading GCPs from ESRI GeodataXform in .aux.xml files 1620* Make it possible to call BuildOverviews() on a dataset returned by GDALBuildVRT() 1621* GDALDataset::SetProjection(): re-allow the use of PROJ4 strings (#2034) 1622 1623== Utilities == 1624 1625* GDALInfo(): fix axis order issue in lon,lat corner coordinates, in particular when reading from a .aux.xml with a ProjectedCRS (#2195) 1626* gdal_translate: Make 'gdal_translate foo.tif foo.tif.ovr -outsize 50% 50% -of GTiff' work 1627* gdal_translate: clamp/round source nodata value when not compatible of the target data type. Was already done when using -a_nodata, but not with implicit copy (#2105) 1628* gdalwarp: accept output drivers with only CreateCopy() capabilities 1629* gdalwarp: adjust nodata values, passed with -srcnodata/-dstnodata, and close to FLT_MAX to exactly it (#1724) 1630* gdalwarp: fix wrong axis order when using source/target CRS being a geographic3D CRS such as EPSG:4979, and with vertical shift grid application (#1561, GDAL 3.0 regression) 1631* gdal_contour: remove explicit width/precision=12/3 of the elev field (#1487) 1632* gdal_contour: turn on quiet mode if output dataset is standard output (refs #2057) 1633* gdaldem: avoid potential integer overflow in color-relief mode (#2354) 1634* gdal_calc.py: fixed NaN-streaking in output images when the --allBands option is given to tiled images 1635* gdal_polygonize.py: fix outputting to geojson without explicit -f switch (#1533) 1636* gdalcompare.py: take into account mask bands 1637* gdal_retile.py: add resume option (#1703) 1638* gdallocationinfo: emit verbose error when dataset cannot be opened (#1684) 1639* gdallocationinfo and gdaltransform: print a hint when values are expected from the command line and stdin is an interactive terminal (refs #1684) 1640* Python utilities: fix GetOutputDriverFor() when multiple drivers found (#1719) 1641* gdal2tiles.py: add remaining resample methods 1642* gdal2tiles.py: add option for setting the tile size (#2097) 1643* gdal2tiles.py: add --xyz option to generate tiles in the OSM Slippy Map standard (#2098) 1644* gdal2tiles.py: show warning when running against non-Byte input (#1956) 1645* gdal2tiles.py: update cache calculation (#2020) 1646* gdal2tiles.py: check that min zoom <= max zoom (#2161) 1647* gdal2tiles.py: ignore nodata values that are not in the range of the band data type 1648* gdal2tiles.py: fix hang when --s_srs specified but image lacks georeferencing 1649* gdal_translate / gdalwarp / ogrct: allow dealing with non-WKT1 representable SRS (#1856) 1650* gdal_edit.py: add a -units switch 1651* gdal_edit.py: add -a_ulurll switch 1652* gdal_fillnodata.py/GDALFillNodata: fix crash when smooth_iterations is used, and with some progress functions such as the one used by Python (#1184) 1653* Python scripts and samples: use python3 for shebang (#2168) 1654 1655== Sample scripts == 1656 1657* Add tile_extent_from_raster.py: sample script to generate the extent of each raster tile in a overview as a vector layer 1658* Add gdal_remove_towgs84.py script 1659 1660== GDAL drivers == 1661 1662Multiple drivers: 1663 * GTiff, GPKG, MBTiles, PostgisRaster drivers: share lock of overview dataset with parent dataset (#1488) 1664 * HDF5 and netCDF: fix crash when reading attributes of type string of variable length with NULL values 1665 * CTable2/LOSLAS/NTv1/NTv2: document in metadata that positive longitude shift values are towards west 1666 * Revise raster drivers GDAL_DMD_HELPTOPIC 1667 * JP2KAK and JP2OPENJPEG: fix to read images whose origin is not (0,0) 1668 * Strip TOWGS84 when datum is known, in GTiff, Spatialite and GPKG drivers 1669 1670BAG driver: 1671 * modify way georeferencing is read (particularly pixel sizes and origin) (#1728) 1672 * Backward compatibility for metadata reading for BAG < 1.5 (#2428) 1673 1674BSB driver: 1675 * Report PLY coordinates as a WKT POLYGON in a BSB_CUTLINE metadata item 1676 1677BYN driver: 1678 * fix nodata value for Int32 encoded products 1679 1680DAAS driver: 1681 * accept 4-band RGBA PNG response even when a single band is requested 1682 1683DIMAP driver: 1684 * don't look inside Dataset_Components if Raster_Data is present 1685 * avoid reparsing xml if already a product dimap 1686 * ignore missing strip xml file 1687 1688DDS driver: 1689 * add read support 1690 1691DTED driver: 1692 * Add DTED_APPLY_PIXEL_IS_POINT environment switch (#2384) 1693 * emit a CE_Failure instead of a CE_Warning in case of checksum verification failure (#2410) 1694 * support E96 as well as MSL for COMPD_CS (#2422) 1695 1696EEDA driver: 1697 * fix startTime / endTime comparisons that were incomplete in #1506 1698 1699FITS driver: 1700 * fix memory leaks 1701 1702ENVI driver: 1703 * add read support for reading GCPs (#1528), and fix off-by-one offset on line,pixel on reading GCP 1704 * fix potential use of invalid pointer on some unusual std::string implementations (#1527) 1705 * preserve 'byte order' on update (#1796) 1706 1707GPKG driver: 1708 * support opening subdataset of /vsicurl/ files (#2153) 1709 1710GTiff driver: 1711 * improve performance of internal overview creation (#1442) 1712 * in COPY_SRC_OVERVIEWS=YES, interleave mask with imagery, and add leader/trailer to strile 1713 * optimize read of cloud-optimized geotiffs 1714 * do not generate a TIFFTAG_GDAL_METADATA with color interpretation information for JPEG YCbCr compression 1715 * make -co NUM_THREADS produce reproducible output 1716 * make overview blocksize defaults to same as full-resolution 1717 * move deferred tile/strip offset/bytecount loading to libtiff 1718 * make WEBP_LEVEL to be honored in Create() mode (fixes #1594) 1719 * PushMetadataToPam(): early exit when PAM is disabled, to avoid error messages 1720 * remove support for libtiff 3.X 1721 * set a LAYOUT=COG metadata item in the IMAGE_STRUCTURE metadata domain of the dataset when the hidden feature declarations typical of a COG file are found 1722 * fix memory leak with -co APPEND_SUBDATASET=YES 1723 * fix error message for NBITS != 16 and Float32 1724 * add explicit error message when trying to create a too big tiled TIFF file (refs #1786) 1725 * ensure GDAL PROJ context is used for all libgeotiff functions (requires internal libgeotiff / libgeotiff 1.6) 1726 * make sure that GetMetadataDomainList() doesn't return EXIF when there's no EXIF metadata 1727 * GTIFGetOGISDefn: avoid querying UOM length info when it is KvUserDefined to avoid an error to be emitted 1728 * on CRS reading, avoid unsetting of EPSG code when ProjLinearUnitsGeoKey = Linear_Foot_US_Survey and the CRS also uses that unit (#2290) 1729 * do not write in GeoTIFF keys non-standard projections 1730 * do not write TOWGS84 that come from EPSG codes, unless GTIFF_WRITE_TOWGS84=YES is explicitly set 1731 * GTiff writing: workaround PROJ 6.3.0 bug when writing a EPSG:4937 ETRS89 Geog3D CRS 1732 * GTiff writing: do not write by default EPSG:3857/WebMercator as a ESRI PE string. Fixes 3.0 regression 1733 * avoid crash on single-component file with Whitepoint and PrimaryChromaticities tags 1734 * libtiff: BigTIFF creation: write TileByteCounts/StripByteCounts tag with SHORT or LONG when possible 1735 * Internal libgeotiff: set UOMLength from GeogLinearUnits (for geocentric CRS) (#1596) 1736 * Internal libgeotiff: upgrade to libgeotiff 1.6.0dev to support OGC GeoTIFF 1.1 1737 * Internal libtiff: resync with internal libtiff (post 4.1.0) 1738 1739GRIB driver: 1740 * do not do erroneous K->C unit conversion for derived forecasts whose content is not a temperature, but a derived quantity, such as spread 1741 * avoid erroneous K->C conversion for Dew point depression 1742 * update GRIB tables to degrib 2.24 1743 * add missing entries in MeteoAtmoChem table 1744 * add more values from Table 4.5 in Surface type table 1745 * add support for template 4.48 Optical Properties of Aerosol 1746 * add support for rotated lat-lon grids 1747 * avoid quadratic performance on GRIB2 datasets using subgrids within a single GRIB message (#2288) 1748 1749GXF driver: 1750 * avoid closing the file pointer before being sure this is a GXF driver, otherwise this can prevent the opening of some raw format files (#1521) 1751 1752HDF4 driver: 1753 * fix retrieval of non-string swath and grid attributes 1754 * fix GR support for non-Byte rasters 1755 * remove broken attribute reading 1756 * fixes related to color table 1757 1758HDF5 driver: 1759 * avoid error report of the HDF5 library when _FillValue attribute is missing 1760 * Make GH5_FetchAttribute(CPLString) more robust and able to cope with variable-length string 1761 * type detection: only detect complex data type if the component names start with r/R and i/I (refinement of #359) 1762 * add a way to open datasets split over several files using the 'family' driver 1763 * fix reading single dimension dataset (#2180) 1764 1765HFA driver: 1766 * fix writing of compressed file when a RLE run count is in the [0x4000,0x8000[ range or [0x400000, 0x800000[ (#2150) 1767 1768IGNFHeightASCIIGrid driver: 1769 * fix to read RASPM2018.mnt grid 1770 1771IRIS driver: 1772 * make identification more restrictive to avoid false-positive identification of raw binary formats such as ENVI (#1961) 1773 1774ISIS3 driver: 1775 * extract band name from BandBin group, and wavelength/bandwidth (#1853) 1776 * preserve label in PAM .aux.xml when copying to other formats (#1854) 1777 * add support for PointPerspective projection (#1856) 1778 * add support for Oblique Cylindrical projection (#1856) 1779 1780JP2ECW driver: 1781 * add support for ECWJP2 SDK 5.5 1782 1783JP2OpenJPEG driver: 1784 * Fix multi-threading race condition (#1847) 1785 * fix reading overviews, when tiled API is used, and the dimensions of the full resolution image are not a multiple of 2^numresolutions (#1860) 1786 * fix to return the proper number of bytes read when we read more than 2 GB at once (fixes https://github.com/uclouvain/openjpeg/issues/1151) 1787 1788JP2KAK driver: 1789 * fix issue with multi-threaded reads 1790 * NMAKE: Allow users to tweak/append extras to KAKINC (#1584) 1791 1792JPEG driver: 1793 * fix further calls to RasterIO after reading full image at full resolution (#1947) 1794 * tune sanity check for multiple-scan (QGIS #35957) 1795 * in case of multiscan image and implicit overviews, limit memory consumption 1796 1797KEA driver: 1798 * return error when deleting metadata item rather than crashing (#1681) 1799 * Backport thread safety fixes and nullptr tests from standalone driver (#2372) 1800 1801LOSLAS driver: 1802 * add support for .geo geoid models 1803 1804MEM driver: 1805 * Set access mode to the one required in Open() 1806 1807MRF driver: 1808 * fix relative file name detection 1809 * relax TIFF tile format rules on read 1810 * Accept any known projection encoding 1811 * use PNG library for swapping 1812 * fixes caching MRF issue 1813 1814MrSID driver: 1815 * add MRSID_PLATFORM to frmts/mrsid/nmake.opt 1816 1817netCDF driver: 1818 * improve performance when reading chunked netCDF 4 bottom-up files (read-only) 1819 * correctly parse grid_mapping attribute in expanded form 1820 * allow "radian" value for the X/Y axis units 1821 * very partial workaround for an issue in libnetcdf 4.6.3 and 4.7.0 with unlimited dimensions (refs https://github.com/Unidata/netcdf-c/pull/1442) 1822 * NCDFIsUserDefinedType(): make it work for types in subgroups 1823 * Disregard valid range if min > max (#1811) 1824 * for byte (signed/unsigned) variables, do not report a nodata value if there's no explicit _FillValue/missing_value as recommended by the netCDF specs. And for other data types use nc_inq_var_fill() to get the default value 1825 * do not report nodata if NOFILL is set 1826 * fix bottom-up identification with negative scale_factor for y axis (#1383) 1827 * fix issue when opening /vsicurl/http[s]://example.com/foo.nc filenames (#2412) 1828 * Fix support of WKT1_GDAL with netCDF rotated pole formulation 1829 1830NGW driver: 1831 * Add support for additional raster types and QGIS styles. 1832 * Add more server side attribute filters. 1833 1834NITF driver: 1835 * skip bad UDID data (#1578) 1836 1837NTv2 driver: 1838 * add support for the Canadian NAD83(CRSR)v7 / NAD83v70VG.gvb velocity grid 1839 1840OZI driver: 1841 * fix axis order issue with georeferencing (3.0 regression) 1842 1843PDF driver: 1844 * update to use newer versions of pdfium 1845 1846PDS3 driver: 1847 * report the label in a json:PDS metadata domain 1848 * fix support of Oblique Cylindrical (#1856) 1849 * ix opening of datasets with BSQ organization (or single band), where one band is larger than 2 GB (2.3 regression) 1850 * nasakeywordhandler: fixes to be able to read some labels with metadata items whose value is a list on several lines 1851 * add a GDAL_TRY_PDS3_WITH_VICAR configuration option that can be set to YES so that PDS3 datasets that contain a VICAR label are opened by the VICAR driver 1852 1853PDS4 driver: 1854 * update CART schema to 1D00_1933 and PDS to 1C00 (#1851) 1855 * fix reading side of Mercator and Orthographic 1856 * add a CREATE_LABEL_ONLY=YES creation option, and create a <Header> element (#1832) 1857 * add write support for LAEA projection 1858 1859PNG driver: 1860 * Update internal libpng to 1.6.37 1861 1862PNM driver: 1863 * emit warning if creating file with non-standard extension 1864 1865RasterLite2 driver: 1866 * fix build against latest librasterlite2, and require it 1867 1868RMF driver: 1869 * Add support for PZ-90.11 and GSK-2011 coordinate systems 1870 * Read vertical datum info 1871 * Add translation vertical CS ID to dataset's spatial reference 1872 1873RS2 driver: 1874 * add half-pixel shift to reported GCP line and column numbers (#1666) 1875 1876Sentinel2 driver: 1877 * Add support for exposing Level-2A AOT, WVP, SCL, CLD, SNW data in SAFE_COMPACT format (#2404) 1878 1879TileDB driver: 1880 * add capability to define co-registered attributes per band 1881 * set row-major reads and removed adviseread (#1479) 1882 * added support for raster band metadata 1883 * TILEDB_LIBS added for windows build 1884 * partial updates to existing arrays 1885 * support reading tiles in update mode (#2185) 1886 * use array metadata to store xml (#2103) 1887 * redirect vsis3 calls to tiledb s3 direct calls 1888 * Flush cache in block order for global writes (#2391) 1889 1890TSX driver: 1891 * add PAZ support 1892 1893USGSDEM driver: 1894 * fix reading FEMA generated Lidar datasets whose header is 918 bytes large 1895 1896VICAR driver: 1897 * Support FORMAT=HALF, DOUB and COMP 1898 * Support big-endian order for integer & floating point values 1899 * Support VAX floating-point order 1900 * Support BIP and BIL organizations 1901 * Ignore binary label records (NBL), and properly skip binary prefixes (NBB) 1902 * fix reading of EOL labels with non BSQ organizations, and possible confusion with LBLSIZE of EOL overwriting the main one 1903 * improvements in label reading, and report label in a json:VICAR metadata domain 1904 * read binary prefixes as OGR layer 1905 * add read support for BASIC and BASIC2 compression methods 1906 * add write support 1907 * remove obsolete END-OF-DATASET_LABEL, CONVERSION_DETAILS and PIXEL-SHIFT-BUG metadata items that dates back to 1.X era 1908 1909VRT driver: 1910 * add 'vrt://{gdal_dataset}?bands=num1,...,numN' syntax as a convenient way of creating a on-the-fly VRT with a subset of bands 1911 * VRT warp: do not fail if a block has no corresponding source pixels (#1985) 1912 * VRT Python: also probe libpython3.Xm.so.1.0 (#1660) 1913 * VRT Python: add Python 3.8 compatibility 1914 * avoid erroneous pixel request do be done with KernelFilteredSource 1915 * VRTRawRasterBand: add GetVirtualMemAuto interface to enable mmap io 1916 * fix requesting a downsampling version of the mask band of a source that has masks and overviews 1917 * VRT pansharpening: fix crash when NoData is set and input multispectral bands are separate files (#2328) 1918 * fix IGetDataCoverageStatus() that can cause issue for the use case of https://lists.osgeo.org/pipermail/gdal-dev/2020-April/051889.html 1919 * gdalvrt.xsd: add 'dataAxisToSRSAxisMapping' attribute for GCPList element (#2378) 1920 1921WCS driver: 1922 * pass user-supplied progress function to curl HTTP request when using DirectRasterIO 1923 1924WMS driver: 1925 * IReadBlock(): limit number of tiles downloaded at once 1926 * Use curl_multi_wait instead of socket API (#1789) 1927 * AGS: Remove unused parameters from url 1928 1929== OGR 3.1.0 - Overview of Changes == 1930 1931== Core == 1932 1933* Support API-level precision/round for geometry WKT (#1797) 1934* OGR SQL: make LIKE behave in a case sensitive way from now 1935* OGR SQL: support constructs 'A OR B OR C ... OR N' with many successive OR 1936* SQL SQLite: do not propagate 'IS / IS NOT value' constructs to OGR SQL 1937* SQL SQLite: add support for ST_MakeValid() using OGRGeometry::MakeValid() if not exposed by Spatialite already 1938* Rename swq.h->ogr_swq.h and install it, mark SQL query parse API with 1939CPL_UNSTABLE_API macro (#1925) 1940* SQLite dialect: fix issue when using JOIN on a layer without fast filter count capability 1941* OGRSimpleCurve::getPoints() with XYZM: fix wrong stride used for M array 1942* OGRSimpleCurve: fix reversePoints() and addSubLineString() to take into account M dimension 1943* Add OGR_G_CreateGeometryFromEsriJson() and map it to SWIG 1944* OGRLinearRing::isPointOnRingBoundary(): fix incomplete test that could falsely return true if the point was aligned with a segment, but not between the nodes. Impact correct reconstruction of holes in shapefile driver 1945* OGRGeometryFactory::ForceTo(): fix crash when forcing a MultiPolygon Z/M/ZM to a CompoundCurve (#2120) 1946* OGRGeometryFactory::forceToMultiLineString(): fix for a GeometryCollection of LineStringZ/M/ZM (#1873) 1947* OGRGeometryRebuildCurves(): only try to reconstruct curved geometry if one of the input geometries has really a non-linear portion 1948* curveFromLineString(): make sure to exactly close the compound curve if the input curve is itself closed 1949* GDALDataset::CopyLayer(): fix crash when using DST_SRSWKT option. And also set SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER) 1950* Add OGR_G_RemoveLowerDimensionSubGeoms() 1951 1952== OGRSpatialReference == 1953 1954* Revise how SRS methods deal with TOWGS84. Add OSR_ADD_TOWGS84_ON_IMPORT_FROM_EPSG, OSR_ADD_TOWGS84_ON_EXPORT_TO_PROJ4 and OSR_ADD_TOWGS84_ON_EXPORT_TO_WKT1 configuration options. See https://github.com/OSGeo/gdal/commit/cc02dc4397c7ec43ec4c4b842e5faabe16c54904 for details 1955* SetFromUserInput(): add capability to import PROJJSON 1956* add ExportToPROJJSON() (PROJ >= 6.2) 1957* GetAxis(): make it work with a compound CRS (#1604) 1958* Coordinate transformation: fix invalid output with some input coordinates in EPSG:4326 to EPSG:3857 transformation (3.0 regression) 1959* Coordinate transformation: Coordinate transformation: add a OGR_CT_OP_SELECTION=PROJ/BEST_ACCURACY/FIRST_MATCHING config option. Defaults to PROJ for PROJ >= 6.3 1960* importFromWkt(): emit a CPLError() in case of import failure (#1623) 1961* Add OSRGetAxesCount() to C API and SWIG bindings 1962* Add OSRPromoteTo3D() and map it to SWIG (PROJ >= 7) (#1852) 1963* importFromESRI(): acept COMPD_CS (#1881) 1964* add an internal cache for importFromEPSG() and importFromWkt(). Helps performance for MapServer PROJ6 migration 1965* Add support for Vertical Perspective projection (#1856) 1966* Add a OSRGetPROJSearchPaths() function and a SWIG osr.GetPROJVersionMicro() 1967* Fix use-after-free issue when destroying a OGRSpatialReference object in a thread when another thread has created it but has been destroy in-between 1968* Coordinate transformation: make it work with hacky WKT1 rotated pole from netCDF driver 1969* Add OGR_GeomTransformer_XXXX API that wraps OGRGeometryFactory::transformWithOptions() and expose it to SWIG (fixes #1911) 1970* Fix PROJ usage across fork() calls (#2221) 1971* OGRCoordinateTransformation: correctly deal when transforming CRS that includes +lon_wrap= or similar qualifiers 1972* Add OSRIsDerivedGeographic() 1973* EPSGTreatsAsNorthingEasting(): fix it to properly deal with Polar projected CRS with northing,easting order 1974 1975== Utilities == 1976 1977* ogrinfo: add a -nogeomtype switch 1978* ogrinfo: fix to output WKT2 SRS by default. Was done correctly for several geometry column, but not single one 1979* ogr2ogr: emit better error message when using -f VRT 1980* ogr2ogr: improve performance of -explodecollections on collections with big number of parts 1981* ogr2ogr: avoid non-relevant warning 'Input datasource uses random layer reading, but output datasource does not support random layer writing' when converting one single layer 1982* ogr2ogr: allow to combine -nlt CONVERT_TO_LINEAR and -nlt PROMOTE_TO_MULTI (#2338) 1983* ogr2ogr: add a -makevalid switch (requires GEOS 3.8 or later) and expose it in Python as makeValid=True options of gdal.VectorTranslate() 1984 1985== OGR drivers == 1986 1987Multiple drivers: 1988 * GML/WFS: add support for Date, Time and DateTime fields 1989 * GeoJSONSeq & TopoJSON: avoid false positive detection and errors on unrelated http[s]:// filenames 1990 1991AmigoCloud driver: 1992 * Modify amigocloud URL endpoint. 1993 1994AVCE00 driver: 1995 * fix alternance from sequential to per-FID reading 1996 1997CAD driver: 1998 * Fix read ellipse and arc (#1886) 1999 2000DXF driver: 2001 * Re-add some header and trailer elements that caused compatibility issues with recent Autocad versions (#1213) 2002 * Generate correct HATCH boundary elliptical arc segments for certain start/end angles 2003 * Skip "Embedded Object" sections in 2018 version DXFs 2004 * Specify maximum gap between interpolated curve points, configurable with OGR_ARC_MAX_GAP 2005 * do not error out if trying to create a OGR_STYLE field 2006 * fix handling of SPLINE whose first knot is at a very very close to zero negative (#1969) 2007 * do not discard Z value when reading a HATCH (#2349) 2008 * write (100, AcDbEntity) before (8, layer_name) (#2348) 2009 * Correct handling of "off" and "frozen" layers in blocks (#1028) 2010 2011DWG driver: 2012 * add support for ODA 2021.2 (Windows builds) 2013 2014ElasticSearch driver: 2015 * rename driver to Elasticsearch (s lowercase for search) 2016 * update geometry type name for Points 2017 * Enable support for Elasticsearch 7 (#1246) 2018 * Set 'application/json' in RunRequest() with POST (#1628) 2019 * GeoJSON type field should be mapped as text in ES>=5 2020 * add FORWARD_HTTP_HEADERS_FROM_ENV open option to pass HTTP headers down to the ES server 2021 * translate constructs like CAST(field_name AS CHARACTER[(size)]) = 'foo' to ES query language 2022 2023ESRIJson driver: 2024 * attempt identification of SRS from database entries (#2007) 2025 * do not require a 'geometry' member to be present in a feature 2026 2027GeoJSON driver: 2028 * on writing, format OFTDate and OFTDateTime as ISO 8601 strings rather than OGR traditional formatting 2029 * add a DATE_AS_STRING open option that can be set to YES to disable autodetection of date/time/datetime 2030 * Advertise UTF-8 encoding of strings (#2151). 2031 * report 3D layer geometry types (#1495) 2032 * fix recognizing some documents with members sorted alphabetically (#1537) 2033 * avoid SetFeature() to repeat first feature when looping over features (#1687) 2034 * use VSIOverwriteFile() to fix update of file on Windows (fixes https://github.com/qgis/QGIS/issues/28580) 2035 * Transform MAX_OBJECT_SIZE to runtime environment option - OGR_GEOJSON_MAX_OBJ_SIZE 2036 * on reading of a file that use crs.name = urn:ogc:def:crs:OGC:1.3:CRS84, report EPSG:4326 as we used to do in GDAL 2 (#2035) 2037 * in writing mode, implement GetExtent() (#2269) 2038 * Add ID_GENERATE option for generating missing feature ids (#2406) 2039 2040GeoJSONSeq driver: 2041 * make Open() return successfully only if at least one feature is detected 2042 2043GML driver: 2044 * support reading standalone geometry (#2386) 2045 * fix axis order issue when decoding AIXM ElevationPoint (#2356) 2046 * fix axis order issue with gml:CircleByCenterPoint and gml:ArcByCenterPoint (# 2356) 2047 * fix handling of angles with ArcByCenterPoint and urn:ogc:def:crs:EPSG::4326, and compound curves made of a sequence of straight lines and ArcByCenterPoint in a <segments> (#2356) 2048 2049GPKG driver: 2050 * change default value of OGR_GPKG_FOREIGN_KEY_CHECK to NO, so as to avoid issues in downstream software 2051 * insert more accurate spatial extent in gpkg_contents 2052 * on layer creation, check if the SRS is consistent with its advertise AUTHORITY/ID, and if not do not use official EPSG entries (#1857) 2053 * allow parsing datetime serialized as OGR strings, and emit warnings when unrecognized content is found (#2183) 2054 * when writing a layer of geometry wkbUnknown, make sure to set gpkg_geometry_columns.z/m to 2 when there are geometries with Z/M values (#2360) 2055 2056KML driver: 2057 * set OAMS_TRADITIONAL_GIS_ORDER for SRS returned on returned layers 2058 2059LIBKML driver: 2060 * make it accept /vsigzip/foo.kml.gz files (#1743) 2061 2062MITAB driver: 2063 * Add friendly layer name (description) support. 2064 * Fix creation of long field names in local encoding (#1617) 2065 * don't left truncate numeric values in the .dat when the field formatting is incompatible, but error out (#1636) 2066 * Add custom datum/spheroid parameters export 2067 * Update WindowsLatin2 definition (#1571) 2068 * identify correctly GDA2020 datum 2069 * do not set (by default) TOWGS84 when reading a known Datum 2070 * cleanup management of update flag (#2170) 2071 2072MSSQLSpatial driver: 2073 * Fix handling empty geometries (#1674) 2074 * Fix handling mixed geometries (#1678) 2075 * avoid GetExtent() to mess with GetNextFeature() statement, so that ogrinfo -al works properly 2076 2077MVT driver: 2078 * make CONF option accept a filename as well 2079 * reduce memory usage when processing big geometries (#1673) 2080 2081MySQL driver: 2082 * Add SRID to geometry when creating layer table (#1015) 2083 * use INFORMATION_SCHEMA.ST_GEOMETRY_COLUMNS to get SRSId 2084 2085NAS driver: 2086 * disable generation of .gfs file in read-only file systems (or intended to be), similarly to GML driver 2087 2088netCDF driver: 2089 * add read/write support for CF-1.8 Encoded Geometries 2090 * add support for vector products Sentinel3 SRAL MWR Level 2 2091 2092NGW driver: 2093 * Fix dataset access mode 2094 * Add support for layers geometry types with Z 2095 2096OAPIF driver (previously WFS3): 2097 * updated to OGC API - Features 1.0 core spec (#1878) 2098 * correctly handle user query string parameters in connection URL (#1710) 2099 * add persistent curl session for better performance 2100 * add capability to use a XML Schema to build the layer field definition and geometry type 2101 * add capability to use JSON schema 2102 * add support for rel=queryables and cql-text 2103 * add a IGNORE_SCHEMA=YES/NO open option 2104 * implement filter-lang=json-filter-expr 2105 * avoid issues with double slash when building a /collections URL 2106 2107OSM driver: 2108 * make error message hopefully clearer and more complete (#2100) 2109 2110PDF driver: 2111 * fix reading polygon with holes and Bezier curves (#1932) 2112 * add a GDAL_PDF_LAUNDER_LAYER_NAMES configuration option 2113 * fix reading strings with escape sequences 2114 2115PostgreSQL driver: 2116 * add support for PostgreSQL 12 (#1692) 2117 * add support for PG:service=xxx syntax and SERVICE open option (#2373) 2118 * support PostGIS schema installed in non-public schema (#2400) 2119 * do not attempt to create VARCHAR(n) columns with n >= 10485760 (#1508) 2120 * be more restrictive when deducing non-nullability of columns in SQL result layers (#1734) 2121 2122Shape driver: 2123 * add read/creation/update support for .shz and .shp.zip 2124 * identify a EPSG code if the confidence is >= 90 (https://github.com/OSGeo/PROJ/issues/1799) 2125 * better deal with empty .shp+.shx and SHAPE_RESTORE_SHX (#1525) 2126 * launder layer name to get Windows compatible filename 2127 * try to better deal with polygons with parts touching on an edge (which is illegal simple features) (#1787) 2128 * fix crash when creating a layer with a wkbNone geometry type but a SRS (3.0 regression) 2129 * include fseek() optimization of https://github.com/OSGeo/shapelib/pull/3 2130 * expose .dbf and .cpg source encodings in the SHAPEFILE metadata domain 2131 * correctly update layer extent when first feature is a point at (0,0) (#2269) 2132 2133S57 driver: 2134 * s57objectclasses.csv: add missing TXTDSC attribute for DRYDOC class (#1723) 2135 * s57objectclasses.csv: add wtwdis and unlocd for distance marks from IENC (#2123) 2136 * s57objectclasses.csv: add PICREP attribute to LNDMRK object class 2137 * Added handling of ISDT when using updates (#895) 2138 * Added creation of additional field "ATTF" when missing while updating (#2249) 2139 2140SOSI driver: 2141 * Append values from duplicate fields when setting new appendFieldsMap open option (#1794) 2142 2143SQLITE driver: 2144 * fix crash in loading sqlite extensions on iOS (#1820) 2145 * fix conversion of geometry collections (and derived types) in geometry collections as Spatialite geometries, by flattening the structure 2146 * cleanup management of update flag (#2162) 2147 * GetSpatialiteGeometryHeader(): fix bug regarding detection of empty geometries 2148 2149SXF driver: 2150 * Add open options with RSC file name 2151 * Use SXF_LAYER_FULLNAME from dataset open options 2152 * Use SXF_SET_VERTCS from dataset open options 2153 * Add OGRSXFLayer::CanRecode and check it for OLCStringsAsUTF8 capability 2154 * Add driver identify function (#1607) 2155 2156VFK driver: 2157 * use a faster implementation of VFKDataBlockSQLite::LoadGeometryPolygon() 2158 2159VRT driver: 2160 * set OAMS_TRADITIONAL_GIS_ORDER for LayerSRS (#1975) 2161 2162WaSP driver: 2163 * on creation, make sure the layer geometry type set on the feature definition is wkbLineString25D 2164 2165WFS driver: 2166 * Support FlatGeobuf as WFS outputformat (#2135) 2167 * skip silently GeoServer EPSG:404000 dummy CRS 2168 2169XLSX driver: 2170 * add support for .xlsm extension 2171 2172== SWIG Language Bindings == 2173 2174All: 2175 * add osr.SetPROJSearchPath(path) that can be used since setting PROJ_LIB from C# does no work (#1647) 2176 2177Python bindings: 2178 * add 'add' option to gdal.Rasterize 2179 * add hint&workaround for ImportError on Windows Python >= 3.8 2180 * add compatibility with SWIG 4.0 (#1702) 2181 * build modules in parallel 2182 * honour gdal.UseExceptions() in numpy related methods (gdalnumeric module) (#1515) 2183 * update to SWIG 3.0.12 to have better error message (#1677) 2184 * make the feature iterator on the layer call ResetReading() 2185 * Removed calls to deprecated imp module (#2264) 2186 * Add numpy as extras_require dependency (#2158) 2187 * emit exception is osr.SpatialReference(wkt) fails, even if in non-UseExceptions() mode, to avoid later cryptic exception (#2303) 2188 * NUMPYDataset::Open() / gdal_array.OpenArray(): honour writable flag of the numpy array to decide update status of GDAL dataset 2189 * fix invalid check for Dataset.ReadAsArray(buf_obj=some_array, interleave='pixel') scenario 2190 2191= GDAL/OGR 3.0.0 Release Notes = 2192 2193== In a nutshell... == 2194 2195 * Implement RFC 73: Integration of PROJ6 for WKT2, late binding capabilities, time-support and unified CRS database. PROJ >= 6 is now a build requirement 2196 https://trac.osgeo.org/gdal/wiki/rfc73_proj6_wkt2_srsbarn 2197 * New GDAL drivers: 2198 - DAAS: read driver for Airbus DS Intelligence Data As A Service 2199 - TileDB: read/write driver for https://www.tiledb.io (#1402) 2200 * New OGR drivers: 2201 - MongoDBv3: read/write driver using libmongocxx v3.4.0 client (for MongoDB >= 4.0) 2202 * Improved drivers: 2203 - FITS: read/write support for scale, offset and CRS 2204 - netCDF: read support for groups 2205 - PDF: add a COMPOSITION_FILE creation option to generate a complex document 2206 - PDS4: subdataset creation support, read/write table/vector support 2207 * Support for minimal builds on Unix (#1250) 2208 * Add a docker/ directory with Dockerfile for different configurations 2209 * Continued code linting 2210 2211== New installed files == 2212 2213 * Resource file: pdfcomposition.xsd 2214 2215== Removed installed files == 2216 2217 * Removal of resource files related to EPSG and ESRI CRS databases: compdcs.csv, coordinate_axis.csv, datum_shift.csv, ellipsoid.csv, esri_epsg.wkt, esri_extra.wkt, esri_Wisconsin_extra.wkt, gcs.csv, gcs.override.csv, gdal_datum.csv, geoccs.csv, pcs.csv, pcs.override.csv, prime_meridian.csv, projop_wparm.csv, unit_of_measure.csv, vertcs.csv, vertcs.override.csv 2218 2219== Backward compatibility issues == 2220 2221See MIGRATION_GUIDE.txt 2222 2223== GDAL/OGR 3.0.0 - General Changes == 2224 2225Build(Unix): 2226 * Allow internal drivers to be disabled (#1250) 2227 * Fix build with OpenBSD which doesn't support RLIMIT_AS (#1163) 2228 * Fix MacOS build failures due to json-c 2229 * Poppler: require pkg-config 2230 * PostgreSQL: Switch from pg_config to pkg-config (#1418) 2231 * fix build --without-lerc (#1224) 2232 * fix netcdf_mem.h detection in netcdf 4.6.2 (#1328) 2233 * Fix build --with-curl --without-threads (#1386) 2234 2235Build(Windows): 2236 * nmake.opt: remove unicode character at line starting with '# 4275' that apparently cause build issues with some MSVC versions (#1169) 2237 2238All: 2239 * PROJ >= 6.0 is a required external dependency 2240 * libgeotiff >= 1.5 should be used for builds with external libgeotiff 2241 * Poppler: drop support for Poppler older than 0.23.0 2242 * Poppler: add support for 0.72.0, 0.73.0, 0.75.0, 0.76.0 2243 2244== GDAL 3.0.0 - Overview of Changes == 2245 2246Port: 2247 * Add capability to define external VSI virtual file systems from C API (#1289) 2248 * MiniXML: Fix wrong node order when calling CPLAddXMLAttributeAndValue() after CPLCreateXMLElementAndValue() 2249 * /vsicurl/: ReadMultiRange(): use default implementation if there is a single range (#1206) 2250 * /vsicurl/: ignore proxy CONNECT response headers (#1211) 2251 * /vsicurl/: automatically detect signed URLs where host ends with a port number; also detect signed URLs as created with the AWS4-HMAC-SHA256 method (#1456) 2252 * /vsizip/: Add config option to create zip64 extra fields by default (#1267) 2253 * /vsis3/, /vsigs/, /vsiaz/: add HTTP retry logic in writing code paths 2254 * Fix data race in VSIFileManager::Get 2255 * cpl_zipOpenNewFileInZip3: fix memory leak in error code path. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13103. 2256 * VSIGZipWriteHandleMT: avoid potential deadlock in case of error 2257 * Fix assertion in CPLGetValueType when testing non-ASCII chars 2258 * /vsihdfs/: fix Read() when more than one hdfsRead call is needed (#1349) 2259 * Fix potential buffer overflow in CPLODBCSession::Failed (#1390) 2260 * /vsitar/: handle .tar file header with space padding instead of 0 for file size (#1396) 2261 2262Core: 2263 * Support blocks larger than 2 billion pixels/bytes 2264 * Make CPLHaveRuntimeSSSE3() and CPLHaveRuntimeAVX() use GCC constructor functions 2265 * Move RawDataset base class to gcore/ (#1268) 2266 * RasterBand/Dataset::RasterIO(): enforce access mode on write 2267 * PAM: preserve existing metadata when setting new one (#1430) 2268 * RawDataset: use generic RasterIO() implementation when non-nearest resampling is asked (#1301) 2269 * DumpJPK2CodeStream(): dump PLT and POC markers 2270 2271Algorithms: 2272 * RPC transformer: test success code of GDALRPCTransform() in GDALCreateRPCTransformer() 2273 * RPC transformer: add a RPC_FOOTPRINT transformer option to provide a polygon in long/lat space where the RPC is valid, and also make gdalwarp use GDALSuggestedWarpOutput2() to restrict the bounding box of the output dataset 2274 * GDALFillNodata(): fix wrong comparison in QUAD_CHECK() macro: nNoDataVal is only assigned to target_y values (#1228) 2275 * GDALFillNodata(): reinitialize panLastY array to nNoDataVal before bottom to top pass (#1228) 2276 * GDALFillNodata(): do an extra iteration to reach the maximum search distance in all quadrants (#1228) 2277 * GDALRasterizeLayersBuf():support any GDAL data type for buffer,and pixel and line spaceing arguments 2278 * GDALResampleChunk32R_Mode: performance improvement 2279 * Rasterize with MERGE_ALG=ADD: avoid burning several times intermediate points of linestrings (#1307) 2280 * rasterize: fix crash when working buffer is larger than 2GB (#1338) 2281 2282Utilities: 2283 * gdal_translate: add "-nogcp" option (#1469) 2284 * gdal_contour: remove explicit width/precision=12/3 of the elev field (#1487) 2285 * gdaldem hillshade: add -igor option (#1330) 2286 * gdalwarp -crop_to_cutline: do not round computed target extent to be aligned on the grid of the source raster if -tr is set (restore partially pre 2.4 behavior) (#1173) 2287 * gdalwarp: assume -tap when using -crop_to_cutline, -tr and -wo CUTLINE_ALL_TOUCHED=TRUE, so as to avoid issues with polygons smaller than 1x1 pixels (#1360) 2288 * gdal2tiles: give local tile layer and basemap layers same min/max zoom levels as generated tile cache 2289 * gdal2tiles: fix breakage of openlayers.html getURL() javascript function, introduced in GDAL 2.3.3 / 2.4.0 (#1127) 2290 * gdal2tiles: prevent accidental copy of full GeoTIFF into temporary .vrt file 2291 gdal2tiles: Refactor and fix multiprocessing completion handling 2292 * gdal_fillnodata.py: preserve color interpretation and table 2293 * gdal_fillnodata.py: do not set geotransform if source doesn't have one 2294 * gdalsrsinfo: do not silence errors when calling SetFromUserInput() 2295 * gdal_retile: Use nodata value from origin dataset 2296 * gdal_edit.py: allow setting band-specific scale and offset values (#1444) 2297 * validate_cloud_optimized_geotiff.py: check if file is only greater than 512px (#1403) 2298 * validate_cloud_optimized_geotiff.py: report headers size 2299 2300Multidriver fixes: 2301 * GTiff, GPKG, MBTiles, PostgisRaster drivers: ensure that main dataset and overviews share the same lock, so as to avoid crashing concurrent access (#1488) 2302 2303ADRG driver: 2304 * modified to ensure that there is no confliction between ADRG and SRP when opening a .gen file (#953) 2305 2306AIGRID / AVCBin: 2307 * fix filename case adjustment that failed on /vsi filesystems (#1385) 2308 2309BAG driver: 2310 * fix potential nullptr deref on corrupted file 2311 2312COSAR driver: 2313 * avoid out-of-bound write on corrupted dataset. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12360. 2314 2315EEDA driver: 2316 * report 'path' metadata in 'path' field 2317 2318GPKG driver: 2319 * allow negative srs_id values in gpkg_spatial_ref_sys 2320 * reduce memory requirements for cached tiles 2321 2322GTiff diver: 2323 * supports tiles/strips larger than 2GB 2324 * add APPEND_SUBDATASET=YES capability to create subdataset / new TIFF page to an existing file 2325 * only report scale/offset deduced from ModelTiepointTag and ModelPixelScaleTag if the SRS has a vertical component (and thus currently if GTIFF_REPORT_COMPD_CS is set) (https://issues.qgis.org/issues/20493) 2326 * TIFF Lerc: properly initialize state after Create() so that BuildOverviews() succeed (#1257) 2327 * emit merged consecutive multi-range reads (#1297) 2328 * add warnings when using unsupported combination of internal mask+external overview, and fix COPY_SRC_OVERVIEWS=YES so that it does not copy ALL_VALID masks (#1455) 2329 * do not generate a TIFFTAG_GDAL_METADATA with color interpretation information for JPEG YCbCr compression 2330 * Internal libtiff and libgeotiff: resync with upstream 2331 2332FITS driver: 2333 * new functions for Scale Offset and FITS World Coordinate System read and write (#1298) 2334 2335GeoRaster driver: 2336 * Fix memory leaks 2337 2338HDF5 driver: 2339 * support reading blocks larger than 2GB 2340 * fix handling of attributes of type SCHAR, UCHAR, USHORT and UINT (https://github.com/mapbox/rasterio/issues/1663) 2341 * detect nodata from netCDF _FillValue (#1451) 2342 * add more strict checks for accepting datasets for GCP, and handle nodata in GCP too (#1451) 2343 2344IGNFHeightAsciiGrid driver: 2345 * add support for RAF18.mnt 2346 2347JPEG driver: 2348 * fix GDAL 2.3.0 performance regression when decoding JPEG (or GPKG using JPEG) images (#1324) 2349 2350KEA driver: 2351 * add support for /vsi file systems 2352 2353KMLSuperOverlay driver: 2354 * report color table of single overlay datasets, and also handle some variation in the KML structure (https://issues.qgis.org/issues/20173) 2355 2356MRF driver: 2357 * sparse index and internal resampling fixes 2358 * fix integer overflow. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13974 2359 2360MrSID driver: 2361 * fix potential crash when a zoom level cannot be opened 2362 2363netCDF driver: 2364 * implement support for NetCDF-4 groups on reading (#1180) 2365 * support complex data types (#1218) 2366 * fix crash when opening a dataset with an attribute of length 0 (#1303) 2367 * fix IWriteBlock() to support non-scanline blocks, and use the chunk size 2368 * better deal with datasets indexed with unusual order for x/y dimensions 2369 * avoid inappropriate shift by -360 when attribute axis=X is set (#1440) 2370 2371NGW driver: 2372 * Add CreateCopy function 2373 2374NITF driver: 2375 * avoid harmless floating point division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12844. 2376 2377PCIDSK driver: 2378 * avoid uint overflow and too big memory allocation attempt. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12893 2379 2380PDF driver: 2381 * Add a COMPOSITION_FILE creation option to generate a complex document 2382 * And a gdal_create_pdf.py sample script 2383 * Fix selection of Poppler PDF layers with duplicate names (#1477) 2384 * avoid division by zero when generating from vector content whose bounding box is almost a horizontal or vertical line. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13408 2385 2386PDS3: 2387 * fix decoding of band interleaved images (such as for CRISM HSP) (#1239) 2388 * add support for ENCODING_TYPE=DCT_DECOMPRESSED (#1457) 2389 2390PDS4 driver: 2391 * add subdataset creation support, and getting/setting the band unit 2392 * update template and code to PDS v1B00 schema versions 2393 2394VRT driver: 2395 * Python pixel functions: add shared object name for python 3.7 2396 * VRT: in case of no SourceProperties, do not use global shared datasets, but only shared to the owning VRTDataset, to avoid potential reference cycles and annoying related issues. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13476. 2397 2398WCS driver: 2399 * avoid potential out-of-bound access 2400 2401WMS driver: 2402 * use proper JSon parsing for ESRI MapServer document (#1416) 2403 * Add url parameters escaping to ArcGIS Server minidriver 2404 * avoid warning when a wms cache doesn't exist 2405 2406XPM driver: 2407 * fix read heap buffer overflow on corrupted image. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13455. 2408 2409XYZ driver: 2410 * add creation options DECIMAL_PRECISION and SIGNIFICANT_DIGITS like with AAIGrid 2411 * fix regression regarding header lines that are not X,Y,Z (#1472) 2412 2413== OGR 3.0.0 - Overview of Changes == 2414 2415Core: 2416 * Add OGR_G_MakeValid() (requires GEOS 3.8) 2417 * change prototye of OGRFeature::SetField( int iField, int nBytes, GByte *pabyData ) to ( ... , const void* pabyData), and same for OGR_F_SetFieldBinary(). 2418 * Polyhedral surface: fix importFromWKT to properly fix Z/M flag 2419 * OGRBuildPolygonFromLines: avoid generating effectively duplicate points 2420 * OGRBuildPolygonFromEdges(): improve performance. https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13798 2421 * OGRGeometryFactory::transformWithOptions(): if WRAPDATELINE=YES, test that the geometry SRS is geographic 2422 * OGRGeometryFactory::GetCurveParameters(): fix assertion when coordinates are very near 0 2423 * Expat XML parsing: add OGR_EXPAT_UNLIMITED_MEM_ALLOC=YES config option to workaround failure for very specific cases 2424 * OGRLineString::segmentize(): fix issues when segment length is divisible by maxlength (#1341) 2425 * OGR SQL: limit recursion in swq_expr_node::Check(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13540 2426 * OGRGeometry / SFCGAL: fix dead code, memory leaks and potential nullptr deref. 2427 2428OGRSpatialReference: 2429 * Deep rework due to RFC 73 integration 2430 * SRS_WKT_WGS84 macro replaced by SRS_WKT_WGS84_LAT_LONG 2431 * Add OSRSetPROJSearchPaths(), OSRExportToWktEx(), OSRGetName(), OSRIsSameEx(), OSRGetCRSInfoListFromDatabase(), OSRGetAreaOfUse(),OSRGetAxisMappingStrategy(), OSRSetAxisMappingStrategy(), OSRGetDataAxisToSRSAxisMapping() 2432 * Add OCTNewCoordinateTransformationOptions(), OCTCoordinateTransformationOptionsSetOperation(), OCTCoordinateTransformationOptionsSetAreaOfInterest(), OCTDestroyCoordinateTransformationOptions(), OCTNewCoordinateTransformationEx(), OCTTransform4D() 2433 * Remove OSRFixupOrdering(), OSRFixup(), OSRStripCTParms(), OCTProj4Normalize(), OCTCleanupProjMutex(), OPTGetProjectionMethods(), OPTGetParameterList(), OPTGetParameterInfo() 2434 2435Utilities: 2436 * ogrinfo: report TITLE metadata in summary layer listing 2437 * ogr2ogr: for drivers supporting ODsCCreateGeomFieldAfterCreateLayer, do not create geometry column if -nlt none 2438 * ogrmerge.py: add shared='1' to speed-up -single mode with many layers 2439 2440CARTO driver: 2441 * Overwrite tables in single transactions 2442 * Improve documentation and warnings around CARTODBFY (#1445) 2443 2444CSW driver: 2445 * fix crash when geometry parsing fails (#1248) 2446 2447DODS driver: 2448 * fixes related to memory leaks and null pointer dereferences 2449 2450DXF driver: 2451 * support RGB true color values 2452 * fix the coloring of ByBlock entities inserted via a ByLayer INSERT 2453 * fix double-free issue in case of writing error. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13516. 2454 2455FileGDB/OpenFileGDB drivers: 2456 * be robust when winding order of outer ring is incorrect (#1369) 2457 2458Elasticsearch driver: 2459 * Fixed index comparison bug when a index have at least one mapping 2460 * Fix _mapping url for Elasticsearch 7 compatibility 2461 2462GeoJSON driver: 2463 * speed-up random reading with GetFeature() by storing a map FID->(start,size) to retrieve performance similar to GDAL 2.2 or before (https://issues.qgis.org/issues/21085) 2464 * report 3D layer geometry types (#1495) 2465 2466GeoJSONSeq driver: 2467 * be more robust to invalid objects, and fixes performance issue on corrupted files. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13770. 2468 2469GML driver: 2470 * write SRSName element in .gfs when parsing a GML file with srsName only on top-level boundedBy element (#1210) 2471 * Add "FeatureType" to list of suffixes recognized by XSD parser (#1313) 2472 * GML/WFS: add minimum support for 'hexBinary' type (as string) (#1375) 2473 2474GMLAS driver: 2475 * avoid null pointer dereference on some schemas 2476 * do not use space as separator for schema filename in XSD open option (#1452) 2477 2478GMT driver: 2479 * use file extension based detection to accept files without header (#1461) 2480 2481MongoDB driver: 2482 * fix related to filters in GetFeature() 2483 2484MITAB driver: 2485 * Add encode/decode feature labels to/from UTF-8 encoding while MIF file read/write (#1151) 2486 * .tab: fix deleting a feature without geometry (#1232) 2487 * adapt dynamically default projection bounds to false_easting/false_northing values (#1316) 2488 * avoid potential assertion or stack buffer overflow on corrupted .ind files. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=11999 2489 * prevent potential infinite recursion on broken indexes. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12739. 2490 * TAB_CSLLoad(): fix performance issue. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13588 2491 * avoid long processing on corrupted .mif files. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13152 2492 2493MSSQLSpatial driver: 2494 * Add support for curve geometries (#1299) 2495 * Add option to expose the FID column as a feature attribute (#1227) 2496 * Adding improved extent queries 2497 * Fix extent calculation for geography type, take care of invalid geometries 2498 2499NGW driver: 2500 * Fix get children API. Add authorization support to create dataset options 2501 * Add support for feature extensions in OGRFeature native data 2502 * Add feature query via chunks, attribute and spatial filter support 2503 * Add resource type and parent identifier to metadata 2504 * Fix batch update features 2505 * Add JSON_DEPTH open option 2506 * Add check forbidden field names, check duplicate field names. 2507 2508OCI driver: 2509 * Add MULTI_LOAD to open options (#1233) 2510 * Fix memory leaks 2511 2512ODS driver: 2513 * allow opening tables with empty cells with huge values of columns-repeated attribute at end of line (#1243) 2514 * avoid potential null pointer dereference when writing to corrupted filename. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12976. 2515 2516OGDI driver: 2517 * switch incorrect order for east/west bounds of spatial filter 2518 2519PDS4 driver: 2520 * add read/write support for tables (vector support) 2521 2522PGDump driver: 2523 * in WRITE_EWKT_GEOM=YES non-default mode, export geometries to ISO WKT so as to be able to export XYZM (#1327) 2524 * Fix emitted SQL when UNLOGGED=ON 2525 2526PLScenes driver: 2527 * update plscenesconf.json with SkySatCollect and add missing fields for PSOrthoTile 2528 2529SDTS driver: 2530 * error out if too many errors are raised to avoid timeout in oss-fuzz. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13819. 2531 2532Selafin driver: 2533 * avoid null pointer dereference on corrupted files. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12356. 2534 2535Shapefile driver: 2536* DeleteLayer(): make it delete .cpg, .sbn, .sbx, .qpj and other sidecar files (#1405) 2537 * speed-up creation of lots of fields with name collisions. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13065 2538 2539SQLite driver: 2540 * set sqlite3_busy_timeout, handle SQLITE_BUSY during tile read (#1370) 2541 * close database before freeing the spatialite context. Fix crashes on dataset closing, with VirtualShape and recent spatialite versions 2542 * Spatialite: fix update of geometry_columns_statistics when extent goes to infinity (#1438) 2543 2544S57 driver: 2545 * avoid long procession on corrupted datasets. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=13238 2546 2547SXF driver: 2548 * Fix wrong EPSG codes range (#1278) 2549 * Fix memory leaks in SetVertCS() 2550 2551VFK driver: 2552 * fix curved geometries being ignored (#1351) 2553 2554WFS3 driver: 2555 * handle paging with missing type for rel:next, and better deal with user:pwd in URL 2556 * use 'id' attribute of collection items, if 'name' not available 2557 2558== SWIG Language Bindings == 2559 2560All bindings: 2561 * add Geometry::MakeValid() 2562 2563Python bindings: 2564 * fix Dataset.ReadAsRaster() on CInt16 data type (#82) 2565 * adding overviewLevel option to WarpOptions 2566 * add noGCP options to gdal.Translate() 2567 2568= GDAL/OGR 2.4.0 Release Notes = 2569 2570== In a nutshell... == 2571 2572 * New GDAL drivers: 2573 - BYN: read/write support for Natural Resources Canada's Geoid binary format 2574 - EEDAI: read-only driver for Google Earth Engine Data API 2575 - IGNFHeightASCIIGrid: read-only driver to read IGN-France height correction ASCII grids 2576 - NGW: NextGIS Web read-only driver 2577 - NTv1: read-only driver for NTv1 datum shift grids 2578 * New OGR drivers: 2579 - EEDA: read-only driver for Google Earth Engine Data API 2580 - GeoJSONSeq: read/creation support of new-line or record-separator separated GeoJSON features (#378) 2581 - NGW: NextGIS Web read-write driver 2582 * Improved drivers: 2583 - BAG: add read support for variable-resolution grids, and write support for single-resolution grids 2584 - GTiff driver: add Lerc and WebP codecs 2585 - PostgisRaster: add support for out-db rasters 2586 - RMF 2587 - MSSQLSpatial 2588 * RFC 72: Make GDAL Python autotest suite use pytest framework 2589 * Add /vsihdfs/ virtual file system handler for Hadoop File System (via libhdfs) 2590 * Add /vsiwebhdfs/ read-write virtual file system for Web Hadoop File System REST API 2591 * gdal_contour rewriting: speed optimizations and capability to compute polygon isosurfaces. 2592 * Remove PHP and Ruby bindings. 2593 * Continued code linting in C++, Python scripts, Shell scripts and autotest 2594 2595== Backward compatibility issues == 2596 * The value of COMPRESSION_ZSTD used for ZStd-in-TIFF compression has been changed. ZStd-compressed TIFF files produced by GDAL 2.3.0 will not be readable 2597 2598== GDAL/OGR 2.4.0 - General Changes == 2599 2600Build(Unix): 2601 * configure: error out when --enable-pdf-plugin is used with --with-libtool since frmts/pdf/GNUmakefile isn't ready for that (#556) 2602 * Fix compilation in C++17 mode with older ogdi headers 2603 * Fix the datadir in gdal.pc. 2604 * re-install cpl_vsi_error.h 2605 * update GRASS drivers to support GRASS 7.4.0 (#639, #633) 2606 * configure: use CXXFLAGS when CXX is used (#693) 2607 * GNUmakfile: fix dependency of install target (#707) 2608 * configure: fix 12 bit JPEG-in-TIFF support (#716) 2609 * configure: Remove additional '$' in front of '${CXX}' to fix ECW5 detection 2610 * configure: use ogdi.pc if available 2611 * Set minimum pkg-config version to 0.21 2612 * fix potential link errors when using internal libgif and internal libpng but headers of those libraries are available in the system in different versions than our internal ones (#938) 2613 2614Build(Windows): 2615 * nmake.opt: allow install into paths with spaces 2616 * MBTiles driver: fix issue in Makefile 2617 * Fix HDF4 Plugin build for Visual C++ (#624) 2618 * NMAKE: copy gdal pdb to $(LIBDIR) in libinstall target 2619 * NMAKE: Enable friendlier static library builds to allow an external `DLLBUILD = 0` 2620 * nmake.opt: allow DEBUG=0 to be set (#703) 2621 * Do not include DllMain() in static library builds 2622 * add support for JPEGLS driver 2623 2624All: 2625 * Add support for Poppler 0.64, 0.69, 0.71 2626 * avoid compilation error when compiling GMT's gmtdigitize.c that defines _XOPEN_SOURCE to empty (#590) 2627 * Fix build against PDFium (#612) 2628 * Add support for MySQL 8.0 2629 2630== GDAL 2.4.0 - Overview of Changes == 2631 2632Port: 2633 * Add multi-threaded compression to /vsigzip/ and /vsizip/ 2634 * /vsizip/: create ZIP64 when needed 2635 * /vsizip/: encode filename in Unicode when needed also in local file header 2636 * /vsigzip/: allow seeking to beginning of file, despite decompression error 2637 * /vsicurl/: extend retry logic to HTTP 500 and HTTP 400 with RequestTimeout, emit a CE_Warning if code != 400 and != 404 2638 * /vsicurl/: fix parsing of HTML file listing that got broken in GDAL 2.3.0 2639 * /vsicurl/ and derived: implement a LRU cache for file properties (instead of ever growing cache) 2640 * /vsicurl/ and derived: implement a LRU cache for directory content listing 2641 * /vsicurl/: make GetCurlMultiHandleFor() more thread-safe 2642 * HTTP: added curl cookiefile and cookiejar variables (fixes #1000) 2643 * /vsioss/: fix support of filenames with spaces 2644 * /vsizip/: output explicit error message when encountering a unsupported file compression method 2645 * /vsis3/: fix VSIStatL() on a directory (#603) 2646 * /vsis3/: take into account AWS_CONTAINER_CREDENTIALS_RELATIVE_URI for ECS instances (#673) 2647 * /vsis3/: honour CPL_VSIL_CURL_ALLOWED_EXTENSIONS configuration option (#995) 2648 * /vsis3/: ignores files with GLACIER storage class in directory listing, unless CPL_VSIL_CURL_IGNORE_GLACIER_STORAGE=NO 2649 * /vsiaz/: support BlobEndpoint element in AZURE_STORAGE_CONNECTION_STRING such as found in Azurite (#957) 2650 * Add a VSICurlPartialClearCache(const char* filenameprefix) function to partially clear the /vsicurl/ and related caches; and bind it to SWIG 2651 * Add VSISync() to synchronize source and target files/directories 2652 * /vsitar/: support headers with fields using star base-256 coding (#675) 2653 * Add VSIOpenDir/VSIGetNextDirEntry/VSICloseDir and provide efficient recursive implementation for /vsis3/, /vsigs/, /vsioss/ and /vsiaz/ 2654 * Detect Amazon EC2 instances that use the newer hypervisor. Deprecates CPL_AWS_CHECK_HYPERVISOR_UUID and replaces with CPL_AWS_AUTODETECT_EC2 2655 * CPLString class: rework visibility of exported symbols for Visual Studio (rework of #321) (#636) 2656 * CPLGetPhysicalRAM(): take into account cgroup limitation (Docker use case), and rlimit (#640) 2657 * CPLGetNumCPUs(): take into account cgroup limitation. 2658 * ODBC: Improve Fetch() error handling. 2659 * ODBC: get multiple ODBC error messages. 2660 * ODBC: Fetch wide-char strings on UNIX (#839) 2661 * Fix buffer overflow in GDALDefaultCSVFilename with GDAL_NO_HARDCODED_FIND (#683) 2662 * VSIZipFilesystemHandler::Open: Fix leaks of poVirtualHandle (#699) 2663 * Fix date-time formatting for /vsigs/, /vsiaz/ and /vsioss/ protocols with non-C locales 2664 * CPLQuadTreeGetAdvisedMaxDepth(): avoid int overflow. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9248 2665 * CPLJSonStreamingParser: make it error on invalid array constructs (#970) 2666 * Add a GDAL_HTTPS_PROXY configuration option to selectively setup proxy for https only connections (#972) 2667 * Add template class CPLAutoClose (#952) 2668 * Make VSIToCPLError() handle the generic VSIE_AWSError (#1007) 2669 * Propagate error handler user data correctly (#1098) 2670 * CPLOpenSSLCleanup(): reset callbacks to nullptr to avoid potential segfault 2671 2672Core: 2673 * SetStatistics(): write a STATISTICS_APPROXIMATE=YES metadata item if bApproxOK=true, and take it into account in GetStatistics() (trac #4857, trac #4576) 2674 * Add percentage of valid pixels to metadata when computing raster band statistics (#698) 2675 * Overview creation: avoid creating too many levels, and fix related heap buffer overflow (#557,#561) 2676 * Overview: fix wrong computation of source pixel indices for AVERAGE and pixel-interleave bands 2677 * Lanczos rasterio/overview/warp: do not compute target pixel if there are too many missing source pixels, to avoid weird visual effects depending on if valid source pixels match positive or negative kernel weights 2678 * Overview / RasterIO resampling: do not use nodata value as a valid output value 2679 * RawRasterBand: only accept VSILFILE* 2680 * Add alpha mask flag for alpha band in Uint16 One band dataset (#742) 2681 * GetMaskBand(): do not use a GDALNoDataMaskBand when nodata value is out of range (#754) 2682 * Pleiades metadata reader: Add more strict check (#431) 2683 * Statistics/minmax computation: on a float32 raster, be more tolerant when the nodata is slightly larger than +/- FLOAT_MAX 2684 * GDALNoDataMaskBand: improve performance in downsampling cases 2685 * GDALDestroy(): no longer call it automatically on GCC/CLang (non-MSVC) builds 2686 * GDALGetJPEG2000Structure(): avoid excessive memory allocation. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8268 2687 * Implement GDALAllValidMaskBand::ComputeStatistics(). Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9309 2688 * PAMDataset: avoid illegal down_cast to GDALPamRasterBand. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9358 2689 * GDALOpenEx(): improve anti recursion detection. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9391 2690 * GDALResampleChunk32R_Convolution: avoid invalid left shift. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9477 2691 * Gauss resampling: fix potential read heap buffer overflow in corner cases. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9783 2692 * GDALDefaultOverviews::OverviewScan(): avoid potential infinite recursion. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10153 2693 * GDALPamRasterBand::CloneInfo(): do not clone empty RAT 2694 2695Algorithms: 2696 * OpenCL wrapper: fix memory leak 2697 * Warper: add complex nodata handling in average/min/max modes 2698 * TPS solver: improve numerical stability, for non Armadillo builds, for points not centered on (0,0) 2699 * GCP polynomial interpolation: fix bug where worst_oultier always assumed polynomial order 2 2700 * GCP polynomial interpolation: fix bug where remove_ouliers used the parameters of the reverse transformation 2701 * GDALGridLinear(): speed-up search of triangle for points outside of the triangulation 2702 * gdal_grid linear: avoid artifacts with degenerate triangles (#638) 2703 * GDALPansharpenOperation::Initialize(): validate value of GDAL_NUM_THREADS (CID 1393944) 2704 * GDALFillNodata(): add NODATA option 2705 * GDALDEMProcessing(): fix null pointer dereference if psOptionsIn == nullptr (#931) 2706 2707Utilities: 2708 * gdal_translate: make -stats option work with -co COPY_SRC_OVERVIEWS=YES (#792) 2709 * gdal_translate: fix RPC correction when using -srcwin with negative offsets (#827) 2710 * gdalwarp: automatically enable SKIP_NOSOURCE=YES when it is safe to do so 2711 * gdalwarp: make -crop_to_cutline stick to source pixel boundaries when no raster reprojection is involved, to avoid unnecessary resampling or resolution change 2712 * gdalwarp -r average: better deal with south-up oriented datasets (#778) 2713 * gdalwarp: improve robustness of computation of source raster window for a given target raster window (#862) 2714 * gdalwarp: allow to create bottom-up grid with -te xmin ymax ymin ymin 2715 * gdalwarp: fix crash when warping on an existing dataset with less bands as needed 2716 * gdal_contour: speed optimizations and capability to compute polygon isosurfaces. 2717 * gdal_contour: add amin and amax parameter for gdal_contour to be used with option -p 2718 * gdal_contour: avoid out-of-memory situation (#594) 2719 * gdal_contour: fix GDAL 2.3 regression with fixed interval contouring that resulted in discontinuities in contour lines (#889) 2720 * gdal_merge.py: deal with NaN values 2721 * gdal_retile.py: fix rounding issues when computing source and target regions (#670) 2722 * gdal_calc.py: add --optfile switch 2723 * gdal2tiles: fix wrong computation of min zoom level in some cases (#730) 2724 * gdal2tiles: add -x option for skipping transparent tile generation 2725 * gdal2tiles: fix performance issue by caching source dataset; GDALAutoCreateWarpedVRT() 2726 * gdal2tiles: fix issue with out-of-range nodata values (#770) 2727 * gdal2tiles: restore GDAL < 2.3 behavior when output directory is not explicitly specified (#795) 2728 * gdal2tiles: fix --force-kml (#809) 2729 * gdal_edit.py: add -setstats to set "fake" statistics (#819) 2730 * gdal_edit.py: add -unsetrpc option to gdal_edit.py, and fix GTiff driver to be able to clear RPC 2731 * gdal_grid: fix -clipsrc from a vector datasource (broken at least since GDAL 2.1) 2732 * gdalenhance: avoid potential nullptr dereference (CID 1394096) 2733 * make sure that --config is early evaluated for config options such as CPL_VSIL_CURL_CHUNK_SIZE that are read early 2734 2735Multi driver changes: 2736 * HFA and KEA: better support for writing RATs (trac #4903) 2737 * Fix creation of large enough datasets with drivers EHdr, ENVI and ISCE that failed due to inappropriate check on file size whereas the file wasn't filled yet (#705, 2.3.0 regression) 2738 2739BAG driver: 2740 * avoid warnings when reading georeferencing 2741 * get datetime 2742 * safer retrieval of variable extents 2743 * add read support for variable-resolution grids, and write support for single-resolution grids 2744 2745E00GRID driver: 2746 * correctly parse projection sections that have lines with tildes (#894) 2747 2748EHdr driver: 2749 * only write .stx if bApproxOK=false (#514) 2750 2751ENVI driver: 2752 * support reading truncated datasets (#915) 2753 2754ERS driver: 2755 * fix quadratic performance in parsing .ers header. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8404 2756 * avoid excessive memory allocation. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8497 2757 * avoid potential stack overflow. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8614 2758 * prevent infinite recursion. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8744 2759 * avoid potential bad cast. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8745 2760 2761FIT driver: 2762 * avoid excessive block size on creation. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8292 2763 * error out in CreateCopy() on failed I/O on source dataset. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8338 2764 2765GeoRaster driver: 2766 * Fix the issue by freeing the temporary lobs created by readCLob() and writeCLOB(). 2767 2768GPKG driver: 2769 * fix memleak if I/O error occurs on write 2770 * retrieve original raster file when using gdal_translate -co APPEND_SUBDATASET=YES with other gdal_translate switches 2771 * copy source metadata when using TILING_SCHEME 2772 * properly delete gridded coverage raster layers 2773 2774GRIB driver: 2775 * replace DataSource and derived classes with VSILFILE directly for > 4GB file support on Windows 2776 * turn printf() warning as CPLDebug() messages 2777 * read and write missing data values correctly for complex packing when original data is integer (#1063) 2778 * g2clib: avoid int overflow. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8194 2779 * g2clib: avoid potential out of bound access (CID 1393528) 2780 * degrib: fix floating point division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9407. 2781 * degrib: avoid potential floating point division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10291 2782 * add UNIT[] node to SRS on reading, so that is valid 2783 2784GTiff driver: 2785 * Add TIFF Lerc codec (in GTiff driver itself) 2786 * Add TIFF WebP codec (in libtiff) 2787 * save XMP on field TIFFTAG_XMLPACKET (#767) 2788 * fix retrieving mask band of overview band when the mask is external. Fixes -co COPY_SRC_OVERVIEWS=YES of such datasets (#754) 2789 * improve progress report in CreateCopy() when there is a mask (#935) 2790 * improve performance reading multi-band 1-bit data. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7840. 2791 * internal libtiff: updated to libtiff 4.0.10 2792 * internal libgeotiff: resync with upstream. 2793 * workaround bug in currently released libgeotiff versions, where when rewriting a ASCII key with a string value longer than the original value (#641) 2794 * allow the use of PREDICTOR with ZSTD compression 2795 * avoid various memory corruptions in case of some corrupted file. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8488 2796 * load PAM if not already done when GetDefaultRAT() is called 2797 * fix missing #ifdef causing compilation failure due to missing bTryCopy (#946) 2798 2799HDF4 driver: 2800 * quote swath and field names if needed (if they contain spaces, column, quotes) in HDF4_EOS subdataset names 2801 2802HDF5 driver: 2803 * add VSI functionality (#786) 2804 * fix reading variable names with single character (#622) 2805 * fix HDF5 object leak (thus preventing file closing) on datasets with variable length attributes (#933) 2806 2807HFA driver: 2808 * fix floating point division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9201 2809 * fix division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10190 2810 2811HTTP driver: 2812 * do not immediately delete a file used by the JP2OpenJPEG driver 2813 2814ILWIS driver: 2815 * Fix performance issue on creation with big number of bands. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9062 2816 2817IRIS driver: 2818 * add UNIT[] node to SRS on reading, so that is valid 2819 * avoid infinite loop. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8256 and 8439 2820 2821ISCE driver: 2822 * do not try to stat() mainfile.xml if mainfile does not exist 2823 2824ISIS3 driver: 2825 2826FITS driver: 2827 * allow reading/writing beyond 2 billion pixels limit 2828 2829JP2OpenJPEG driver: 2830 * allow YCC for non-Byte datasets; and allow 4-band MCT with openjpeg >= 2.2 2831 * add CODEBLOCK_STYLE creation option for OpenJPEG >= 2.3 2832 * add support for generating and using external overviews 2833 2834JPEG driver: 2835 * slightly improve performance of whole RGB image loading with pixel-interleaved buffer 2836 * Internal libjpeg: Avoid integer overflow on corrupted image in decode_mcu_DC_first() (https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9447) 2837 2838JPEGLS driver: 2839 * Add support for CharLS 2 (#632) 2840 2841MRF driver: 2842 * Add TestBlock(), skip empty areas when building overviews 2843 * Fix detection of Lerc2 data 2844 * Resync with upstream LercLib and put it in third_party/LercLib 2845 2846NetCDF driver: 2847 * add VSI functionality on Linux (#786) 2848 * add support for longitude values wrapping at 180deg of longitude (#1114) 2849 * avoid use of uninitialized variable when reading blocks in creation mode 2850 2851NGSGEOID driver: 2852 * report a CRS that conforms to the official publications for GEOID2012 and USGG2012 datasets (#1103) 2853 2854NITF driver: 2855 * avoid excessive processing time on corrupted files. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8972 2856 * avoid heap-buffer-overflow for VQ compression. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9467 2857 2858PCIDSK driver: 2859 * add back support for creating external overviews, removed years ago when switching to the new PCIDSK SDK (#887) 2860 2861PCRaster driver: 2862 * libcsf: avoid potential out of bound access (CID 1074445) 2863 2864PDF driver: 2865 * Remove forced use of libstdc++ for macOS when building plugin (#888) 2866 2867PDS driver: 2868 * deal with detached labels whose line spacing is not a multiple of record size (#955) 2869 * add support for reading CRISM images 2870 * add support for ^QUBE = number for multi-band images 2871 2872PDS4 driver: 2873 * fix georeferencing reading/writing to use pixel corner convention (#735) 2874 * add UNIT[] node to SRS on reading, so that is valid 2875 2876PostgisRaster driver: 2877 * add support for out-db rasters (Trac #3234) 2878 * use ST_BandFileSize of PostGIS 2.5 when available for outdb_resolution=client_side_if_possible 2879 * improve performance of line by line reading; add performance hints section in the doc 2880 * fix CreateCopy() when PostGIS is not in public schema 2881 * add quoting of identifiers 2882 2883PRF driver: 2884 * Fix Photomod x-dem files georeference 2885 2886RasterLite2 driver: 2887 * fail on Create() that is not supported 2888 2889RDA driver: 2890 * enable support for DG RDA Image Reference string 2891 2892RMF driver: 2893 * Add support JPEG compressed RMF datasets (#691) 2894 * Add optional projection import/export from EPSG code (#701) 2895 * Create compressed datasets: LZW, DEM, JPEG (#732) 2896 * Cache decoded tile to improve performance of interleaved access 2897 * Parallelize data compression, add internal tile write-cache, add compressed overviews support (#748) 2898 * Fix 4-bit dataset reading 2899 * Expose NBITS to metadata 2900 2901RS2 driver: 2902 * avoid potential memleak (CID 1393537, CID 1393534, CID 1074387) 2903 2904SENTINEL2 driver: 2905 * Add support of S2x_MSIL2A files (#1069) 2906 2907SGI driver: 2908 * writer: avoid out-of-bound buffer access. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8889 2909 2910SIGDEM driver: 2911 * be more robust against excessive memory allocation attempt 2912 * avoid floating point division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=11220 2913 2914SDTS driver: 2915 * avoid long processing time on corrupted dataset. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=11219 2916 2917SRP driver: 2918 * ASRP/USRP: allow opening files padded with 0x5E / ^ character without emitting error (#838) 2919 2920USGSDEM driver: 2921 * fix reading of Benicia.dem and Novato.dem (trac #4901, #583) 2922 * optimize I/O access a bit 2923 * avoid potential out-of-bounds access (CID 1393532) 2924 * avoid int overflow. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9475 2925 2926VRT driver: 2927 * GDALCreateWarpedVRT(): automatically set GCI_AlphaBand on the alpha band 2928 * data/gdalvrt.xsd: add GDALRasterAttributeTable (#818) 2929 * VRTComplexSource: make sure that min and max values in case of exponential resampling are properly computed 2930 * ComputeStatistics(): optimize when nodata is set on a single SimpleSource 2931 * Fix issue when opening VRT with large number of bands (#1048) 2932 * deal with serialized nodata value that is slightly outside Float32 validity range (#1071) 2933 * fix source window computation that caused sub-pixel shift with non-nearest resampling 2934 * fix potential int overflow on invalid VRT 2935 2936WCS driver: 2937 * Parse envelopes with time periods. Improve error reporting. Fix one SUBDATASETS metadata thing. More metadata from Capabilities to metadata. Print some URLs in debug mode. Unique subset params in URLs. Add time domain interval to metadata. 2938 * GeoServer does not like primary subsets to have postfixes. Fix service dirty issue. Add GeoServer TimeDomain coverage metadata. Do not put service parameter into subdataset name and use generic coverage parameter 2939 * deal with GDALPamDataset::GetMetadata returning nullptr. (#648) 2940 2941WMTS driver: 2942 * avoid issue with reprojection of layer extent into TileMatrixSet SRS 2943 * fix issue with inappropriate zoom level being selected causing integer overflow in raster dimension computation 2944 * fix potential off-by-one pixel when compositing the underlying WMS/TMS source into the final raster 2945 2946== OGR 2.4.0 - Overview of Changes == 2947 2948Core: 2949 * Add JSON field subtype for String fields 2950 * OGR SQL: avoid int overflow on -(-9223372036854775808) evaluation. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8717 2951 * OGR SQL: evaluation modulo operator on floating point values as a floating point modulo. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8761. 2952 * OGR SQL: swq_expr_node::Evaluate(): avoid too deep recursion. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8836 2953 * OGRLineString::TransferMembersAndDestroy(): fix crashing issue with M component. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8773. 2954 * OGRGeometry::exportToGEOS(): fix potential out-of-bounds write on some GeometryCollection with TIN/PolyhedralSurface (#688) 2955 * OGRGeometryFactory::organizePolygons(): improve performance for polygons with many consecutive identical nodes. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9618 2956 * Fix IsValid() for a TRIANGLE with GEOS, but without SFCGAL 2957 * morphToESRI(): fix a heap user-after-free. 2958 * OGRFeature::SetField( int iField, const char * const * papszValues ): avoid potential invalid access to pauFields[iField].StringList.paList 2959 * SQLite dialect: fix when ROWID is used in WHERE clause and the source layer has a real FID column name 2960 * GML geometry parser: recognize MultiGeometry.geometryMembers syntax (refs https://issues.qgis.org/issues/19571) 2961 * OGRGetXMLDateTime(): Interpret TZFlag correctly (#996) 2962 * OGRFeatureStyle: Restore font field at OGRStyleSymbol 2963 2964OGRSpatialReference: 2965 * importFromEPSG(): append ' (deprecated)' at end of deprecated GCS and GEOCCS (#646) 2966 * ogr_opt.cpp: fix wrong values and add missing values in papszProjectionDefinitions[] 2967 * importFromProj4/exportToProj4: fix typo in the PROJ method name of InternalMapOfTheWorldPolyconic which is imw_p 2968 * Krovak: explicit that alpha and Pseudo_standard_parallel_1 are hardcoded in PROJ 2969 * SetNormProjParm(): avoid division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10588 2970 * FindMatches(): if the input SRS has a EPSG code, check that its definition and the EPSG one actually matches (#990) 2971 2972Utilities: 2973 * ogr2ogr: reject -append, -select options together 2974 * ogr2ogr: speed-up in case of big number of field name clashes. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8960 2975 * ogr2ogr: make -clipsrc work when output dataset has no geometry field (#943) 2976 * ogrlineref: fix tolerance for not geographic spatial reference 2977 * ogrmerge.py: avoid exception in error code path of GetOutputDriverFor() 2978 * ogrmerge.py: fix issue with non-ASCII characters (fixes #1067) 2979 2980Multi driver changes: 2981 * KML/LIBKML: robustify for out-of-memory conditions (fixes https://issues.qgis.org/issues/19989) 2982 * XLSX / ODS: avoid harmless warning in some cases when guessing column data types 2983 2984AVCE00 driver: 2985 * avoid perforance issues on huge lines. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8284 2986 * fix performance issue on reading PRJ section. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9061 2987 2988BNA driver: 2989 * refuse to open existing file in update mode, since it causes later crashes when attempting to add new features (https://issues.qgis.org/issues/18563) 2990 * avoid long processing. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8754 2991 * more efficient building of polygons. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10951 2992 2993CAD driver: 2994 * Fix read objects map. Upgrade version of libopencad to 0.3.4. (#677) 2995 * Fix wrong OGRCircularString construction from CADCircle. (#736) 2996 * avoid integer overflow. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8385 2997 * Fix buffer overflow on skip read. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9107 2998 2999Carto driver: 3000 * Use new /sql/copy-from end point for writing (#715) 3001 * fix ICreateFeatureCopy() with unset fields 3002 3003CSV driver: 3004 * in writing, use WKT instead of actual geometry column name if GEOMETRY=AS_WKT mode is used without CREATE_CSVT=YES (fixes #660) 3005 * writer: limit to 10000 fields to avoid performance issues. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9336 (8449 as well) 3006 * avoid endless loop when iterating and updating features (#919) 3007 3008DXF driver: 3009 * add PaperSpace field (Trac #7121) 3010 * allow attributes with spaces in the tag 3011 * Correctly handle non-uniformly-weighted spline HATCH boundaries (#1011) 3012 * avoid null pointer dereference when DXF_MAX_BSPLINE_CONTROL_POINTS is hit. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8254. 3013 * Fix reporting of wrong line numbers in errors (fixes #726) 3014 * Don't crash when spline control point limit is reached 3015 * fix memory leak in case of attempt to write GeometryCollection of unsupported type 3016 3017EDIGEO driver: 3018 * reading multipolygons (trac #6955, #711) 3019 3020ElasticSearch driver: 3021 * add compatibility with ES v6.0 3022 * add a USERPWD open option 3023 * add lazy loading of layers 3024 * add a LAYER open option 3025 * skip xpack indices, and do not emit 503 error when listing unauthorized layers 3026 * add a INDEX_DEFINITION layer creation option 3027 *allow several geometry fields of type GEO_POINT to be created 3028 3029ESRIJson driver: 3030 * parse documents that lack 'geometryType' member (#914) 3031 3032GeoJSON driver: 3033 * fix type deduction when there is a Feature.id of type string and Feature.properties.id of type int. The later has precedence over the former (arbitrary decision) (#669) 3034 * properly flush the file in SyncToDisk() in append situations (https://issues.qgis.org/issues/18596) 3035 * parse '{"type": "GeometryCollection", "geometries": []}' as empty geometrycollection 3036 * increase max memory allowed to parse a single feature (#807) 3037 * remove topojson from extensions recognized by the driver 3038 * add partial support for field names differing by case (#1057) 3039 * RFC7946 writer: clip and offset geometries outside [-180,180] (#1068) 3040 * no longer write NaN/Infinity values by default (#1109) 3041 3042GeoRSS driver: 3043 * avoid excessive processing time. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9263 3044 3045GML driver: 3046 * avoid fetching SRS from http 3047 * fix potential memory leak in case of duplicated name of geometry fields in .gfs 3048 * improve performance for large number of attributes. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9038. 3049 3050GPKG driver: 3051 * add read/write support for JSON field subtype 3052 * speed up GetExtent() on huge tables with rtree. Refs https://issues.qgis.org/issues/18402 3053 * take into ROLLBACK TO SAVEPOINT to invalidate cached feature count 3054 * make sure to not invalidate POSIX advisory locks 3055 * remove useless check that encoding is UTF-8 (#793) 3056 * fix typo in gpkg_metadata_reference_column_name_update trigger definition 3057 * optimize table renaming by avoiding to drop the spatial index, but just renaming it 3058 3059IDF driver: 3060 * use a temporary SQLite database (when driver available) for files larger than 100 MB 3061 * add support for Z coordinate (#964) 3062 3063LIBKML driver: 3064 * add support for reading several schemas for the same layer (#826) 3065 * make edition of existing file work (https://issues.qgis.org/issues/18631) 3066 * implement OGRLIBKMLLayer::SyncToDisk() to fix https://issues.qgis.org/issues/18631 3067 * workaround weird issue with OSGeo4W and newline characters in <coordinate> element (fixes https://issues.qgis.org/issues/19215) 3068 3069MITAB driver: 3070 * fix potential use of uninitialized memory 3071 * improve performance of adding many fields in a .tab. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8559 3072 * fix geometry corruption when editing some datasets (#817) 3073 * fix writing .tab when field name has invalid characters in it (#924) 3074 * Expose font family to feature style symbol ID 3075 3076MSSQLSpatial driver: 3077 * Add support for MSODBCSQL (#1136) 3078 * Fix layer-schema separation problem (#586) 3079 * Fix bulk copy for multiple layers (#619) 3080 * Accept datetime values (#841) 3081 * Don't truncate string values on Unix (#843) 3082 * Create 3D features (#852) 3083 * enforce read-only/update mode for CreateFeature/SetFeature/DeleteFeature 3084 * fix retrieval of geometry column on Linux for SQL result layers 3085 * Use only valid SRIDs; Create features preserving SRID (#860) 3086 * Fix geometry parser with M values (#1051) 3087 * Assign new ID following an INSERT (#1052) 3088 * Adding configuration option MSSQLSPATIAL_ALWAYS_OUTPUT_FID (#1101) 3089 3090MVT driver: 3091 * writer: do not ignore Z/M/ZM geometries 3092 * writer: make it possible to output to /vsizip/output.zip out-of-the-box 3093 * disable check on 'extent' field in identifiation method, which rejected tiles with extent > 16384 3094 * avoid recursion on opening. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10226 3095 3096MySQL: 3097 * add support for MySQL 8.0 3098 3099NAS driver: 3100 * speed-up in case of huge number of attributes. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7977 3101 3102OCI driver: 3103 * Ensure table Dims and GTYPE are retrieved for the correct table (#629) 3104 3105OGR_GMT driver: 3106 * avoid performance issue when opening layer with big number of fields. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8259. 3107 3108OGR_PDS driver: 3109 * avoid int overflow. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9136 3110 3111OpenFileGDB driver: 3112 * Catch a NaN in FileGDBDoubleDateToOGRDate to prevent undefined behavior. (#740) 3113 * fix potential crash on corrupted datasets. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=11313 3114 3115OSM driver: 3116 * allow parsing files with up to 10 000 nodes per way (#849) 3117 * avoid array overflow with ways with many tags. Relates to https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9618 3118 3119PCIDSK driver: 3120 * defer writing of segment header to improve performance when creating huge number of fields. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8191 3121 * fix performance issue when inserting in layer with huge number of fields. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8335. 3122 3123PDF driver: 3124 * fix the parser of drawing instructions that had issues with array objects 3125 3126PG driver: 3127 * add SPATIAL_INDEX=SPGIST/BRIN layer creation options (and PGDump as well) (#892) 3128 * add read/write support for JSON field subtype 3129 3130PGDump driver: 3131 3132PLScenes driver: 3133 * fix /vsicurl/ raster download 3134 * fix scene activation 3135 * add ground_control field in layer definition 3136 3137Shapefile driver: 3138 * avoid being dependent on correctness of file size field in .shp 3139 * fix corruption when deleting a field from a .dbf without records (#863) 3140 * Add CP1251 codepage name synonym (ANSI 1251) for DBF files. 3141 3142S57 driver: 3143 * add S57_AALL, S57_NALL, S57_COMF, S57_SOMF creation options (#810) 3144 3145SOSI driver: 3146 * fix memory leaks / null pointer dereference 3147 3148SQLite/Spatialite driver: 3149 * avoid SetFeature() to reset the iterator (#964) 3150 * Spatialite: read table name in its original case (#1060) 3151 * do not run spatial index creation in rollback code 3152 3153VFK driver: 3154 * create index on ID column only for selected (geometry-related) layers (#498) 3155 * create db indices after inserting data (#498) 3156 * create indices before resolving geometry 3157 * new open option - include filename field (#564) 3158 * speed up sequential feature access 3159 * fix leak of unfinalized statement (#634) 3160 * fix file check on Windows with large files (#637) 3161 * fix big int overflow, force text attributes (PODIL_CITATEL/PODIL_JMENOVATEL) to avoid int64 overflow (#672) 3162 * fix missing geometry for SBPG layer (#710) 3163 * missing fields in update mode gfs (#734) 3164 3165VRT driver: 3166 * revise logic for handling the <FID> element (or when it is omitted) (#941) 3167 3168WFS driver: 3169 * avoid potential bad cast. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9800 3170 3171WFS3 driver: 3172 * update to current version (May 2018) of the API draft (#626) 3173 * add USERPWD open option 3174 3175XLSX driver: 3176 * avoid stack buffer overflow is creating too many fields. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8198 3177 * avoid timeout. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8225 3178 * fix null pointer dereference. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8286 3179 3180== SWIG Language Bindings == 3181 3182All bindings: 3183 * use a dedicated VSILFILE class to avoid type mismatch (#601) 3184 * reload drivers if GDAL_SKIP/OGR_SKIP is defined with --config in gdal/ogr.GeneralCmdLineProcessor() 3185 * Add VSIFFlushL() 3186 * Add VSIErrorReset() 3187 3188CSharp bindings: 3189 * GDALCreateCopy.cs sample code: Correct misspelling in info message (#647) 3190 * SWIG 2.x and 3.x compatibility (#824) 3191 3192Java bindings: 3193 * update to Java 1.6 requirement to please 'ant maven' target 3194 * Fix JNI library bundling. 3195 3196Perl bindings: 3197 * fix make dependencies (#43) 3198 3199Python bindings: 3200 * Python logging improvements: add gdal.ConfigurePythonLogging() function (#1017) 3201 * added support for band / pixel interleave for numpy array 3202 * fixed NULL check on python's swig VSIFReadL (#572) 3203 * fix dataset[slice] access (#574) 3204 * added support for reading vsi data as memorybuffer and writing buffers via VSIFWriteL 3205 * setup.py: add more prominent warning when numpy is not available (#822) 3206 * for utilities as library functions, when gdal.UseExceptions() is enabled, do not emit Python exceptions when the operation is reported as successful 3207 * update import path 3208 * avoid crash in ReadRaster() under low memory condition (#1026) 3209 3210= GDAL/OGR 2.3.0 Release Notes = 3211 3212Note: due to the change of SCM during the development, #XXXX still refers to 3213Trac tickets. GitHub tickets are explicitly indicated with github #XXXX 3214 3215== In a nutshell... == 3216 3217 * New GDAL drivers: 3218 - PDS4: read/write 3219 - RDA: DigitalGlobe Raster Data Access (read-only) 3220 * New OGR drivers: 3221 - MVT: add read/write driver for Mapbox Vector Tile standalone files or tilesets 3222 - ESRIJson and TopoJSON: read-only, split from existing code of the GeoJSON driver 3223 - WFS3: *experimental* read-only driver 3224 * RFC 68: Make C++11 a build requirement 3225 https://trac.osgeo.org/gdal/wiki/rfc68_cplusplus11 3226 * RFC 70: Guess output format from extension of output filename, if no explicit format passed to C++ or Python utilities 3227 https://trac.osgeo.org/gdal/wiki/rfc70_output_format_guess 3228 * RFC 71: Move to GitHub for source code repository and issue tracker. 3229 https://trac.osgeo.org/gdal/wiki/rfc71_github_migration 3230 * Significantly improved drivers: 3231 - MBTiles (vector tiles support) 3232 - DXF 3233 - GRIB (GRIB2 write support) 3234 - WCS (support WCS 2.0) 3235 * Improvements in network-based /vsi handlers: /vsicurl, /vsis3, /vsigs. Add: 3236 - /vsiaz for Microsoft Azure Blobs 3237 - /vsioss for Alibaba Cloud Object Storage Service 3238 - /vsiswift/ for OpenStack Swift object storage 3239 * Command line utilities: use Unicode main on Windows to avoid issues with non-ASCII characters (#7065) 3240 * Update to EPSG v9.2 (#7125) 3241 * Update data/esri_extra.wkt and add data/esri_epsg.wkt, taken from https://github.com/Esri/projection-engine-db-doc (Apache v2 license) (#2163) 3242 * Add support for PROJ.5 new API (requires proj 5.0.1 or later). PROJ 4.X is still supported. 3243 * More than 1000 fixes for issues/vulnerabilities found by OSS-Fuzz 3244 * Remove raster OGDI driver (vector OGDI driver still there) (#7087) 3245 3246== New installed files == 3247 3248 * data/pds4_template.xml 3249 * data/esri_epsg.wkt 3250 3251== Backward compatibility issues == 3252 3253See MIGRATION_GUIDE.TXT 3254 3255== GDAL/OGR 2.3.0 - Build changes == 3256 3257Build(Unix): 3258 * refresh config.{guess,sub} from latest upstream; upgrade to libtool 2.4.6 files 3259 * add a --with-rename-internal-shapelib-symbols option that defaults to yes if --with-hide-internal-symbols is set; and make -with-rename-internal-libtiff/libgeotiff-symbols also defaults to yes when --with-hide-internal-symbols is set 3260 * add a --with-charls switch (enabled by default) to compile that JPEGLS driver 3261 * make --without-static-proj and --with-fgdb an error when filegdb (>= 1.5) embeds proj.4 symbols 3262 * add --with-zstd switch (for GTiff ZStd compressino with internal libtiff) 3263 * add support for ECW SDK 5.4, by detecting if we must link against the newabi or oldabi link 3264 * fix detection of 64bit file API with clang 5 (#6912) 3265 * GNUmakefile: add a static-lib and install-static-lib targets 3266 * use .exe extension when building with mingw64* toolchains (#6919) 3267 * Pass --silent to libtool in compile (C and C++), link, install and clean modes. 3268 * Limit number of installed cpl*.h files installed to a fixed list. 3269 * configure / m4/acinclude.m4: replace use of CCFLAGS by plain CFLAGS (github #529) 3270 * configure / m4/acinclude.m4: require 'long long' type (github #530) 3271 3272Build(Windows): 3273 * always build the PDF driver, even when none of poppler/podofo/pdfium are available, in which case it is write-only (#6938) 3274 * add new targets bindings, bindings_install and bindings_clean that depend on the new BINDINGS option in nmake.opt (#6948) 3275 * for Kakadu, add capability to build as a plugin, and make it possibly to link only against the Kakadu .lib/.dll instead of incorporating some of its .obj (#6940) 3276 * nmake.opt: Ensure PDB is included in release DLL if WITH_PDB requested (#7055) 3277 * nmake.opt: use /MDd for OPTFLAGS for DEBUG=1 builds (#7059) 3278 * nmake.opt: avoid some settings to be defined unconditionally (#5286) 3279 * nmake.opt: add configuration to enable openssl (which is needed for thread-safe curl use) 3280 3281Build(All): 3282 * fix compilation error with Crypto++ 7.0.0 (github #541) 3283 3284Developer corner: 3285 * Add scripts/setdevenv.sh to setup env variables needed for running GDAL without installing it 3286 3287== GDAL 2.3.0 - Overview of Changes == 3288 3289Port: 3290 * Add CPLJSONDocument/Object/Array - C++ thin wrapper around json-c library. (github #282) 3291 * /vsicurl/: fix occasional inappropriate failures in Read() with some combinations of initial offset, file size and read request size (#6901) 3292 * /vsicurl/: add a CPL_VSIL_CURL_NON_CACHED configuration option, so as to be able to specify filenames whose content must not be cached after dataset closing 3293 * /vsicurl/: honour GDAL_HTTP_MAX_RETRY and GDAL_HTTP_RETRY_DELAY config options. Add extended filename syntax to pass options use_head, max_retry, retry_delay and list_dir. 3294 * /vsicurl/: enable redirection optimization on signed URLs of Google Cloud Storage. Helps for the PLScenes driver (fixes #7067) 3295 * /vsicurl/ and derived filesystems: redirect ReadDir() to ReadDirEx() (#7045) 3296 * /vsicurl/ and related file systems: add compatibility with HTTP/2 (requires recent enough curl, built against nghttp2). Can be controlled with the GDAL_HTTP_VERSION=1.0/1.1/2/2TLS 3297 * /vsicurl/: fix 2.2 regression regarding retrieval of file size of FTP file (#7088) 3298 * /vsicurl/: when stat'ing a file, fallback from HEAD to GET if the server issues a 405 error 3299 * Add a VSICurlClearCache() function (bound to SWIG as gdal.VSICurlClearCache()) to be able to clear /vsicurl/ related caches (#6937) 3300 * CPLHTTPSetOptions(): use SearchPathA() for curl-ca-bundle.crt on Windows. See https://github.com/curl/curl/issues/1538 3301 * CPLHTTPFetch() / vsicurl: add retry on HTTP 429, and add exponential backoff logic for retry delay 3302 * CPLHTTPFetch(): when openssl is enabled, and used by libcurl, use openssl thread safety mechanism to avoid potential crashes in multithreading scenarios 3303 * CPLHTTPFetch(): add a SSL_VERIFYSTATUS option / GDAL_HTTP_SSL_VERIFYSTATUS configuration option to check OCSP stapling 3304 * CPLHTTPFetch(): add a USE_CAPI_STORE option / GDAL_HTTP_USE_CAPI_STORE configuration option to use certificates from the Windows certificate store 3305 * Ignore SIGPIPE that may arose during curl operations (mostly when using OpenSSL for TLS) 3306 * Add CPLHTTPMultiFetch() and CPLMultiPerformWait() 3307 * /vsis3/: support reading credentials from ~/.aws/credentials, ~/.aws/config or IAM role on EC2 instances 3308 * /vsis3/: properly handle cases where a directory contains a file and subdir of same names; implement Mkdir() and Rmdir() 3309 * /vsis3/: fix Seek(Tell(), SEEK_SET) fails if current position is not 0 (#7062) 3310 * /vsis3/: properly handle 307 TemporaryRedirection (#7116) 3311 * /vsis3/: fix support of bucket names with dot in them (#7154) 3312 * /vsis3/: make multipart upload work with Minio 3313 * /vsigs/: add new authentication methods using OAuth2 refresh token or service account or Google Compute Engine VM authentication, or using ~/.boto file 3314 * /vsigs/: add write, Unlink(), Mkdir() and Rmdir() support 3315 * /vsigs/: allow authentication to be done with the GOOGLE_APPLICATION_CREDENTIALS configuration option pointing to a JSon file containing OAuth2 service account credentials 3316 * /vsis3/ and /vsigs/: take into account user provided x-amz- / x-goog- HTTP headers with GDAL_HTTP_HEADER_FILE 3317 * Fix CPLReadDirRecursive() to behave properly on /vsis3/ buckets that have foo (file) and foo/ (sub-directory) entries (#7136) 3318 * /vsis3/: add a AWS_NO_SIGN_REQUEST=YES configuration option to disable request signing (#7205) 3319 * /vsis3, /vsigs, /vsioss, /vsiaz: fix support of non-ASCII characters in keys (#7143) 3320 * Add VSIGetActualURL(), typically to expand /vsis3/ paths to full URLs, and bind it to SWIG as gdal.GetActualURL() 3321 * Add VSIGetSignedURL() 3322 * Add VSIGetFileSystemsPrefixes() and VSIGetFileSystemOptions() 3323 * CPLFormFilename() / CPLProjectRelativeFilename(): add /vsis3 and similar file systems to the list of filesystems requiring unix separator (github #281) 3324 ù Make CPLFormFilename() properly work with http[s:]// filenames 3325 * Add a CPLGetErrorCounter() function that can be used to test if new errors have been emitted 3326 * Add cpl_safemaths.hpp to detect integer overflows (#6229) 3327 * /vsigzip/: avoid trying to write a .gz.properties file on a /vsicurl/ file (#7016) 3328 * CPLStrtod(): parse string like '-1.#IND0000000' as NaN instead of -1 (seen when looking at refs #7031, but does not fix it) 3329 * Fix CPLCopyTree() that doesn't properly on MSVC 2015 (and possibly other platforms) (#7070) 3330 * /vsimem/: to improve Posix compliance, do not make Seek() after end of file error out in read-only mode 3331 * cpl_config.h.vc: define HAVE_LONG_LONG 1; cpl_port.h remove MSVC specific logic for int64 (github #264) 3332 * /vsisparse/: make Read() detect end of file 3333 * GDALVersionInfo("BUILD_INFO"): report if GEOS is available 3334 * Add VSIMkdirRecursive() and VSIRmdirRecursive() 3335 * Add CPLGetHomeDir() 3336 * CPLSetErrorHandler(): avoid later crashes when passing a null callback (github #298) 3337 * CPLHTTPParseMultipartMime(): make it format the pasMimePart[].papszHeaders in a standard key=value format without EOL 3338 * CPLString: avoid std::string symbols to be exported with Visual Studio (#7254) 3339 * I/O on Android: add support for 64-bit file operations if API level >= 24 (Android 7.0 or later) (github #339) 3340 3341Core: 3342 * add GDALDataTypeIsFloating, GDALDataTypeIsSigned, GDALDataTypeUnionWithValue, GDALFindDataType, GDALFindDataTypeForValue (github #215). Add GDALDataTypeIsInteger() 3343 * Cleanup ARE_REAL_EQUAL() and GDALIsValueInRange() (#6945, #6946) 3344 * Various SSE2/AVX2 optimizations for GDALCopyWords() 3345 * GDALGCPsToGeoTransform(): add GDAL_GCPS_TO_GEOTRANSFORM_APPROX_OK=YES and GDAL_GCPS_TO_GEOTRANSFORM_APPROX_THRESHOLD=threshold_in_pixel configuration option (#6995) 3346 * RawDataset::IRasterIO(): don't assume all bands are RawRasterBand 3347 * GDALOpenInfo: make number of bytes read at opening configurable with GDAL_INGESTED_BYTES_AT_OPEN 3348 * GDALCopyWholeRasterGetSwathSize(): try to use at least 10 MB for swath size 3349 * GDALDatasetCopyWholeRaster(), GDALRasterBandCopyWholeRaster(), GDALCreateCopy(): always call AdviseRead() on the full extent of the source dataset (#7082) 3350 * make DefaultCreateCopy() copy RAT 3351 * Generate gcore/gdal_version.h from git date and sha for a dev version (Unix builds only) 3352 * Add GDALDataset::Open() 3353 * Add C++ iterators for layers, bands and features in GDALDataset 3354 * External .ovr: make sure that ExtraSamples tag is written 3355 * Overview creation: avoid creating too many levels, and fix related heap buffer overflow (github #557) 3356 * SetStatistics(): write a STATISTICS_APPROXIMATE=YES metadata item if bApproxOK=true, and take it into account in GetStatistics() (#4857,#4576) 3357 3358Algorithms: 3359 * Contour: make sure no 3D geometry is created unless -3d switch is defined (#336) 3360 * Warper: revise/improver how working data type is inferred from other parameters 3361 * Warper: when operating on single-band, skip target pixels whose source center pixel is nodata (2.2 regression, #7001) 3362 * Warper: avoid blocking when number of rows is 1 and NUM_THREADS > 1 (#7041). Also limit the number of threads so that each one processes at least 65536 pixels 3363 * Warper: use AdviseRead() when source chunks are sufficiently compact (#7082) 3364 * Warper: fix rounding error in scale factor computation (github #273) 3365 * Warper: use panSrcBands[0] in the single band case (regression fix, github #295) 3366 * Warper: add very special case to handle situation where input raster edge touches dateline, but proj.4 transformation involves a discontinuity (#7243) 3367 * Geoloc transformer: fix systematic pixel shift (github #244) 3368 * RPC transformer: set output coordinates to HUGE_VAL when failure occurs, so that a following coordinate transformation can detect the error too (#7090) 3369 * RPC transformer: return NULL at instantiation if the specified RPC_DEM file cannot be opened 3370 * Export GDALRegisterTransformDeserializer() and GDALUnregisterTransformDeserializer() (#5392) 3371 * GDALRasterize(): avoid hang in some cases with all_touched option (#5580) 3372 * Optimize GDALResampleConvolutionVertical() and GDALPansharpenOperation::WeightedBroveyPositiveWeightsInternal() for SSE2 / AVX 3373 * Overview / resampling: speed-up bicubic upsampling for SSE2 3374 * GDALGrid() with linear algorithm: avoid assertions/segmentation fault when GDALTriangulationFindFacetDirected() fails (#7101) 3375 * GDALComputeProximity(): fix int32 overflow when computing distances on large input datasets (#7102) 3376 * GDALAllRegister(): make sure that all drivers that need to look for sidecar files are put at the end 3377 3378Utilities: 3379 * GDAL and OGR C++ and Python utilities: accept -f or -of to specify output format 3380 * --optfile: re-parse inlined content with GDALGeneralCmdLineProcessor(), in particular to support --config key value in option file 3381 * gdalsrsinfo: for consistency with other output, do not quote the proj.4 string output 3382 * gdal_rasterize: fix segfault when rasterizing onto a raster with RPC (#6922) 3383 * gdal_rasterize: add a -to option to specify transformer options 3384 * gdal_rasterize / GDALRasterizeGeometries(): optimize rasterization for large number of small geometries (#5716) 3385 * gdal_rasterize: fix crash in some situations with ALL_TOUCHED option (#7176) 3386 * gdaladdo: support not specifying explicitly overview factors, and add -minsize option 3387 * gdal_translate: add -a_scale / -a_offset (#7093) 3388 * gdal_translate: add -colorinterp / -colorinterp_X options 3389 * DefaultCreateCopy()/gdal_translate: do not destroy target file in case of failed copy wen using -co APPEND_SUBDATASET=YES (#7019) 3390 * gdal_translate: make -b mask[,xx] use the appropriate band data type (#7028) 3391 * gdal_translate property copy RAT (or not-copy RAT when -norat is specified) 3392 * gdalwarp: make -crop_to_cutline works when RPC transform is involved 3393 * gdalwarp: for RPC warping add a few extra source pixels by default 3394 * gdalwarp: -crop_to_cutline: reduce number of iterations to find the appropriate densification (#7119) 3395 * gdalwarp: do not set implicitly nodata on destination dataset when -dstalpha is specified (#7075) 3396 * gdalwarp: display errors (such as invalid open options) on successful opening of destination dataset 3397 * gdalwarp: fix "-dstnodata inf" (#7097) 3398 * gdalwarp: fix when several input datasets with different SRS are specified, and no explicit target SRS is provided (#7170) 3399 * gdalwarp: make sure to try to redefine the destination nodata value from the source nodata even if the newly created dataset has already set a default nodata value (#7245) 3400 * gdalwarp: improve progress meter when using multiple source files. For GDALWarp() function, make sure that the progress goes monotonically from 0 to 1. (#352) 3401 * gdal2tiles.py: fix GDAL 2.2 regression where tilemapresource.xml was no longer generated (#6966) 3402 * gdal2tiles: add --processes=intval option to parallelize processing (#4379) 3403 * gdalinfo --format / ogrinfo --format: report extra metada items in a 'Other metadata items:' section (#7007) 3404 * gdalinfo: make sure to display geodetic coordinates always in degree (and not potentially in another unit such as grad) (#4198) 3405 * gdalinfo: report 'Mask Flags: PER_DATASET NODATA' when NODATA_VALUES metadata item is specified 3406 * gdal_edit.py: add a -colorinterp_X red|green|blue|alpha|gray|undefined option to change band color interpretation 3407 * gdal_contour: return with non-0 code if field creation or contour generation failed (#7147) 3408 * gdal_retile.py: fix failure if the filename contains % (percent) symbol (#7186) 3409 * gdalbuildvrt: make warnings about heterogeneous projection/band characteristics more explicit (#6829) 3410 * gdalbuildvrt: add support for band scale and offset (#3221) 3411 * gdal_fillnodata.py, gdal_pansharpen.py, gdal_polygonize.py, gdal_proximity.py, gdal_sieve.py, rgb2pct.py: avoid potential problem on Windows in verbose mode (github #458) 3412 3413Sample Python scripts: 3414 * Add gdal_mkdir.py, gdal_rm.py and gdal_rmdir.py samples scripts 3415 * gdalcopyproj.py: fix use of GCP related API (github #255) 3416 * ogr2vrt.py: automatically set relativeToVRT=1 for input and output filenames givn in relative form in the same directory 3417 3418Multi driver changes: 3419 * tag (and do needed changes) CALS, FUJIBAS, PAUX, SGI, RS2, GXF, TERRAGEN, Rasterlite, CPG, MSGN, Leveller as supporting GDAL_DCAP_VIRTUALIO 3420 3421AIGRID: 3422 * fix handling on raw 32-bit AIG blocks (#6886) 3423 3424BT driver: 3425 * make GetNoDataValue()/SetNoDataValue() use PAM 3426 3427DIMAP driver: 3428 * do not report dummy geotransform (see https://lists.osgeo.org/pipermail/gdal-dev/2018-January/048014.html) 3429 3430DTED driver: 3431 * Support VerticalCS for DTED and SRTM drivers when REPORT_COMPD_CS config option is set (github #237) 3432 3433ECW driver: 3434 * fix Windows compilation against old ECW SDK and VS < 2015 (#6943) 3435 * make AdviseRead() to store its call parameters, and only do the actual work in RunDeferredAdviseRead() if TryWinRasterIO() determines that the IRasterIO() parameters are compatible of the AdviseRead() ones (#7082) 3436 * data/ecw_cs.wkt: fix PRIMEM of MONTROME (#2340) 3437 3438EHdr driver: 3439 * support reading/writing .clr as/from RAT (#3253) 3440 * only write .stx if bApproxOK=false (github #514) 3441 3442ENVI driver: 3443 * support 'major frame offsets' keyword (#7114) 3444 3445ERS driver: 3446 add extension metadata (github #320) 3447 3448GeoPackage driver: 3449 * update from 'tiled gridded extension' to now OGC approved 'tiled gridded coverage data extension' (OGC 17-066r1) (#7159) 3450 * avoid corruption of gpkg_tile_matrix when building overviews, down to a level where they are smaller than the tile size (#6932) 3451 * fix opening subdatasets with absolute filenames on Windows (https://issues.qgis.org/issues/16997) 3452 * fix possible assertion / corruption when creating a raster GeoPackage (#7022) 3453 * properly handle non-0 nodata value in edge tiles, especially with TILING_SCHEME creation option 3454 * do not write empty tiles for Float32 data type 3455 * speed-up statistics retrieval on non-Byte datasets (#7096) 3456 * make DELLAYER:rastertable / DROP TABLE rastertable delete the table and all references to it (#7013) 3457 * create single tiled TIFF tiles if they are not bigger than 512x512 pixels 3458 * avoid multi-threading issues when creating TIFF tiles with GDAL_NUM_THREADS defined. 3459 * fix overview creation with big overview factors on some datasets 3460 3461GeoRaster driver: 3462 * handle memory allocation failures (#6884) 3463 * add support for GCP (#6973) 3464 3465GTiff driver: 3466 * add support for ZSTD compression/decompression (requires internal libtiff, or libtiff HEAD) 3467 * when IRasterIO() realizes that several blocks are going to be needed, use MultiRangeRead() interface for /vsicurl/ related file systems to get data in parallel 3468 * change default value of BIGTIFF_OVERVIEW to be IF_SAFER (github #231) 3469 * make sure that -co PHOTOMETRIC=RGB overrides the color interpretation of the first 3 bands of the source datasets (#7064) 3470 * allow modifying color interpretation on existing file opened in update mode 3471 * Internal libtiff: resync with upstream HEAD (post 4.0.9) 3472 * Internal libgeotiff: resync with upstream HEAD: use ProjScaleAtCenterGeoKey for CT_Mercator if ProjScaleAtNatOriginGeoKey is not set (github #296) 3473 * fix compilation without BIGTIFF_SUPPORT (#6890) 3474 * fix reading subsampled JPEG-in-TIFF when block height = 8 (#6988) 3475 * when reading a COMPD_CS (and GTIFF_REPORT_COMPD_CS=YES), set the name from the GTCitationGeoKey (#7011) 3476 * on reading use GeogTOWGS84GeoKey to override the defaults TOWGS84 values coming from EPSG code (#7144) 3477 * when writing SRS, do not drop EXTENSION PROJ4 node if the projection is unknown (#7104) 3478 * make it accept to write SetGeoTransform([0,1,0,0,0,1]) as a ModelTransformationTag, and remove particular cases with the [0,1,0,0,0,1] geotransform (#1683) 3479 * warn when SetNoDataValue() is called on different bands with different values (#2083) 3480 * add a GTIFF_HONOUR_NEGATIVE_SCALEY=YES config option that can be set to honour negative ScaleY value in GeoPixelScale tag according to the GeoTIFF specification (#4977) 3481 * read/write Z dimension for ModelTiepointTag and ModelPixelScaleTag and translate it into/from band scale and offset, when there's a SRS with a vertical component (#7093) 3482 * fix reading PCSCitationGeoKey (#7199) 3483 * add support for reading and writing TIFF_RSID and GEO_METADATA GeoTIFF DGIWG tags 3484 * use consistently multiplication/division by 257 when converting between GDAL [0,255] range to TIFF [0,65535] range for color map values (#2213) 3485 * don't write <GDALMetadata> colorinterp when writing a file with a color table 3486 * copy georeferencing info to PAM if the profile is not GeoTIFF 3487 3488GRIB driver: 3489 * add GRIB2 write support 3490 * update to degrib 2.14 and g2clib 1.6.0 3491 * add support for GRIB2 template 4.32 (github #249) 3492 * add support for GRIB2 template '4.32 Simulate (synthetic) Satellite Product' 3493 * add support for GRIB2 template 4.40 (Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents) 3494 * update table 4.2-0-7 current (github #274) 3495 * add support for GRIB1 products with non-zero NV (number of vertical coordinate parameters) field in GDS (NV is just ignored) (#7104) 3496 * add support for Rotated pole LatLon projections (#7104) 3497 * adjust the longitude range to be close to [-180,180] when possible for products whose left origin is close to 180deg. Can be controlled with the GRIB_ADJUST_LONGITUDE_RANGE=YES/NO config option, that defaults to YES (#7103) 3498 * advertise .grb2 and .grib2 extensions in metadata 3499 * expose product discipline of GRIB2 products in GRIB_DISCIPLINE (#5108) 3500 * add a GRIB_PDS_TEMPLATE_ASSEMBLED_VALUES metadata items which expose a slightly higher view of GRIB_PDS_TEMPLATE_NUMBERS 3501 * speed-up GetNoData() implementation of GRIB2 files by avoiding decompressing the data 3502 * GRIB2: add support for Transverse Mercator, Albers Equal Area, Lambert Azimuthal projections, fixes in Mercator and Polar Stereographic support, adjustment for GS80 and WGS84 datums 3503 * correctly read Mercator as Mercator_2SP when stdparallel1 != 0 3504 * GRIB2: add support for Grid point data - IEEE Floating Point Data template 5.4 encoding 3505 * GRIB2: report Section 1 / Identification section as GRIB_IDS metadata item 3506 * fix decimal_scale_factor != 0 handling with nbits = 0 for simple packing and JP2K compression/decompression, and PNG compression. 3507 * GRIB2: don't error out on a unhandled template in Section 4 3508 * remove TDLPack support 3509 3510GSAG driver: 3511 * fix reading issue that could cause a spurious 0 value to be read and shift all following values (#6992) 3512 3513GTX driver: 3514 * do not emit error when opening with GDAL_PAM_ENABLED=NO (#6996) 3515 3516GRC driver: 3517 * Fix handling of alpha values in GRC color table (#6905) 3518 * Handle case of 0-len GRC class names (#6907) 3519 3520HDF5 driver: 3521 * Added CInt16, CInt32, CFloat32, CFloat64 support (github #359) 3522 * HDF5 driver as a plugin: register the BAG driver as well (#5802) 3523 3524HF2 driver: 3525 * creation: copy source information (including nodata) into PAM if needed (#6885) 3526 * fix reading tiles that are 1-pixel wide (2.1 regression, #6949) 3527 3528HFA driver: 3529 * add GDAL_HFA_OVR_BLOCKSIZE configuration option to control HFA overviews block size (github #292) 3530 3531HTTP driver: 3532 * do not open the underlying dataset with GDAL_OF_SHARED, to avoid later assertion 3533 3534ISIS3 driver: 3535 * make sure that -co USE_SRC_HISTORY=NO -co ADD_GDAL_HISTORY=NO results in remove of History section (#6968) 3536 * fix logic to initialize underlying GeoTIFF file in IWriteBlock(), and implement Fill() (#7040) 3537 3538JP2ECW driver: 3539 * add NBITS creation option, and automatically select codestream output for .j2k extension 3540 3541JP2KAK driver: 3542 * add support fr Kakadu 7.A (#7048) 3543 * fix lossless compression with NBITS != 8 for Byte and NBITS != 16 for UInt16 3544 * use tile dimensions as block size up to 2048x2048 (#6941) 3545 * make write side honour .j2k extension to generate only codestream 3546 3547JP2OpenJPEG driver: 3548 * add support for OpenJPEG 2.2 (#7002) and 2.3 (#7074). Drop support for openjpeg 2.0 3549 * fix performance issues with small images with very small tile size, such as some Sentinel2 quicklooks (#7012) 3550 * emit warning if GMLJP2v2 explicitly requested but georeferencing implemented 3551 * allow YCC for non-Byte datasets; and allow 4-band MCT with openjpeg >= 2.2 3552 3553JPEG driver: 3554 * Add compatibility with libjpeg-turbo 1.5.2 that honours max_memory_to_use 3555 * add capability to write EXIF and GPS tags in a EXIF segment 3556 * Internal libjpeg: provide implementation of tmpfile() that works better on Windows (#1795) 3557 * avoid mis-identification of some SRTMHGT files as JPEG 3558 3559JPEG2000 driver: 3560 * add NBITS creation option, and automatically select codestream output for .j2k extension 3561 3562KEA driver: 3563 * add some additional metadata items (STATISTICS_HISTOBINVALUES and STATISTICS_HISTONUMBINS) (#6892) 3564 3565L1B driver: 3566 * support reading NOAA18 datasets (#7115) 3567 3568MBTiles driver: 3569 * add read/write support for Mapbox vector tiles 3570 * support opening and creating datasets with tiles whose dimension is not 256 (#7233) 3571 * default to opening as RGBA (#6119) 3572 3573MEM driver: 3574 * Avoid Create(foo.tif) / CreateCopy(foo.tif) on the MEM or Memory drivers to delete a 'real' foo.tif file 3575 * add RAT support 3576 3577MRF driver: 3578 * Add Zen chunk support 3579 * Open option to ignore decompression errors and missing data files 3580 * delay data file creation when NOCOPY is set 3581 * Identify MRF metadata passed as filename 3582 * Initialize PAM better on CopyCreate, enable external mask. 3583 * Fix for coordinates when opening single overview level 3584 * Use input mask if available to filter input data when creating JPEG compressed files. 3585 * Add open option to select Z-slice, also Z-slice selection in the metadata file 3586 3587MrSID driver: 3588 * add support for LTI_COLORSPACE_GRAYSCALEA and LTI_COLORSPACE_GRAYSCALEA_PM color 3589 spaces 3590 3591NetCDF driver: 3592 * avoid vector vs raster variable confusion that prevents reading Sentinel3 datasets, and avoid invalid geolocation array to be reported (#6974) 3593 * fix raster read as nodata with Byte datatype, (valid_range={0,255} or _Unsigned = True) and negative _FillValue (#7069) 3594 * be more tolerant on the formatting of standard parallel (space separated instead of {x,y,...} syntax), and accept up to 2/1000 error on spacing to consider a regular grid, to be able to read files provided by the national weather institute of Netherlands (KNMI) (#7086) 3595 * on creation, attach grid_mapping attribute to all bands 3596 * netCDF: support UTF-8 filenames on Windows (#7065) 3597 * add support for reading files in rotated pole projection (#4285) 3598 * behave correctly when an extra dimension of a variable has a corresponding 1D variable of different names (#7165) 3599 * netCDF: fix bad interaction of SetNoDataValue() and SetGeoTransform()/SetProjection() for NC4/NC4C modes (#7245) 3600 3601NITF driver: 3602 * add support for NITF CCINFA TRE (github #232) 3603 * data/nitf_spec.xml: fix location of PIAPRD TRE (github #234) 3604 * make sure that BLOCKA_ or TRE=BLOCKA= creation option override source NITF metadata; add a USE_SRC_NITF_METADATA=YES/NO creation option; make sure that gdal_translate doesn't preserve source BLOCKA when georeferencing is modified 3605 * fix swapped lines and samples in IMRFCA (github #289) 3606 * allow to read single-block JPEG2000 compressed images with one dimension > 8192 pixels (fixes #407) 3607 3608PCIDSK driver: 3609 * sort overviews (#7100) 3610 3611PCRaster driver: 3612 * fix fseek/ftell for large files on Windows (#322) 3613 3614PDF driver: 3615 * add support for Poppler 0.58 (#7033) 3616 * round to upper integer when computing a DPI such that page size remains within limits accepted by Acrobat (#7083) 3617 * do not emit 'Cannot find GPTS object' on VP.Measure objects whose Subtype != GEO 3618 3619PDS driver: 3620 * map STEREOGRAPHIC with fabs(lat)=90 to Polar_Stereographic (#6893) 3621 3622PLMosaic driver: 3623 * update to use the new Basemaps and Mosaics API 3624 * take into account BBOX for XYZ tiles 3625 3626PNM driver: 3627 * add .pgm and .ppm extensions in metadata 3628 3629RMF driver: 3630 * add RMF native overviews support (github #266) 3631 * fix raster garbage values while reading sparse RMF files (github #267) 3632 * add native overview build (github #275) 3633 * fix NoData value update (github #312) 3634 * fix elevation units write and update (github #314) 3635 3636RRASTER driver: 3637 * add support for reading creator and created metadata items, band names and color table / RAT 3638 * add update and create/createcopy support 3639 3640SAGA driver: 3641 * add support for .sg-grd-z files (github #228) 3642 3643Sentinel2 driver: 3644 * make sure that the True Color Image subdatset really uses the R,G,B bands and not the R,R,R (#7251) 3645 * add support for direct opening of .zip files of new safe_compact L1C products (#7085) 3646 3647SNODAS driver: 3648 * accept header lines up to 1024 characters (github #506) 3649 3650SRTMHGT driver: 3651 * set appropriate description when opening a .hgt.zip file 3652 * recognizes the .hgt.gz extension (#7016) 3653 * add support for reading .SRTMSWBD.raw.zip files (GRASS #3246) 3654 3655USGSDEM driver: 3656 * properly handle southern hemisphere UTM projections (#344) 3657 3658VICAR driver: 3659 * optimize nodata handling, and map STEREOGRAPHIC with fabs(lat)=90 to Polar_Stereographic (#6893) 3660 3661VRT driver: 3662 * add option for separable kernel (github #216) 3663 * warn if band attribute of VRTRasterBand is not the one expected 3664 * implement FlushCache() 3665 * fix use of VRTs that point to the same source in multi-threaded scenarios (#6939) 3666 * Warped VRT: correctly take into account cutline for implicit overviews; also avoid serializing a duplicate CUTLINE warping options in warped .vrt (#6954) 3667 * Warped VRT: fix implicit overview when output geotransform is not the same as the transformer dst geotransform (#6972) 3668 * fix IGetDataCoverageStatus() in the case of non-simple sources, which unbreaks gdalenhance -equalize (#6987) 3669 * re-apply shared='0' on sources if existing in original VRT when rewriting it due to invalidation 3670 * avoid error being emitted when opening a VRTRawRasterBand in a .zip files (#7056) 3671 * implement VRTDataset::AdviseRead() (in the particular case of a single source) (#7082) 3672 * allow to incorporate a warped VRT as CDATA in the SourceFileName field of a regular VRT 3673 * VRTDerivedRasterBand: fix detection of Python runtime already loaded when more than 100 modules are linked. Fixes QGIS3 use case (#7213) 3674 * add RAT support 3675 * for consistency, make sure that VRT intermediate datatype demotion is done, e.g that a VRT band of type Byte, with a source of type Float32, requested as Float32 buffer involves Float32 -> Byte -> Float32 conversions 3676 * VRTDataset::AddBand(): honour 'PixelFunctionLanguage' option (github #501) 3677 3678WCS driver: 3679 * add support for WCS 2.0 3680 * add caching 3681 * add various open options 3682 3683WMS driver: 3684 * ArcGIS miniserver: use latestWkid and wkt metadata (#6112) 3685 * avoid AdviseRead() to download too many tiles at once (#7082) 3686 * recognize /ImageServer?f=json ESRI endpoints 3687 * Add support for maximum size and expiration time and unique per dataset name for WMS cache 3688 3689XYZ driver: 3690 * fix 2.2.0 regression where the driver hangs on some dataset with missing samples (#6934) 3691 * support non numeric characters when there is an header line (#7261) 3692 3693== OGR 2.3.0 - Overview of Changes == 3694 3695Core: 3696 * OGRLayer::FilterGeom(): make sure a feature with a null or empty geometry never matches a spatial filter (#7123) 3697 * OGRSimpleCurve::get_LinearArea(): return 0 on a non-closed linestring (#6894) 3698 * OGRFeature::SetField: Improve the setting for OFTInteger fields from a double. 3699 * OGR_G_TransformTo(): emit error message when source geometry has no SRS 3700 * OGR API SPY: various fixes 3701 * OGRCurve::get_isClosed(): do not take into account M component (#7017) 3702 * OGRLineString::setPoint() and addPoint() with a OGRPoint* argument. properly takes into account ZM, Z and M dimensions (#7017) 3703 * OGRMultiSurface: refuse to add a triangle to it. (github #357) 3704 * OGRPolyhedralSurface: importFromWkt(): remove support for invalid constructs, that contrary to comments are not supported by PostGIS 3705 * Fix OGR[Curve]Polygon::Intersects(OGRPoint*) to return true when point is on polygon boundary (#7091) 3706 * Emit an explicit error message for OGRGeometry::IsValid(), IsSimple(), IsRing() when GEOS is not available 3707 * Make OGRGeometry::assignSpatialReference() a virtual method, and make implementation recursively assign the SR to child geometries (#7126) 3708 * Expose OGRGeometry::swapXY() as OGR_G_SwapXY() in C API (#7025) 3709 * importFromWkt(): fix import of GEOMETRYCOLLECTION ending with POINT EMPTY or LINESTRING EMPTY (#7128, 2.1 regression) 3710 * OGRSQL: avoid silent cast so that int64->int overflow is better signaled 3711 * OGRSQL: accept using the real FID column name (in addition to the special 'FID' alias) (#7050) 3712 * Add GDAL_DCAP_NONSPATIAL capability to ODS, REC, XLS and XLSX drivers 3713 * Add GDAL_DCAP_FEATURE_STYLES capability to CAD, DGN, DWG, DXF, EDIGEO, JML, KML, lIBLML, MITAB, OpenAIR and VRT drivers 3714 * Add DMD_CREATIONFIELDDATASUBTYPES metadata type (github #278) 3715 * OGRParseDate(): only accept seconds up to 60 included for leap seconds (#6525) 3716 * Fix OGRPolygon::IsPointOnSurface() broken with polygons with holes 3717 * OGRFormatDouble(): add a OGR_WKT_ROUND config option that can be set to FALSE to disable the heuristics that remove trailing 00000x / 99999x patterns (#7188) 3718 * Add C++ iterators for feature in layer and field values in features. 3719 * Add C++ iterators for "sub-parts" of geometry classes 3720 * Const-correctness fixes in signatures of methods of OGRFeatureDefn, OGRFeature, OGRFieldDefn and OGRGeomFieldDefn classes. 3721 * Fix constness of OGR_G_CreateFromWkb(), OGR_G_CreateFromFgf(), OGR_G_ImportFromWkb() and related C++ methods 3722 * Fix const correctness of OGRGeometry::importFromWkt() and OGRGeometryFactory::createFromWkt(), and add compatibility wrappers 3723 3724OGRSpatialReference: 3725 * Update to EPSG v9.2 (#7125) 3726 * Update data/esri_extra.wkt and add data/esri_epsg.wkt, taken from https://github.com/Esri/projection-engine-db-doc (Apache v2 license) (#2163) 3727 * Add support for PROJ.5 new API (requires proj 5.0.1 or later) 3728 * Add a OSRFindMatches() function to look for equivalent SRS in the EPSG database, map it to SWIG Python. Enhance gdalsrsinfo to use it 3729 * Add OGRSpatialReference::convertToOtherProjection() (bound to C as OSRConvertToOtherProjection() and to SWIG) to transform between different equivalent projections (currently Merc_1SP <--> Merc_2SP and LCC_1SP <--> LCC_2SP) (#3292) 3730 * Fix OGRSpatialReference::IsSame() to return FALSE when comparing EPSG:3857 (web_mercator) and EPSG:3395 (WGS84 Mercator) (#7029) 3731 * importFromProj4(): implement import of Hotine Oblique Mercator Two Points Natural Origin, and fix OGRSpatialReference::Validate() for that formulation (#7042) 3732 * morphFromESRI(): fix remapping from DATUM = D_S_JTSK + PRIMEM = Ferro to OGC DATUM System_Jednotne_Trigonometricke_Site_Katastralni_Ferro 3733 * Add alternate simpler signature for OGRGeometryFactory::createFromWkt() 3734 * Add importFromWkt(const char**) 3735 3736Utilities: 3737 * ogrmerge.py: fix '-single -o out.shp in.shp' case (#6888) 3738 * ogrmerge.py: allow using wildchar '*' in source names and use glob.glob to expand it 3739 * ogrmerge.py: correctly guess vrt format 3740 * ogrmerge.py: error when outputting to a existing vrt if -overwrite_ds is not specified 3741 * ogrmerge.py: use ogr.wkbUnknown to fix -nlt GEOMETRY 3742 * ogr2ogr: fix crash when using -f PDF -a_srs (#6920) 3743 * ogr2ogr: make -f GMT work again (#6993) 3744 * ogr2ogr: make it fail if GetNextFeature() returned NULL with an error 3745 * ogr2ogr: honour -select when using -addfiels 3746 * ogr2ogr: preserve source geometry field name for output drivers that support GEOMETRY_NAME layer creation option (such as GPKG) 3747 * ogr2ogr: add support for circularstring, compoundcurve, curvepolygon, multicurve and multisurface in SetZ() 3748 * GDALVectorTranslate(): fix converting from Memory to Memory datasources (#7217) 3749 * gnmmanage: fix crash on shape files with linestring and multilinestring geometries mixing 3750 * ogrtindex: fix crash when using -f SQLITE -t_srs XXXX (#7053) 3751 * ogrinfo: always open in read-only mode, unless -sql without -ro is specified 3752 * ogrinfo/ogr2ogr with -sql @filename: remove lines starting with '--' (github #459) 3753 3754Multi driver changes: 3755 * port/tag ILI, NAS, DGN, NTF, SDTS, OGR_GMT, Geoconcept, AVCE00, AVCBin to VirtualIO API 3756 3757Amigocloud driver: 3758 * Fixed data field types (github #246) 3759 * Output list of datasets if dataset id is not provided. 3760 * Implemented waiting for job to complete on the server. This will improve write to AmigoCloud reliability. 3761 * Add HTTP user agent (github #263) 3762 * add OVERWRITE open option (github #268) 3763 3764AVCE00 driver: 3765 * Make sure AVCE00 opens .e00 files and not AVCBIN one 3766 3767AVCBin driver: 3768 * fix 2.1 regression regarding attributes fetching (#6950) 3769 3770Carto driver: 3771 * fix append mode by retrieving the sequence name for the primary key (#7203) 3772 * fix insertion with ogr2ogr -preserve_fid (#7216) 3773 * fix missing features when iterating over a SQL result layer with pagination (#6880) 3774 3775CSV driver: 3776 * add a STRING_QUOTING=IF_NEEDED/IF_AMBIGUOUS/ALWAYS layer creation option, that defaults to IF_AMBIGUOUS (quote strings that look like numbers) 3777 * temporarily disable spatial and attribute filter when rewriting CSV file (#7123) 3778 * fix autodetection of types when a Real value is followed by a Integer64 one (#343) 3779 3780DGNv8 driver: 3781 * add support for building against static library (#7155) 3782 3783DXF driver: 3784 * Support LEADER and MULTILEADER entities (#7111, #7169) 3785 * Support HELIX and TRACE entities 3786 * Support spline hatch boundaries 3787 * Support MLINE entity 3788 * Support rows/columns within INSERT 3789 * Add support for block attributes (ATTRIB entities) (#7139) 3790 * Support text styles (#7151) 3791 * Support cylinders (CIRCLE entities with thickness) 3792 * set dx and dy to DXF LABEL style string on TEXT and MTEXT objects (github #225) 3793 * fix reading of hatches with boundaries that contain elliptical arcs (#6971) 3794 * fix reading files where INSERT is the last entity and DXF_MERGE_BLOCK_GEOMETRIES is false (#7006) 3795 * fix ordering of vertices in a SOLID entity (#7089) 3796 * only apply certain escaping rules to the text of the MTEXT object (#7047) 3797 * Handle all known MTEXT escapes; allow user to turn off text unescaping (fixes #7122) 3798 * do not apply the OCS transformation for MTEXT (#7049) 3799 * do not output dx and dy in MTEXT style strings (#7105) 3800 * apply DXF codepage encoding while decoding ExtendedEntity field (#5626) 3801 * allow user to set the tolerance used when joining parts of a hatch boundary with a DXF_HATCH_TOLERANCE config option, and default to 1e-7 of the extent of the geometry (#7005) 3802 * refactor out block insertion to its own function, and transform insertion point of an INSERT entity into OCS (#7077) 3803 * on write side, force 'defpoints' layer to be non-displayed (#7078) 3804 * entities on layer 0 within a block should inherit the style of the layer the INSERT is on. Do that for entities with a PEN style string for now. (#7099) 3805 * OCS fixes for HATCH and INSERT entities (#7098) 3806 * defer inlining of blocks until actually required (#7106) 3807 * Read DIMSTYLEs and block record handles 3808 * Handle linetype scales (#7129) 3809 * Improved support for DIMENSION entities (#7120) 3810 * handle ByBlock colors (#7130) 3811 * Fix parsing of complex linetypes (#7134) 3812 * Correct color for ByBlock text features; respect hidden objects (#5592, #7099, #7121) 3813 * Make ACAdjustText also transform text width and offset (#7151) 3814 * Honor block base points (#5592) 3815 * Use BRUSH style tool instead of PEN when reading polygonal SOLIDs and leader arrowheads; add PEN style string to 3DFACE 3816 * Specify ground units for TEXT dx and dy style values; interpret dx and dy in the writer 3817 * Fix bug in text style property retrieval; handle text color in DIMENSION fallback renderer 3818 * Write text styles and HATCH elevations; fix output of invalid extent values (#7183) 3819 * Allow access to unused entity group codes with RawCodeValues field (github #226) 3820 * Reduce the size of header.dxf and trailer.dxf (tested with AutoCAD, QCAD Teigha, QCAD dxflib, FME) 3821 * Make the writer aware of linetype scaling 3822 * Don't force elevation to zero in smooth polylines (#7200) 3823 * Always output all edges in polyface mesh, and add styling (#7219) 3824 * Remove incorrect OCS transformation from MLINE entities 3825 * Introduce 3D extensible mode to allow translation of 3D entities 3826 3827ESRIJson driver: 3828 * "New": extracted from code previously in GeoJSON driver 3829 * avoid endless looping on servers that don't support resultOffset (#6895) 3830 * use 'latestWkid' in priority over 'wkid' when reading 'spatialReference' (github #218) 3831 * recognize documents that lack geometry fields (#7071) 3832 * do not attempt paging requests on a non-HTTP resource 3833 * recognize documents starting with a very long fieldAliases list (#7107) 3834 3835FileGDB driver: 3836 * remove erroneous ODsCCreateGeomFieldAfterCreateLayer capability declaration (github #247) 3837 * add LAYER_ALIAS layer creation option (#7109) 3838 * FileGDB / OpenFileGDB: attempt to recover EPSG code using FindMatches() 3839 * FileGDB / OpenFileGDB: linearize Bezier curves with a more reasonable number of points 3840 3841GeoJSON driver: 3842 * Add support for json-c v0.13 (github #277) 3843 * support loading (true) GeoJSON files of arbitrary size (#6540) 3844 * in update mode, support appending features, in some cases, without ingesting features of existing file into memory 3845 * writer: accept writing ZM or M geometry by dropping the M component (#6935) 3846 * fix 2.2 regression regarding lack of setting the FeatureCollection CRS on feature geometries (fixes https://github.com/r-spatial/sf/issues/449#issuecomment-319369945) 3847 * make sure that -lco WRITE_NAME=NO works even if the native data has a 'name' attribute 3848 * ignore 'properties' member of features whose value is null or empty array 3849 * fix writing of id with RFC7946=YES (#7194) 3850 * add ID_FIELD and ID_TYPE layer creation options 3851 3852GeoPackage driver: 3853 * default to version 1.2 (#7244) 3854 * speed-up loading of databases with hundreds of layers 3855 * make driver robust to difference of cases between table_name in gpkg_contents/gpkg_geometry_columns and name in sqlite_master (#6916) 3856 * fix feature count after SetFeature() with sqlite < 3.7.8 (#6953) 3857 * do not error out if extent in gpkg_contents is present but invalid (#6976) 3858 * avoid GetFeature() to hold a statement, that can cause database locking issues (https://issues.qgis.org/issues/17034) 3859 * emit warning when feature geometries are not assignable to layer geometry type 3860 * remove UNIQUE keyword for PRIMARY KEY of gpkg_metadata (doesn't hurt, but just to align with the examples of DDL in the GeoPackage spec) 3861 * fix logic to detect FID on SQL result layer when several FID fields are selected (#7026) 3862 * fix handling of spatial views 3863 * do not try to update extent on gpkg_contents after GetExtent() on a empty layer of a datasource opened in read-only mode 3864 * when inserting a SRS with a non-EPSG code, then avoid using srs_id that could be later assigned to a EPSG code 3865 * when deleting a layer, delete from gpkg_metadata metadata records that are only referenced by the table we are about to drop 3866 * fix incorrect rtree_<t>_<c>_update3 trigger statement (https://github.com/opengeospatial/geopackage/issues/414) 3867 * fix definition of extensions 3868 * only create metadata table if needed, and register it as extension 3869 * declare gpkg_crs_wkt extension when using GPKG_ADD_DEFINITION_12_063=YES config option, and do not emit warning when finding it declared 3870 3871GeoRSS driver: 3872 * fix detection of field type (#7108) 3873 3874GML driver: 3875 * CreateGeometryFromGML(): accept gml:Arc with odd number of points > 3, even if they are invalid 3876 * decode gml:Solid as PolyhedralSurface (#6978) 3877 * JPGIS FGD v4: fix logic so that coordinate order reported is lon/lat (github #241) 3878 * a GML_FEATURE_COLLECTION=YES/NO dataset creation option 3879 * fix FORCE_SRS_DETECTION=YES effect on feature count and SRS reporting on gml files with .gfs (#7046) 3880 * do not try to open some kml files (#7061) 3881 * do not report gml:name / gml:description of features as layer metadata 3882 3883GMLAS driver: 3884 * get the srsName when set on the srsName of the gml:pos of a gml:Point (#6962) 3885 * CityGML related fixes: better take into account .xsd whose namespace prefix is not in the document, fix discovery of substitution elements, handle gYear data type (#6975) 3886 * properly interpret SolidPropertyType (#6978) 3887 * handle GML geometries in elements that are a substitutionGroup of an element (#6990) 3888 * make sure to try namespaces that are indirectly imported (helps in the case of parsing the result of a WFS GetFeature request) 3889 * take into account gYearMonth XML data type (https://github.com/BRGM/gml_application_schema_toolbox/issues/46) 3890 * implement resolution of internal xlink:href='#....' references (https://github.com/BRGM/gml_application_schema_toolbox/issues/31) 3891 * Recognize gml:Envelope as a Polygon geometry (https://github.com/BRGM/gml_application_schema_toolbox/issues/56#issuecomment-381967784) 3892 3893GMT: 3894 * fix creation of several layers 3895 3896IDB driver: 3897 * optimize spatial query using spatial index and st_intersects function (#6984) 3898 * close connection at dataset closing (#7024) 3899 3900ILI driver: 3901 * declare OLCCreateField and OLCSequentialWrite capabilities 3902 3903Ingres driver: 3904 3905JML driver: 3906 * add support for reading and write SRS from gml:Box element (#7215) 3907 3908KML driver: 3909 * KML / LIBKML: read documents with an explicit kml prefix (#6981) 3910 * KML/LIBKML: make sure layer names are unique (QGIS github#5415) 3911 3912LIBKML driver: 3913 * fix reading placemarks in toplevel container, when it has subfolders (#7221) 3914 * improve open performance on huge number of layers 3915 3916MDB driver: 3917 * fix multi-thread support (https://issues.qgis.org/issues/16039) 3918 3919MITAB driver: 3920 * support for additional datums (#5676) 3921 * add support for Reseau_National_Belge_1972 / EPSG:31370 on writing (#6903) 3922 * add support for SWEREF99 datum (#7256) 3923 * fix EPSG datum code for NTF Paris 3924 * support units as code instead of string when reading a coordsys string from a .mif (#3590) 3925 * add read/write support between MapInfo text encodings and UTF-8. Add ENCODING layer/dataset creation option (github #227) 3926 * do not emit error if the .ind file is missing, just a debug message (#7094) 3927 * accept creating files with LCC_1SP SRS (#3292) 3928 * support 'CREATE INDEX ON layer_name USING field_name' (if called after field creation and before first feature insertion) 3929 * avoid reporting invalid extent on empty .mif 3930 * report aspatial .tab as wkbNone geometry type 3931 * export BRUSH(fc:#.....) with mapinfo brush pattern 2 (solid fill) 3932 3933mongoDB driver: 3934 * compilation fix on Windows 3935 3936MSSQLSpatial driver: 3937 * Fix issues on x64 (#6930) 3938 * Implement EXTRACT_SCHEMA_FROM_LAYER_NAME layer creation option. 3939 * properly format DELETE statement with schema (#7039) 3940 3941MySQL: 3942 * fix compilation issue with MariaDB 10.1.23 (#6899) and MariaDB 10.2 (#7079) 3943 * make sure geometry column name is properly set (GDAL 2.0 regression, github #397) 3944 3945NAS driver: 3946 * [NAS/GML] try reversing non contiguous curves 3947 * Allow usage of a GFS template file for type assignment and mapping of element paths to attributes and remove arbitrary hacks that used to avoid attribute name conflicts: 3948 * New option: NAS_GFS_TEMPLATE: specify gfs template 3949 * New option: NAS_NO_RELATION_LAYER: skip unused alkis_beziehungen (also makes progress available) 3950 * Multiple geometries per layer 3951 * NAS_INDICATOR updated to "NAS-Operationen;AAA-Fachschema;aaa.xsd;aaa-suite" 3952 * use single geometry column name from input (like GMLAS) 3953 * accept unqualified attribute name in wfs:Update 3954 3955NTF driver: 3956 * fix regression introduced by fix for https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2166 causing some valid records to be skipped (#7204) 3957 3958NULL driver: 3959 * Generalize OGR NULL development driver as a GDAL raster+vector one; enable to compile it --with-null 3960 3961OCI driver: 3962 * initialize in multi-threaded compatible mode (https://issues.qgis.org/issues/17311) 3963 * support for extended max_string_size (#7168) 3964 3965ODBC driver: 3966 * deal with table names that require double quoting (#7242) 3967 3968ODS driver: 3969 * add read/write support for Boolean sub datatype 3970 3971OSM driver: 3972 * performance improvements 3973 * increase string buffer for osm XML files (#6964) 3974 * OGR_SQL/OSM: avoid OSM driver warning about attribute filter not being taken into account when issuing a 'select * from X limit Y' request on a OSM datasource 3975 3976OpenFileGDB driver: 3977 * properly read GeneralPolygon with M component whose all values are set to NaN (#7017) 3978 3979PDF driver: 3980 * make OGR_PDF_READ_NON_STRUCTURED=YES configuration option work with documents without layers (#6359) 3981 * Improvements to text and dash pattern support in writer (#7185) 3982 3983PDS driver: 3984 * fix reading 8-byte IEEE_REAL fields (github #570) 3985 3986PG driver: 3987 * do not be confused by a 'geometry' table in a non-PostGIS enabled database (#6896) 3988 * PG/PGDump: make sure serial sequence is updated at layer closing/end-of-copy if we inserted features with fixed ids (#7032) 3989 3990PLScenes driver: 3991 * remove support for V0 and V1 API. Only Data V1 is kept (#6933) 3992 * add SkySatScene 3993 3994SEGY driver: 3995 *report more attributes from Segy Standard Trace Header (github #315) 3996 3997Shapefile driver: 3998 * Fix GetFeatureCount() to properly take into account spatial filter when attribute filter also in effect (#7123) 3999 * use VSIStatL() in Create() to properly work with /vsimem/ directories (#6991) 4000 * fix regression affecting GDAL 2.1.3 or later, 2.2.0 and 2.2.1, when editing the last shape of a file and growing it, and then appending a new shape, which resulted in corruption of both shapes (#7031) 4001 * hide shapelib symbols on Unix 4002 * improvements auto-identification of EPSG codes from input SRS, using OSRFindMatches() 4003 * Improve guidance on use of SHAPE_RESTORE_SHX in SHPOpenLL() (#7246) 4004 4005SQLite/Spatialite driver: 4006 * SQLite/GPKG: report SQLITE_HAS_COLUMN_METADATA=YES as driver metadata item when it is available (#7007) 4007 * escape integer primary key column name on table creation (#7007) 4008 * don't invalidate statistics when running a PRAGMA (https://issues.qgis.org/issues/17424) 4009 * SQLite dialect: avoid erroring out if source layer has a OGR_STYLE field 4010 * SQLite dialect: support SQLite 3.21, and LIKE, <>, IS NOT, IS NOT NULL, IS NULL and IS operators (fixes #7149) 4011 * SQLite/GPKG: avoid parsing of OGR_SQLITE_JOURNAL to stop on JOURNAL_MODE keyword 4012 4013VFK driver: 4014 * fix collecting linestrings for sbp layer 4015 * collect geometries also for zvb layer 4016 * Improve VFK parser logic (github #365) 4017 * add option to suppress geometry (github #371) 4018 4019VRT driver: 4020 * increase maximum size limit to 10 MB (instead of 1MB), and add config option to be able to force loading if above that 4021 4022XLS driver: 4023 * workaround opening filenames with incompatible character set on Windows (https://issues.qgis.org/issues/9301) 4024 4025XLSX driver: 4026 * avoid 'ogr2ogr -f XLSX out.xlsx in.shp -preserve_fid' to overwrite the first record. Note however that FID preservation itself doesn't really work with XLSX (#6994) 4027 * fix non working detection of Date/Time fields in some documents (#7073) 4028 * fix opening of documents with x: namespace in xl/workbook.xml (#7110) 4029 * fix misdetection of field type if first cell blank (github #291) 4030 * fix updating multi layer document where existing layers where dropped (#7225) 4031 * add read/write support for Boolean sub datatype 4032 * on writing, use %.16g formatting for floating point numbers (#7230) 4033 4034== SWIG Language Bindings == 4035 4036All bindings: 4037 * Expose gdal.VSIFEofL() 4038 * Expose gdal.GRA_Max, GRA_Min, GRA_Med, GRA_Q1 and GRA_Q3 (#7153) 4039 * Expose Geometry.SwapXY() 4040 * Expose Geometry.RemoveGeometry() 4041 * Expose SpatialReference.SetMercator2SP() 4042 * Expose Band.AdviseRead() and Dataset.AdviseRead() 4043 4044CSharp bindings: 4045 4046Java bindings: 4047 * create single JNI shared library (gdalalljni.so/dll) (github #286) 4048 4049Perl bindings: 4050 * Keep parent geometry alive if an object is created from a child geometry. Experimental methods Features and Geometries. Catch an error in storing a geometry into a feature. Prefer GeometryCount over GetGeometryCount and Geometry over GetGeometryRef. 4051 * Set INSTALLSITEMAN1DIR and INSTALLSITEMAN3DIR according to what is in GDALmake.opt if INSTALL_BASE is set. (#6142) 4052 * ignore no data cells in ClassCounts and Reclassify for real valued rasters. 4053 * support for number line (or decision tree) classifiers also for integer bands. 4054 * Set error handler separately in all modules (required by Strawberry Perl build). 4055 4056Python bindings: 4057 * add scripts to python module (#342) 4058 * make sure that errors in Open() related functions, that do not prevent dataset opening in C/C++, do not either prevent it in Python (#7094) 4059 * avoid hang when calling gdal/ogr.UseExceptions()/DontUseExceptions() in wrong order (#6891) 4060 * accept callback = 0 since SWIG generates it as the default argument of BandRasterIONumPy(). (github #219) 4061 * fix 2.2.0 regression preventing use of callback function in Band.ComputeStatistics() (#6927) 4062 * fix reference count issue on gdal.VSIStatL() when it returns None, that can cause Python crashes if None refcount drops to zero 4063 * avoid potential cross-heap issue on Windows with numpy (https://trac.osgeo.org/osgeo4w/ticket/466) 4064 * fix potential alignment issues when reading double values with ReadRaster() or ReadBlock() 4065 * fix issue with PyInstaller (#7044) 4066 * add a addAlpha option to gdal.DEMProcessing() 4067 * fix for include files when building .cpp files (github #258) 4068 * make gdal.Transform() return None in case of an error (instead of an invalid Transformer object) 4069 * emit exceptions if VSI_RETVAL methods (such as gdal.Rename()) fail and gdal.UseExceptions() is enabled 4070 * add addFields and forceNullable options to gdal.VectorTranslate() 4071 * for command line utilities as functions, serialize number of floating-point arguments with higher precision 4072 * Fix python 3.x package installation in custom prefixes (#6671) 4073 * lots of PEP8-related fixes in scripts and autotest 4074 * add NULL checks after PyUnicode_AsUTF8String() in case the unicode cannot be translated to UTF-8 and workaround SWIG bug to avoid crashes with Python 3. (github #356) 4075 * make sure gdal.VectorTranslate() and gdal.Grid() open their source dataset with a vector driver (github #449) 4076 * make 'for field_val in feature' work (github #451) 4077 4078= GDAL/OGR 2.2.0 Release Notes = 4079 4080== In a nutshell... == 4081 4082 * New GDAL/raster drivers: 4083 - DERIVED driver: read-support. Expose subdatasets in a a new metadata domain, called DERIVED_SUBDATASETS 4084 - JP2Lura driver: read/create support for JPEG-2000 images using Luratech JP2 Library 4085 - PRF: add read-only support for PHOTOMOD PRF file format driver (github #173) 4086 - RRASTER driver: read-support .grd/.gri files handled by the R 'raster' package (#6249) 4087 * New OGR/vector drivers: 4088 - CAD driver: read support for DWG R2000 files (GSoC 2016 project) 4089 - DGNv8 driver: read-write support for DGN 8.0 format (using Teigha ODA libraries) 4090 - GMLAS driver: read-write support. XML/GML driver driven by Application Schemas. 4091 * New utility script: ogrmerge.py to merge several vector datasets into a single one 4092 * New /vsigs/ and /vsigs_streaming/ virtual file systems to read Google Cloud Storage non-public files 4093 * Significantly improved drivers: 4094 - NWT_GRD: write support (#6533) 4095 - FileGDB/OpenFileGDB: add support to read curve geometries (#5890) 4096 - VRT derived band: add the capability to define pixel functions in Python 4097 - Add read support for RasterLite2 coverages in SQLite driver 4098 - GPKG: implement tiled gridded elevation data extension 4099 - ISIS3: add write support and improve read support 4100 * RFC 63: Add GDALRasterBand::GetDataCoverageStatus() and implement it in GTiff and VRT drivers 4101 https://trac.osgeo.org/gdal/wiki/rfc63_sparse_datasets_improvements 4102 * RFC 64: Triangle, Polyhedral surface and TIN 4103 https://trac.osgeo.org/gdal/wiki/rfc64_triangle_polyhedralsurface_tin 4104 ==> this RFC introduces potential backward incompatible behavior. 4105 Consult MIGRATION_GUIDE.txt 4106 * RFC 66: OGR random layer read/write capabilities 4107 https://trac.osgeo.org/gdal/wiki/rfc66_randomlayerreadwrite 4108 * RFC 67: add null field state for OGR features, in addition to unset fields 4109 https://trac.osgeo.org/gdal/wiki/rfc67_nullfieldvalues 4110 ==> this RFC introduces potential backward incompatible behavior. 4111 Consult MIGRATION_GUIDE.txt 4112 * Upgrade to EPSG database v9.0 (#6772) 4113 * Python bindings: Global Interpreter Lock (GIL) released before entering GDAL native code (for all, in GDAL module and a few ones in ogr like ogr.Open()) 4114 * Continued major efforts on sanitization of code base 4115 * Remove bridge and vb6 bindings (#6640) 4116 * GNM built by default 4117 4118== Installed files == 4119 4120 * Removed: data/s57attributes_aml.csv data/s57attributes_iw.csv data/s57objectclasses_aml.csv data/s57objectclasses_iw.csv 4121 * Added plscenesconf.json, gmlasconf.xsd 4122 4123== Backward compatibility issues == 4124 4125See MIGRATION_GUIDE.TXT 4126 4127== GDAL/OGR 2.2.0 - General Changes == 4128 4129Build(Unix): 4130 * improve detection of packaged libfyba (SOSI) --with-sosi, as in Ubuntu 16.04 (#6488) 4131 * Sort files in static library to make the build reproducible (#6520) 4132 * fix libqhull include path when it is /usr/local/include/libqhull (#6522) 4133 * FileGDB: compilation fix on Linux in C++11 mode 4134 * configure: make pdfium detection not fail if there are just warnings. And make configure fail if --with-pdfium was required but failed (#6653) 4135 * Make ./configure --with-xerces fail if not found 4136 * Don't install script documentation in INST_BIN (github #157) 4137 * configure: auto-detect webp without requiring explicit --with-webp 4138 * configure: use pkg-config for HDF5 detection so that works out of the box on recent Ubuntu 4139 * auto-detect JDK 8 on Ubuntu 4140 * MDB: allow libjvm.so to be dlopen'd with --with-jvm-lib=dlopen (Unix only, github #177) 4141 * configure: delete temporary directories on the mac 4142 * configure: make sure --with-macosx-framework is correctly defined 4143 * configure: error out if --with-ld-shared is specified (#6769) 4144 * configure: remove bashism. 4145 * configure: fix --without-mrf (#6811) 4146 * configure: take into account CXXFLAGS and LDFLAGS in a few more cases (cryptopp, podofo, libdap) 4147 * Vagrant: all lxc and Hyper-V provider support; use vagrant-cachier for package caching 4148 * configure: update DWG support to work with Teigha libraries 4149 * Internal libgeotiff: hide symbols in --with-hide-internal-symbols mode 4150 * Shape: do not export Shapelib symbols for builds --with-hide-internal-symbols (#6860) 4151 4152Build(Windows): 4153 * Try to avoid confusion between libqhull io.h and mingw own io.h (#6590) 4154 * update script to generate most recent Visual C++ project files (#6635) 4155 * fix broken and missing dependencies in makefile.vc 4156 * add a way to use an external zlib (github #171) 4157 * Rename makegdal_gen.bat to generate_vcxproj.bat 4158 * generate_vcxproj.bat: Set correct value of PlatformToolset property based on specified Visual C++ version. Add NMAKE command line parameters: MSVC_VER based on specified Visual C++ version, DEBUG=1 WITH_PDB=1 to Debug build configuration. 4159 * generate_vcxproj.bat: generate project for autotest/cpp (Ticket #6815) 4160* Add WIN64=1 to NMAKE command line options. 4161 * Add HDF4_INCLUDE option (#6805) 4162 * Add MSVC compiler option /MP to build with parallel processes. 4163 * Add ZLIB_LIB missing from EXTERNAL_LIBS 4164 4165Build(all): 4166 * make Xerces 3.1 the minimal version 4167 * drop support for PostgreSQL client library older than 7.4, or non security maintained releases older than 8.1.4, 8.0.8, 7.4.13, 7.3.15 4168 4169== GDAL 2.2.0 - Overview of Changes == 4170 4171Port: 4172 * Export VSICreateCachedFile() as CPL_DLL so as to enable building JP2KAK as a plugin 4173 * Added possibility to find GDAL_DATA path using INST_DATA definition without execution GDALAllRegister if GDAL_DATA placed in version named directory on Linux (#6543) 4174 * Unix filesystem: make error message about failed open to report the filename (#6545) 4175 * File finder: Remove hardcoded find location (/usr/local/share/gdal) (#6543) 4176 * Win32 filesystem handler: make Truncate() turn on sparse files when doing file extension 4177 * Add VSIFGetRangeStatusL() and VSISupportsSparseFiles() 4178 * GDAL_NO_HARDCODED_FIND compilation option (#6543,#6531) to block file open calls (for sandboxed systems) 4179 * Add VSIMallocAligned(), VSIMallocAlignedAuto() and VSIFreeAligned() APIs 4180 * /vsizip / /vsitar: support alternate syntax /vsitar/{/path/to/the/archive}/path/inside/the/tar/file so as not to be dependent on file extension and enable chaining 4181 * Optimize opening of /vsitar/my.tar.gz/my_single_file 4182 * /vsizip/ : support creating non-ASCII filenames inside a ZIP (#6631) 4183 * VSI Unix file system: fix behavior in a+ mode that made MRF caching not work on Mac and other BSD systems 4184 * Fix deadlock at CPLWorkerThreadPool destruction (#6646) 4185 * Windows: honour GDAL_FILENAME_IS_UTF8 setting to call LoadLibraryW() (#6650) 4186 * CPLFormFilename(): always use / path separator for /vsimem, even on Windows 4187 * /vsimem/: add trick to limit the file size, so as to be able to test how drivers handle write errors 4188 * /vsimem/: fix potential crash when closing -different- handles pointing to the same file from different threads (#6683) 4189 * CPLHTTPFetch(): add MAX_FILE_SIZE option 4190 * CPLHTTPFetch(): add a CAINFO option to set the path to the CA bundle file. As a fallback also honour the CURL_CA_BUNDLE and SSL_CERT_FILE environment variables used by the curl binary, which makes this setting also available for /vsicurl/, /vsicurl_streaming/, /vsis3/ and /vsis3_streaming/ file systems (#6732) 4191 * CPLHTTPFetch(): don't disable peer certificate verification when doing https (#6734) 4192 * CPLHTTPFetch(): cleanly deal with multiple headers passed with HEADERS and separated with newlines 4193 * CPLHTTPFetch(): add a CONNECTTIMEOUT option 4194 * CPLHTTPFetch(): add a GDAL_HTTP_HEADER_FILE / HEADER_FILE option. 4195 * CPLHTTPSetOptions(): make redirection of POST requests to still be POST requests after redirection (#6849) 4196 * /vsicurl/: take CPL_VSIL_CURL_ALLOWED_EXTENSIONS into account even if GDAL_DISABLE_READDIR_ON_OPEN is defined (#6681) 4197 * /vsicurl/: get modification time if available from GET or HEAD results 4198 * /vsis3/: add a AWS_REQUEST_PAYER=requester configuration option (github #186) 4199 * CPLParseXMLString(): do not reset error state 4200 * Windows: fix GetFreeDiskSpace() 4201 * Fix GetDiskFreeSpace() on 32bit Linux to avoid 32bit overflow when free disk space is above 4 GB (#6750) 4202 * Fix CPLPrintUIntBig() to really print a unsigned value and not a signed one 4203 * Add CPL_HAS_GINT64, GINT64_MIN/MAX, GUINT64_MAX macros (#6747) 4204 * Add CPLGetConfigOptions(), CPLSetConfigOptions(), CPLGetThreadLocalConfigOptions() and CPLSetThreadLocalConfigOptions() to help improving compatibility between osgeo.gdal python bindings and rasterio (related to https://github.com/mapbox/rasterio/pull/969) 4205 * MiniXML serializer: fix potential buffer overflow. 4206 4207Core: 4208 * Proxy dataset: add consistency checks in (the unlikely) case the proxy and underlying dataset/bands would not share compatible characteristics 4209 * GDALPamDataset::TryLoadXML(): do not reset error context when parsing .aux.xml 4210 * PAM/VRT: only take into account <Entry> elements when deserializing a <ColorTable> 4211 * GDALCopyWords(): add fast copy path when src data type == dst data type == Int16 or UInt16 4212 * GetVirtualMemAuto(): allow USE_DEFAULT_IMPLEMENTATION=NO to prevent the default implementation from being used 4213 * Nodata comparison: fix test when nodata is FLT_MIN or DBL_MIN (#6578) 4214 * GetHistogram() / ComputeRasterMinMax() / ComputeStatistics(): better deal with precision issues of nodata comparison on Float32 data type 4215 * Fast implementation of GDALRasterBand::ComputeStatistics() for GDT_Byte and GDT_UInt16 (including use of SSE2/AVX2) 4216 * Driver manage: If INST_DATA is not requested, do not check the GDAL_DATA variable. 4217 * Make sure that GDALSetCacheMax() initialize the raster block mutex (#6611) 4218 * External overview: fix incorrect overview building when generating from greater overview factors to lower ones, in compressed and single-band case (#6617) 4219 * Speed-up SSE2 implementation of GDALCopy4Words from float to byte/uint16/int16 4220 * Add SSE2 and SSSE3 implementations of GDALCopyWords from Byte with 2,3 or 4 byte stride to packed byte 4221 * GDALCopyWords(): SSE2-accelerated Byte->Int32 and Byte->Float32 packed conversions 4222 * Fix GDALRasterBand::IRasterIO() on a VRT dataset that has resampled sources, on requests such as nXSize == nBufXSize but nXSize != dfXSize 4223 * GDALRasterBand::IRasterIO(): add small epsilon to floating-point srcX and srcY to avoid some numeric precision issues when rounding. 4224 * Add GDALRasterBand::GetActualBlockSize() (#1233) 4225 * Fix potential deadlock in multithreaded writing scenarios (#6661) 4226 * Fix thread-unsafe behavior when using GetLockedBlock()/MarkDirty()/DropLock() lower level interfaces (#6665) 4227 * Fix multi-threading issues in read/write scenarios (#6684) 4228 * Resampled RasterIO(): so as to get consistent results, use band datatype as intermediate type if it is different from the buffer type 4229 * Add GDALIdentifyDriverEx() function (github #152) 4230 * GDALOpenInfo: add a papszAllowedDrivers member and fill it in GDALOpenEx() 4231 * GDALDefaultOverviews::BuildOverviews(): improve progress report 4232 * Average and mode overview/rasterio resampling: correct source pixel computation due to numerical precision issues when downsampling by an integral factor, and also in oversampling use cases (github #156) 4233 * Overview building: add experimental GDAL_OVR_PROPAGATE_NODATA config option that can be set to YES so that a nodata value in source samples will cause the target pixel to be zeroed. Only implemented for AVERAGE resampling right now 4234 * GDALValidateOptions(): fix check of min/max values 4235 * GMLJP2 v2: update to 2.0.1 corrigendum and add capability to set gml:RectifiedGrid/gmlcov:rangeType content. Set SRSNAME_FORMAT=OGC_URL by default when converting to GML. Add gml:boundedBy in gmljp2:GMLJP2RectifiedGridCoverage 4236 * GMLJP2 v2: ensure KML root node id unicity when converting annotations on the fly. When generating GML features, make sure that PREFIX and TARGET_NAMESPACE are unique when specifying several documents. 4237 4238Algorithms: 4239 * RPC transformer: speed-up DEM extraction by requesting and caching a larger buffer, instead of doing many queries of just a few pixels that can be costly with VRT for example 4240 * GDALDeserializeRPCTransformer(): for consistency, use the same default value as in GDALCreateRPCTransformer() if <PixErrThreshold> is missing (so use 0.1 instead of 0.25 as before) 4241 * TPS solver: when Armadillo fails sometimes, fallback to old method 4242 * GDALCreateGenImgProjTransformer2(): add SRC_APPROX_ERROR_IN_SRS_UNIT, SRC_APPROX_ERROR_IN_PIXEL, DST_APPROX_ERROR_IN_SRS_UNIT, DST_APPROX_ERROR_IN_PIXEL, REPROJECTION_APPROX_ERROR_IN_SRC_SRS_UNIT and REPROJECTION_APPROX_ERROR_IN_DST_SRS_UNIT transformer options, so as to be able to have approximate sub-transformers 4243 * Fix GDAL_CG_Create() to call GDALContourGenerator::Init() (#6491) 4244 * GDALContourGenerate(): handle the case where the nodata value is NaN (#6519) 4245 * GDALGridCreate(): fix hang in multi-threaded case when pfnProgress is NULL or GDALDummyProgress (#6552) 4246 * GDAL contour: fix incorrect oriented contour lines in some rare cases (#6563) 4247 * Warper: multiple performance improvements for cubic interpolation and uint16 data type 4248 * Warper: add SRC_ALPHA_MAX and DST_ALPHA_MAX warp options to control the maximum value of the alpha channel. Set now to 65535 for UInt16 (and 32767 for Int16), or to 2^NBITS-1. 255 used for other cases as before 4249 * Warper: avoid undefined behavior when doing floating point to int conversion, that may trigger exception with some compilers (LLVM 8) (#6753) 4250 * OpenCL warper: update cubicConvolution to use same formula as CPU case (#6664) 4251 * OpenCL warper: fix compliance to the spec. Fix issues with NVidia opencl (#6624, #6669) 4252 * OpenCL warper: use GPU based over CPU based implementation when possible, use non-Intel OpenCL implementation when possible. Add BLACKLISTED_OPENCL_VENDOR and PREFERRED_OPENCL_VENDOR to customize choice of implementation 4253 4254Utilities: 4255 * gdalinfo -json: fix order of points in wgs84Extent.coordinates (github #166) 4256 * gdalwarp: do not densify cutlines by default when CUTLINE_BLEND_DIST is used (#6507) 4257 * gdalwarp: when -to RPC_DEM is specified, make -et default to 0 as documented (#6608) 4258 * gdalwarp: improve detection of source alpha band and auto-setting of target alpha band. Automatically set PHOTOMETRIC=RGB on target GeoTIFF when input colors are RGB 4259 * gdalwarp: add a -nosrcalpha option to wrap the alpha band as a regular band and not as the alpha band 4260 * gdalwarp: avoid cutline densification when no transform at all is involved (related to #6648) 4261 * gdalwarp: fix failure with cutline on a layer of touching polygons (#6694) 4262 * gdalwarp: allow to set UNIFIED_SRC_NODATA=NO to override the default that set it to YES 4263 * gdalwarp: fix -to SRC_METHOD=NO_GEOTRANSFORM -to DST_METHOD=NO_GEOTRANSFORM mode (#6721) 4264 * gdalwarp: add support for shifting the values of input DEM when source and/or target SRS references a proj.4 vertical datum shift grid 4265 * gdalwarp: fix crash when -multi and -to RPC_DEM are used together (#6869) 4266 * gdal_translate: when using -projwin with default nearest neighbour resampling, align on integer source pixels (#6610) 4267 * gdal_translate & gdalwarp: lower the default value of GDAL_MAX_DATASET_POOL_SIZE to 100 on MacOSX (#6604) 4268 * gdal_translate: avoid useless directory scanning on GeoTIFF files 4269 * gdal_translate: make "-a_nodata inf -ot Float32" work without warning 4270 * gdal_translate: set nodata value on vrtsource on scale / unscale / expand cases (github #199) 4271 * GDALTranslate(): make it possible to create a anonymous target VRT from a (anonymous) memory source 4272 * gdaldem: speed-up computations for src type = Byte/Int16/UInt16 and particularly for hillshade 4273 * gdaldem hillshade: add a -multidirectional option 4274 * GDALDEMProcessing() API: fix -alt support (#6847) 4275 * gdal_polygonize.py: explicitly set output layer geometry type to be polygon (#6530) 4276 * gdal_polygonize.py: add support for -b mask[,band_number] option to polygonize a mask band 4277 * gdal_rasterize: make sure -3d, -burn and -a are exclusive 4278 * gdal_rasterize: fix segfaults when rasterizing into an ungeoreferenced raster, or when doing 'gdal_rasterize my.shp my.tif' with a non existing my.tif (#6738) 4279 * gdal_rasterize: fix crash when rasterizing empty polygon (#6844) 4280 * gdal_grid: add a smoothing parameter to invdistnn algorithm (github #196) 4281 * gdal_retile.py: add a -overlap switch 4282 * gdal2tiles.py: do not crash on empty tiles generation (#6057) 4283 * gdal2tiles.py: handle requested tile at too low zoom to get any data (#6795) 4284 * gdal2tiles: fix handling of UTF-8 filenames (#6794) 4285 * gdal2xyz: use %d formatting for Int32/UInt32 data types (#6644) 4286 * gdal_edit.py: add -scale and -offset switches (#6833) 4287 * gdaltindex: emit warning in -src_srs_format WKT when WKT is too large 4288 * gdalbuildvrt: add a -oo switch to specify dataset open options 4289 4290Python samples: 4291 * add validate_cloud_optimized_geotiff.py 4292 * add validate_gpkg.py 4293 4294Multi-driver: 4295 * Add GEOREF_SOURCES open option / GDAL_GEOREF_SOURCES config. option to all JPEG2000 drivers and GTiff to control which sources of georeferencing can be used and their respective priority 4296 4297AIGRID driver: 4298 * fix 2.1.0 regression when reading statistics (.sta) file with only 3 values, and fix <2.1 behavior to read them in LSB order (#6633) 4299 4300AAIGRID driver: 4301 * auto-detect Float64 when the nodata value is not representable in the Float32 range 4302 4303ADRG driver: 4304 * handle north and south polar zones (ZNA 9 and 18) (#6783) 4305 4306ASRP driver: 4307 * fix georeferencing of polar arc zone images (#6560) 4308 4309BPG driver: 4310* declare GDALRegister_BPG as C exported for building as a plugin (#6693) 4311 4312DIMAP driver: 4313 * DIMAP: for DIMAP 2, read RPC from RPC_xxxxx.XML file (#6539) 4314 * DIMAP/Pleiades metadata reader: take into tiling to properly shift RPC (#6293) 4315 * add support for tiled DIMAP 2 datasets (#6293) 4316 4317DODS driver: 4318 * fix crash on URL that are not DODS servers (#6718) 4319 4320DTED driver: 4321 * correctly create files at latitudes -80, -75, -70 and -50 (#6859) 4322 4323ECW driver: 4324 * Add option ECW_ALWAYS_UPWARD=TRUE/FALSE to work around issues with "Downward" oriented images (#6516). 4325 4326ENVI driver: 4327 * on closing, pad image file with trailing nul bytes if needed (#6662) 4328 * add read/write support for rotated geotransform (#1778) 4329 4330GeoRaster driver: 4331 * fix report of rotation (#6593) 4332 * support for JP2-F compression (#6861) 4333 * support direct loading of JPEG-F when blocking=no (#6861) 4334 * default blocking increased from 256x256 to 512x512 (#6861) 4335 4336GPKG driver: 4337 * implement tiled gridded elevation data extension 4338 * add VERSION creation option 4339 * check if transaction COMMIT is successful (#6667) 4340 * fix crash on overview building on big overview factor (#6668) 4341 * fix crash when opening an empty raster with USE_TILE_EXTENT=YES 4342 * fix gpkg_zoom_other registration 4343 4344GTiff driver: 4345 * support SPARSE_OK=YES in CreateCopy() mode (and in update mode with the SPARSE_OK=YES open option), by actively detecting blocks filled with 0/nodata about to be written 4346 * When writing missing blocks (i.e. non SPARSE case), use the nodata value when defined. Otherwise fallback to 0 as before. 4347 * in FillEmptyTiles() (i.e. in the TIFF non-sparse mode), avoid writing zeroes to file so as to speed up file creation when filesystem supports ... sparse files 4348 * add write support for half-precision floating point (Float32 with NBITS=16) 4349 * handle storing (and reading) band color interpretation in GDAL internal metadata when it doesn't match the capabilities of the TIFF format, such as B,G,R ordering (#6651) 4350 * Fix RasterIO() reported when downsampling a RGBA JPEG compressed TIFF file (#6943) 4351 * Switch search order in GTIFGetOGISDefn() - Look for gdal_datum.csv before datum.csv (#6531) 4352 * optimize IWriteBlock() to avoid reloading tile/strip from disk in multiband contig/pixel-interleave layouts when all blocks are dirty 4353 * fix race between empty block filling logic and background compression threads when using Create() interface and NUM_THREADS creation option (#6582) 4354 * use VSIFTruncateL() to do file extension 4355 * optimize reading and writing of 1-bit rasters 4356 * fix detection of blocks larger than 2GB on opening on 32-bit builds 4357 * fix saving and loading band description (#6592) 4358 * avoid reading external metadata file that could be related to the target filename when using Create() or CreateCopy() (#6594) 4359 * do not generate erroneous ExtraSamples tag when translating from a RGB UInt16, without explicit PHOTOMETRIC=RGB (#6647) 4360 * do not set a PCSCitationGeoKey = 'LUnits = ...' as the PROJCS citation on reading 4361 * fix creating an image with the Create() interface with BLOCKYSIZE > image height (#6743) 4362 * fix so that GDAL_DISABLE_READDIR_ON_OPEN = NO / EMPTY_DIR is properly honoured and doesn't cause a useless directory listing 4363 * make setting GCPs when geotransform is already set work (with warning about unsetting the geotransform), and vice-versa) (#6751) 4364 * correctly detect error return of TIFFReadRGBATile() and TIFFReadRGBAStrip() 4365 * in the YCBCR RGBA interface case, only expose RGB bands, as the alpha is always 255 4366 * don't check free disk space when outputting to /vsistdout/ (#6768) 4367 * make GetUnitType() use VERT_CS unit as a fallback (#6675) 4368 * in COPY_SRC_OVERVIEWS=YES mode, set nodata value on overview bands 4369 * read GCPs in ESRI <GeodataXform> .aux.xml 4370 * explicitly write YCbCrSubsampling tag, so as to avoid (latest version of) libtiff to try reading the first strip to guess it. Helps performance for cloud optimized geotiffs 4371 * map D_North_American_1927 datum citation name to OGC North_American_Datum_1927 so that datum is properly recognized (#6863) 4372 * Internal libtiff. Resync with CVS (post 4.0.7) 4373 * Internal libtiff: fix 1.11 regression that prevents from reading one-strip files that have no StripByteCounts tag (#6490) 4374 4375GRASS driver: 4376 * plugin configure: add support for GRASS 7.2 (#6785) 4377 * plugin makefile: do not clone datum tables and drivers (#2953) 4378 * use Rast_get_window/Rast_set_window for GRASS 7 (#6853) 4379 4380GRIB driver: 4381 * Add (minimalistic) support for template 4.15 needed to read Wide Area Forecast System (WAFS) products (#5768) 4382 * **Partial** resynchronization with degrib-2.0.3, mostly to get updated tables (related to #5768) 4383 * adds MRMS grib2 decoder table (http://www.nssl.noaa.gov/projects/mrms/operational/tables.php) (github #160) 4384 * enable PNG decoding on Unix (#5661, github #160) 4385 * remove explicitly JPEG2000 decompression through Jasper and use generic GDAL code so that other drivers can be triggered 4386 * fix a few crashes on malformed files 4387 4388GTX driver: 4389 * add a SHIFT_ORIGIN_IN_MINUS_180_PLUS_180 open option 4390 4391HDF4 driver: 4392 * Fixed erroneous type casting in HDF4Dataset::AnyTypeToDouble() that breaks reading georeferencing and other metadata 4393 4394HDF5 driver: 4395 * correct number of GCPs to avoid dummy trailing (0,0)->(0,0,0) and remove +180 offset applied to GCP longitude. Add instead a heuristics to determine if the product is crossing the antimeridian, and a HDF5_SHIFT_GCPX_BY_180 config option to be able to override the heuristics (#6666) 4396 4397HFA driver: 4398 * fix reading and writing of TOWGS84 parameters (github #132) 4399 * export overview type from HFA files to GDAL metadata as OVERVIEWS_ALGORITHM (github #135) 4400 * make .ige initialization use VSIFTruncateL() to be faster on Windows 4401 * add support for TMSO and HOM Variant A projections (#6615) 4402 * Add elevation units read from HFA files metadata (github #169) 4403 * set binning type properly according to layerType being thematic or not (#6854) 4404 4405Idrisi driver: 4406 * use geotransform of source dataset even if it doesn't have a SRS (#6727) 4407 * make Create() zero-initialize the .rst file (#6873) 4408 4409ILWIS driver: 4410 * avoid IniFile::Load() to set the bChanged flag, so as to avoid a rewrite of files when just opening datasets 4411 4412ISCE driver: 4413 * fix computation of line offset for multi-band BIP files, and warn if detecting a wrong file produced by GDAL 2.1.0 (#6556) 4414 * fix misbehaviour on big endian hosts 4415 * add support for reading and writing georeferencing (#6630, #6634) 4416 * make parsing of properties case insensitive (#6637) 4417 4418ISIS3 driver: 4419 * add write support 4420 * add mask band support on read 4421 * get label in json:ISIS3 metadata domain 4422 4423JPEGLS driver: 4424 4425JP2ECW driver: 4426 * fix crash when translating a Float64 raster (at least with SDK 3.3) 4427 4428JP2KAK driver: 4429 * add support for Kakadu v7.9. v7.8 should not be used. It has a bug fixed in v7.9 4430 * catch exceptions in jp2_out.write_header() 4431 4432JP2OpenJPEG driver: 4433 * add a USE_TILE_AS_BLOCK=YES open option that can help with whole image conversion 4434 * prevent endless looping in openjpeg in case of short write 4435 * for single-line organized images, such as found in some GRIB2 JPEG2000 images, use a Wx1 block size to avoid huge performance issues (#6719) 4436 * ignore warnings related to empty tag-trees. 4437 4438JPIPKAK driver: 4439 * fix random crashes JPIP in multi-tread environment (#6809) 4440 4441KEA driver: 4442 * Add support for Get/SetLinearBinning (#6855) 4443 4444KMLSuperOverlay driver: 4445 * recognize simple document made of GroundOverlay (#6712) 4446 * Add FORMAT=AUTO option. Uses PNG for semi-transparent areas, else JPG. (#4745) 4447 4448LAN driver: 4449 * remove wrong byte-swapping for big-endian hosts 4450 4451MAP driver: 4452 * change logic to detect image file when its path is not absolute 4453 4454MBTiles driver: 4455 * on opening if detecting 3 bands, expose 4 bands since there might be transparent border tiles (#6836) 4456 * fix setting of minzoom when computing overviews out of order 4457 * do not open .mbtiles that contain vector tiles, which are not supported by the driver 4458 4459MEM driver: 4460 * disable R/W mutex for tiny performance increase in resampled RasterIO 4461 * add support for overviews 4462 * add support for mask bands 4463 4464MRF driver: 4465 * bug fix in PNG and JPEG codecs 4466 * Fixing a problem with setting NoData for MRFs generated with Create 4467 * fix plugin building (#6498) 4468 * rename CS variable so as to avoid build failure on Solaris 11 (#6559) 4469 * Allow MRF to write the data file directly to an S3 bucket. 4470 * Allow relative paths when MRF is open via the metadata string. 4471 * Add support for spacing (unused space) between tiles. Defaults to none. 4472 * Read a single LERC block as an MRF file. 4473 4474MSG driver: 4475 * fix incorrect georeference calculation for msg datasets (github #129) 4476 4477NetCDF driver: 4478 * add support for reading SRS from srid attribute when it exists and has content like urn:ogc:def:crs:EPSG::XXXX (#6613) 4479 * fix crash on datasets with 1D variable with 0 record (#6645) 4480 * fix erroneous detection of a non-longitude X axis as a longitude axis that caused a shift of 360m on the georeferencing (#6759) 4481 * read/write US_survey_foot unit for linear units of projection 4482 * apply 'add_offset' and 'scale_factor' on x and y variables when present, such as in files produced by NOAA from the new GOES-16 (GOES-R) satellite (github #200) 4483 * add a HONOUR_VALID_RANGE=YES/NO open option to control whether pixel values outside of the validity range should be set to the nodata value (#6857) 4484 * fix crash on int64/uint64 dimensions and variables, and add support for them (#6870) 4485 4486NITF driver: 4487 * add support for writing JPEG2000 compressed images with JP2OpenJPEG driver 4488 * fix writing with JP2KAK driver (emit codestream only instead of JP2 format) 4489 * fix setting of NBPR/NBPC/NPPBH/NPPBV fields for JPEG2000 (fixes #4322); in JP2ECW case, make sure that the default PROFILE=NPJE implies 1024 block size at the NITF level 4490 * implement creation of RPC00B TRE for RPC metadata in CreateCopy() mode 4491 * add support for reading&writing _rpc.txt files 4492 * nitf_spec.xml: Add support for MTIRPB TRE in NITF image segment. Also makes minor change to BLOCKA to include default values (github #127) 4493 * nitf_spec.xml: add IMASDA and IMRFCA TREs 4494 * GetFileList(): Small optimization to avoid useless file probing. 4495 4496NWT_GRD: 4497 * detect short writes 4498 4499OpenJPEG driver: 4500 * support direct extracting of GeoRaster JP2-F BLOB (#6861) 4501 4502PCIDSK driver: 4503 * handle Exceptions returned from destructor and check access rights in setters (github #183) 4504 4505PDF driver: 4506 * implement loading/saving of metadata from/into PAM (#6600) 4507 * implement reading from/writing to PAM for geotransform and projection (#6603) 4508 * prevent crashes on dataset reopening in case of short write 4509 4510PLScenes driver: 4511 * add a METADATA open option 4512 4513PostgisRaster driver: 4514 * fix potential crash when one tile has a lower number of bands than the max of the table (#6267) 4515 4516R driver: 4517 * fix out-of-memory (oom) with corrupt R file 4518 4519Raw drivers: 4520 * prevent crashes on dataset closing in case of short write 4521 4522RMF driver: 4523 * fix wrong counter decrement that caused compressed RMF to be incorrectly decompressed (github #153) 4524 * fix load/store inversion of cm and dm units in MTW files (github #162) 4525 * fix reading nodata for non-double data type (github #174) 4526 4527ROIPAC driver: 4528 * add support for reading/writing .flg files (#6504) 4529 * fix computation of line offset for multi-band BIP files, and warn if detecting a wrong file produced by GDAL >= 2.0.0 (#6591) 4530 * fix for big endian hosts 4531 4532RS2 driver: 4533 * add support for reading RPC from product.xml 4534 4535SAFE driver: 4536 * fix handling of SLC Products by providing access to measurements as subdatasets (#6514) 4537 4538Sentinel2 driver: 4539 * add support for new "Safe Compact" encoding of L1C products (fixes #6745) 4540 4541SQLite driver: 4542 * Add read support for RasterLite2 coverages in SQLite driver 4543 4544SRTMHGT driver: 4545 * open directly .hgt.zip files 4546 * accept filenames like NXXEYYY.SRTMGL1.hgt (#6614) 4547 * handle files for latitude >= 50 (#6840) 4548 4549VRT driver: 4550 * add default pixel functions: real, imag, complex, mod, phase, conj, etc... for complex data types (github #141) 4551 * avoid useless floating point values in SrcRect / DstRect (#6568) 4552 * avoid buffer initialization in RasterIO() when possible (replace ancient and likely broken concept of bEqualAreas) 4553 * make CheckCompatibleForDatasetIO() return FALSE on VRTDerivedRasterBands (#6599) 4554 * VRT warp: fix issue with partial blocks at the right/bottom and dest nodata values that are different per band (#6581) 4555 * fix performance issue when nodata set at band level and non-nearest resampling used (#6628) 4556 * VRTComplexSource: do temp computations on double to avoid precision issues when band data type is Int32/UInt32/CInt32/Float64/CFloat64 (#6642) 4557 * VRT derived band: add the capability to define pixel functions in Python 4558 * CreateCopy(): detect short writes 4559 * Fix linking error on VRTComplexSource::RasterIOInternal<float>() (#6748) 4560 * avoid recursion in xml:VRT metadata (#6767) 4561 * prevent 'Destination buffer too small' error when calling GetMetadata('xml:VRT') on a in-memory VRT copied from a VRT 4562 * fix 2.1 regression that can cause crash in VRTSimpleSource::GetFileList() (#6802) 4563 4564WMS driver: 4565 * Added support for open options to WMS minidrivers 4566 * Refactored the multi-http code to make it possible to do range requests. 4567 * Added a minidriver_mrf, which reads from remote MRFs using range requests. 4568 * Made the minidriver_arcgis work with an ImageService, not only MapService. 4569 * Added static cache of server response. 4570 * Allow tiledWMS to work in off-line mode by including the server response in the .wms file itself. 4571 * honour GDAL_HTTP_USERAGENT config option when it is set and <UserAgent> is missing (#6825) 4572 * WMS/WMTS: better deal with tiles with different band count (grayscale, gray+alpha, palette, rgb, rgba) (github #208) 4573 * Make HTTPS options apply to tWMS minidriver init, better HTTP error reporting 4574 4575WMTS driver: 4576 * do not take into account WGS84BoundingBox/BoundingBox that would be the result of the densified reprojection of the bbox of the most precise tile matrix 4577 * add TILEMATRIX / ZOOM_LEVEL open options 4578 * accept tiles of small dimensions (github #210) 4579 4580XYZ driver: 4581 4582== OGR 2.2.0 - Overview of Changes == 4583 4584Core: 4585 * Layer algebra: Add KEEP_LOWER_DIMENSION_GEOMETRIES=YES/NO option to Intersection, Union and Identity. 4586Default is yes, but it is set to no unless result layer is of geom type unknown. 4587If set to no, result features which would have lower dim geoms are skipped 4588if operating on two layers with same geom dim. 4589 * Fix crash/corrupted values when running importFromWkb() on POLYGON M/POLYGON ZM geometries (#6562) 4590 * Add OGR_WKT_PRECISION config option that defaults to 15 to select the number of decimals when outputting to WKT 4591 * Make OGRFeature::SetField(string) accept JSon serialized arrays for the String/Integer/Integer64/RealList types; add reciprocal OGRFeature::GetFieldAsSerializedJSon() for those types 4592 * OGRGeometryFactory::transformWithOptions(): better deal with reprojection from polar projection to WGS84, and projections crossing the antimeridian to WGS84, by splitting geometries prior to reprojection (#6705) 4593 * LinearRing transformTo(): force last point to be identical to first one in case it is not. 4594 * GML geometry parsing: avoid 'Cannot add a compound curve inside a compound curve' error (#6777) 4595 * OGR SQL: fix IN filtering on MapInfo indexed columns (#6798) 4596 * OGR SQL: add support for LIMIT and OFFSET keywords 4597 * OGR SQL: add comparisons on date / datetime (#6810) 4598 * OGR SQL: increase efficiency of DISTINCT operator 4599 * OGREnvelope: change initialization to fix issue when getting MULTIPOINT(0 0,1 1) envelope (#6841) 4600 * OGRParse: fix parsing logic to avoid false positive detection of string as datetime (#6867) 4601 4602OGRSpatialReference: 4603 * Upgrade to EPSG database v9.0 (#6772) 4604 * OGRCT: upgrade LIBNAME of mingw and cygwin to libproj-9.dll and cygproj-9.dll to be up-to-date with proj 4.9.X (recommended method is using ./configure --with-static-proj4 instead) (#6501) 4605 * importFromESRI(): fix import of multi line MERCATOR SRS (#6523) 4606 * morphToESRI(): correctly compute standard_parallel_1 of Mercator(2SP) projection from scale factor of Mercator(1SP) (#6456, #4861) 4607 * exportToProj4(): recognize explicit OSR_USE_ETMERC=NO to avoid using etmerc with proj >= 4.9.3 4608 * importFromProj4(): do not set a AUTHORITY node for strings like '+init=epsg:XXXX +some_param=val' 4609 * importFromProj4(): be robust with missing proj.4 epsg dictionary when importing '+init=epsg:xxxx +other_parm=value' 4610 * AutoIdentifyEPSG(): add identification of EPSG:3995 (Arctic Polar Stereographic on WGS84) and EPSG:3031 (Antarctic Polar Stereographic on WGS84) 4611 * OGRCoordinateTransformation: avoid potential bugs in proj.4 on NaN input 4612 * importFromEPSG(): take into account DX,DY,DZ,RX,RY,RZ,DS columns in pcs.csv to add per-PCS TOWGS84 overrides (geotiff #52) 4613 * Coordinate transformation: prevent unnecessary coordinate transformations (github #184, #185) 4614 4615Utilities: 4616 * ogr2ogr: do not return error on ogr2ogr --utility_version 4617 * ogr2ogr: keep -append and -overwrite when -update follows 4618 * ogr2ogr: fix heuristics to detect likely absence of '-f' (#6561) 4619 * ogr2ogr: do not emit a warning when updating/overwriting a destination dataset that is not a Shapefile and if -f is not specified (#6561) 4620 * ogr2ogr: make overwriting of lots of PG tables less prone to PostgreSQL 'out of shared memory' errors, by committing transactions after each table recreation 4621 * ogr2ogr: prevent 'ogr2ogr same.shp same.shp' (#1465) 4622 * ogr2ogr: add a -limit option to limit the number of features read per layer 4623 * GDALVectorTranslate(): imply update mode if access mode not explicitly specified and hDstDS != NULL (#6612) 4624 * ogrlineref: Fix crash if no new layer name provided 4625 * ogrtindex: add -src_srs_name, -src_srs_format and -t_srs option to allow indexing files that have different projections 4626 4627Multidriver: 4628 * PGeo/FileGDB/OpenFileGDB: OGRCreateFromShapeBin(): do not error out on empty lines/polygons 4629 * GPKG/SQLite/PG/FileGDB/MEM: properly set/reset field subtype with AlterFieldDefn() (#6689) 4630 * DXF, GeoJSON, GML, KML, LIBKML, ODS, Shape, XLSX: report operating system error if file creation fails (#2253) 4631 4632AmigoCloud driver: 4633 * add option to receive an AmigoCloud API key in the connection string, fix page size (github #137) 4634 4635Carto: 4636 * renamed from CartoDB 4637 * fix CartoDB'fication() by removing manual creation of the_geom_webmercator mercator, and also attach created sequence to table.cartodb_id (#6565) 4638 4639CSV driver: 4640 * add read/write support for String/Integer/Integer64/RealList types as serialized JSon arrays 4641 4642DGN driver: 4643 * avoid crash with -ftrapv on 250K_NF44NE_Area_V7.dgn (relates to #6806) 4644 * use coordinate delta encoding from the attribute records array (6806) 4645 4646DXF driver: 4647 * sanitize layer name on export to avoid forbidden characters 4648 * reader: convert GeometryCollection to MultiPoint, MultiLineString or MultiPolygon when possible (QGIS #10485) 4649 * add font of TEXT and MTEXT to OGR style string (https://github.com/OSGeo/gdal/pull/198) 4650 4651DWG driver: 4652 * compilation fixes with Teigha 4.2.2 4653 4654ElasticSearch driver: 4655 * add support for ElasticSearch 5.0 and fix 2.X support (#6724) 4656 * implement translation from SQL to E.S. query language 4657 4658FileGDB driver: 4659 * add support to read curve geometries (#5890) 4660 * support opening '.' directory 4661 4662GeoJSON driver: 4663 * writer: add a RFC7946=YES creation option (#6705) 4664 * read and write 'name' and 'description' members at FeatureCollection level 4665 * fix field type detection when first value of a field is null (#6517) 4666 * improve/fix field type promotion 4667 * fix wrong behavior when there's a 'id' at Feature level and 'id' or 'ID' field in properties (#6538) 4668 * in case top level id is a negative integer, put the value in a 'id' attribute (#6538) 4669 * ESRI Json reader: support multilinestring from esriGeometryPolyline 4670 * ESRI Json reader: do not set field width of 2147483647 (#6529) 4671 * ESRI Json reader: support reading M and ZM geometries 4672 * Add CPL_json_object_object_get() and use it, to avoid deprecation warnings on json_object_object_get() 4673 * TopoJSON reader: sanitize invalid polygons (such as found in the 'TopoJSON' layer of http://bl.ocks.org/mbostock/raw/4090846/us.json) 4674 * writer: fix segfaults on NULL geometry with -lco WRITE_BBOX=YES (#6698) 4675 * writer: fix crash if NATIVE_MEDIA_TYPE creation option is specified alone 4676 * Add support of TopoJSON without 'transform' element (github #192) 4677 * don't set SRS if 'crs' set to null (github #206) 4678 4679GML driver: 4680 * remove hack for CityGML regarding forcing srsDimension to 3 if not specified. Instead add a GML_SRS_DIMENSION_IF_MISSING config option that can be set to 3 if needed (#6597) 4681 * consider srsName with URL like 'http://www.opengis.net/def/crs/EPSG/0/' as following EPSG axis order. Add SWAP_COORDINATES=YES/NO/AUTO (and GML_SWAP_COORDINATES configuration option) to override all auto guessing (#6678) 4682 * add a SRSNAME_FORMAT=SHORT/OGC_URN/OGC_URL dataset creation option 4683 * OGR_G_ExportToGMLEx(): add a COORD_SWAP option 4684 * Writer: make ogr:FeatureCollection be a substitutionGroup of AbstractFeature for GML 3.2 output, so as to be compatible of GMLJP2 v2 4685 * GML and NAS: improve error reporting (mention feature id and gml_id) when parsing fails because of geometry decoding error 4686 * GML and NAS: add GML_SKIP_CORRUPTED_FEATURES and NAS_SKIP_CORRUPTED_FEATURES configuration options to avoid stopping reading a layer because of a corrupted geometry 4687 * Add support for Japanese GML FGD v4.1 format (github #204) 4688 4689GPKG driver: 4690 * list all tables/views by default (useful for non spatial tables not registered as aspatial). Add ASPATIAL_VARIANT layer creation option to select the way how to create a non-spatial table as aspatial. 4691 * Create non-spatial tables by default conforming to GPKG v1.2 'attributes' 4692 * use OGR_CURRENT_DATE config option if defined as the value of the 'last_change' of column of 'gpkg_contents' so as to be able to have binary identical output 4693 * update last_change column when content of raster or vector tables has changed 4694 * do not emit error when running ExecuteSQL() with a spatial filter on an empty layer (#6639) 4695 * update schema to reflect CURRENT_TIMESTAMP -> 'now' changes (github #155) 4696 * better table and column quoting. 4697 * Robustify layer deletion (make it accessible through DROP TABLE xxx and DELLAYER:xxx syntax) and renaming 4698 * implement DeleteField(), AlterFieldDefn(), ReorderFields() 4699 * make GetExtent() save extent if not already cached 4700 * add special SQL 'RECOMPUTE EXTENT ON layer_name' to force recomputation of extent 4701 * check identifier unicity on layer creation 4702 * add possibility to disable foreign key check by setting OGR_GPKG_FOREIGN_KEY_CHECK=NO config option 4703 * add HasSpatialIndex(tblname,geomcolname) SQL function 4704 * don't show Spatialite vgpkg_ virtual tables (#6707) 4705 * SQLite/GPKG: add explicit error message when trying to open a read-only WAL-enabled database (#6776) 4706 * SQLite/GPKG: make sure when closing a WAL-enabled database opened in read-only mode to reopen it in read-write mode so that the -wal and -shm files are removed (#6776) 4707 * make GetFeature() works on non conformant tables that have no integer primary key field (#6799), and be robust to non standard column types 4708 * remove triggers related to metadata tables that cause issues and have been removed by latest revisions of the spec. 4709 * declare feature id column of features tables and tile pyramid user data tables as NOT NULL (#6807) 4710 * add a gpkg_ogr_contents table to store feature count. 4711 * speed-up GetFeatureCount() with only a spatial filter set 4712 * improve column recognition for SQL result layer 4713 * add/override ST_Transform() and SridFromAuthCRS() from Spatialite to make them work with gpkg_spatial_ref_sys 4714 * add ImportFromEPSG() 4715 * make ST_Min/MaxX/Y(), ST_SRID(), ST_GeometryType() and ST_IsEmpty() work with Spatialite geometries 4716 * improve performance of spatial index creation and use on multi-gigabyte databases 4717 * better support of spatial views, by adding a special behavior if a column is named OGC_FID 4718 * avoid potential denial of services by adding LIMIT clauses 4719 * slightly more efficient implementation of GetExtent() if extent in gpkg_contents is empty 4720 * create a dummy 'ogr_empty_table' features table in case we have no 'features' or 'tiles' table, so as to be conformant with Req 17 of the GeoPackage specification 4721 * add DEFAULT '' to metadata column of gpkg_metadata table 4722 * accept opening a .gpkg without vector content and without gpkg_geometry_columns table in vector mode if we also open in update mode; remove capability of opening a .gpkg without vector content but with gpkg_geometry_columns table in vector mode if we only open in read-only mode; fix creation of a vector layer in a database if it initially lacks a gpkg_geometry_columns table 4723 * fix appending a raster to a vector database without pre-existing raster support tables 4724 * add minimalistic support for definition_12_063 column in gpkg_spatial_ref_sys, so that insertion of new SRS doesn't fail 4725 * use GEOMETRYCOLLECTION instead of GEOMCOLLECTION for SQL and gpkg_geometry_columns.geometry_type_name 4726 * do not warn if gpkg_metadata extension declared 4727 4728GPX driver: 4729 * ignore wpt/rtept/trkpt with empty content for lat or lon 4730 4731ILI driver: 4732 * ILI1: fix crash in JoinSurfaceLayer() when the multicurve of the feature of the poSurfaceLineLayer layer is empty (#6688) 4733 * ILI1: make polygon reconstruction in Surface layers robust to curves not in natural order (#6728) 4734 * ILI2: assign FID to features (#6839) 4735 * ILI2: fix crashing bug in Create() if model file not specified 4736 4737KML driver: 4738 * add a DOCUMENT_ID datasource creation option to set the id of the root <Document> node 4739 4740LIBKML driver: 4741 * fix crash when reading <gx:TimeStamp> or <gx:TimeSpan> elements (#6518) 4742 * add a DOCUMENT_ID datasource creation option to set the id of the root <Document> node 4743 * emit style related errors as warnings to make datasets openable by SWIG bindings (#6850) 4744 4745MITAB driver: 4746 * limit (width, precision) of numeric fields on creation to (20,16) for compatibility with MapInfo (#6392) 4747 * add support for oblique stereographic (#6598) 4748 * Adds the authority code for Irish national grid (Ireland_1965) (github #149) 4749 * fix spelling for Euref_89 and add EPSG code (#6816) 4750 4751MSSQLSpatial driver: 4752 * Fix bulk insert with table names containing spaces (#6527) 4753 * Build optional mssql plugin with SQL Native Client support for MSSQL Bulk Copy 4754 * Fix MSSQL select layer to recognize geometry column with sqlncli (#6641) 4755 4756MySQL driver: 4757 * fix spatial filtering on recent mysql by adding a SRID in the rectangle geometry 4758 * do not force NOT NULL constraint on geometry field if no spatial index is used 4759 4760NAS driver: 4761 * support multiple 'anlass' in updates 4762 4763NWT_GRD: 4764 * add write support (#6533) 4765 4766OCI driver: 4767 * Add options for faster feature loading (#6606) 4768 * add WORKSPACE open option 4769 * correctly handle OFTInteger64 case in loader layer (bug found by cppcheck multiCondition) 4770 * support for long identifiers (up to 128 long) when running of 12.2 or + (#6866) 4771 * OCILOB VSIL driver: new driver to streams in and out of Oracle BLOB as a GDAL large virtual file system (#6861) 4772 4773ODS driver: 4774 * fix FID filtering (#6788) 4775 4776OGDI driver: 4777 * make GetNextRawFeature() report an error when it is not end of layer 4778 * better error reporting when the layer list cannot be established 4779 * catch non-fatal OGDI errors emitted by OGDI 3.2.0 if OGDI_STOP_ON_ERROR environment variable is set to NO, and emit them as CPLError()s 4780 * display OGDI error message if opening fails 4781 4782OpenFileGDB driver: 4783 * do not error out on geometries that have a declared M array but that is missing (#6528) 4784 * add support to read curve geometries (#5890) 4785 * transcode UTF-16 strings found in column names, alias, etc... to UTF-8 (instead of using only their ASCII byte) (#6544) 4786 * do not emit an error on a empty table whose declaration has M settings (#6564) 4787 * support opening '.' directory 4788 * improve detection of some form of TINs from MULTIPATCH, and for MultiPatch layers, try to select a better geometry type for those layers (#5888) 4789 * fix bug when field description offset is beyond 4GB (#6830) 4790 4791OSM driver: 4792 * fix 'too many tags in relation' error when parsing .osm files 4793 * allow key=value entries in closed_ways_are_polygons= configuration (#6476) 4794 * allow OSM_SQLITE_CACHE config option to be greater than 2047 4795 4796PG driver: 4797 * fix insertion of binary/bytea content in non-copy mode (#6566) 4798 * fix errors caused by missing geometry_columns/spatial_ref_sys tables in non PostGIS databases, that prevent reading more than 500 features (QGIS #10904) 4799 * avoid errors with field default expressions like 'foo'::text (#6872) 4800 4801PLScenes driver: 4802 * add HTTP retry logic (#6655) 4803 * V0 API: workaround limitations on filtering on image_statistics.image_quality (#6657) 4804 * add support for Data V1 API 4805 4806S57 driver: 4807 * Fix ogr2ogr -f S57 (#6549) 4808 * fix crashes if the s57objectclasses.csv resource file contains invalid lines 4809 * remove data/s57attributes_aml.csv data/s57attributes_iw.csv data/s57objectclasses_aml.csv data/s57objectclasses_iw.csv and move their content into main s57attributes.csv and s57objectclasses.csv files (#6673) 4810 * Update s57 attributes and object classes according to s-57 reference (github #202) 4811 * add POSACC and QUAPOS fields for geometric primitive layers (github #205) 4812 4813SDE driver: 4814 * rename driver to OGR_SDE. Fix build (#6714) 4815 4816SEGY driver: 4817 * Accept SEGY files with ASCII headers that have nul terminated strings (#6674) 4818 4819Shapefile driver: 4820 * auto-repack by default at dataset closing and FlushCache()/SyncToDisk() time. Controlled by AUTO_REPACK open and layer creation options (that default to YES) 4821 * generate .dbf end-of-file 0x1A character by default. Add DBF_EOF_CHAR layer creation options / open options to control that behavior 4822 * writing: use strerrno() for better error messages (QGIS #13468) 4823 * change REPACK implementation on Windows to be robust to remaining file descriptors opened on the .shp/.shx/.dbf (#6672, QGIS #15570) 4824 * Fix issue in DBFCloneEmpty() one a one field DBF not yet written to disk 4825 * add call to AutoIdentifyEPSG() when reading a .prj 4826 * support reading .dbf with substantial padding after last field definition. 4827 * when rewriting the geometry of the last record in the .shp, do it at the file offset it previously used (#6787) 4828 4829SOSI driver: 4830 * make registration of driver work again (2.1.0 regression) (#6500) 4831 * update to latest version of https://github.com/kartverket/gdal. Make SOSI driver support more geometry types (including curved geometries) plus provides some improvements on attribute-type mapping. Fix some memory errors/leaks. Disable by default non working creation code (#6503) 4832 4833SQLite/Spatialite driver: 4834 * do not emit error when running ExecuteSQL() with a spatial filter on an empty layer (#6639) 4835 * add read/write support for String/Integer/Integer64/RealList types as serialized JSon arrays 4836 * Spatialite: avoid crash when creating layer with geom_type = wkbCurve (fixes #6660) 4837 * Spatialite: do not report some BLOB columns as geometry columns of tables/views (when found before the geometry column(s)) (#6695, #6659) 4838 * fix update of features with multiple geometry columns (#6696) 4839 * speed-up dataset closing when creating a database with many spatial layers 4840 * Spatialite: avoid spatial views to cause layers 'layer_name(geometry_name)' to be publicly listed (#6740) 4841 * Spatialite: speed-up creation of database with INIT_WITH_EPSG=NO that is slow without transaction (not sure why as the table is empty...) 4842 * use AUTOINCREMENT for feature id column 4843 * allow OGR_SQLITE_CACHE to be set to > 2047 (MB) without overflowing 4844 * SQLite/GPKG: use SQLITE_OPEN_NOMUTEX flag to open databases. 4845 * GPKG/SQLite: fix ExecuteSQL() to work with a statement with 2 SELECT and ORDER BY clause (#6832) 4846 * SQLite/GPKG: change default page_size to 4096 bytes. 4847 * Update layer statistics for Spatialite 4 DB (#6838) 4848 * Remove traces of support of SQLite < 3.6.0 4849 * SQLite dialect: properly quote column names when needed (github #214) 4850 4851VFK driver: 4852 * allow reading multiple VFK files into single DB support amendment VFK files 4853 * recreate DB in the case that it's outdated (VFK DB created by previous versions of GDAL) 4854 * allow reading DB as valid datasource (#6509) 4855 * new tables in backend SQLite database (geometry_columns/spatial_ref_sys) to enable reading DB datasource by SQLite driver 4856 * new configuration option OGR_VFK_DB_READ to enable reading backend database by VFK driver 4857 4858VRT driver: 4859 * add support for 'm' attribute in PointFromColumns mode (#6505) 4860 4861WFS driver: 4862 * invalidate underlying layer when SetIgnoredFields() is called (QGIS #15112) 4863 * don't crash on empty <Keyword/> declaration (#6586) 4864 * fix potential nullptr dereference on dataset without layer (github #179) 4865 4866XLSX driver: 4867 * only list worksheets (and no charts) as layers (#6680) 4868 4869== SWIG Language Bindings == 4870 4871All bindings: 4872 * map osr.GetTargetLinearUnits() (#6627) 4873 * allow wkbCurve/wkbSurface as valid values for the geom type of GeomFieldDefn object 4874 * map GDALIdentifyDriverEx() 4875 4876Java bindings: 4877 * Fix SWIG Java bindings for GNM (#6434) 4878 * Fix crash on GetDefaultHistogram() if the C++ method returns an error (#6812) 4879 4880Perl bindings: 4881 * return value always from GetGeomFieldIndex (#6506) 4882 * the Warp method requires a list of datasets (#6521) 4883 * when 'use bigint' is in effect, int var is a ref. 4884 * Separate the module building in the CPAN distribution and in 4885the GDAL source tree. The CPAN distribution will be 4886developed at https://github.com/ajolma 4887 * Fix the Extension method in Driver per RFC 46 4888 * The Inv method of GeoTransform did not return a new object. 4889Allow a single point in Apply method of GeoTransform. 4890 * Test for existence of PDL and require it if available. 4891 * allow decimation/replication in Piddle i/o. 4892 * support resampling in ReadTile. 4893 * Polygonize: Require explicit 8 for Connectedness to set 8-connectedness and allow 8CONNECTED as an option. 4894 * use Safefree to free memory allocated in Perl (#6796) 4895 4896Python bindings: 4897 * release the GIL before entering GDAL native code (for all, in GDAL module and a few ones in ogr like ogr.Open()) 4898 * add outputType option to gdal.Rasterize() 4899 * fix build issues when CXX is defined in the environment 4900 * gdal.VectorTranslate(): add spatSRS option 4901 * when enabling ogr.UseExceptions(), use the GDAL error message in the exception text (if available), when the exception is linked to an error value in the OGRErr return code 4902 * gdal.VectorTranslate(): accept a single string as value of the layers option (instead of iterating over each of its characters) 4903 * Regenerate Python bindings with SWIG 3.0.8 to avoid issue with Python 3.5. Add backward compatibility in Band.ComputeStatistics() to accept 0/1 as input instead of the expected bool value (#6749) 4904 * fix gdal.DEMProcessingOptions(zeroForFlat=True) (#6775) 4905 * fix 'import osgeo.gdal_array' with python3 and SWIG 3.0.10 (#6801) 4906 * allow gdal.FileFromMemBuffer() to use buffer > 2GB (#6828) 4907 * accept unicode strings as field name argument in Feature (like SetField, GetField, etc...) and FeatureDefn methods 4908 4909= GDAL/OGR 2.1.0 Release Notes = 4910 4911== In a nutshell... == 4912 4913 * New GDAL/raster drivers: 4914 - CALS: read/write driver for CALS Type I rasters 4915 - DB2 driver: read/write support for DB2 database (Windows only) 4916 - ISCE: read/write driver (#5991) 4917 - MRF: read/write driver (#6342) 4918 - SAFE: read driver for ESA SENTINEL-1 SAR products (#6054) 4919 - SENTINEL2: read driver for ESA SENTINEL-2 L1B/LC1/L2A products 4920 - WMTS: read driver for OGC WMTS services 4921 * New OGR/vector drivers: 4922 - AmigoCloud: read/write support for AmigoCloud mapping platform 4923 - DB2 driver: read/write support for DB2 database (Windows only) 4924 - MongoDB: read/write driver 4925 - netCDF: read/write driver 4926 - VDV: read/write VDV-451/VDV-452 driver, with specialization for the 4927 Austrian official open government street graph format 4928 * Significantly improved drivers: 4929 - CSV: new options, editing capabilities of existing file 4930 - ElasticSearch: read support and support writing any geometry type 4931 - GeoJSON: editing capabilities of existing file, "native data" (RFC 60) support 4932 - MBTiles: add raster write support. fixes in open support 4933 - PDF: add PDFium library as a possible back-end. 4934 - PLScenes: add support for V1 API 4935 - VRT: on-the-fly pan-sharpening 4936 - GTiff: multi-threaded compression for some compression methods 4937 * Port library: add /vsis3/, /vsis3_streaming/, /vsicrypt/ virtual file systems 4938 * RFC 26: Add hash-set band block cache implementation for very larger rasters (WMS, WMTS, ...) 4939 http://trac.osgeo.org/gdal/wiki/rfc26_blockcache 4940 * RFC 48: Geographical networks support (GNM) 4941 https://trac.osgeo.org/gdal/wiki/rfc48_geographical_networks_support 4942 * RFC 58: Add DeleteNoDataValue(): 4943 https://trac.osgeo.org/gdal/wiki/rfc58_removing_dataset_nodata_value 4944 * RFC 59.1: Make GDAL/OGR utilities available as library functions: 4945 https://trac.osgeo.org/gdal/wiki/rfc59.1_utilities_as_a_library 4946 For gdalinfo, gdal_translate, gdalwarp, ogr2ogr, gdaldem, nearblack, gdalgrid, 4947 gdal_rasterize, gdalbuildvrt 4948 Available in C, Python, Perl and Java bindings. 4949 * RFC 60: Improved round-tripping in OGR 4950 https://trac.osgeo.org/gdal/wiki/rfc60_improved_roundtripping_in_ogr 4951 Implemented in GeoJSON driver 4952 * RFC 61: Support for measured geometries. 4953 https://trac.osgeo.org/gdal/wiki/rfc61_support_for_measured_geometries 4954 Implemented in Shapefile, PostgreSQL/PostGIS, PGDump, MEM, SQLite, GeoPackage, 4955 FileGDB, OpenFileGDB, CSV, VRT 4956 * Upgrade to EPSG database v8.8 4957 * General sanitization pass to clean-up code, fix a lot of compiler warnings, 4958 as well as issues pointed by static code analyzers, such as Coverity Scan 4959 (credits to Kurt Schwehr for tackling a large part of them) or CLang Static Analyzer. 4960 * Fixes in a number of drivers to be more robust against corrupted files (most found 4961 with American Fuzzy Lop): RIK, INGR, Northwood, HF2, CEOS, GTiff, GXF, BMP, 4962 NITF, HFA, VRT, FIT, CEOS2, NWT_GRD/NWT_GRC, MITAB, RPFTOC, DBF/Shape, XYZ, VFK, DXF, 4963 NAS, GSAG, GS7BG, OpenFileGDB, RMF, AIGRID, OpenAIR, EHDR, ISO8211, FAST, 4964 USGSDEM, DGN, SGI, OpenJPEG, PCRaster, BSB, ADRG, SRP, JPEG, Leveller, VICAR, PCIDSK, XPM 4965 as well as in portability library (CPL), algorithms and raster core. 4966 * Driver removed: 4967 - Google Maps Engine (GME) (#6261) 4968 4969== New installed files == 4970 * gdal_pansharpen.py 4971 * data/vdv452.xml 4972 * data/vdv452.xsd 4973 * data/netcdf_config.xsd 4974 * /path/where/bash-completion/scripts/are/installed/gdal-bash-completion.sh 4975 4976== Backward compatibility issues == 4977 4978See MIGRATION_GUIDE.TXT 4979 4980== GDAL/OGR 2.1.0 - General Changes == 4981 4982Build(Unix): 4983 * Allow plugin for HDF4, HDF5, GeoRaster, FileGDB, OCI and PG 4984 * Add a --with-gnm option to enable GNM 4985 * Add --enable-lto switch to turn on link time optimization (GCC >= 5) 4986 * Add --with-spatialite=dlopen --with-spatialite-soname=libspatialite.so[.X] syntax to allow linking against spatialite through dlopen() mechanism (#6386) 4987 * Add a lot of warning options when available in the compiler. 4988 * Change detection test of podofo to work with podofo 0.9.3 4989 * Fix gdalserver compilation with recent GNU libc (such as in Arch Linux) (#6073) 4990 * Add pkg-config support for libkml fork (#6077) 4991 * Update config.sub and config.guess to their latest upstream versions so as to be able to detect new architectures (android, ppcle64, etc..) (#6101) 4992 * Fix python package installation in custom prefixes (#4563) 4993 * configure: check that CXX is really a working compiler (#4436) 4994 * Build support for Kakadu 7.7 4995 * thinplatespline.cpp: avoid using optimized version of VizGeorefSpline2DBase_func4() with ICC versions that fail on it (#6350) 4996 * Add bash completion for GDAL/OGR utilities and scripts (#6381) 4997 * Add support for ODBC autodetection with mingw64 (#6000) 4998 * Remove macos 9 and older support (#6133). 4999 * Remove dist_docs, burnpath and pszUpdableINST_DATA in gcore/gdaldrivermanager.cpp as they are have not been used for a while (#6140). 5000 * Removed --without-ogr configure flag (#6117). Always build with OGR. 5001 5002Build(Windows): 5003 * Add support for Visual Studio 2015 (a.k.a MSVC_VER=1900 or VC 14) 5004 * Add KAKFLAGS to nmake.opt with KDU_{MAJOR,MINOR,PATCH}_VERSION define-s. 5005 * nmake.opt: make it less error prone to define SETARGV when paths include spaces (#6032) 5006 * nmake.opt: add CL.EXE compiler option /FC to display full path of source code file in diagnostics 5007 * Remove WinCE support (#6133) 5008 * nmake.opt: add /I flag to the INSTALL command so that xcopy will be smart enough to create a directory when copying files and avoid prompting for user input (https://github.com/OSGeo/gdal/pull/95) 5009 * Enable mssql spatial blugin build, use BCP as the default option for the sqlncli enabled builds 5010 * Add support to find MrSID 9.5 dll 5011 * Fix Windows build with recent MySQL versions and Visual Studio 2015 (#6457) 5012 5013Build(all): 5014 * Compatibility with C++11 and C++14 5015 * Optional crypto++ dependency for /vsicrypt/ support 5016 * Optional mongocxx dependency for MongoDB support 5017 5018Other: 5019 * Disable copy constructor and assignment operators in classes OGRFieldDefn, OGRGeomFieldDefn, OGRFeature, GDALMultiDomainMetadata, GDALDefaultOverviews, GDALOpenInfoGDALDataset, GDALRasterBlock, GDALRasterBand and GDALDriver (#6100) 5020 5021== GDAL 2.1.0 - Overview of Changes == 5022 5023Port: 5024 * Add /vsicrypt/ virtual file system for reading/creating/update encrypted files on the fly, with random access capabilities 5025 * Add /vsis3/ and /vsis3_streaming/ virtual file systems to read/write objects from AWS S3 buckets 5026 * /vsizip/: avoid returning the previous file list of an already opened .zip if it has changed afterwards (#6005) 5027 * /vsizip/: use CP437 on Windows when ICONV support is available (#6410) 5028 * /vsimem/: implement append mode (#6049) 5029 * /vsistdin/: fix caching of first 1MB / VRT driver: read XML content from /vsistdin/ in a streaming compatible way (#6061) 5030 * /vsistdout/: flush when closing the handle (#6149) 5031 * Add VSIReadDirEx() with a limit on the number of files before giving up and corresponding VSIFilesystemHandler::ReadDirEx() virtual function 5032 * cpl_vsil_cache: rework to be able to work on very large files on 32bit systems 5033 * Add CPLThreadLocaleC class to use thread-specific locale settings (when available) 5034 * VSIWin32Handle::Flush(): add VSI_FLUSH config option that can be set to TRUE to force FlushFileBuffers(). (hack related to #5556) 5035 * Fix VSIL append mode in Windows (#6065) 5036 * Make CPLCreateMutexEx() support CPL_MUTEX_REGULAR; and fix CPL_MUTEX_ADAPTIVE to avoid continuing in code path for creation of recursive mutex 5037 * Add CPLWorkerThreadPool API 5038 * Add CPLGetThreadLocalConfigOption() 5039 * Fix CPL_LSBINT16PTR() and CPL_LSBINT32PTR() to work with non-byte pointer (#6090) 5040 * CPLRecodeStub(): add special case for CP437 -> UTF-8 when input is only printable ASCII 5041 * CPLHTTPFetch(): add LOW_SPEED_TIME and LOW_SPEED_LIMIT options 5042 * CPLGetValueType(): improve heuristics to avoid detecting some WKB strings as real numbers (#6128) 5043 * Add CPL_SHA256* and CPL_HMAC_SHA256 functions 5044 * Make CPLVirtualMemFileMapNew() work on all systems having mmap(), and thus GeoTIFF GTIFF_VIRTUAL_MEM_IO optimization too 5045 * Add VSI_MALLOC_VERBOSE() and similar macros to output an error message in case of failed alloc 5046 * CPLParseXMLString(): limit depth of elements to 10000 5047 * Win32 file management: handle files whose total file path length is greater than 255 characters in Open() and Stat() 5048 * Make CPLFormFilename(absolute_path, "..", NULL) truncate when possible 5049 * Add VSIGetDiskFreeSpace() 5050 * Implement CPLIsInf() for Solaris 11 5051 * Add a CPL_FINAL macro that expands to C++11 final keyword when C++11 is enabled, and use it in a few places 5052 * Avoid CPLEscapeString (CPLES_URL) encoding some characters unnecessarily (#5526) 5053 * Add CPLTestBool(), CPLTestBoolean(), CPLFetchBool() 5054 * Fix CPLGetValueType() to recognize D1 as a string and not a real number (#6305) 5055 * CPLFormFilename(): use '/' directory separator on Windows on /vsicurl_streaming/ files (#6310) 5056 * Add hack enabled by -DDEBUG_BOOL to detect implicit int->bool conversions that dislike MSVC (#6325) 5057 * Add hack to '#define NULL nullptr' when NULL_AS_NULLPTR is defined. Must be used together with -std=c++11 -Wzero-as-null-pointer-constant with GCC to detect misuses of NULL/nullptr (#6327) 5058 * Add VSIError mechanism to store errors related to filesystem calls, and use it for /vsis3/. Add new CPLE_ error numbers. (https://github.com/OSGeo/gdal/pull/98) 5059 * Fix CPLsscanf() to be conformant regarding how space/tab/... separators are handled, so as to fix OGR GMT to be able to read coordinates separated by tabulations (#6453) 5060 5061Core: 5062 * Change default value of GDAL_CACHEMAX to 5% of usable physical RAM 5063 * Allow open options name to be prefixed by @ to be silently ignored when not existing in driver options (RFC 60) 5064 * Honour NBITS metadata item when doing RasterIO() with non-nearest resampling (#6024) 5065 * GDALClientServer: pass open options to INSTR_Open call 5066 * Improve performance of GDALCopyWords() float->byte/int16/uint16 by using SSE2 5067 * Decorate prototypes of RasterIO() related operations with CPL_WARN_UNUSED_RESULT 5068 * Avoid deadlock when writing 2 datasets in 2 threads (#6163) 5069 * Remove obsolete symbols __pure_virtual(), GDALCreateProjDef(), GDALReprojectToLongLat(), GDALReprojectFromLongLat() and GDALDestroyProjDef() 5070 * Remove obsolete non-template-based implementation of GDALCopyWords(). We don't support anymore such compilers 5071 * GDALJP2Box::ReadBoxData(): do not abort if memory allocation fails 5072 * Add GDALAdjustValueToDataType() in C API, and use it in GDALTranslate() and GDALWarp() 5073 * GDALDefaultOverviews::CreateMaskBand(): fix logic error related to writing per-band mask 5074 * Block cache: fix excessive memory consumption when dealing with datasets with different block sizes (#6226) 5075 * EXIFExtractMetadata(): fix potential 1-byte write buffer stack overflow 5076 * MDReader: do no attempt reading side-car files on /vsisubfile/ (#6241) 5077 * GDALCheckBandCount(): allow by default a maximum number of bands to 65536 5078 * GDALOpenInfo: add StealSiblingFiles() and AreSiblingFilesLoaded() methods 5079 * GDALOpenInfo::GetSiblingFiles(): give up after GDAL_READDIR_LIMIT_ON_OPEN (default=1000) files in the directory 5080 * GDALDefaultOverviews: add TransferSiblingFiles() method 5081 * GDALDriver::DefaultCreateCopy(): fix logic related to propagation of NBITS / PIXELTYPE metadata items as creation options 5082 * Reorder driver registration a bit so that formats with efficient identification are probed first 5083 * Add GDALIdentifyEnum (GDAL_IDENTIFY_UNKNOWN, GDAL_IDENTIFY_FALSE or GDAL_IDENTIFY_TRUE) for return values of Identify() 5084 * GDALLoadRPCFile(): load .rpc files from Ikonos products that have extra end-of-line character (#6341) 5085 * Export GDALRegenerateOverviewsMultiBand() symbol, but mostly for plugins (#6342) 5086 * Add GDAL_NO_AUTOLOAD to compile out the body of AutoLoadDriver (#6380) 5087 * Avoid ComputeStatistics(), GetHistogram() and ComputeRasterMinMax() to use only the first column of blocks in approximation mode for a raster whose shape of blocks is a square (#6378) 5088 * Add GDALGetDataTypeSizeBits() and GDALGetDataTypeSizeBytes(). 5089 * GDALReadOziMapFile(): fix reading Ozi external files from virtual file systems (https://github.com/OSGeo/gdal/pull/114) 5090 * Add CPLSetCurrentErrorHandlerCatchDebug() to enable custom error handlers not to intercept debug messages 5091 5092Algorithms: 5093 * RPC transformer: provide SSE2 accelerated transformer 5094 * RPC: fix off-by-half pixel computation of (pixel, line), and in bilinear and bicubic RPC DEM interpolation; fix off-by-one pixel registration for Pleiades RPC (#5993) 5095 * RPC: make RPCInverseTransformPoint() check convergence has been reached (#6162) 5096 * RPC DEM: optimize when DEM is in NAD83 or any other geodetic CS that transform as a no-op to WGS 84 5097 * RPC DEM: take into account vertical datum of the DEM when present to convert DEM elevations to ellipsoidal heights (#6084) 5098 * RPC DEM: do fallback cubic -> bilinear and bilinear -> near on DEM edges 5099 * RPC DEM: improve inverse transformer to validate error threshold and improve convergence (#6162, #6377) 5100 * RPC: fix issues with dateline (#6472) 5101 * TPS solver: discard duplicated GCP to avoid avoidable error, warning when 2 GCPs have same (pixel,line) but different (X,Y) or the reverse 5102 * Warper: rework multithreaded computations to use a thread pool rather than forking threads each time 5103 * Warper: avoid really excessive processing time for some warping with target areas completely off the source raster (especially when involving RPC) (#6182) 5104 * Warper: CreateKernelMask(): fix potential 32 bit integer overflow when using warp memory value > 2GB (#6448) 5105 * gdal_grid: add linear interpolation algorithm 5106 * gdal_grid: add invdistnn algorithm, variation on the existing inverse distance weighting algorithm with quadtree to search for points only in the neighborhood (#6038) 5107 * gdal_grid: fix crash in optimized mode with GCC 4.4 on 64bit (#5987) 5108 * gdal_grid: compile gdalgrid AVX optimization for Windows when supported by compiler 5109 * Add GDALTriangulationXXXX() API through libqhull 5110 * Sieve filter: fix crash on nodata polygons (#6096) 5111 * Sieve filter: improvement to walk through the biggest neighbour chain until we find a polygon larger than the threshold (#6296) 5112 * GDALFPolygonize(): factor implementation with integer case 5113 * GDALComputeMedianCutPCT(): fix to make it work with rasters with more than 2 billion pixels (#6146) 5114 * Overview: Make average and gauss methods aware of transparent color table entries (#6371) 5115 5116Utilities: 5117 * gdalinfo: workaround bug in proj <= 4.9.1 on datasets with a SRS with a vertical shift grid (#6083) 5118 * gdal_translate: detect more reliably if specified bands are not in default order 5119 * gdal_translate: fix -a_nodata with negative values on rasters that have PIXELTYPE=SIGNEDBYTE; fix preserving PIXELTYPE=SIGNEDBYTE with VRT 5120 * gdal_translate: fix random behavior when -scale is used without source bounds (#6455) 5121 * gdal_rasterize: do on-the-fly reprojection of input vector onto output raster 5122 * gdal_rasterize: rasterize: always create output with 1/2 cell buffer of input geometry envelope (#6058) 5123 * gdal_rasterize: add the -dialect option 5124 * gdal_rasterize: accept NaN as a valid value for -init / -burn (#6467) 5125 * gdalwarp: add -doo option to specify open options of (existing) output dataset 5126 * gdalwarp: if RPC_DEM warping option is specified, use exact transformer by default (#5993) 5127 * gdalwarp: make it honour nodata value of existing dataset (if -dstNoData isn't explicitly specified) 5128 * gdalwarp: do not propagate STATISTICS_ of second or following source datasets 5129 * gdalwarp: do not emit warning when using -cutline with a SRS and the source raster has RPC or GEOLOCATION 5130 * gdalwarp: check that the cutline is valid after transformation/reprojection 5131 * gdalwarp: better deal when dealing with a mix of RGB and RGBA datasets as input 5132 * gdalwarp: fix -srcnodata to not put garbage values as target dstnodata (#6315) 5133 * gdalwarp: densify cutline to avoid invalid geometry after reprojection to source raster, especially in the RPC case (#6375) 5134 * gdalserver: add a -nofork mode (Unix only for now), so that multiple clients can connect to the same dataset. Useful for safe 'concurrent' updates 5135 * add gdal_pansharpen.py script 5136 * gdal2tiles.py: fix error on a raster with less than 3 bands that resulted in a 'IndexError: list index out of range' 5137 * gdal2tiles.py: Change EPSG:3785 / EPSG:900913 into EPSG:3857 (#5622) 5138 * gdal2tiles.py: add Leaflet template (https://github.com/OSGeo/gdal/pull/71) 5139 * gdal2tiles.py: add -q switch for quiet mode 5140 * gdaldem: correctly deal with NaN as nodata value (#6066) 5141 * gdaldem color-relief: deal with the case of repeated entries with the same value and the input raster has pixels that match that value exactly (#6422) 5142 * gdaladdo: emit error message if passed an invalid dataset name (#6240) 5143 * gdaladdo: do not silence warnings when opening in update mode, if the open is successful 5144 * gdalbuildvrt: fix potential crash when using -b switch (#6095) 5145 * gdalbuildvrt: accept nan as value for -srcnodata and -vrtnodata 5146 * gdalbuildvrt: return non zero return code if the flush of the VRT to disk failed 5147 * gdal_merge.py: takes again into account -n flag (#6067) 5148 * gdalbuildvrt / gdal_translate / VRT: use floating point values for source and destination offsets and sizes (#6127) 5149 * gdalmove.py: fix to run with GDAL 2.0 gdal.InvGeoTransform() signature 5150 * gdal_calc.py: Add * from gdalnumeric to gdal_calc.py eval namespace again, to fix 2.0 regression that made for example 'log10(A)' to no longer work (https://github.com/OSGeo/gdal/pull/121) 5151 5152Python samples: 5153 * gdalpythonserver.py: update to protocol 3 5154 5155AAIGRID: 5156 * when writing with floating-point values, ensure at least one value has a decimal point to avoid issues with some readers (#6060) 5157 5158BMP driver: 5159 * BMP: avoid too big color table allocation in case of wrong iClrUsed value 5160 5161BLX driver: 5162 * converted to support VirtualIO 5163 5164ECRG driver: 5165 * change subdataset definition to make sure that they only consist of frames of same scale (#6043) 5166 * fix base34 decoding and Windows filename handling (#6271) 5167 5168ECW driver: 5169 * use wide char Open API on Windows when GDAL_FILENAME_IS_UTF8=YES (https://github.com/OSGeo/gdal/pull/70) 5170 * fix reading of ECW in /vsi file systems (with SDK >= 4) (#6482) 5171 5172GeoRaster driver: 5173 * fix deflate read error depending on endianness (#6252) 5174 5175GIF driver: 5176 * libgif: partial resync with giflib master (but keep ABI of 4.1.6) 5177 * fix crash when CreateCopy a source with one color in the color table 5178 5179GMT driver: 5180 * validate raster dimensions on opening, and acquire mutex in dataset destructor 5181 5182GPKG driver: 5183 * write support: fix various issues in update scenarios when interacting with the GDAL block cache that could result in lost/corrupted band data to be written in tiles (#6309) 5184 * write support: fix potential use of freed sqlite temporary DB handle when generating overviews with partial tiles (#6335) 5185 * write support: fix potential crash in scenarios when block cache is full (#6365) 5186 * write support: fix inversion of row/column in one of the SQL request involved in partial tiles management (#6339) 5187 * fix generation of files with 1-band paletted input dataset. Also improve the logic to retrieve color palette when forcing BAND_COUNT=1 on opening (#6450) 5188 5189GTiff driver: 5190 * add NUM_THREADS creation and open options to enable multi-threaded compression 5191 * fix GTiffDataset::IsBlockAvailable() wrong behavior when compiling against internal libtiff, when a BigTIFF file has a TileByteCounts with LONG/4-byte counts and not LONG8 (#6001) 5192 * Correctly take into account overridden linear units for a geotiff with a EPSG PCS code (#6210, #4954) 5193 * make VirtualMemIO() work with non native endianness 5194 * improve VirtualMemIO() performance in tiled Contig read to single band copy 5195 * improve single band tiled VirtualMemIO reading 5196 * improve DirectIO() to work on tiled uncompressed geotiff, for non-resampling and nearest resampling cases. Also improve performance of resampling cases on un-tiled files 5197 * fix DirectIO() mode with complex types and inverted endianness (#6198) 5198 * optimize writing of 12-bit values 5199 * implement lazy loading of .aux.xml and .tfw/.wld 5200 * Internal libtiff: update to CVS HEAD post libtiff 4.0.6 5201 * make SetColorInterpretation(GCI_AlphaBand) work on a 5 band or more GeoTIFF (#6102) 5202 * automatically set PHOTOMETRIC=RGB if manually assigning color interpretation Red,Green,Blue to band 1,2,3 before directory crystallization (#6272) 5203 * add GEOTIFF_KEYS_FLAVOR=ESRI_PE creation option to write EPSG:3857 in a ESRI compatible way (#5924) 5204 * call XTIFFInitialize() in LibgeotiffOneTimeInit() as the former isn't thread-safe, so better call it from the later which is thread-safe (#6163) 5205 * fix reading and writing angular units different from degree (namely arc-second, arc-minute, grad, gon and radian) (#6171) 5206 * do not use VirtualMemIO optimization on compressed /vsimem/ files (#6195) 5207 * correctly set GTRasterTypeGeoKey=RasterPixelIsPoint if AREA_OR_POINT=Point but there is no SRS set (#6225) 5208 * improve a bit error detection when writing 5209 * check free space before writing (only for big, non sparse, uncompressed) 5210 * do not read large 'one row' JBIG compressed files with the scanline API (#6264) 5211 * Fix SetMetadata() to properly clear existing PAM metadata (complement to #5807) 5212 * prevent potential out of bounds read/write to TIFFTAG_EXTRASAMPLES (#6282) 5213 * do not use first directory as potential mask, to avoid assertion in GTiffDataset::SetDirectory() (#6287) 5214 * reject files with strips/tiles/scanlines bigger than 2 GB to avoid 32 bit integer overflow. 5215 Also in case of files with Contig PlanarConfiguration do not make reading one block for band 2 OK when reading for band 1 issued an error (#6288) 5216 * GTIFFWriteDirectory(): avoid memory leak of codec related memory (#2055) 5217 * Make ALPHA=NO in CreateCopy() cancel alpha color interpretation even if present in source raster 5218 * fix problem with implicit overviews of JPEG-compressed files (#6308) 5219 * fix compilation problem with internal libtiff if DEFER_STRILE_LOAD isn't defined (which is not the default configuration) (https://github.com/OSGeo/gdal/pull/90) 5220 * use more appropriate error message when 4GB threshold is reached with external overviews, and try to make doc of BIGTIFF=IF_NEEDED/IF_SAFER clearer (#6353) 5221 5222HDF4 driver: 5223 * Skip quotation mark when parsing HDF-EOS metadata. 5224 5225HDF5 driver: 5226 * add Komsat Mission ID to possible value for HDF5 SAR product (https://github.com/OSGeo/gdal/pull/103) 5227 5228HF2 driver: 5229 * fix reading side of the driver to work on architectures where char is unsigned, like PPC or ARM (#6082) 5230 5231HFA driver: 5232 * when reading projection, preserve EPSG code if AutoIdentifyEPSG() identified the SRS, even if a PE string is present (#6079) 5233 * keep TOWGS84 even when using ESRI PE string (#6158) 5234 * fix crashes on corrupted files (#6208, #6286) 5235 5236INGR driver: 5237 * check that RLE decoding produced the expected number of bytes and error out otherwise; test that 'random' line seeking actually works 5238 5239JPEGLS driver: 5240 * fix build error (#6430) 5241 5242JP2ECW driver: 5243 * honour psExtraArg->eResampleAlg when upsampling (#6022) 5244 5245JP2KAK driver: 5246 * honour psExtraArg->eResampleAlg when upsampling (#6022) 5247 * try rounded dimensions to decide if the data is being requested exactly at a sub-resolution 5248 * support v7.7 on Unix (additional changes potentially needed on Windows) 5249 5250JP2OpenJPEG driver: 5251 * Safer multi-threaded use 5252 5253JPEG driver: 5254 * add USE_INTERNAL_OVERVIEWS open option (default to TRUE as in recent versions, can be set to FALSE to hide internal overviews 5255 5256KMLSuperOverlay driver: 5257 * fix 2.0 regression with some RasterIO() requests involving resampling (#6311) 5258 * recognize datasets that have a intermediate <Folder> that forms a <Document><Folder><Region/><GroundOverlay/> structure (#6343) 5259 5260LCP driver: 5261 * fix wrong use of endianness macros to fix behavior on big-endian hots 5262 5263Leveller driver: 5264 * update to v9 read support (#5632,) 5265 5266MBTiles driver: 5267 * add raster write support 5268 * fix so that datasets whose lowest min zoom level is 16 or above are recognized 5269 * be robust to invalid 'bounds' at dataset opening (#6458) 5270 5271MEM driver: 5272 * avoid 32 bit overflows 5273 5274NetCDF driver: 5275 * add support for reading NC4 unsigned short attributes and variables (#6337) * read correctly nodata values in [128,255] range for (unsigned) Byte data type (#6175) 5276 * implement Get/SetUnitType() using the standard units attribute (https://github.com/OSGeo/gdal/pull/96) 5277 * optimize IReadBlock() and CheckData() handling of partial blocks in the x axis by re-using the GDAL block buffer instead of allocating a new temporary buffer for each block (#5950) 5278 * full read/write support for new NetCDF4 types NC_UBYTE, NC_USHORT, NC_UINT and NC_STRING for variables (except for NC_STRING) and attributes (https://github.com/OSGeo/gdal/pull/99) 5279 * add support for the geostationary projection (#6030) 5280 * fix one byte heap write overflow in NCDFTokenizeArray() (#6231) 5281 * fix potential buffer overflows with uses of nc_inq_varname(), nc_inq_attname() and nc_get_att_text() (#6227) 5282 * validate that gridmapping:GeoTransform has 6 values (#6244) 5283 * fix wrong use of deallocator when writing a GEOLOCATION array, and other issues 5284 * limit number of bands reported to 32768 by default 5285 * validate raster dimensions 5286 * validate content of NC_GLOBAL#GDAL variable (#6245) 5287 5288NGSGEOID driver: 5289 * make it work on > 2GB file 5290 5291NITF driver: 5292 * data/nitf_spec.xml: Add CSCCGA, MENSRB, SENSRB, STREOB, ENGRDA, EXPLTB and PATCHB TREs (https://github.com/OSGeo/gdal/pull/81, #6285, https://github.com/OSGeo/gdal/pull/86) 5293 * fix parser to properly deal with variable length items not in first nesting level 5294 5295Northwoord driver: 5296 * fix computation of intermediate color table values on non-Intel platforms (#6091) 5297 5298NTv2 driver: 5299 * support reading/writing/appending to files with big-endian order (cf https://github.com/OSGeo/proj.4/issues/345) 5300 5301OpenJPEG driver: 5302 * do not expose block dimensions larger than dataset dimensions to avoid wasting memory (#6233) 5303 5304PCIDSK driver: 5305 * Remove the old driver (#6172) 5306 5307PDF driver: 5308 * add PDFium library as a possible back-end. Initial support contributed by Klokan Technologies GmbH (http://www.maptiler.com/) 5309 * workaround a bug of PoDoFo 0.9.0 by avoiding loading of vector content in raster-only mode (doesn't prevent the crash if reading the vector layers) (#6069) 5310 * make OGC BP registration work with media box where bottom_y is negative and top_y = 0 (in non rotated case) 5311 * make OGC BP registration work with media box where min_x != 0 (in non-rotated case) 5312 * correctly take into account non-meter linear units with OGC BP encoding, and add support for US FOOT (#6292) 5313 5314PDS driver: 5315 * change default values of PDS_SampleProjOffset_Shift and PDS_LineProjOffset_Shift to 0.5 (#5941) 5316 * fix nodata value for UInt16 to be 0 (#6064) 5317 * accept 'ODL_VERSION_ID = ODL3' in header (#6279) 5318 5319PGChip driver: 5320 * driver removed from sources 5321 5322PLScenes driver: 5323 * PLScenes V0: avoid opening raster to generate dummy .aux.xml 5324 5325PNG driver: 5326 * Support writing 1, 2 or 4 bit single band 5327 * Add NBITS creation option 5328 * fix XML of creation option list 5329 * Update internal libpng to 1.2.56 5330 5331PostgisRaster driver: 5332 * avoid Identify() to recognize OGR PostgreSQL connection strings with schemas option and cause loud 'QuietDelete' (#6034) 5333 5334Raw drivers: 5335 * better support for direct read of more than 2GB in single gulp (untested though) 5336 5337RIK driver: 5338 * fix Identify() method to recognize again non-RIK3 RIK datasets (#6078) 5339 5340RMF driver: 5341 * implement GetNoDataValue() 5342 * add read/write access to new RMF format for files larger than 4 Gb (version=0x201) (https://github.com/OSGeo/gdal/pull/11) 5343 5344ROIPAC driver: 5345 * Support offset and scale band (#6189) 5346 5347VICAR driver: 5348 * change PDS_SampleProjOffset_Shift and PDS_LineProjOffset_Shift default values to 0.5 (#5941) 5349 * fix loss of precision in scale and offset 5350 5351VRT driver: 5352 * expose implicit 'virtual' overviews for VRT whose bands are made of a single SimpleSource/ComplexSource 5353 * gdalvrt.xsd: Add capitalized versions of true and false (#6014) 5354 * GetSingleSimpleSource(): check there's a single source (#6025) 5355 * honour VRTRasterBand NBITS metadata with SimpleSource and ComplexSource 5356 * properly take into account nodata value declared at VRT band level when doing resampling with non-nearest 5357 * honour relativeToVRT when using AddBand() to add a VRTRawRasterBand (https://github.com/OSGeo/gdal/pull/67) 5358 * VRT warp: fix crash with implicit overviews and destination alpha band (#6081) 5359 * make GetDefaultHistogram() on a sourced raster band save the result in the VRT (#6088) 5360 * serialize NODATA and NoDataValue items with %.16g, e.g. so as to be able to hold large int32 nodata values (#6151) 5361 * VRTSourcedRasterBand: make ComputeRasterMinMax() and ComputeStatistics() forward bApproxOK to overview band (useful for implicit overviews) 5362 * make CreateCopy() preserve NBITS metadata item 5363 * avoid loading sibling file list if not available 5364 * VRT raw: don't truncate last figure of ImageOffset if there are left space padding (#6290) 5365 * VRTWarpedDataset::SetMetadataItem(): fix crash when calling with name=SrcOvrLevel and value=NULL (#6397) 5366 * Warped VRT: fix deadlock in situation where warped VRT datasets are read in multiple threads and the block cache reaches saturation. Also add a GDAL_ENABLE_READ_WRITE_MUTEX config option that can be set to NO to disable the read/write mutex mechanism in cases where it would deadlock (#6400) 5367 5368WMS driver: 5369 * add a IIP (Internet Imaging Protocol) minidriver 5370 * limit number of zoom levels for ArcGIS MapServer JSon (#6186) 5371 * determine a resolution that will not result in a number that is larger than the maximum size of an integer. Any value that exceeds the maximum size of an integer will raise an invalid dataset dimensions error. (https://github.com/OSGeo/gdal/pull/89) 5372 5373XYZ driver: 5374 * be more robust to not exactly equal X and Y spacing (#6461) 5375 5376== OGR 2.1.0 - Overview of Changes == 5377 5378Core: 5379 * Add OGREditableLayer class to add editing capabilities to drivers with none or limited editing capabilities 5380 * OGRGeometry: add DelaunayTriangulation() method (GEOS >= 3.4) 5381 * OGRGeometry and derived classes: implement copy constructor and assignment operator (#5990) 5382 * OGRGeometry: Fix result of Equals on POINT EMPTY with POINT(0 0) 5383 * OGRFeature SetField(): more type conversions allowed, particularly with array types 5384 * OGRFeature::SetGeometry()/SetGeometryDirectly(): make it work when passed geometry is the currently installed geometry (#6312) 5385 * OGR SQL: do not silently skip NULL values in the first records when evaluating a SELECT DISTINCT (#6020) 5386 * OGR SQL: correctly sort NULL values in first positions (#6155) 5387 * OGR SQL: fix CAST(x AS bigint) to return an evaluated int64 node, and not int32 (#6479) 5388 * OGR SQL: handle 'fid' as Integer64 in where clause, and allow CAST(fid AS bigint) in selected columns (#6484) 5389 * Add OGRUpdateFieldType() 5390 * Decorate a few functions/methods of the OGR layer API with CPL_WARN_UNUSED_RESULT 5391 * WKT export: use 15 significant figures, instead of 15 figures after decimal point (#6145) 5392 * WKT export: do not append .0 after non-finite values (#6319) 5393 * Fix typo in definition of name of OGR_FD_ReorderFieldDefns (final s was missing) 5394 * OGRLayer::SetIgnoredFields(): properly reset state of non first geometry fields (#6283) 5395 * Make OGRLayer::SetSpatialFilter(GetSpatialFilter()) work with non empty spatial filter (#6284) 5396 * OGRLayerDecorator: add missing CreateGeomField() 5397 * OGRLayer::Erase(): do not discard input geometries that have no intersection with method layer (#6322) 5398 * OGRLayer::Erase(): Speedup = ~70% 5399 * Add OGRPreparedGeometryContains() 5400 * Use prepared geometry intersects as pretest in layer Intersection, Union, and Identity methods if requested. 5401 Use prepared geometry containment as pretest in layer Intersection method if requested. 5402 * Bail out from layer algebra methods if GEOS calls fail and not SKIP_FAILURES. 5403 * OGR_G_SetPoints(): error out if padfX or padfY == NULL, do not change coordinate dimension to 3D when pabyZ == NULL, fix optimization on linestring to call setPoints() only if the strides are the ones of a double, not 0 as incorrectly done before (#6344) 5404 * OGRParseDate(): more strict validation to reject invalid dates (#6452) 5405 5406OGRSpatialReference: 5407 * Upgrade to EPSG database v8.8 5408 * Add support for SCH (Spherical Cross-track Height) projection 5409 * Optimize reprojection typically between WGS84 based SRS and WebMercator 5410 * Correctly transform Mercator_2SP and _1SP to ESRI Mercator, and back from ESRI Mercator to Mercator_2SP (#4861) 5411 * No longer enforce C locale if running against latest proj that is locale safe (4.9.2 or later) 5412 * EPSGGetPCSInfo(): use pcs.override.csv in priority over pcs.csv to read projection name, UOM, UOMAngle, GeogCS, etc... (#6026) 5413 * morphToESRI(): use GCS_WGS_1972 as GCS name for EPSG:4322 (#6027) 5414 * morphToESRI(): use Mercator_Auxiliary_Sphere projection for EPSG:3857. morphFromESRI(): map Mercator_Auxiliary_Sphere to EPSG:3857 (#5924) 5415 * Align hard-coded WKT of well known GCS definitions of WGS84, WGS72, NAD27 and NAD83 with the WKT of their EPSG def (#6080) 5416 * morphFromESRI(): special case with PROJCS name 'WGS_84_Pseudo_Mercator' (#6134) 5417 * OSR C API: fix declarations of OSRSetAxes() and OSRSetWagner(), and add missing OSRSetHOMAC(), OSRSetMercator2SP() and OSRSetTPED() (#6183) 5418 * Recognize EPSG 9835 method (Lambert Cylindrical Equal Area (Ellipsoidal)), needed for EPSG:6933 PCS for example 5419 * importFromProj4/exportToProj4(): rework linear unit conversion between WKT name/values and proj4 unit name, and extend its scope in WKT to proj4 conversions 5420 * OSR ESRI .prj: add support for reading custom ellipsoid in Parameters line 5421 * on import of +proj=geos, if +sweep=x is used then store it as a proj4 extension node (#6030) 5422 5423Utilities: 5424 * ogrinfo / ogr2ogr: implement @filename syntax for -sql and -where 5425 * ogr2ogr: prevent the -gt setting from overriding transaction group size of 1 set by skipfailures earlier (#2409) 5426 * ogr2ogr: warn if -zfield field does not exist in source layer 5427 * ogr2ogr -skip: rollback dataset transaction in case of failure (#6328) 5428 * ogr2ogr: fix -append with a source dataset with a mix of existing and non existing layers in the target datasource (#6345) 5429 * ogr2ogr: imply quiet mode if /vsistdout/ is used as destination filename 5430 * ogr2ogr: make -dim and -nlt support measure geometry types 5431 5432CartoDB: 5433 * fix GetNextFeature() on a newly create table (#6109) 5434 * defer 'CartoDBfycation' at layer closing 5435 * optimize feature insertion with multiple rows INSERT 5436 5437CSV driver: 5438 * add editing capabilities of existing files 5439 * add X_POSSIBLE_NAMES, Y_POSSIBLE_NAMES, Z_POSSIBLE_NAMES, GEOM_POSSIBLE_NAMES and KEEP_GEOM_COLUMNS open options 5440 * add HEADERS open option to force OGR to handle numeric column names. (PR #63) 5441 * add EMPTY_STRING_AS_NULL=YES/NO open option 5442 * implement compatibility enhancements for GeoCSV specification (#5989) 5443 * fix detection of TAB delimiter in allCountries.csv when the first line has a comma (#6086) 5444 * fix issues with leading single quote, and missing first line after ResetReading(), when parsing allCountries.txt (#6087) 5445 * speed-up GetFeatureCount() on allCountries.txt 5446 * on CreateDataSource() with a .csv name, do not try to open other existing .csv files in the directory 5447 * make CreateGeomField() returns OGRERR_NONE in case of success instead of OGRERR_FAILURE (#6280) 5448 * avoid adding trailing comma in header line when writing 'WKT,a_single_field' 5449 5450DGN driver: 5451 * add partial 3D transformation support for cell headers 5452 5453DXF driver: 5454 * detect files without .dxf extension (#5994) 5455 * fix handling of ELLIPSE with Z extrusion axis = -1 (#5705) 5456 * take into account full definition of spline entity (degree, control points, weights and knots) when stroking splines (#6436) 5457 * better handling of various object coordinate systems found in dxf files for point, line, polyline, spline and ellipse entities. Add anchor position to text styles. Remove polygon/polyface mesh parsing from polyline entity (#6459) 5458 5459ElasticSearch driver: 5460 * use get /_stats instead of /_status for ElasticSearch 2.0 compatibility (#6346) 5461 5462FileGDB driver: 5463 * make CreateFeature() honour user set FID, and implement more fine grained transaction for Linux/Unix 5464 * give a hint of using FileGDB SDK 1.4 is FileGDB compression is used 5465 5466GeoJSON driver: 5467 * Add editing capabilities of existing files 5468 * Add ARRAY_AS_STRING=YES open option 5469 * Use '%.17g' formatting by default for floating-point numbers and add SIGNIFICANT_FIGURES layer creation option (#6291) 5470 * add a json_ex_get_object_by_path() function 5471 * fix crash on null / non-json object features (#6166) 5472 * serialize string values that are valid JSon dictionary or array as it (ie do not quote them) 5473 * make sure there's enough space to write the FeatureCollection bbox (#6262). Also avoid duplicating FeatureCollection bbox if source has one (trunk only) 5474 * Export POINT EMPTY as having a null geometry, instead as of being POINT(0 0) (#6349) 5475 * Do not 'promote' a null field to OFTString type if it had another type before (#6351) 5476 5477GME driver: 5478 * Driver removed. Maps Engine being shut down at the end of January 2016. 5479 5480GML driver: 5481 * VFR: add new attribute DatumVzniku (v1.6) 5482 * VFR: fix ST_UVOH type handling 5483 * VFR: fix ZpusobyOchrany attributes (data types and names) 5484 * VFR: fix CisloDomovni attributes (Integer->IntegerList) 5485 * VFR: fix TEA attributes of StavebniObjekty 5486 * add NAMESPACE_DECL=YES option to OGR_G_ExportToGMLEx() to add xmlns:gml=http://www.opengis.net/gml or http://www.opengis.net/gml/3.2 declaration; Also accept GML2 or GML32 as valid valiues for FORMAT option (#6214) 5487 * serialize in .gfs file the name of the geometry element when it is 'geometry' since this is a particular case (#6247) 5488 * fix logic error in BuildJointClassFromScannedSchema() (#6302) 5489 5490GPKG driver: 5491 * make it accept files with non standard extension if they still have the correct application_id (#6396); also accept the .gpkx extension that may be used for extended geopackages 5492 * emit warning when generating a database without .gpkg/.gpkx extension (#6396) 5493 * as GPKG 1.1 uses a different application_id, emit a more specific warning if the application id starts with GPxx (but is not GP10). Add GPKG_WARN_UNRECOGNIZED_APPLICATION_ID config option to avoid the warning 5494 * correct scope of gpkg_geom_XXXXX extensions to be read-write, and allow reading geometry types CURVE or SURFACE 5495 * avoid trying to insert a gpkg_geom_XXXX extension if already done (#6402) 5496 * writer: implement strategy to flush partial_tiles temporary database when it becomes too big (#6462) 5497 * writer: when writing to GoogleMapsCompatible tiling scheme, better deal with source rasters in EPSG:4326 with latitude = +/-90 (#6463) 5498 * fix generation of files with 1-band paletted input dataset. Also improve the logic to retrieve color palette when forcing BAND_COUNT=1 on opening (#6450) 5499 5500GPX driver: 5501 * fix crash when parsing a 'time' extension element at route/track level (2.0 regression, #6237) 5502 5503ILI driver: 5504 * ILI1: Support for Surface polygon rings spread over multiple geometry records 5505 * ILI1: add string TID support (https://github.com/OSGeo/gdal/pull/91) 5506 * Fix crash with models using types derived from INTERLIS 5507 * Fix memory leaks (#6178) 5508 5509JML driver: 5510 * remove arbitrary limitation preventing from reading geometries with <gml:coordinates> larger than 10 MB (#6338) 5511 5512KML driver: 5513 * fix crash on KML files without content but with nested folders (#6486) 5514 5515LIBKML driver: 5516 * for documents without folder, use document name when available as name of layer (#6409) 5517 5518Memory driver: 5519 * add support for sparse feature IDs 5520 * add ADVERTIZE_UTF8 layer creation option 5521 5522MITAB driver: 5523 * Add support for block sizes other than 512 bytes in .map files, for MapInfo 15.2 compatibility (#6298) 5524 * write correct datum id for EPSG:3857 5525 * read MID files with TAB delimiter and empty first field (#5405) 5526 * use projection code 29 when exporting non-Polar Lambert Azimuthal Equal Area (#5220) 5527 * fix crashes when parsing invalid MIF geometries (#6273) 5528 5529MSSQLSpatial driver: 5530 * Implement MSSQL bulk insert (#4792) 5531 * do not treat a primary key that is not of integer type as the FID (#6235) 5532 5533NTF driver: 5534 * fix potential buffer overflows when reading too short lines (#6277) 5535 5536ODBC driver: 5537 * remove limitations to 500 columns 5538 5539ODS driver: 5540 * fix loss of precision in formula computation 5541 5542OpenFileGDB driver: 5543 * do not emit warning if SDC/CDF table detected and that FileGDB driver is present 5544 * fix min/max on columns without indices (#6150) 5545 * build correct geometry for a multi-part wkbMultiLineStringZ (#6332) 5546 * add support for reading SHPT_GENERALPOINT (#6478) 5547 5548OSM driver: 5549 * correct fields ids for the (non frequently used) Node message 5550 * do not override 'our' osm_id (the node, way or relation id) with a tag named 'osm_id' (#6347) 5551 * properly deal with polygons in other_relations geometrycollection (#6475) 5552 5553PG driver: 5554 * Add PRELUDE_STATEMENTS and CLOSING_STATEMENTS open option to be for example able to specify options, like statement_timeout, with pg_bouncer 5555 * Fix 2.0 regression when overwriting several existing PostGIS layers with ogr2ogr (#6018) 5556 * Update PG, PGDump and CartoDB drivers to correctly export POINT EMPTY for PostGIS 2.2 5557 * avoid resetting error potentially emitted by ExecuteSQL() (#6194) 5558 * sanitize management of quoting for FID column at layer creation 5559 * fix to get SRID on result layer with PostGIS 2.2 5560 * in copy mode (the default on layer creation), do not truncate the concatenated string list to the field width (#6356) 5561 * make such that GEOMETRY_NAME layer creation option is honoured in ogr2ogr when the source geometry field has a not-null constraint (#6366) 5562 * read and set DESCRIPTION metadata item from/into pg_description system table; add DESCRIPTION layer creation option 5563 * support int2[] and numeric[] types, better map float4[] type 5564 * remove code that was intended to handled binary cursors as it cannot be triggered 5565 * fix append of several layers in PG_USE_COPY mode and within transaction (ogr2ogr -append use case) (#6411) 5566 5567PGDump driver: 5568 * fix issue with case of ogc_fid field in case the FID layer creation option is not set by user or by ogr2ogr (related to #6232) 5569 * in copy mode (the default on layer creation), do not truncate the concatenated string list to the field width (#6356) 5570 * make such that GEOMETRY_NAME layer creation option is honoured in ogr2ogr when the source geometry field has a not-null constraint (#6366) 5571 * set DESCRIPTION metadata item from/into pg_description system table; add DESCRIPTION layer creation option 5572 5573Shapefile driver: 5574 * accept opening standalone .dbf files whose header length is not a multiple of 32 bytes (#6035) 5575 * fix REPACK crash on shapefile without .dbf (#6274) 5576 * add capability to restore/build a missing .shx file when defining SHAPE_RESTORE_SHX to TRUE (#5035) 5577 * avoid CreateLayer() to error out when passed wkbUnknown | wkb25D (#6473) 5578 5579SQLite/Spatialite driver: 5580 * support file:xxx URI syntax (derived from patch by joker99, #6150) 5581 * fix heuristics in OGRSQLiteSelectLayer::GetExtent() to not be used when there's a sub SELECT (#6062) 5582 * fix crash on GetLayerByName('non_existing_table(geom_column)') (#6103) 5583 * fix OGRSQLiteSelectLayerCommonBehaviour::GetBaseLayer() to no longer 'eat' consecutive characters in layer name (#6107) 5584 * Spatialite: turn debug messages warning about update not being supported because of missing or too old spatialite version as errors, and return NULL to the caller (#6199) 5585 * fix memleak in OGRSQLiteTableLayer destructor when updating geometry_columns_time 5586 * VFS: increase mxPathname to 2048 by default, and provide OGR_SQLITE_VFS_MAXPATHNAME config option to be able to configure that higher if that would be needed. Useful when dealing with very long names like /vsicurl/.... with AWS S3 security tokens 5587 * VFS: do not probe -wal files on /vsicurl/ 5588 5589SXF driver: 5590 * fix wrong use of endianness macros to fix behavior on big-endian hots 5591 * add recoding from CP1251 for TEXT attribute that is now decoded 5592 * fix various issues (#6357) 5593 5594VRT driver: 5595 * implement CloseDependentDatasets() 5596 * fix editing with 'direct' geometry mode which could cause attribute column to be empty (#6289) 5597 * fix crash with a OGRVRTWarpedLayer using a source layer that would have non geometry column (unlikely to happen currently as this would require explicit disabling it, but more likey with following commit that createe VRT non-spatial layer implicitly when the source is non-spatial, linked to #6336) 5598 * avoid creating an implicit wkbUnknown geometry field when the source has no geometry column and there's no XML elements related to geometry fields (#6336) 5599 5600XLSX driver: 5601 * fix reading sheets with more than > 26 columns and 'holes' (#6363) 5602 5603XPlane driver: 5604 * extend ICAO identifiers to 5 digits (#6003) 5605 5606== SWIG Language Bindings == 5607 5608All bindings: 5609 * add a options parameter to gdal.ReprojectImage() to pass warp options 5610 * Change ReadRaster and WriteRaster to use GIntBig and the *IOEx-methods 5611 * prevent NULL file pointer from being passed to VSIF*L functions 5612 * make gdal.Rename() accept Unicode strings 5613 * add SpatialReference.GetAxisName() and SpatialReference.GetAxisOrientation() (#6441) 5614 * add SpatialReference.GetAngularUnitsName() (#6445) 5615 5616Java bindings: 5617 * Fix typemap for input parameter of type GIntBig (fixes GetFeature(long), DeleteFeature(long), etc...) (#6464) 5618 * Bump minimal java version to 1.5 in case SWIG generates anotations (#6433, patch by Bas Couwenberg) 5619 * GNUmakefile: add -f in rm commands 5620 * GNUmakefile: add support for all hardening buildflags 5621 5622Perl bindings: 5623 * Fix #6050: string formatting in croak. 5624 * Perl Makefile.PL: add support for all hardening buildflags (#5998) 5625 * use strict and warnings in overridden constructors. 5626 * add $VERSION to ogr_perl.i (OGR.pm), which is required by pause.perl.org. 5627 * Add some basic module info for CPAN. 5628 * Bugfix for Geo::OGR::Feature->new(). 5629 * Add many utility level algorithms as methods to various classes. 5630 * New class for XML stuff 5631 * New Makefile.PL, which can download and build GDAL. This allows automatic testing of the CPAN module. 5632 * Wrap VSIStdoutSetRedirection and allow creating datasets via an object, which can write and close. 5633 * Geo::OGR::Driver and Geo::OGR::DataSource are now Perl wrappers for respective GDAL classes. 5634 * Add to the error stack also errors from the bindings 5635 * Fix sending utf8 from Perl to GDAL. Should also remove some "uninitialized value" warnings. 5636 * ReadTile and WriteTile methods for Dataset, ReadTile accepts now tile size and scaling algorithm. 5637 * Improved Parent - Child management. 5638 * Improved support for 64bit ints. 5639 * Measures support in Geometry class. 5640 * Many new tests 5641 5642Python bindings: 5643 * make Feature.ExportToJson() output boolean value for a boolean field 5644 * support floating point coordinates for the source windows of Band.ReadRaster() and Band.ReadAsArray() 5645 * fix build with SWIG 3.0.6 (#6045) 5646 * make gdal.OpenEx() throw a Python exception in case of failed open when exceptions are enables with gdal.UseExceptions() (#6075) 5647 * Disable opening a NumPy dataset with a filename returned by gdal_array.GetArrayFilename(() unless GDAL_ARRAY_OPEN_BY_FILENAME is set to TRUE 5648 * disable the warning about using deprecated wkb25DBit constant as it uses a trick that prevents the bindings from being used by py2exe / pyinstaller (#6364) 5649 5650= GDAL/OGR 2.0 Release Notes = 5651 5652== In a nutshell... == 5653 5654 * New GDAL drivers: 5655 - BPG: read-only driver for Better Portable Graphics format (experimental, no build support) 5656 - GPKG: read/write/update capabilities in the unified raster/vector driver 5657 - KEA: read/write driver for KEA format 5658 - PLMosaic: read-only driver for Planet Labs Mosaics API 5659 - ROI_PAC: read/write driver for image formats of JPL's ROI_PAC project (#5776) 5660 - VICAR: read-only driver for VICAR format 5661 * New OGR drivers: 5662 - Cloudant: read/write driver for Cloudant service 5663 - CSW: read-only driver for OGC CSW (Catalog Service for the Web) protocol 5664 - JML: read/write driver for OpenJUMP .jml format 5665 - PLScenes: read-only driver for Planet Labs Scenes API 5666 - Selaphin: read/write driver for the Selaphin/Seraphin format (#5442) 5667 * Significantly improved drivers: CSV, GPKG, GTiff, JP2OpenJPEG, MapInfo file, PG, SQLite 5668 * RFC 31: OGR 64bit Integer Fields and FIDs (trac.osgeo.org/gdal/wiki/rfc31_ogr_64) 5669 In OGR core, OGR SQL, Shapefile, PG, PGDump, GeoJSON, CSV, GPKG, SQLite, MySQL, 5670 OCI, MEM, VRT, JML, GML, WFS, CartoDB, XLSX, ODS, MSSQLSpatial, OSM, LIBKML, MITAB 5671 * RFC 46: GDAL/OGR unification ( http://trac.osgeo.org/gdal/wiki/rfc46_gdal_ogr_unification) 5672 - GDAL and OGR PDF drivers are unified into a single one 5673 - GDAL and OGR PCIDSK drivers are unified into a single one 5674 * RFC 49: Add support for curve geometries (http://trac.osgeo.org/gdal/wiki/rfc49_curve_geometries) 5675 In OGR core, and GML, NAS, PostgreSQL, PGDUMP, GPKG, SQLite, VFK, VRT, Interlis drivers 5676 * RFC 50: Add support for OGR field subtypes (http://trac.osgeo.org/gdal/wiki/rfc50_ogr_field_subtype) 5677 In OGR core, OGR SQL, swig bindings, CSV, FileGDB, GeoJSON, GML, GPKG, OpenFileGDB, PG, PGDump, SQLite, VRT 5678 * RFC 51: RasterIO() improvements : resampling and progress callback (http://trac.osgeo.org/gdal/wiki/rfc51_rasterio_resampling_progress) 5679 * RFC 52: Stricter SQL quoting (http://trac.osgeo.org/gdal/wiki/rfc52_strict_sql_quoting) 5680 * RFC 53: OGR not-null constraints and default values (http://trac.osgeo.org/gdal/wiki/rfc53_ogr_notnull_default) 5681 In OGR core, OGR SQL, PG, PGDump, CartoDB, GPKG, SQLite, MySQL, OCI, VRT, GML, WFS, FileGDB, OpenFileGDB and MSSQLSpatial 5682 * RFC 54: Dataset transactions (https://trac.osgeo.org/gdal/wiki/rfc54_dataset_transactions) 5683 In PG, GPKG, SQLite, FileGDB and MSSQLSpatial 5684 * RFC 55: refined SetFeature() and DeleteFeature() semantics. 5685 In GPKG, Shape, MySQL, OCI, SQLite, FileGDB, PG, CartoDB, MITAB and MSSQL 5686 * RFC 56: OFTTime/OFTDateTime millisecond accuracy ( https://trac.osgeo.org/gdal/wiki/rfc56_millisecond_precision ) 5687 * RFC 57: 64bit histogram bucket count ( https://trac.osgeo.org/gdal/wiki/rfc57_histogram_64bit_count ) 5688 * Upgrade to EPSG v8.5 database 5689 * Fix locale related issues when formatting or reading floating point numbers (#5731) 5690 5691== New installed files == 5692 * data/gdalvrt.xsd: XML schema of the GDAL VRT format 5693 5694== Backward compatibility issues == 5695 5696See MIGRATION_GUIDE.TXT 5697 5698== GDAL/OGR 2.0 - General Changes == 5699 5700Build(Unix): 5701 * Fix for cpl_recode_iconv.cpp compilation error on freebsd 10 (#5452) 5702 * Fix pthread detection for Android 5703 * Fix in Armadillo detection test (#5455) 5704 * Fix detection of OCI by changing linking order to please modern GCC (#5550) 5705 * Fix test to accept MariaDB 10.X as valid MySQL (#5722) 5706 * Make sure $(GDAL_INCLUDE) is first to avoid being confused by GDAL headers of a previous version elsewhere in the include path (#5664) 5707 * Always use stat rather than stat64 for Mac OSX in AC_UNIX_STDIO_64. (#5780, #5414). 5708 * Add support for ECW SDK 5.1 (#5390) 5709 * Do not enable Python bindings if PYTHON env variable is set without --with-python being explicitly specified (#5956) 5710 5711Build(Windows): 5712 * PDF: fix compilation issue with Visual Studio 2012 (#5744) 5713 * PDF: Add support to compile the pdf driver as plugin (#5813) 5714 * Add support for MrSID 9.1 SDK (#5814) 5715 * when building netCDF, HDF4, HDF5 as plugins, call registration of 'sub-drivers' GMT, HDF4Image and HDF5Image (#5802) 5716 5717Build(all): 5718 * Ruby bindings: disable autoconf and makefile support (#5880) 5719 * Fix compilation errors with json-c 0.12 (#5449) 5720 * Fix compilation error in alg/gdalgrid.cpp when AVX is available, but not SSE (#5566) 5721 5722== GDAL 2.0 - Overview of Changes == 5723 5724Port: 5725 * Introduce a more generic lock API (recursive mutex, adaptive mutex, spinlock) 5726 * Add types for CPLMutex, CPLCond and CPLJoinableThread (only enforced in -DDEBUG mode) 5727 * Add CPLGetPhysicalRAM() and CPLGetUsablePhysicalRAM() 5728 * CPLSpawn() on Windows: quote arguments with spaces in them (#5469) 5729 * /vsigzip/: avoid infinite loop when reading broken .gml.gz file (#5486) 5730 * /vsizip/ : fix bug that caused premature end of file condition with some read patterns (#5530) 5731 * /vsizip/ on >4GB zips: accept .zip declare 0 disks (#5615) 5732 * /vsitar/: remove useless validation test that prevents from opening valid .tar files (#5864) 5733 * /vsistdout/: add VSIStdoutSetRedirection() for compatibility with MapServer FCGI (https://github.com/mapserver/mapserver/pull/4858) 5734 * /vsimem/: update st_mtime and return it with Stat() 5735 * /vsimem/: in update mode, when seeking after end of file, only extend it if a write is done 5736 * /vsimem/: Make Rename() on a directory also rename filenames under that directory (#5934) 5737 * /vsicurl/: manage redirection from public URLs to redirected AWS S3 signed urls, with management of the expiration. Enabled by default. Can be disabled if CPL_VSIL_CURL_USE_S3_REDIRECT=NO (#6439) 5738 * /vsicurl/: avoid reading after end-of-file and fix failure when reading more than 16MB in a single time (#5786) 5739 * /vsicurl/: by default do not use HEAD request when detecting a AWS S3 signed URL 5740 * Allow CPL_VSIL_CURL_ALLOWED_EXTENSIONS to be set to special value {noext} 5741 * VSIWin32Handle::Flush(): no-op implementation is sufficient to offer same guarantee as POSIX fflush() (#5556) 5742 * Unix VSIL: reset eof in all cases in Seek() 5743 * Windows plugins: complementary fix to #5211 to avoid error dialog box when there are dependency problems (#5525) 5744 * Fix VSIReadDirRecursive() recursing on the parent or current directory (#5535) 5745 * cpl_error: obfuscate password 5746 * HTTP: set CURLOPT_NOSIGNAL if available (#5568) 5747 * Add COOKIE option to CPLHTTPFetch() (#5824) 5748 * CPLHTTPFetch(): add retry logic in case of 502, 503 and 504 errors with the GDAL_HTTP_MAX_RETRY (default: 0)and GDAL_HTTP_RETRY_DELAY (default: 30 s) config options (#5920) 5749 * Fix stack corruption upon thread termination with CPLSetThreadLocalConfigOption on Windows 32 bit (#5590) 5750 * cpl_csv: Stop probing for csv/horiz_cs.csv. (#5698) 5751 * vsipreload: implement clearerr() and readdir64() (#5742) 5752 * CPLsetlocale(): return a string that is thread-locale storage to avoid potential race in CPLLocaleC::CPLLocaleC() (#5747) 5753 * CPLHexToBinary(): faster implementation (#5812) 5754 * CPLAcquireMutex(): improve performance on Windows (#5986) 5755 5756Core: 5757 * Add imagery (satellite or aerial) metadata support (Alos, DigitalGlobe, Eros, GeoEye, OrbView, Landsat, Pleiades, Resurs-DK1, Spot/Formosat). 5758 * Reduce lock contention on the global cache mutex and make it possible to use spin lock instead with GDAL_RB_LOCK_TYPE=SPIN 5759 * Block cache: make block cache manager safe with respect to writing dirty blocks (#5983) 5760 * EXIF reader: fix memleak in error code path 5761 * EXIF reader: add missing validation for some data types (#3078) 5762 * Fix crash in GDALPamRasterBand::SerializeToXML() when saving an empty RAT (#5451) 5763 * ComputeStatistics(): use Welford algorithm to avoid numerical precision issues when computing standard deviation (#5483) 5764 * Fix crashing issue with TLS finalization on Unix (#5509) 5765 * GDALJP2Metadata::CreateGMLJP2(): use EPSGTreatsAsLatLong() and EPSGTreatsAsNorthingEasting() to determine if axis swapping is needed (#2131) 5766 * GDALJP2AbstractDataset: implement GetFileList() to report .wld/.j2w if used 5767 * GMLJP2: be robust when parsing GMLJP2 content that has nul character instead of \n (#5760) 5768 * GMLJP2: add missing rangeParameters element to validate against GMLJP2 schema (#5707) 5769 * GMLJP2: write non null bounding box at root of FeatureCollection (#5697) 5770 * GMLJP2: SRS export as GML: output XML definition of a SRS as a GML 3.1.1 compliant Dictionary (#5697) 5771 * GMLJP2: when setting GDAL_JP2K_ALT_OFFSETVECTOR_ORDER=TRUE write it as a XML comment so that we can interpret the OffsetVector elements correctly on reading 5772 * GMLJP2: when parsing a GMLJP2 box, accept srsName found on gml:RectifiedGrid if not found on origin.Point, so as to be compatible with the example of DGIWG_Profile_of_JPEG2000_for_Georeferenced_Imagery.pdf (#5697) 5773 * GMLJP2: add compatibility with GMLJP2 v2.0 where SRS is expressed as CRS URL 5774 * GMLJP2: on reading, don't do axis inversation if there's an explicit axisName requesting easting, northing order (#5960); also strip axis order in reported SRS 5775 * JP2Boxes: add null terminated byte to GDAL XML, XML or XMP boxes 5776 * Add GDALGetJPEG2000Structure() (#5697) 5777 * GDALMultiDomainMetadata::XMLInit(): when importing XML metadata, erase the existing document to replace it with the new one 5778 * Metadata: fix correct sorting of StringList / metadata (#5540, #5557) 5779 * Make GetMaskBand() work with GDT_UInt16 alpha bands (#5692) 5780 * Fix 32bit overflow in GDALRasterBand::IRasterIO() and GDALDataset::BlockBasedRasterIO() (#5713) 5781 * RasterIO: small optimization in generic RasterIO() implementation to avoid loading partial tiles at right and/or bottom edges of the raster when they are going to be completely written 5782 * Fix crash when calling GetTiledVirtualMem() on non-Linux platform (#5728) 5783 * Add GDAL_OF_INTERNAL flag to avoid dataset to be registered in the global list of open datasets 5784 * GDALDriver::CreateCopy(): accept _INTERNAL_DATASET=YES as creation option, so as to avoid the returned dataset to be registered in the global list of open datasets 5785 * Implement GDALColorTable::IsSame() 5786 * GDALPamDataset: do not serialize dataset metadata unless it has been set through GDALDataset::SetMetadata() or GDALDataset::SetMetadataItem() 5787 * GDALLoadTabFile: add TAB_APPROX_GEOTRANSFORM=YES/NO configuration option to decide if an approximate geotransform is OK (#5809) 5788 * Optimize copy efficiency from tiled JPEG2000 images 5789 * Avoid fetching remote non-existing resources for sidecar files, when using /vsicurl/ with a URL that takes arguments (#5923) 5790 * Use GDALCanFileAcceptSidecarFile() in GDALMDReaderManager::GetReader() 5791 5792Algorithms: 5793 * RPC transformer: fix near interpolation in RPC DEM (#5553) 5794 * RPC transformer: take into account nodata in RPC DEM (#5680) 5795 * RPC transformer: add RPC_DEM_MISSING_VALUE transformer option to avoid failure when there's no DEM at the transformed point (#5730) 5796 * RPC transformer: in DEM mode, implement optimization, in specific conditions (input points at same longitude, DEM in EPSG:4326) to extract several elevations at a time 5797 * TPS transformer: fix crash if the forward or backward transform cannot be computed (#5588) 5798 * OpenCL warper: remove unused variable in bilinear resampling that can cause compilation error (#5518) 5799 * OpenCL wrapper: fix code compilation with NVIDIA OpenCL (#5772) 5800 * Overview: Fix and speed-up cubic resampling in overview computation to take into account scaling factor (#5685) 5801 * Overview: ignore alpha=0 values when compute an average overview of an alpha band; and also avoid memory errors when calling GetMaskBand()/GetMaskFlags() after overview computation if GetMaskXXX() has been called before (#5640) 5802 * Overview: avoid crash when computing overview with a X dimension much smaller than Y dimension (#5794) 5803 * GDALRegenerateOverviewsMultiBand(): fix stride calculation error with certain raster dimensions (#5653) 5804 * Warper: numerous speed optimizations (SSE2 specific code, more fast code paths, ...) 5805 * Warper: fix Cubic and Bilinear resampling to work correctly with downsizing (#3740) 5806 * Warper: fix and optimize CubicSpline 5807 * Warper: regardless of the warping memory limit, add heuristics to determine if we must split the target window in case the 'fill ratio' of the source dataset is too low (#3120) 5808 * Warper: accept warping options METHOD=NO_GEOTRANSFORM and DST_METHOD=NO_GEOTRANSFORM to run gdalwarp on ungeoreferenced images 5809 * Warper: fix GDALSuggestedWarpOutput() wrong extent in some circumstances (e.g. dataset of big dimension with world coordinates) (#5693) 5810 * Warper: fix integer overflow when reprojecting into an area with (part of) bounds completely outside of the source projection (#5789) 5811 * Warper: add min,max,med,q1 and q3 resampling algorithms (#5868) 5812 * Warper: add a SRC_COORD_PRECISION warping option to help getting more reproducible output when -wm parameter changes (#5925) 5813 * Warper: fix failure in GDALSuggestedWarpOut2() when top-left and bottom-right corners transform to the same point (#5980) 5814 * GDALReprojectImage(): takes into account nodata values set on destination dataset 5815 * Median cut and dithering: optimizations and enhancements to deal with 8-bit precision (only if using internal interface for now) 5816 * rasterfill: add option to specify driver to use for temporary files 5817 * Polygonize: speed optimization: do not try to build the polygon for pixels that are masked by the mask band (i.e. alpha, nodata, etc...). Can considerably speed-up processing when the nodata outline forms a very complex polygon 5818 5819Utilities: 5820 * gdalinfo: display extra metadata domains attached to band, and refactor code a bit (#5542) 5821 * gdalinfo: add -oo option per RFC 46 5822 * gdalinfo: add -json switch (partial implementation of RFC 44) 5823 * gdaladdo: add -oo option per RFC 46 5824 * gdaladdo: add warning when subsampling factor 1 specified 5825 * gdal_translate: add -oo option per RFC 46 5826 * gdal_translate: add -r and -tr options per RFC 51 5827 * gdal_translate: add a -projwin_srs option to be able to express -projwin coordinates in another SRS than the one of the dataset 5828 * gdal_translate: support -'outsize avalue 0' or '-outsize 0 avalue' to preserve aspect ratio 5829 * gdal_translate: avoid preserving statistics when changing data type in situations where clamping can occur 5830 * gdal_translate: adjust RPC metadata (pixel/line offset/scale) when subsetting/rescaling, instead of just discarding it 5831 * gdal_translate: don't recopy band units if rescaling or unscaling is involved (#3085) 5832 * gdal_translate: increase GDAL_MAX_DATASET_POOL_SIZE default value to 450. (#5828) 5833 * gdal_translate: preserve NBITS image structure metadata when possible 5834 * gdalwarp: add -oo option per RFC 46 5835 * gdalwarp: add -te_srs option to specify -te in a SRS which isn't the target SRS 5836 * gdalwarp: add a -ovr option to select which overview level to use, and default to AUTO. Also add a generic OVERVIEW_LEVEL=level open option, and make it available in standard VRT (#5688) 5837 * gdalwarp: initialize destination dataset to no_data value when automatically propagating source nodata (#5675) 5838 * gdalwarp: only apply INIT_DEST when processing the first input dataset (#5387) 5839 * gdalwarp: increase GDAL_MAX_DATASET_POOL_SIZE default value to 450. (#5828) 5840 * gdalwarp: do not preserve NODATA_VALUES metadata item in output dataset if adding an alpha channel with -dstalpha 5841 * gdalwarp: fix '-dstnodata none' to avoid read of uninitialized values (#5915) 5842 * gdalwarp: make -crop_to_cutline densify cutline in source SRS before reprojecting it to target SRS (#5951) 5843 * gdaldem: avoid too large files to be produced when using -co COMPRESS=xxxx -co TILED=YES (#5678) 5844 * gdallocationinfo: add -oo option 5845 * gdaltransform: add a -output_xy flag to restrict output coordinates to 'x y' only 5846 * gdal_grid: use nodata= parameter in the algorithm string to determine the nodata value to set on the band (#5605) 5847 * gdal_grid: fix crash in optimized mode with GCC 4.4 on 64bit (#5987) 5848 * gdalbuildvrt: add a -r option to specify the resampling algorithm 5849 * gdal_edit.py: add -unsetstats option (and fix -a_nodata to run on all bands, ant not just first one) 5850 * gdal_edit.py: add -stats and -approx_stats flags (patch by mwtoews, #5805) 5851 * gdal_edit.py: change -mo add metadata to existing one; add new option -unsetmd to clean existing metadata 5852 * gdal_edit.py: add -oo to specify open options 5853 * gdal_retile.py: fix to make it work with input images of different resolutions (#5749) 5854 * gdal_retile.py: implement progress bar (#5750) 5855 * gdal_merge.py: add timing information in verbose output 5856 * gdal_merge.py: take into account alpha band to avoid writing zones of source images that are fully transparent (#3669) 5857 * gdal2tiles.py: fix inverted long/lat in BoundingBox and Origin elements of tilemapresource.xml (#5336) 5858 * pct2rgb.py: make it work with color tables with less than 256 entries (#5555) 5859 * gdal_fillnodata.py: FillNodata: copy no data value to destination band when creating a dataset (if available) (#4625) 5860 * gdal_proximity.py: add a -use_input_nodata flag 5861 * gdalcompare.py: add options to suppress selected comparisons 5862 * gdalcompare.py: takes into account differences in overview bands 5863 * gdalcompare.py: compute difference on float to avoid integer underflow 5864 * epsg_tr.py: change to make it possible to export GEOCCS and COMPD_CS to proj.4 epsg and PostGIS spatial_ref_sys.sql files 5865 5866Python samples: 5867 * Added swig/python/samples/jpeg_in_tiff_extract.py 5868 * Added dump_jp2.py 5869 * Added validate_jp2.py 5870 * Added build_jp2.py 5871 * Added gcps2ogr.py 5872 * tolatlong.py: report error when operating on a non-georeferenced dataset 5873 5874AAIGRID: 5875 * Fix formatting string (#5731) 5876 5877BAG driver: 5878 * change nodata value for uncertainty band to 1e6 (#5482) 5879 5880BMP driver: 5881 * back out r17065 change that inferred georeferencing based on the resolution information in the BMP header (#3578) 5882 5883DIMAP driver: 5884 * DIMAP 2: handle the case where the Raster_Data element is in main file (#5018, #4826) 5885 * DIMAP 2: fix to extract geodetic SRS (#5018, #4826) 5886 * DIMAP 2: fix to extract geotransform from JPEG2000 file if not available in XML (#5018, #4826) 5887 5888DDS driver: 5889 * Add ETC1 compression format support 5890 * Header correction for worldwind client 5891 5892ECW driver: 5893 * correctly assign color interpretation to bands if order is unusual 5894 5895ENVI driver: 5896 * avoid generating potentially corrupted .hdr files when opening in update mode; Write 'Arbitrary' instead of 'Unknown' as the projection name for an undefined SRS (#5467) 5897 * when writing, consider that LOCAL_CS SRS is like ungeoreferenced (#5467) 5898 5899ERS driver: 5900 * reset RasterInfo.RegistrationCellX/Y if setting a new geotransform on an updated .ers file (#5493) 5901 * fix SetProjection() (#5840) 5902 5903GeoRaster driver: 5904 * fix Oracle SRID authority (#5607) 5905 * fix user-defined SRID issue (#5881) 5906 * new SRID search (#5911) 5907 5908GIF driver: 5909 * add compatibility with giflib 5.1 (#5519) 5910 * fix crash on images without color table (#5792) 5911 * fix reading of interlaced images with giflib >= 5.0 5912 * validate the size of the graphic control extension block (#5793) 5913 * implement GetFileList() to report worldfile 5914 5915GRASS driver: 5916 * GRASS 7.0.0 support (#5852) 5917 5918GRIB driver: 5919 * avoid divide by zero while setting geotransform on 1xn or nx1 grib file (#5532) 5920 * allow writing PDS template numbers to all bands (#5144) 5921 5922GTiff driver: 5923New capabilities: 5924 * for JPEG-in-TIFF, use JPEG capabilities to decompress fast overview levels 2,4 and 8, to generate 'hidden' overviews used by RasterIO() 5925 * add DISCARD_LSB creation option (lossy compression) to be best used with PREDICTOR=2 and LZW/DEFLATE compression 5926 * when GTIFF_DIRECT_IO=YES is enabled, performance improvements in GTiffRasterBand::DirectIO() with Byte dataset and Byte buffer 5927 * implement dataset DirectIO() 5928 * add GTIFF_VIRTUAL_MEM_IO=YES/NO/IF_ENOUGH_RAM configuration option so that RasterIO() can rely on memory-mapped file I/O (when possible and supported by the OS) 5929 * support reading and created streamable files 5930 * for JPEG-compressed TIFF, avoid quantization tables to be emitted in each strip/tile and use optimized Huffman coding by default 5931 * avoid SetNoDataValue() to immediately 'crystallize' the IFD 5932 * allow unsetting TIFFTAG_SOFTWARE, TIFFTAG_DOCUMENTNAME, etc... by removing them from metadata list or passing None as a value of SetMetadataItem() (#5619) 5933 * allow lossless copying of CMYK JPEG into JPEG-in-TIFF 5934 * set alpha on target by default when translating from Grey+Alpha 5935 * Internal overviews: for near, average, gauss and cubic, and pixel interleaving, make sure to use the same code path for compressed vs uncompressed overviews (#5701) 5936 * add RPCTXT=YES creation option to write sidecar _RPC.TXT file 5937 * internal libtiff updated to upstream libtiff 4.0.4beta 5938 * internal libgeotiff updated to upstream libgeotiff SVN head 5939 * speed optimization on write (at least in Vagrant) (#5914) 5940 * use importFromEPSG() when ProjectedCSTypeGeoKey is available (#5926) 5941 * on reading better deal with a few ESRI formulations of WebMercator (#5924) 5942Fixes: 5943 * when overriding metadata in update mode, make sure to clear it from PAM file (#5807) 5944 * fix handling of Mercator_2SP (#5791) 5945 * avoid TIFF directory to be written (at end of file) when creating a JPEG-in-TIFF file 5946 * for a paletted TIFF with nodata, set the alpha component of the color entry that matches the nodata value to 0, so as gdal_translate -expand rgba works properly 5947 * fix to make band SetMetadata(NULL) clear band metadata (#5628) 5948 * fix error message when requesting a non existing directory 5949 * check data type with PHOTOMETRIC=PALETTE 5950 * be robust to out-of-memory conditions with SplitBand and SplitBitmapBand 5951 * avoid using optimized JPEG --> JPEG-in-TIFF path if INTERLEAVE=BAND is specified with a 3-band JPEG 5952 * to make Python bindings happy, avoid emitting CE_Failure errors due to libtiff errors when we still manage to open the file (#5616) 5953 * avoid crash when reading GeoTIFF keys if the stored key type isn't the one expected 5954 * make sure to call libgeotiff gtSetCSVFilenameHook() method when linking against external libgeotiff 5955 * avoid/limit DoS with huge number of directories 5956 * clean spurious spaces when reading values from _RPC.TXT 5957 * serialize RPC in PAM .aux.xml file if using PROFILE != GDALGeoTIFF and RPB = NO 5958 * fix clearing of GCPs (#5945) 5959 * avoid generated corrupted right-most and bottom-most tiles for 12-bit JPEG-compressed (#5971) 5960 * make sure to use scanline write API when writing single-band single-strip 1-bit datasets 5961 5962GRASS driver: 5963 * fix compilation issues against GRASS 7 5964 5965HDF4 driver: 5966 * Add configuration support to be able to open more files simultaneously 5967 * Add class suffix to the parameter name when parsing HDF-EOS objects. 5968 * Fix AnyTypeToDouble() to use proper type (int instead of long) to work with DFNT_INT32/DFNT_UINT32 on 64-bit Linux (#5965) 5969 * MODIS: Set more correct values for PIXEL_/LINE_ OFFSET/STEP by comparing longitude and latitude subdatasets dimensions with main subdataset dimensions 5970 5971HDF5 driver: 5972 * avoid opening BAG files in the case HDF5 and BAG are plugins, and HDF5 is registered before BAG 5973 5974HFA driver: 5975 * fix recognition of Hotine Mercator Azimuth Center in Imagine format (and Swisstopo GeoTIFF) (#5551) 5976 * fix various hangs on invalid files 5977 * read projection even when it does not contain datum information (#4659) 5978 5979HTTP driver/wrapper: 5980 * make it work with vector files too 5981 * fix handling of non VSI*L file on Windows 5982 5983IRIS driver: 5984 * add support for the SHEAR data type (#5549) 5985 5986JPEG2000 driver: 5987 * do expansion of 1-bit alpha channel to 8-bit by default. Can be controlled with the 1BIT_ALPHA_PROMOTION open option (default to YES) 5988 * add GMLJP2 creation option 5989 * add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box 5990 * Add capability of reading GMLJP2 v2 embedded feature collections and annotations 5991 * Add read/write support for RPC in GeoJP2 box (#5948) 5992 5993JP2ECW driver: 5994 * add metadata about JPEG2000 codestream and boxes (#5408) 5995 * Add 1BIT_ALPHA_PROMOTION open option (default to YES) to control expansion of 1-bit alpha channel to 8-bit 5996 * correctly assign color interpretation to bands if order is unusual 5997 * add WRITE_METADATA and MAIN_MD_DOMAIN_ONLY creation options to write GDAL metadata, JP2 XML boxes or XMP box 5998 * add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box 5999 * Add capability of reading GMLJP2 v2 embedded feature collections and annotations 6000 * Add read/write support for RPC in GeoJP2 box (#5948) 6001 6002JP2KAK driver: 6003 * Compatibility with Kakadu v7.5 (#4575, #5344) 6004 * Handle Kakadu version 7 allocator.finalize (#4575) 6005 * fix bug in vsil_target::end_rewrite() that prevented TLM index to be generated (#5585) 6006 * Add FLUSH in creation option XML (#5646) 6007 * Do expansion of 1-bit alpha channel to 8-bit by default. Can be controlled with the 1BIT_ALPHA_PROMOTION open option (default to YES) 6008 * add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box 6009 * Add capability of reading GMLJP2 v2 embedded feature collections and annotations 6010 * Add read/write support for RPC in GeoJP2 box (#5948) 6011 6012JP2OpenJPEG driver: 6013 * Support writing arbitrary number of bands. (#5697) 6014 * Generate cdef box when transparency is needed. Add NBITS, 1BIT_ALPHA and ALPHA creation options (#5697) 6015 * add INSPIRE_TG (for conformance with Inspire Technical Guidelines on Orthoimagery), PROFILE, JPX and GEOBOXES_AFTER_JP2C creation option (#5697) 6016 * add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box 6017 * Add capability of reading GMLJP2 v2 embedded feature collections and annotations 6018 * add PRECINCTS creation option (#5697) 6019 * allow several quality values to be specified with QUALITY creation option. Add TILEPARTS, CODEBLOCK_WIDTH and CODEBLOCK_HEIGHT options (#5697) 6020 * support reading&writing datasets with unusual order of band color interpretation (#5697) 6021 * add WRITE_METADATA and MAIN_MD_DOMAIN_ONLY creation options to write GDAL metadata, JP2 XML boxes or XMP box (#5697) 6022 * add support for reading/writing/updating IPR box (from/into xml:IPR metadata domain) (#5697) 6023 * add YCC creation option to do RGB->YCC MCT, and turn it ON by default (#5634) 6024 * add USE_SRC_CODESTREAM=YES experimental creation option, to reuse the codestream of the source dataset unmodified 6025 * support reading & writing images with a color table (#5697) 6026 * support update mode for editing metadata and georeferencing (#5697) 6027 * add compatibility with OpenJPEG 2.1 (#5579) 6028 * fix warning when reading a single tile image whose dimensions are not a multiple of 1024 (#5480) 6029 * Add 1BIT_ALPHA_PROMOTION open option (default to YES) to control expansion of 1-bit alpha channel to 8-bit 6030 * Add read/write support for RPC in GeoJP2 box (#5948) 6031 * limit number of file descriptors opened 6032 6033JPEG driver: 6034 * use EXIF overviews if available 6035 * add EXIF_THUMBNAIL creation option to generate an EXIF thumbnail 6036 * use optimized Huffman coding to reduce file size 6037 * add support for reading and writing COMMENT 6038 * optimize whole image reading with dataset IRasterIO() 6039 * report non-fatal libjpeg errors as CE_Warning (or CE_Failure if GDAL_ERROR_ON_LIBJPEG_WARNING = TRUE) (#5667) 6040 * in compressor, increase default val of max_memory_to_use to 500MB 6041 6042JPIPKAK driver: 6043 * avoid symbol collision with kdu_cpl_error_message from JP2KAK driver 6044 * reset the bNeedReinitialize flag after a timeout (#3626) 6045 6046KMLSuperOverlay driver: 6047 * fix truncated raster on 32 bit builds (#5683) 6048 * make Identify() more restrictive to avoid false positives 6049 6050L1B driver: 6051 * add support for little-endian LRPT datasets (#5645) 6052 * expose band mask when there are missing scanlines (#5645) 6053 * expose WGS-84 or GRS-80 datum if read from header record (#5645) 6054 6055MAP driver: 6056 * retrieve the image filename in a case insensitive way (#5593) 6057 6058MBTiles driver: 6059 * better detection of 4 bands dataset and take into account alpha component of color table in RasterIO() (#5439) 6060 * avoid wrong detection of 3 bands when finding paletted PNG in /vsicurl mode (#5439) 6061 * fix dimension computation when opening a single tile dataset 6062 * better computation of extent from min/max of tile coordinates, for a single zoom level 6063 * use standard EPSG:3857 origin to fix a ~8m shift (#5785) 6064 6065MEM driver: 6066 * implement optimized versions of raster band and dataset IRasterIO() 6067 6068MSG driver: 6069 * fix compilation problem (#5479) 6070 * fix memory leaks (#5541) 6071 6072NetCDF driver: 6073 * Force block size to 1 scanline for bottom-up datasets if nBlockYSize != 1 (#5291) 6074 * Fix computation of inverse flattening (#5858) 6075 * In case the netCDF driver is registered before the GMT driver, avoid opening GMT files 6076 * Fix crash on opening a NOAA dataset (#5962) 6077 6078NGSGEOID driver: 6079 * make Identify() more restrictive 6080 6081NITF driver: 6082 * deal correctly with JPEG2000 NITF datasets that have a color table inboth Image Subheader and JP2 boxes, and for drivers that don't do color table expension 6083 * HISTOA TRE: put definition of TRE in conformance with STDI-0002 (App L page 14) and STDI-0006 (Page 57) (#5572) 6084 6085OGDI driver: 6086 * Remove OGDIDataset::GetInternalHandle (#5779). 6087 6088OZI driver: 6089 * remove .map header detection from Identify() since this is actually handled by the MAP driver 6090 6091PCIDSK driver: 6092 * close dataset in case of exception in PCIDSK2Dataset::LLOpen() (#5729) 6093 6094PCRaster driver: 6095 * Align libcsf code with PCRaster raster format code (#5843) 6096 * Implement Create() (#5844) 6097 * Improve handling of no-data value (#5953) 6098 6099PDF driver: 6100 * add compatibility with Poppler 0.31.0 6101 * in the OGC Best practice case, switch rotational terms of the geotransform matrix (gt[2] and gt[4]) 6102 * in the OGC Best practice case, handle rotations of 90 and 270 degrees. 6103 * advertise LAYERS metadata domain 6104 * deal with OHA- datum (Old Hawaiian) 6105 * fix compilation problem with Podofo on Windows (patch by keosak, #5469) 6106 * add sanity check on page count 6107 6108PDS driver: 6109 * Added support for SPECTRAL_QUBE objects used e.g. by THEMIS instrument of Mars Odyssey spacecraft. 6110 6111PNG driver: 6112 * add creation options to write metadata in TEXT/iTXt chunks 6113 * optimize whole image reading with dataset IRasterIO() 6114 * Internal libpng: update to 1.2.52 6115 6116PostgisRaster driver: 6117 * Fix read of metadata for tables with multiple raster cols (#5529) 6118 6119Rasterlite driver: 6120 * accept space in filename 6121 6122RPFTOC driver: 6123 * add tweak for weird relative directory names in the A.TOC file (#5979) 6124 6125VRT driver: 6126 * add handling of a shared='0' attribute on <SourceFilename> to open sources in non-shared mode, and VRT_SHARED_SOURCE config option that can be set to 0 in case the shared attribute isn't there (#5992) 6127 * VRT warp: make selection of source overview work (#5688) 6128 * VRT warp: expose as many overviews in warped dataset as there are in source dataset, and make warped VRT honour -ovr parameter of gdalwarp (#5688) 6129 * make sure nodata value set on VRT raster band is taken into account in statistics computation (#5463) 6130 * fix ComputeStatistics() on VRT that are a sub-window of source dataset (#5468) 6131 * VRT raw: fix corrupted serialization on Windows (#5531) 6132 * implement heuristics to determine if GetMinimum()/GetMaximum() should use the implementation of their sources of not. Can be overridden by setting VRT_MIN_MAX_FROM_SOURCES = YES/NO (#5444) 6133 * VRT warp: avoid to warp truncated blocks at right/bottom edges, so that scale computation is correct 6134 * fix RasterIO() to be able to fill buffers larger than 2GB (#5700) 6135 * fix performance problem when serializing into XML a big number of sources 6136 * do not output empty <Metadata> node on VRTDataset and VRTRasterBand elements 6137 * fix rounding of output window size on VRTSimpleSource (#5874) 6138 * add trick to make relativeToVRT works for a VRT-in-VRT 6139 * add more checks to CheckCompatibleForDatasetIO() to avoid issues with overview bands (#5954) 6140 * preserves relative links on reserialization of existing VRT (#5985) 6141 6142USGSDEM driver: 6143 * take into account horizontal unit = ft in the UTM case (#5819) 6144 6145TIL driver: 6146 * fix half pixel shift in geo registration (#5961) 6147 6148WEBP driver: 6149 * Lazy uncompressed buffer allocation and optimize band-interleaved IRasterIO() for whole image reading 6150 6151WMS driver: 6152 * Add support for ArcGIS server REST API 6153 * fix to make GDAL_DEFAULT_WMS_CACHE_PATH configuration option work as expected (#4540) 6154 * move the WMS layer name encoding to be done before the sub datasets URLs are created. 6155 6156XYZ driver: 6157 * fix back line seeking with datasets that have not the same number of values per lines (#5488) 6158 * deal with lines that have missing values (but still regularly spaced) 6159 6160== OGR 2.0 - Overview of Changes == 6161 6162Core: 6163 * OGRPolygon::importFromWkt(): fix memleak when importing broken 2.5D polygon 6164 * Fix OGRFeature::SetGeometryDirectly() and SetGeomFieldDirectly() to free the passed geometry even if the method fails (#5623) 6165 * OGR SQL: Add hstore_get_value(hstore, key) function 6166 * OGR SQL: sanitize how we deal with field names expressed as table_name.field_name and "fieldname.with_point_inside". By default, use standard quoting rules, and be tolerant when there's no ambiguity 6167 * OGR SQL: support arbitrary boolean expression on ON clause of a JOIN 6168 * OGR SQL: accept AS keyword in 'FROM table_name AS alias' clause 6169 * OGR SQL: don't consider backslash-doublequote as an escape sequence when inside a single-quoted string literal 6170 * Add OGR_API_SPY mechanism (http://www.gdal.org/ograpispy_8h.html) 6171 * Make OGRParseDate() recognize ISO 8601 format 6172 * ogr_core.h: only ignore -Wfloat-equal for IsInit() and not for the rest of the file and files that include it (#5299) 6173 * OGR layer algebra: properly initialize field maps to avoid Valgrind warnings in OGRLayer::Update() (#5778) 6174 * Make OGR_F_SetFieldBinary() set OFTString fields, mostly for testing purposes 6175 * OGR_G_CreateGeometryFromJson(): attach a WGS84 SRS to the returned geometry if the json object has no 'crs' member (#5922) 6176 6177OGRSpatialReference: 6178 * Upgrade to EPSG v8.5 database 6179 * Proj.4 import: for HOM, make sure +no_off/no_uoff is preserved, and change default value of gamma parameter to be the same as alpha (#5511) 6180 * Proj.4 export: export Aitoff, Winkel I, Winkel II, Winkel-Tripel, Craster, Loximuthal, Quartic Authalic 6181 * Adding support for Mercator_Auxiliary_Sphere without AUTHORITY SECTIONS (#3962) 6182 * Add QSC (Quadrilateralized_Spherical_Cube) projection, compatible with PROJ 4.9 6183 * Various fixes to put EXTENSION node before AUTHORITY and make it pass Validate() (#5724) 6184 * importFromEPSG()/exportToProj4(): avoid precision loss in TOWGS84 parameters, e.g. on Amersfoort / RD EPSG:4289 (https://trac.osgeo.org/proj/ticket/260) 6185 * Add OSRCalcInvFlattening() and OSRCalcSemiMinorFromInvFlattening(), and use them in various places (#5858) 6186 * Remove deprecated variant of OGRSpatialReference::importFromOzi() (#5932) 6187 6188Utilities: 6189 * ogrinfo: add -oo option per RFC 46 6190 * ogrinfo: display dataset and layer metadata. Add -nomdd, -listmdd, -mdd all|domain options, like in gdalinfo. OGR VRT: add dataset and layer metadata support 6191 * ogrinfo: add -nocount and -noextent options 6192 * ogr2ogr: add -oo and -doo options per RFC 46 6193 * ogr2ogr: add -spat_srs option 6194 * ogr2ogr: turn string value to one element list if destination field is stringlist 6195 * ogr2ogr: fix problem with SRS when copying layers with multiple geometry columns with different SRS (#5546) 6196 * ogr2ogr: add special case for -update and GPKG and input=output 6197 * ogr2ogr: when copying a layer that has a source integer/integer64 field with same name as target FID column, avoid creating it into target layer and use its content as the FID value (#5845) 6198 * ogr2ogr: in non-append mode, if target layer has a FID creation option, reuse source FID name and source FIDs, unless -unsetFid is specified (#5845) 6199 * ogr2ogr: copy source dataset and layer metadata, unless disabled by -nomd. Additional dataset metadata can be set with -mo KEY=VALUE 6200 * ogr2ogr: add -ds_transaction to force dataset transactions, mainly for FileGDB driver 6201 * ogr2ogr: fix crash with -clipdst when a reprojection fails before (#5973) 6202 * ogrlineref: fix project if reper lies on first point or last point of line 6203 * ogr_layer_algebra.py: for Update, Clip and Erase, only creates attribute of input layer by default (#5976) 6204 6205Other: 6206 * OGR WCTS removed from tree 6207 6208Cross driver changes: 6209 * MSSQLSpatial and GPKG: use standardized 'GEOMETRY_NAME' option name. Add GEOMETRY_NAME to SQLite (#5816) 6210 * FileGDB and MySQL: use standardized 'FID' option name. SQLite: add a FID layer creation option (#5816) 6211 * SQLite, GPKG, PG, PGDump: in a newly created table, allow to create a integer field with same name of FID column (#5845) 6212 6213BNA driver: 6214 * fix segfault when calling GetNextFeature() on a write-only layer 6215 6216CartoDB: 6217 * add CARTODBFY layer creation option 6218 * launder layer and column names by default (#5904) 6219 * enable by default batch insertion of features in update mode 6220 * on a newly created layer, send new features created by CreateFeature() by chunks of a maximum size of 15 MB (configurable through CARTODB_MAX_CHUNK_SIZE). 6221 * implement deferred field creation 6222 * support boolean type 6223 * register tables with cdb_cartodbfytable() 6224 * fix creation of features with Date/DateTime/Time values 6225 * fix for multi-user account, and optimization for SQL layers 6226 * implement TestCapability() and CreateDataSource() similarly to PostgreSQL, i.e. redirect to Open() in update mode 6227 * accept a user column to have the same name of the FID (cartodb_id) 6228 * do automatic polygon->multipolygon promotion at creation time 6229 * in authenticated mode, retrieve all column information, including spatial info, default value and primary key in one single statement 6230 * use integer primary key of tables, when available, to scroll faster among features instead of using OFFSET/LIMIT (#5906) 6231 6232CSV driver: 6233 * add optional field type detection with AUTODETECT_TYPE=YES open option 6234 * add QUOTED_FIELDS_AS_STRING open option that default to NO. So by default, if AUTODETECT_TYPE=YES, the content of quoted fields will be tested for real, integer,... data types 6235 * fix to avoid truncation of WKT geometries to 8000 characters (#5508) 6236 * fix segfault when reading allCountries.txt of geonames.org (#5668) 6237 * accept space as separator as input/output, and add MERGE_SEPARATOR=YES/NO open option 6238 6239DXF driver: 6240 * improve TestCapability(ODsCCreateLayer) 6241 6242FileGDB driver: 6243 * add layer creation option to set CONFIGURATION_KEYWORD 6244 * avoid error message when failing to import SRS from WKID code (might be an ESRI code for example) 6245 * do not reject features with null geometry 6246 * use LatestWKID when available (#5638) 6247 * avoid emitting error when opening a FileGDB v9, so that OpenFileGDB can be tried to open it, in the case FileGDB is a plugin (#5674) 6248 * fix CreateFeature() to work when a esriFieldTypeGlobalID field is not set 6249 * report width of string fields (#5806) 6250 * add compatibility with FileGDB SDK v1.4 6251 * enable bulk load on newly created layers 6252 6253GeoJSON driver: 6254 * implement Date/Time/DateTime field type detection 6255 * expose a 'id' object, of type string, directly on Feature object (not in its properties) as a field 6256 * add FLATTEN_NESTED_ATTRIBUTES and NESTED_ATTRIBUTE_SEPARATOR open options 6257 * TopoJSON: establish layer schema from objects properties (#5870) 6258 * implement automatic scrolling through result sets of ArcGIS GeoServices Feature Service (#5943) 6259 * accept and skip UTF-8 BOM (#5630) 6260 * ESRIJson: parse correctly rings of esriGeometryPolygon objects to build correct Polygon or MultiPolygon (#5538) 6261 * avoid truncation of real numbers on reading (#5882) 6262 * internal libjson-c: Fix to read floating point numbers in non C locale (#5461) 6263 * improve TestCapability(ODsCCreateLayer) 6264 * make string comparison for authority name case insensitive so as to recognize lowercase 'epsg' (#4995) 6265 * support reading Feature without geometry field 6266 6267GeoRSS driver: 6268 * fix to parse ATOM feed documents with atom: namespace (#5871) 6269 6270GME driver: 6271 * Added fixes discovered while using v.in.ogr and v.out.ogr in GRASS 6272 6273GML driver: 6274 * add XSD=filename open option 6275 * add FORCE_SRS_DETECTION, INVERT_AXIS_ORDER_IF_LAT_LONG, CONSIDER_EPSG_AS_URN, READ_MODE, EXPOSE_GML_ID, EXPOSE_FID, DOWNLOAD_SCHEMA and REGISTRY open options 6276 * Fix bug that prevented multiple instances of the reader with Xerces backend (#5571) 6277 * parse correctly GML geometries whose srsDimension attribute is on top-level geometry element and not on posList (#5606) 6278 * add datasource option SRSDIMENSION_LOC=GEOMETRY to be able to write srsDimension attribute on top level geometry element, default on posList unchanged (#5066) 6279 * add support for reading layers resulting from a WFS 2.0 join query 6280 * read/write top <gml:description> and <gml:name> as DESCRIPTION and NAME metadata items. Also add GML_ID, DESCRIPTION and NAME creation options 6281 * support to reader response to CSW GetRecords queries 6282 * Fix incorrect geometry cast when reading GML topogeometries (#5715) 6283 * VFR: fix ST_Z type (changes) -- list all layers 6284 * VFR: include also non-spatial (removed) features (ZaniklePrvky) in type ST_Z (changes) 6285 * VFR: use String when 32-bit integer was not wide enough 6286 * VFR: add support for UVOH file type 6287 * VFR: add missing support for OriginalniHraniceOmpv geometry 6288 * VFR: update GFS files to RFC31 (OGR 64bit Integer Fields and FIDs) 6289 * update RUIAN GFS files: add missing GMLFeatureClasses to OB type (SpravniObvody, Mop, Momc) 6290 * add support for parsing .xsd with a <choice> of polygonProperty and multiPolygonProperty 6291 * remove wrong case insensitive comparison related to gml_registry.xml use 6292 * various fixes to better deal with ArcByCenterPoint() as found in FAA AIXML files 6293 * make Expat parser accept trailing nul characters 6294 * correctly record path to attribute in case of attribute located on a nested element when .gfs is created with GML_ATTRIBUTES_TO_OGR_FIELDS=YES 6295 * fix GML_ATTRIBUTES_TO_OGR_FIELDS=YES to work correctly with xlink:href too (#5970 6296 * make GML_EXPOSE_GML_ID to be honoured on WFS documents 6297 6298GPKG driver: 6299 * add support for non-spatial layers via the gdal_aspatial extension (#5521) 6300 * add support for creating spatial index 6301 * add layer metadata read/write support 6302 * implement ST_GeometryType(), GPKG_IsAsisgnable() and ST_SRID() to be compatible with Geometry Type Triggers and SRS ID Triggers Extensions 6303 * on creation, use GEOMCOLLECTION (instead of GEOMETRYCOLLECTION) (#5937) 6304 * make SELECT expressions passed to ExecuteSQL() be evaluated by SQLite 6305 * make it possible to use spatialite 4.2.0 SQL functions 6306 * add a 'INDIRECT_SQLITE' dialect that goes through the VirtualOGR mechanism (e.g. for compat with older Spatialite) 6307 * allow table names with dash character (#5472) 6308 * emit warning when required extensions are not implemented 6309 * disable PRAGRAM integrity_check by default, since it can be expensive on big files 6310 * read-only support for tables without integer primary key 6311 * fix Date and DateTime support 6312 * implement TEXT(maxwidth) type in read and creation 6313 * implement deferred table creation 6314 * fix reporting of geometry type for 2.5D (previous behavior had the effect to turn to wkbUnknown) 6315 * put correct value (1) in gpkg_geometry_columns for 2.5D tables (#5481) 6316 * fix component geometry type of 3D MultiGeometries (#5629) 6317 * fix GetExtent() crash on layers without extent set in gpkg_contents (#5471) 6318 * avoid leak when a table has more than one FID column 6319 * accept spatial tables whose geometry field is declared as BLOB 6320 * recognize both GeomCollection and GeometryCollection as possible values, until GeoPackage SWG clears what is the official value 6321 * escape all column names in SQL (#5520) 6322 * accept geometries with Spatialite format, that can be returned with issuing a SQL request using spatialite functions 6323 * enable Spatialite 4.3 'amphibious' mode to avoid explicit cast to Spatialite geometries 6324 6325GPSBabel driver: 6326 * automatically open .igc files, implement Identify() and add open options 6327 * advertise creation option 6328 6329GTM driver: 6330 * declare OLCCreateField and OLCSequentialWrite capabilities 6331 6332IDRISI driver: 6333 * fix support for multi-ring polygons (#5544) 6334 6335ILI driver: 6336 * Use Ili1TransferElement written by ili2c 4.5.5 and newer 6337 * Fix crash in polygon geometry reading 6338 * Fix reading SURFACE polygons with multiple rings 6339 * Fix reading tables with polygon type 6340 * Support curve geometries for ILI1 and ILI2. 6341 * Add a MODEL open option 6342 6343ISIS3 driver: 6344 * fix to recognize IsisCube.Mapping.LatitudeType = Planetocentric (#5717) 6345 6346KML driver: 6347 * fix segfault when calling GetNextFeature() on a write-only layer 6348 6349LIBKML driver: 6350 * add support for reading gx:MultiTrack 6351 * rework libkml singleton factory management (#5775) 6352 6353MITAB driver: 6354 * add support for append/update/delete operations on .tab files (#5652) 6355 * add support for CreateField() on non empty file, AlterFieldDefn() and DeleteField() for .TAB (#5652) 6356 * implement SyncToDisk() for TAB layers (#5652) 6357 * convert to use of VSI*L FILE API (#5558) 6358 * don't write field width for integer fields in .mif, which is incompatible with MapInfo (#3853) 6359 * report OLCCreateField for .mif files (#5477) 6360 * fix opening .mif file without .mid file (#5570) 6361 * swap StdParallel1 and stdParallel2 if necessary on LCC projections (https://github.com/mapgears/mitab/issues/1) 6362 * take into account scale/bounds to properly round coordinates (https://github.com/mapgears/mitab/issues/2) 6363 * add MITAB_BOUNDS_FILE configuration option to specify a file with projection bounds (https://github.com/mapgears/mitab/issues/3) 6364 * add BOUNDS layer creation option (#5642) 6365 * refactor import/export of MIF coordsys to use the TAB code; take into account MITAB_BOUNDS_FILE to add Bounds to the CoordSys string 6366 * close polygon rings when reading Region from MIF file (#5614) 6367 * fix segfault in CreateFeature() if passing an invalid OGR feature style string (#1209) 6368 6369MSSQLSpatial driver: 6370 * Implement SPATIAL_INDEX layer creation option for MSSQL (#5563) 6371 * Implement support for WKB geometry upload (#5682) 6372 * Fix schema handling in MSSQL driver (#5401) 6373 * Fix spatial geometry field handling (#5474) 6374 * Bind string fields to unicode string columns in the database (#5239) 6375 * Fix recognizing image columns as geometry columns for the select layers. (#5498) 6376 * Fix issue when creating non-spatial table (#5696) 6377 * Fix to read metadata if the tables are specified in the connection string (#5796) 6378 * Fix crash if the tablename is specified in the connection string (#5826) 6379 * Include geometry column name in Update statement (#5930) 6380 * Implement FID layer creation option (#5816) 6381 * Fix issue when removing an MSSQL spatial layer 6382 6383MySQL: 6384 * thread-safe initialization of mysql client library (#5528) 6385 6386NAS driver: 6387 * implement wfs:update (adds new context 'update' and fields "endet" and "anlass" to "delete" layer). 6388 * also assign xlink:href attributes as layer attribute (not only in "alkis_beziehungen" layer; #5372) 6389 * fix filtering on OGR_GEOMETRY special field 6390 * make chevrons configurable by NAS_INDICATOR 6391 6392OCI driver: 6393 * add a ADD_LAYER_GTYPE=YES/NO layer creation option that defaults to YES to enforce a layer geometry type and is used to retrieve the layer geometry type when listing layers (#3754) 6394 * Fix FID (multi_load=off, OGRNullFID) - start with 1 (not -1) (#5454) 6395 * use VARCHAR2 instead of VARCHAR for unsupported types 6396 * Fix "ORA-00972: identifier is too long" error (#5466) 6397 * Fix memory leaks (#5599) 6398 * Fix creation of date and datetime fields (#5600) 6399 * initialize member variable to avoid UpdateLayerExtents() to be called randomly on non spatial tables (#5376) 6400 * avoid spatial index to be created each time SyncToDisk() is called 6401 * fix memory leak in DeleteLayer(const char*) 6402 * fix reading of 2D geometries that were always turned as 3D 6403 * in layers returned by ExecuteSQL(), only expose geometry column if there's one 6404 * force NLS_NUMERIC_CHARACTERS to ". " (#5709) 6405 6406ODBC driver: 6407 * try alternate DSN template for 64bit ODBC 6408 * make ODBC driver honour PGEO_DRIVER_TEMPLATE config. option (and also MDB_DRIVER_TEMPLATE in case PGEO_DRIVER_TEMPLATE isn't defined) (#5594) 6409 6410ODS driver: 6411 * fix export of OFTDate fields that were exported as string 6412 6413OpenAir driver: 6414 * tweak detection logic to read beyond first 10KB bytes when needed (#5975) 6415 6416OpenFileGDB driver: 6417 * add compatibility with .gdbtable files bigger than 4 GB (#5615) 6418 * support opening files with ConfigurationKeyword=MAX_FILE_SIZE_4GB or MAX_FILE_SIZE_256TB (#5615) 6419 * fix occasional write-after-end-of-buffer (#5464) 6420 * avoid error message when failing to import SRS from WKID code (might be an ESRI code for example) 6421 * fix spatial filter with GeneralPolygon shapes (#5591) 6422 * fix for reading GDB with string fields with a default value length > 127 (#5636) 6423 * better handling of certain definitions of raster columns 6424 * use LatestWKID when available (#5638) 6425 * increase accepted size for field description zone up to 10 MB (#5660) 6426 * fix ResetReading() on SQL layer with ORDER BY on indexed column (#5669) 6427 * add support for non spatial GDB v9 tables (#5673) 6428 * improve error reporting when file exists but cannot be opened due to permission problem (#5838) 6429 * report width of string fields (#5806) 6430 * try to deal more gracefully with inconsistent nValidRecordCount vs nTotalRecordCount values (#5842) 6431 * report 25D layer geometry type on FileGDB v9 tables when relevant 6432 * optimize sequential reading of sparse layers 6433 * avoid warning when opening a00000004.gdbtable 6434 * disable feature count optimization with IS NOT NULL on an index column 6435 6436OSM driver: 6437 * add mechanism to compute fields from other fields/tags with SQL expressions. Apply it for z_order on lines layer 6438 * fix random crash, particularly on MacOSX (#5465) 6439 * add CONFIG_FILE, USE_CUSTOM_INDEXING, COMPRESS_NODES, MAX_TMPFILE_SIZE and INTERLEAVED_READING open options 6440 6441PG driver: 6442 * use COPY mode by default (unless PG_USE_COPY is set to NO) when inserting features in a newly create table (#5460) 6443 * add UNLOGGED=YES/NO layer creation option to create unlogged tables (improved version of patch by Javier Santana, #4708) 6444 * implement deferred loading of table list, to optimize ExecuteSQL() (#5450) 6445 * implement optimization for spatial table listing for PostGIS 2.x 6446 * implement deferred creation of tables to capture all attribute and geometry column creations into a single CREATE TABLE statement (#5547) 6447 * change "No field definitions found" from fatal error to debug 6448 * when creating a table and filling it, avoid re-reading the table definition from PG system tables (#5495) 6449 * better handling of SRS authority name different than EPSG (authority code must still be integral) 6450 * fix crash when writing a StringList with 0 element (#5655) 6451 * emit errors instead of debug messages when postgres issues an error (#5679) 6452 * fix to make ExecuteSQL('CREATE DATABASE foo') work 6453 * fix regression that prevented to retrieve more than 500 features from a connection with tables= parameter and on a SQL result layer (#5837) 6454 * PG/PGDump: fix truncation of fields to work with multi-byte UTF-8 characters (#5854) 6455 6456PGDump driver: 6457 * switch to DROP_TABLE=IF_EXISTS by default (#5627) 6458 * fix crash when writing a StringList with 0 element (#5655) 6459 6460PGeo driver: 6461 * try alternate DSN template for 64bit ODBC 6462 6463REC driver: 6464 6465Shapefile driver: 6466 * add SPATIAL_INDEX layer creation option (#5562) 6467 * support .prj files with UTF-8 BOM 6468 * fill 'date of last update' header with current time instead of dummy date, and add a DBF_DATE_LAST_UPDATE layer creation option to override this with a fixed date (#3919) 6469 * fix reading of shapefiles whose .shx is non conformant (#5608) 6470 * fix writing values up to 2^53 in OFTReal fields with 0 decimal places (#5625) 6471 * delete implicit FID field as soon as we CreateField a real one 6472 * GetExtent(): don't trust extent in header if it contains Not-A-Number values (#5702) 6473 * make REPACK compact .shp if SetFeature() is called and changes one geometry size (#5706) 6474 * add check not to cut unicode character while cut the string lengnt for field max length during SetFeature 6475 * avoid reading whole .shx at open time for /vsicurl/ 6476 * add SHAPE_REWIND_ON_WRITE configuration option that can be set to NO to disable correction of ring winding order on write. Useful when dealing with MultiPolygon that are MultiPatch objects in fact (#5888) 6477 * Make ENCODING layer creation option proprietary over SHAPE_ENCODING config. option 6478 6479SOSI driver: 6480 * remove error noise (#5710) 6481 6482S57 driver: 6483 * various compliance fixes in ISO8211 and S57 writer (#5798) 6484 * make it possible to set LNAM_REFS=OFF as advertized in the doc 6485 6486SQLite/Spatialite driver: 6487 * SQLite/Spatialite: add support for multiple geometry column tables, accordingly with RFC 41 (#5494) 6488 * SQLite SQL dialect: Add hstore_get_value(hstore, key) function 6489 * remove 'T' suffix when formatting the content of a Date field (#5672) 6490 * optimize CreateFeature() when fields can be null or not null from one feature to another one 6491 * Spatialite: improve insertion performance by disabling triggers and doing the job ourselves 6492 * Fix segmentation fault when executing OGR2SQLITE_Register() when compiling against sqlite 3.8.7 (#5725) 6493 * make GetFIDColumn() work when run as first method call (#5781) 6494 * emit warning when reading text values in a integer/real field (possible since SQLite has no strong typing) 6495 * support reading date/datetime from Julian day floating point representation 6496 * SQLite dialect: fix insertion in geometry_columns of table names that are not in upper-case (#6483) 6497 6498SUA driver: 6499 * tweak detection logic to read beyond first 10KB bytes when needed (#5975) 6500 6501SXF driver: 6502 * Fix SXF file version check (#5456) 6503 * Fix wrong Miller Cylindrical projection string 6504 * Fix encoding issues (#5647) 6505 * Fix extract z value to OGRGeometry 6506 * Fix case sensitivity of RSC file 6507 6508VFK driver: 6509 * recode also header values 6510 * process DKATUZE from header properly 6511 * handle also duplicated records 6512 * check attribute 'parametry_spojeni' 6513 * speed-up GetFeatureCount() 6514 * fix reading properties. Escape characters for SQL 6515 * change SRS from EPSG 2065 to 5514 6516 * fix reading SBP datablock (fix mismatch when reading from file and db) 6517 6518VRT driver: 6519 * do not propagate ignoring of x and y cols of a PointFromColumns to the source layer (#5777) 6520 * add an optional 'name' attribute on FID element, so as to be able to force the report of a FID column name even if it is not exposed as a regular field (related to #5845) 6521 * handle optional <OpenOptions><OOI key='key'>value</OOI></OpenOptions> to specify open options 6522 * do not enable passthrough filtering if redefining <FID> (#6480) 6523 6524Tiger driver: 6525 * Fix potential buffer underflow when providing /vsistdin/ to Tiger driver (#5567) 6526 6527WAsP driver: 6528 * added options and changed output precision to match WAsP Map Editor 6529 * improve TestCapability(ODsCCreateLayer) 6530 6531WFS driver: 6532 * automatically enable paging if WFS 2.0 capabilities report paging support 6533 * evaluate SELECT with JOIN on server-side for a Join-capable WFS 2.0 server 6534 * add a TRUST_CAPABILITIES_BOUNDS open option, that can be set to YES to trust layer bounds declared in GetCapabilities response, for faster GetExtent() runtime (#4041) 6535 * add INVERT_AXIS_ORDER_IF_LAT_LONG, CONSIDER_EPSG_AS_URN and EXPOSE_GML_ID open options 6536 * add capability to use spatial functions ST_xxxxx() as server-side filters 6537 * add dataset and layer metadata 6538 * allow SELECT with several ORDER BY columns 6539 * report name of geometry column 6540 * Add COOKIE option (#5824) 6541 * when parsing a layer schema without geometry from the GML .xsd, do not expose a geometry field at the WFS layer level (#5834) 6542 6543XLSX driver: 6544 * fix column numbering when there are more than 26 columns (#5774) 6545 6546XPlane driver: 6547 * add support for Taxi Location 1300 record found in V1000 6548 6549== SWIG Language Bindings == 6550 6551All bindings: 6552 * bind GDALGetBandDataset() as Band.GetDataset() 6553 * add Feature.GetFieldAsBinary() 6554 6555Java bindings: 6556 * Pass eRWFlag to allow both reading or writing. Write was broken in DatasetRasterIO(). 6557 * updates to generate maven artifacts 6558 6559Perl bindings: 6560 * The breaking changes are described in more detail in swig/perl/Changes-in-the-API-in-2.0. 6561 * More comprehensive use of strings as constants (such as capabilities); they are also taken from bindings, which added new ones, and not hard-coded. 6562 * New classes (e.g., VSIF, GeoTransform, GeomFieldDefn) and new methods (e.g., constant lists, Dataset::SpatialReference). 6563 * Much improved documentation and switch to Doxygen::Filter::Perl. 6564 * New test codes. 6565 * Errors are confessed with stack trace and often caught earlier with better messages. 6566 * Use of attributes is deprecated and methods have been added to replace them. 6567 * Multiple geometry fields have necessitated some changes in schema and field related methods. 6568 * More support for named parameters (i.e., hashes as arguments). 6569 * NoDataValue: set max float if undef is given. 6570 * Unit: set '' if undef is given. 6571 * Also other changes that will also remove some "use of uninitialized value in subroutine entry" warnings. 6572 * Automatic handling of SQL result layers. 6573 * Fix issue with index attribute for field meta data (schema) (#5662) 6574 * Warn if attempt to create non-integer column for colors. 6575 * Remove prefix GCP from GCP swig made attributes. 6576 6577Python bindings: 6578 * add optional buf_xsize, buf_ysize and buf_type parameters to Dataset.ReadAsArray() and Dataset.LoadFile(), and use dataset RasterIO for better efficiency 6579 * avoid generating Python exception when PyString_FromStringAndSize() fails and GDAL errors as Python exceptions are disabled 6580 * Band.ReadRaster() and Dataset.ReadRaster(): clear the buffer in case there are holes in it due to odd spacings specified by the user 6581 * Fix hang of Python in case of repeated call to gdal/ogr.UseExceptions() and CE_Warning emitted (#5704) 6582 * for Python 2, accept unicode string as argument of Feature.SetField(idx_or_name, value) (#4608) 6583 * for Python 2, accept Unicode strings to be passed as key and/or value of the dictionary passed to SetMetadata() (#5833) 6584 * fix processing error of ogr_python.i with SWIG 3 (#5795) 6585 * NUMPY driver: avoid returning CE_None in GetGeoTransform() when there's no geotransform set (#5801) 6586 * Make GetFieldAsBinary() work with OFTString fields 6587 * For Python3 compat, make Feature.GetField() use GetFieldAsBinary() if GetFieldAsString() fails (#5811) 6588 6589= GDAL/OGR 1.11.0 Release Notes = 6590 6591== In a nutshell... == 6592 6593 * New GDAL drivers: 6594 - KRO: read/write support for KRO KOKOR Raw format 6595 * New OGR drivers: 6596 - CartoDB : read/write support 6597 - GME (Google Map Engine) : read/write support 6598 - GPKG (GeoPackage): read-write support (vector part of the spec.) 6599 - OpenFileGDB: read-only support (no external dependency) 6600 - SXF driver: read-only support 6601 - WALK : read-only support 6602 - WasP : read-write support 6603 * Significantly improved drivers: GML, LIBKML 6604 * RFC 40: enhanced RAT support (#5129) 6605 * RFC 41: multiple geometry fields support 6606 * RFC 42: OGR Layer laundered field lookup 6607 * RFC 43: add GDALMajorObject::GetMetadataDomainList() (#5275) 6608 * RFC 45: GDAL datasets and raster bands as virtual memory mapping 6609 * Upgrade to EPSG 8.2 database 6610 6611== New installed files == 6612 * bin/ogrlineref 6613 * lib/pkgconfig/gdal.pc 6614 * gdalcompare.py 6615 * data/gml_registry.xml 6616 * data/inspire_cp_CadastralParcel.gfs 6617 * data/inspire_cp_BasicPropertyUnit.gfs 6618 * data/inspire_cp_CadastralBoundary.gfs 6619 * data/inspire_cp_CadastralZoning.gfs 6620 * data/ruian_vf_ob_v1.gfs 6621 * data/ruian_vf_st_v1.gfs 6622 * data/ogrvrt.xsd 6623 6624== Backward compatibility issues == 6625 6626== GDAL/OGR 1.11.0 - General Changes == 6627 6628Build(Unix): 6629 * add Unix configure support for SOSI 6630 * remove pointers to old ver of ingres library files 6631 * add --with-libjson-c configure option to build against external libjson-c (>= 0.11) (#4676) 6632 * compilation fixes for iOS (#5197, #5198) 6633 * update to autoconf 2.69 6634 * add pkg-config gdal.pc (#3470) 6635 * configure for FileGDB: add explicit linking to libfgdbunixrtl (requires FileGDB SDK >= 1.2) (#5215); also try .dylib extension (#5221) 6636 * fix so that Java installs are found on the MAC to enable the MDB driver (#5267) 6637 * fix compilation with recent MySQL versions (5.6 for example) (#5284) 6638 * support --with-jp2mrsid with standalone Kakadu with MRSID v8 or later 6639 * Fix parallel build in Python bindings (#5346) 6640 * PCIDSK: don't link against libjpeg if configured --without-jpeg 6641 * Update configure script to pick up ECW JP2 SDK 5.1 (#5390) 6642 * add a 'make install' target for the Java bindings (#5424) 6643 * add Vagrant configuration 6644 6645Build(Windows): 6646 * add option to generate VC project for x64 on makegdal_gen.bat 6647 * nmake.opt: add WITH_PDB=1 option to optionally generate .pdb file on Release builds (#5420) 6648 * add support for building the OGR SOSI driver as a plugin (#3638) 6649 * add support for building the HDF4 driver as plugin (#5294) 6650 * add support for MrSID v9 6651 * Remove makegdalXX.bat generated files 6652 6653== GDAL 1.11.0 - Overview of Changes == 6654 6655Port: 6656 * vsisubfile: fix Eof() behavior to be POSIX compliant, so that the shapefile reader can read the last feature when using /vsitar (#5093) 6657 * vsicache: fix for 32bit binaries when file size is over 2GB (#5170) 6658 * vsicache: add optional nChunkSize and nCacheSize parameters to VSICreateCachedFile() 6659 * vsicurl: add CPL_VSIL_CURL_USE_HEAD config option to disable use of CURL HEAD for other services like mapbox (likely lame python http implementations) 6660 * vsitar: avoid infinite loop in case of invalid .tar structure 6661 * vsizip: fix path separator in CPLFormFilename 6662 * vsizip: allow additional extensions listed in CPL_VSIL_ZIP_ALLOWED_EXTENSIONS config option. 6663 * vsizip: improve UTF-8 support of filenames inside ZIP file (#5361) 6664 * vsizip: fix ZIP64 support 6665 * vsigzip: reset EOF flag when doing a Seek() to be POSIX compliant 6666 * curl: add .netrc support 6667 * Windows CPLGetSymbol(): avoid dialog boxes to pop up when a DLL or one of its dependencies does not exist (#5211) 6668 * Add CPLOPrintf() and CPLOvPrintf() functions for easy CPLString formatting 6669 * CPLBase64DecodeInPlace() : fix to be robust to malformed base64 strings 6670 * CPLQuadTree: add CPLQuadTreeInsertWithBounds() where the pfnGetBounds is not needed. 6671 * CPLQuadTree: fix potential infinite recursion when inserting several points with identical coordinates in the mode with limited bucket size 6672 * Protect concurrent calls to setlocale() by a mutex (#5366) 6673 6674Core: 6675 * RFC 45: GDAL datasets and raster bands as virtual memory mapping 6676 * GDALRasterBand::GetHistogram(): ignore nodata values (#4750, #5289) 6677 * allow auto loading of drivers to be disabled via config option 6678 * PAM .aux.xml and VRT: serialize Z component of a GCP as 'Z' attribute, 6679 for consistency, instead of GCPZ that could not be read back previously. 6680 In reading code, try reading 'Z' and if not found try 'GCPZ' (#5326) 6681 * JPEG2000: Add GDALGeorefPamDataset and GDALJP2AbstractDataset classes and use 6682 them in JP2KAK, JP2ECW, JP2OpenJPEG, JPEG2000 and MrSID drivers so that PAM 6683 georeferencing consistently overrides internal georeferencing 6684 * GDALDataset::IRasterIO(): don't use BlockBasedRasterIO() when INTERLEAVE=PIXEL if the request band count is just 1 6685 * CopyWholeRaster(): make default GDAL_SWATH_SIZE to 1/4 of GDAL_CACHEMAX instead of hard-coded value of 10 MB 6686 * don't report empty RAT on GDALGetDefaultRAT() (#5232) 6687 * modify GDALGCPsToGeotransform() to do the regression in normalized coordinates to make the math more stable. 6688 * expose new GDALComposeGeoTransforms() function. 6689 * GDALDefaultOverviews::HaveMaskFile(): avoid fetching .ovr file 6690 * JPEG2000: Fix reading georeferencing from some JPEG2000 files with duplicated GeoTIFF JP2Box (#5249) 6691 * Cleanup raster block mutex (#5296) 6692 * Driver registration: move JPEG2000 (Jasper based) after MrSID JPEG2000 support 6693 6694Algorithms: 6695 * warper: fix regression with lanczos resampling when yradius > xradius (#5058) 6696 * warper: Make GDALCreateGenImgProjTransformer2() and GDALCreateGenImgProjTransformer3() fail when the creation of the reprojection transformer fails 6697 * warper: Fix warping when input pixel size is too close to 0 (#5190) 6698 * warper: revise formula of cubic resampling kernel, and a few optimizations (#5209) 6699 * warper: added DST_METHOD and support for GCP and TPS dest 6700 * warper: add support for DST_METHOD=RPC 6701 * warper: fix mode and near resampling corner computation (#5311) 6702 * warper: GDALGenImgProjTransform(): don't set panSuccess[i] to 1 in the middle of the function, if an intermediate transform before has set the flag to 0 6703 * warper: fix cutline blending (#5343) 6704 * warper: Average/mode kernels: make them less sensitive to numerical precision issues (#5350) 6705 * warper: Average/mode kernels: avoid 'holes' when the source coordinates are in a reversed order from the target coordinates (#5433) 6706 * warper: provide prototypes and work around strict compiler requirements on some opencl platforms (#5400) 6707 * RPC: fix for computation of adfGTFromLL (#5395) 6708 * TPS: optimization for GCC x86_64 that make computation about twice faster with huge number of GCPs 6709 * TPS: when using Armadillo to solve the coefficients, use solve(A,B) instead of inv(A)xB to faster resolution 6710 * TPS: compute direct and inverse transformations in parallel when warping option NUM_THREADS or GDAL_NUM_THREADS config. options are set to > 1 6711 * Geoloc: fix wrong bilinear interpolation in GDALGeoLocTransform() (#5305) 6712 * Geoloc: fail transformation of coordinates that is located on a nodata place of the geoloc array 6713 * rasterize: preliminary support for MERGE_ALG=ADD for heatmaps 6714 * gdal_grid: Add AVX optimized version of GDALGridInverseDistanceToAPower2NoSmoothingNoSearch 6715 * fill_nodata: GDALFillNodata(): Fix use of uninitialized memory and integer overflows (#4010, #5203) 6716 * rpc: Fix out-of-bounds read in RPC dem cubic interpolation 6717 6718Utilities: 6719 * gdalinfo: add -listmdd and -mdd all options (#5275) 6720 * gdal_translate: add a -exponent option to be used with -scale 6721 * gdal_translate: fix output file naming scheme in gdal_translate -sds (#5119) 6722 * gdal_translate: fix logic in detection non-gray color table level (#5245) 6723 * gdal_translate: add a -norat option 6724 * gdal_translate: don't add 0.1 when -scale is used with a dstmin equal to dstmax (useful to generate a raster with uniform color, i.e. scaleRatio = 0) 6725 * gdal_translate: use floor() to compute image coordinates from world coordinates when specifying -projwin (useful when extracting from left or top of upper-left corner, which generate negative image coordinates) (#5367) 6726 * gdaltindex: remove annoying warning 'Warning 1: Field location of width 255 truncated to 254' (#5121) 6727 * gdaltindex: add -src_srs_name and -src_srs_format to go with MapServer RFC100; add also a -f and -lyr_name options to be able to create a non-shapefile tileindex 6728 * gdalwarp: Fix segfault where metadata values were not being nullchecked properly during conflict resolution (#5069) 6729 * gdalwarp: honor -s_srs when using cutline (#5081) 6730 * gdalwarp: copy nodata values from source to dest if -dstnodata is not given ; add option to not set dest nodata with -dstnodata None (#5087) 6731 * gdalwarp: do not return a non-zero exit status for warnings 6732 * gdalwarp: prevent from copying statistics metadata (#5319) 6733 * gdal_rasterize: set the progress bar to 100% even when there's nothing to do 6734 * gdal_grid: add support for different types of geometries (#5341) 6735 * gdal_grid: add -z_increase and -z_multiply options 6736 * gdaldem: check that value of -z, -s, -az and -alt is numeric 6737 * gdalbuildvrt: validate values of -srcnodata and -vrtnodata arguments 6738 * gdal2tiles.py: Corrected OpenLayers code to reflect fix to geodetic resolution factor 6739 * gdal2tiles.py: add --tmscompatible flag so as to produce 2 tiles at zoom level 0 in geodetic profile 6740 * rgb2pct.py: Use python tempfile logic to avoid permissions issues with cwd (#5079) 6741 * gdal_edit.py: add a -ro option for drivers refusing to use the dataset in update-mode. 6742 * gdal_calc.py: add --allBands options (#5388) 6743 * Add vsipreload.cpp that can be compiled as a shared library that can be LD_PRELOAD'ed as an overload of libc to enable VSI Virtual FILE API to be used with binaries using regular libc for I/O 6744 * Add the wcs_virtds_params.py sample utility to be able to set the MapServer WCS virtual dataset parameters from a tileindex with rasters of mixed SRS (linked to MapServer RFC100) 6745 * gdalcompare.py: move to scripts 6746 * gdalcompare.py: ensure image dimensions match 6747 * gdal_ls.py: Fix issue with UTF-8 characters 6748 6749Multi driver changes: 6750 * JPEG2000 drivers: take into account PixelIsPoint in GeoJP2 boxes, and expose AREA_OR_POINT=Point (#5437) 6751 * JP2KAK, JP2ECW, JP2OpenJPEG, JPEG2000 CreateCopy(): take into account AREA_OR_POINT=Point if present to write GeoJP2 box (#5437) 6752 6753AAIGRID: 6754 * revert DECIMAL_PRECISION and add SIGNIFICANT_DIGITS to CreateCopy() (#3732) 6755 6756AIGRID: 6757 * Turn off errors that can be triggered if the info has no VAT table related with this coverage (#3031) 6758 6759BAG driver: 6760 * Recognise falseNorthing=10000000 as UTM South (#5152) 6761 6762DIMAP driver: 6763 * fix memleak in error-code path 6764 6765DTED driver: 6766 * Speed optimization to be more friendly with CPU cache in GDAL_DTED_SINGLE_BLOCK=YES mode 6767 6768ECW driver: 6769 * fix crash in GDALDeregister_ECW() with ECW SDK 5 called from GDALDestroy() (#5214) 6770 * fix issue with ECW_CLEVER optimization when nPixelSpace != sizeof eBufDataType (#5262) 6771 6772Envisat driver: 6773 * implement more reliable way of extracting GCPs from Meris tie-points (#5423) 6774 * add DEM corrections of TP-ADS products when present (#5423) 6775 * workaround dateline discontinuity in GCPs so they can be used with GDAL warping transformers (#5423) 6776 6777ERS driver: 6778 * fix wrong interpretation of RegistrationCellX/RegistrationCellY (#2612, #3056, #5075) 6779 6780GeoRaster driver: 6781 * fix RPC support (#4038) 6782 * fix read error when reading from pyramids (#5076) 6783 * make regular table and secure file a default for RDT (#5127) 6784 * fix error when reading NBIT pyramid levels (#5199) 6785 * show the VAT as RAT (#5200) 6786 * fix reading and writing of statistics metadata (#5237) 6787 * add generate pyramid create options (#5288) 6788 * fix incorrect geotransform interpretation when there is no SRS (#5323) 6789 6790GRASS driver: 6791 * fix compilation issues for GRASS 7 6792 6793GRIB driver: 6794 * display temperature unit as deg Celsius in metadata (#3606) 6795 6796GTiff driver: 6797 * when compiling against internal libtiff, in read-only mode, optimization to 6798 avoid fetching the whole Strip/TileCounts and Strip/TileOffsets arrays 6799 * add validation of source overview characteristics with COPY_SRC_OVERVIEWS (#5059) 6800 * convert invalid TIFFTAG_RESOLUTIONUNIT=0 to 1(Unknown) (#5069) 6801 * fix potential issues in gt_citation.cpp / CheckUTM() 6802 * upgrade internal libtiff to latest CVS 6803 * implement reading and writing of ICC profiles (#5246) 6804 * make SetColorInterpretation() round-trip with GetColorInterpretation(); 6805 read color interpretation from PAM if it exists (overrides internal tiff color interpretation); 6806 set TIFFTAG_PHOTOMETRIC=PHOTOMETRIC_RGB if calling SetColorInterpretation() with R,G,B and no explicit PHOTOMETRIC creation option defined 6807 * gt_wkt_srs.cpp: fix compilation with external libgeotiff. The file is dependent of quite a few CPL stuff, don't try to pretend otherwise 6808 * implement GetVirtualMemAuto() for some formulations of TIFF files (RFC 45) 6809 * fix reading a single-strip TIFF file where the single strip is bigger than 2GB (32bit builds only) (#5403) 6810 * look for .tab file before .wld/.tfw 6811 6812GTX driver: 6813 * Add nodata support (#4660) 6814 6815HDF4 driver: 6816 * Skip "SceneLineNumber" table if present in the list of geolocation fields of 6817 ASTER L1A dataset. 6818 6819HDF5 driver: 6820 * add support for ODIM H5 georeferencing method (#5032) 6821 * set SRS GEOGCS in all cases (reverts r25801 and closes #4160) 6822 * support HDF5 NATIVE_SCHAR type, subdatsets without PAM (#5088) 6823 * release all opened handles so the file is closed at dataset closing (#5103) 6824 * better deal with dimensions of CSK-L1A HDF5 subdatasets (#4227) 6825 * avoid segmentation fault when H5Sget_simple_extent_ndims() returns negative value (#5291) 6826 6827HFA driver: 6828 * add minimally tested support for u2 and u4 data in basedata 6829 * use direct binning for thematic layers and real instead of integer for values (#5066) 6830 * add a HFA_COMPRESS_OVR config option to select whether to create compressed overviews (#4866) 6831 * fix rewriting of statistics in existing HFA file where base data value is 8-bit (#5175) 6832 * implement re-writing existing histogram in HFA file, after raster editing (#5176) 6833 * avoid segfaults when creating a Imagine dataset with an invalid WKT (#5258) 6834 * expose color columns in RAT as Integer with values in range [0-255] instead of Real with values [0-1] (#5362) 6835 * report histogram column as GFU_PixelCount instead of GFU_Generic (#5359) 6836 * ensure histogram column written as float for HFA when using RAT API (#5382) 6837 6838Idrisi driver: 6839 * Improve coordinate system handling and min/max statistics (#4980) 6840 6841IRIS driver: 6842 * add height information on bands; rename dataset metadata item CAPPI_HEIGHT --> CAPPI_BOTTOM_HEIGHT (#5104) 6843 * IRIS: add support for two bytes data (#5431) 6844 6845JP2ECW driver: 6846 * fix problem with JP2 write with SDK v5 6847 * fix issue with ECW_CLEVER optimization when nPixelSpace != sizeof eBufDataType (#5262) 6848 * avoid writing dummy GeoJP2 box when source dataset has no georeferencing (#5306) 6849 6850JP2KAK driver: 6851 * preliminary support for Kakadu V7.x 6852 * fix creation of unsigned int16 with reversible compression (#4050) 6853 * on Windows, use VSI cache for I/O by default, instead Kakadu own I/O layer 6854 * remove extension from 12bit to 16bit (#5328) 6855 6856JP2OpenJPEG driver: 6857 * avoid 'Empty SOT marker detected: Psot=12.' warning to be repeated several times 6858 * add support for encoding GCPs in a GeoJP2 box (#5279) 6859 * avoid writing dummy GeoJP2 box when source dataset has no georeferencing (#5306) 6860 6861JPEG driver: 6862 * add autodetection of bitmasks that are msb ordered (#5102) 6863 * avoid memory leak when GDALOpen'ing() a JPEG through a http:// URL, and make it possible to access its overviews 6864 * return YCbCrK raw data for YCbCrK JPEG in GDAL_JPEG_TO_RGB = NO mode (instead of CMYK as before) (#5097) 6865 * implement reading and writing of ICC profiles (#5246) 6866 * internal libjpeg: apply patch for CVE-2013-6629 6867 * allow fallback to PAM to read GCPs 6868 * give priority to PAM GeoTransform if it exists and other source of geotransform (.wld, .tab) also exists (#5352) 6869 6870KMLSuperOverlay driver: 6871 * recognize an alternate structure for raster KMZ file made of a single doc.kml 6872 and tiles whose name pattern is kml_image_L{level}_{j}_{i}.{png|jpg} 6873 * fix horrible speed performance in Open() (#5094) 6874 * fix crash at dataset closing and inability to read some big PNG tiles (#5154) 6875 * fix to generate files validating against OGC KML 2.2 schema 6876 * put Style into conformity with ATC 7 6877 * remove Region in root KML (ATC 41) 6878 * add NAME and DESCRIPTION creation options; read them back as metadata 6879 * add ALTITUDE and ALTITUDEMODE creation options 6880 * directly write into .kmz file (instead of in temporary location) 6881 * correctly write directories entry in .kmz file 6882 * add progress callback 6883 6884L1B driver: 6885 * report correct values for GCP (#2403) 6886 * report more GCPS than before 6887 * implement geolocation array 6888 * add fetching of record metadata in .csv file 6889 * add subdatasets with solar zenith angles, cloud coverage 6890 * recognize NOAA-9/14 datasets whose dataset name in TBM header is encoded in EBCDIC and not in ASCII (#2848) 6891 * support opening a few NOAA <= 9 datasets that have no dataset name in the TBM header 6892 6893LCP driver: 6894 * better handling of projections (#3255) 6895 * add CreateCopy() (#5172) 6896 6897MBTiles driver: 6898 * add write support 6899 * avoid failure when there's no tile at the center of the maximum zoom level (#5278) 6900 * add capability to open /vsicurl/https:// signed AWS S3 URLs 6901 6902MEM driver: 6903 * Create(): use calloc() instead of malloc()+memset() for faster creation of huge in-memory datasets 6904 6905NetCDF driver: 6906 * fix to read netcdf-4 files with UBYTE data (#5053) 6907 * fix reading large netcdf-4 files with chunking and DEFLATE compression 6908 * fix netcdf chunking when creating file with > 2 dims ; add CHUNKING creation option (#5082 ) 6909 * fix duplicate nodata metadata when using CreateCopy() (#5084) 6910 * fix copying large metadata in netcdf driver (#5113) 6911 * fix netcdf geotransform detection (#5114) 6912 * fix netcdf driver irregular grids management (#5118 and #4513) 6913 * only call nc_close on a valid netcdf id when closing dataset 6914 * try and identify .grd (and .nc3) files in netcdf-4 format (#5291), so they are identified before the hdf5 driver 6915 6916NITF driver: 6917 * fix to support reading horizontal and/or vertical mono-block uncompressed images, even when the number of columns is <= 8192 (#3263) 6918 * update NITF Series list with new entries from MIL-STD-2411_1_CHG-3.pdf (#5353) 6919 * allow JP2KAK to be used as the JPEG2000 compression engine in the CreateCopy() case (#5386) 6920 6921PDF driver: 6922 * Avoid reporting a Poppler error as a GDAL error on some newer USGS GeoPDF files (#5201) 6923 * PDF writing: automatically adjust DPI in case the page dimension exceeds the 14400 maximum value (in user units) allowed by Acrobat (#5412) 6924 6925PDS driver: 6926 * Parse correctly MISSING_CONSTANT = 16#FF7FFFFB# as a IEEE754 single precision float expressed in hexadecimal; add support for ENCODING_TYPE = ZIP (data file compressed in a ZIP); recognize IMAGE_MAP_PROJECTION as an object included in UNCOMPRESSED_FILE object (#3939) 6927 6928PNG driver: 6929 * Implement reading and writing of ICC profiles (#5246) 6930 6931PostgisRaster driver: 6932 * Speed-up dataset opening (#5046). 6933 * Multi-tile multi-band caching added. 6934 * Smarter use of the information advertized in raster_columns view. 6935 * Avoid full table scan in situations without PKID/GIST indices. 6936 * Use of quadtree. 6937 6938Rasdaman driver: 6939 * caching of tiles for datasets with more than one band (#5298) 6940 * connections are now kept for a whole session (#5298) 6941 * fixing connection-string regex (#5298) 6942 * fixing possible memory leaks (#5298) 6943 6944Rasterlite driver: 6945 * fix resolution check typo in rasterlite driver 6946 6947Raw drivers: 6948 * implement GetVirtualMemAuto() (RFC 45) 6949 * IRasterIO(): add special behavior to avoid going to block based IO when the dataset has INTERLEAVE=PIXEL and is eligible to direct I/O access pattern 6950 * allow direct I/O access even if a small proportion of scanlines are loaded (improve QGIS use case where the overview display will load sparse scanlines, which would prevent direct I/O at full resolution afterwards) 6951 * fix optimized RasterIO() when doing sub-sampling with non standard buffer pixel offset (#5438) 6952 6953RMF driver: 6954 * fix decompression of 24-bit RMF DEM (#5268) 6955 6956RPFTOC driver: 6957 * fix potential crash on some datasets when selecting the color palette (#5345) 6958 6959SAGA driver: 6960 * add read/write support for .prj files (#5316) 6961 6962SRP driver: 6963 * read TRANSH01.THF file to establish subdatasets (#5297) 6964 6965VRT driver: 6966 * Implement non-linear scaling with a power function (addition of Exponent, SrcMin, SrcMax, DstMin, DstMax sub-elements in <ComplexSource>) 6967 * Preserve 64bit integer image offsets (#5086) 6968 * Make sure that VRTSourcedRasterBand::AddMaskBandSource() takes into account specified window (#5120) 6969 * Make GDALAutoCreateWarpedVRT() return NULL when GDALSuggestedWarpOutput() fails 6970 * VRTDataset::IRasterIO(): use source DatasetRasterIO even if band count is 1 6971 * VRTWarped: avoid setting up relative paths for things that aren't file-like 6972 * make relativeToVRT=1 work with NITF_IM:, NETCDF:, HDF5:, RASTERLITE: 6973 6974WCS driver: 6975 * ensure C locale is enforced before parsing floating point values 6976 6977WMS driver: 6978 * accept 'WMS:http://server/?SRS=EPSG:XXXX' syntax to select the preferred SRS in which to fetch layers 6979 * CPLHTTPFetchMulti(): avoid doing a timeout-only select when there are no file descriptor to wait on (can happen when doing a file:// URL) 6980 * allow cache location to be specified with GDAL_DEFAULT_WMS_CACHE_PATH configuration option if not provided in the XML (#4540) 6981 * Update to be able to understand slight changes in formatting of JSon output of ArcGIS mapserver protocol 6982 6983XYZ driver: 6984 * accept datasets that have missing values at beginning and/or end of lines, such as MNT250_L93_FRANCE.XYZ 6985 * fix detection when there are only integral values with comma field separator 6986 * reopen with 'rb' flags for Windows happyness 6987 6988== OGR 1.11.0 - Overview of Changes == 6989 6990Core: 6991 * GEOS support: require GEOS >= 3.1.0 and use the _r API of GEOS to avoid issues with the global GEOS error handlers 6992 * exportToWkb(): ISO WKB generation with wkbVariant option (#5330) 6993 * geocoding: when getting several answers from server for a query, report geometries on second, third, etc.. feature, and not only first one (#5057) 6994 * allow auto loading of drivers to be disabled via config option 6995 * remove obsolete OGRGeometryFactory::getGEOSGeometryFactory() 6996 * OGRGeometryFactory::organizePolygons() in DEFAULT method: fix a case with 2 outer rings that are touching by the first point of the smallest one 6997 * OGRGeometryFactory::organizePolygons(): optimization in ONLY_CCW case 6998 * OGRGeometryFactory::organizePolygons(): Add an experimental mode : CCW_INNER_JUST_AFTER_CW_OUTER 6999 * OGRLineString::segmentize() : do not set 0 as z for interpolated points, but the z from the previous point 7000 * OGRLineString::setNumPoints(): add an optional argument to avoid zeroing the arrays 7001 * Add OGRLineString::setZ() 7002 * Add OGRLineString::Project() and OGRLineString::getSubline() 7003 * OGRPolygon: add stealExteriorRing() and stealInteriorRing(int iRing) 7004 * OGRLinearRing::isClockwise(): optimizations and make it work in a degenerated case when a vertex is used several times in the vertex list (#5342) 7005 * OGRLinearRing::isPointOnRingBoundary() : optimizations and take into account bTestEnvelope 7006 * Add OGR_G_SetPointCount and OGR_G_SetPoints functions to API C (#5357) 7007 * OGREnvelope3D::Contains(): fix incorrect test 7008 * Layer algebra: fix handling of method field mapping to output fields when output fields are precreated (#5089) 7009 * Layer algebra: when an error condition is skipped, call CPLErrorReset() (#5269) 7010 * OGRLayer::GetFeature(): make sure that the behavior is not influenced by 7011 attribute or spatial filters in the generic implementation; 7012 upgrade OGDI, PG, MySQL, MSSQLSpatial, OCI, SDE, PGeo, ODBC, WALK, IDB, SQLite and Ingres driver (#5309) 7013 * introduce OGRLayer::FindFieldIndex() / OGR_L_FindFieldIndex() to lookup potentially laundered field names (RFC 42) 7014 * OGR SQL: upgrade to support RFC 41 (multiple geometry fields) 7015 * OGR SQL: more stricter checks 7016 * OGR SQL: make parsing error report a useful hint where the syntax error occurred 7017 * OGR SQL: fix thread-safety of swq_op_registrar::GetOperator() (#5196) 7018 * OGR SQL: support not explicitly specifying AS keyword for aliasing a column spec 7019 * OGR SQL: don't call CONCAT(a_column ...) or SUBSTR(a_column ...) as a_column 7020 * OGR SQL: validate that arguments of MAX, MIN, AVG, SUM, COUNT are columns and not any expression since this is not supported 7021 * OGR SQL: make AVG field definition a OFTReal 7022 * OGR SQL: implement MIN(), MAX() and AVG() on a date (#5333) 7023 * OGR SQL: fix SELECT * on a layer with a field that has a dot character (#5379) 7024 * SQL SQLITE dialect: Make it available to all OGR drivers that have a specialized ExecuteSQL() implementation 7025 7026OGRSpatialReference: 7027 * Upgrade to EPSG 8.2 database 7028 * identify LCC_2SP instead of LCC_1SP if lat_0==lat_1 and lat_2 is present (#5191) 7029 * add a variety of linear units to proj4 parsing (#5370) 7030 * Fix crash in CleanupESRIDatumMappingTable() if it is called twice (#5090) 7031 * fix order of AXIS and UNIT nodes in a VERT_CS node (#5105) 7032 * ecw_cs.wkt: add missing TOWGS84[-168,-60,320,0,0,0,0] to NTF datum (#5145) 7033 * fix OGRSpatialReference::importFromProj4() to work with non-C locale (#5147) 7034 * morph central_latitude to latitude_of_origin in morphFromESRI() (#3191) 7035 * OGRProj4CT: avoid using proj when the 2 projections are actually identical (#5188) 7036 * add sanity checks in OGR_SRSNode::importFromWkt() (#5193) 7037 * VERT_CS: when importing from proj.4 put AXIS node after UNIT; COMPD_CS: when importing from EPSG:x+y, set a more meaningful name for the COMPD_CS node 7038 * OGRSpatialReference::Validate() : in addition to hand-validation, use WKT grammar from OGC 01-009 CT 7039 * preserve authority when importing +init=auth_name:auth_code (e.g. +init=IGNF:LAMB93) 7040 7041Utilities: 7042 * ogrlineref: new utility to deal with linear geometries. 7043 * ogrinfo: upgrade to support RFC 41 (multiple geometry fields) 7044 * ogr2ogr: upgrade to support RFC 41 (multiple geometry fields) 7045 * ogr2ogr: bump default value for -gt from 200 to 20000 (#5391) 7046 * ogr2ogr: add -addfields option to add new fields found in a source layer into an existing layer ; add -unsetFieldWidth option to unset field with and precision; add -dim layer_dim option to force the coordinate dimension of geometries to match the one of the layer geometry type 7047 * ogr2ogr: Check that -t_srs is also specified when -s_srs is specified 7048 * ogr2ogr: add an explicit error message to report FID of feature that couldn't be inserted when CreateFeature() fails 7049 * ogr2ogr: make relaxed lookup optional and add a switch -relaxedFieldNameMatch to allow it (RFC 42) 7050 * ogr2ogr: make sure that the progress bar reaches 100% when converting OSM 7051 * ogr2ogr: make sure that target dataset is properly closed when a CreateFeature() fails (so that truncated shapefiles have their header file properly updated) 7052 * ogr_dispatch.py: Sample Python script to dispatch features into layers according to the value of some fields or the geometry type 7053 * ogrinfo.py: sync with ogrinfo (RFC 41) 7054 * ogr2ogr.py: port -nlt PROMOTE_TO_MULTI option from ogr2ogr.cpp (#5139) 7055 7056CSV driver: 7057 * avoid erroneously reset of file content when opening in update mode a file without header (#5161) 7058 * upgrade to support RFC 41 in read/write (multiple geometry fields) 7059 * allow backslash doublequote to load (#5318) 7060 7061DGN driver: 7062 * DGN writing: added polygon inner ring (holes) writing and MSLink writing (#5381) 7063 7064DXF driver: 7065 * fix writing of 25D linestring where z is not constant (#5210) 7066 * fix writing of POLYLINE objects (#5217, #5210) 7067 * accept reading files starting with a TABLES section (#5307) 7068 * support reading 3DFACE and SOLID (#5380) entities 7069 * fix an error when processing clockwise circle arc (#5182) 7070 * avoid building an invalid polygon when edges cannot be reassembled: turn it into a multilinestring 7071 * use CPLAtof() instead of atof() to avoid issues with locales 7072 * fix linear approximation of circular and elliptic arc in HATCH boundaries (#5182) 7073 7074DWG driver: 7075 * add support for reading AcDb3dPolyline (#5260) 7076 * fix linear approximation of circular and elliptic arc in HATCH boundaries (#5182) 7077 7078FileGDB driver: 7079 * implement IgnoreFields API to speed-up a bit the conversion of a sub-set of fields when there's a huge amount of them (e.g. Tiger database). 7080 * when writing <Length> of an attribute, use size in bytes (#5192) 7081 * implement ref counting of the FileGDB SDK API' Geodatabase* object to avoid issues on Linux 64bit with interleaved opening and closing of databases (#4270) 7082 * honour update flag to determine which operations are allowed or not 7083 * add a driver global mutex to protect all calls as the FileGDB API SDK is not thread-safe at all 7084 * add a COLUMN_TYPES layer creation option to override default column types; support reading/writing XML column types 7085 * optimize GetFeatureCount() and GetExtent() when there are filters set 7086 * set the default width for string fields to 65536. 7087 The width can be configured with the FGDB_STRING_WIDTH configuration option 7088 * fix creation and writing of Binary fields; enable reading 7089 * add a CREATE_MULTIPATCH creation option 7090 7091FME driver: 7092 * fix Linux compilation 7093 7094GeoJSON driver: 7095 * recognize alternate formats such as the ones of https://code.google.com/p/election-maps/ 7096 * add read support for TopoJSON 7097 * upgrade internal libjson-c to json-c 0.11 (#4676) 7098 * report integer values that are int64 as strings 7099 * add 3d support to esri geojson reader (#5219) 7100 * be less strict on looking for esri field type tag (#5219) 7101 * fix sometimes incorrect result (significant digit lost...) when using -lco COORDINATE_PRECISION=0 7102 * fix handling of huge coordinates when writing (#5377) 7103 7104GeoRSS driver: 7105 * advertise OLCCreateField capability 7106 7107GFT driver: 7108 * switch http to https for the oauth2 link to improve security 7109 7110GML driver: 7111 * add support for multiple geometry columns (RFC 41) 7112 * add support for reading Finnish National Land Survey Topographic data (MTK GML) 7113 * add support for support Finnish NLS cadastral data and Inspire cadastral data. 7114 * add support for Czech RUIAN VFR format 7115 * add data/gml_registry.xml file to associate feature types with schemas. 7116 * extend .gfs syntax to be able to fetch OGR fields from XML attributes. 7117 * extend .gfs syntax to support multiple geometry columns, and define a geometry property name 7118 * autodiscover all XML attributes as OGR fields when creating .gfs file if GML_ATTRIBUTES_TO_OGR_FIELDS is set to YES (#5418) 7119 * allow the <ElementPath> in .gfs to have several components that give the full XML path 7120 * fix writing of .xsd file to avoid fid/gml_id being written as regular fields (#5142) 7121 * fix writing of global srsName attribute on the global boundedBy.Envelope when all layers have same SRS (#5143) 7122 * support for writing .gml/.xsd with fields of type StringList, RealList, IntegerList and support for parsing such .xsd files 7123 * when writing .xsd for a datasource that has fields of type StringList, RealList or IntegerList, advertise SF-1 profile in the .XSD schema 7124 * recognize xsd:boolean in XSD parsing and map it to String (#5384) 7125 * add STRIP_PREFIX and WRITE_FEATURE_BOUNDED_BY dataset creation option to help minimizing the size of GML files 7126 * don't write top <gml:boundedBy> in GML files with multiple layers of different SRS 7127 * fix segfault when reading a GML file with huge coordinates (#5148) 7128 * avoid opening our own .xsd files as valid datasources (#5149) 7129 * make driver thread-safe with Xerces 7130 * open successfully GML datasources with 0 layers (#249, #5205) 7131 * fix tweaking of DescribeFeatureType requests 7132 * support reading WFS 2.0 GetFeature documents with wfs:FeatureCollection as a wfs:member of the top wfs:FeatureCollection 7133 * fix for crash on certain xlink:href with GML_SKIP_RESOLVE_ELEMS=NONE (#5417) 7134 * GML geometry: fix duplicated points in GML_FACE_HOLE_NEGATIVE=YES mode (TopoSurface) (#5230) 7135 * GML geometry: accept CompositeSurface as a child of surfaceMembers (#5369) 7136 * GML geometry: join multilinestrings to linestrings in rings 7137 * GML geometry: correctly deal with MultiSurface of Surface of PolygonPatch where a PolygonPatch has only interior ring(s) and no exterior ring (#5421) 7138 * GML geometry: accept formulations of 'MULTIPOINT EMPTY, MULTILINESTRING EMPTY, MULTIPOLYGON EMPTY and GEOMETRYCOLLECTION EMPTY that are valid GML 3 (and accepted by PostGIS) 7139 * GML geometry: make use of cs, ts and decimal attributes of (deprecated) gml:coordinates element 7140 * GML geometry: accept XML header and comments 7141 7142GPX driver: 7143 * advertise OLCCreateField capability 7144 7145ILI driver: 7146 * add support for multiple geometry columns (RFC 41) 7147 * use IlisMeta model reader/writer instead of IOM 7148 * add layers for surface and area geometries 7149 7150KML driver: 7151 * output KML that validates the ogckml22.xsd schema by placing <Schema> elements under the <Document> level (#5068) 7152 * in writing mode, avoid defining an extending schema for the name and description fields (related to #5208) 7153 7154LIBKML driver: 7155 * various checks, fixes and improvements related to OGC KML 2.2 Abstract Test Suite 7156 * add support for reading <gx:Track> as a LINESTRING (#5095) 7157 * add support for writing and reading <snippet> 7158 * add support for writing atom:author, atom:link, phonenumber, Region, 7159 ScreenOverlay, 3D model, StyleMap 7160 * add support for reading and generating Camera object 7161 * add layer creation options to generate a LookAt element at layer level 7162 * if UPDATE_TARGETHREF dataset creation option is defined, a NetworkLinkControl/Update document will be created 7163 * add dataset creation options to generate a NetworkLinkControl element 7164 * add dataset and layer creation options LISTSTYLE_ICON_HREF and LISTSTYLE_TYPE 7165 * add support for writing a NetworkLink 7166 * add support for creating PhotoOverlay objects 7167 * add support for creating BalloonStyle elements 7168 * offer LIBKML_USE_SIMPLEFIELD configuration option can be set to NO to use Data element instead of SimpleField 7169 * add layer creation option FOLDER to optionally write layers as Folder instead of Document 7170 * add dataset and layer creation options NAME, VISIBILITY, OPEN, SNIPPET and DESCRIPTION 7171 * workaround bugs in pretty serializers 7172 * when writing a .kmz file, put layers .kml docs into a layers/ subdirectory 7173 * fix mem leaks, and use after free in kml2FeatureDef() (#5240) 7174 * create document with default namespace set to http://www.opengis.net/kml/2.2 7175 * when writing, consider empty strings as unset (useful when converting from CSV) 7176 * don't write empty <Style /> element if OGR_STYLE is empty string 7177 * transform multigeometry with one single component into single geometry 7178 * create libkml/ subdirectory entry in .kmz 7179 7180MITAB driver: 7181 * support reading MIF file with no associated MID file (when MIF file advertises 'Columns 0') (#5141) 7182 7183MSSQLSpatial driver: 7184 * Fix MSSQL to be aware of removed tables (#5071) 7185 * Eliminate the per table server access when identifying the spatial reference (#5072) 7186 * Improve detection of geometry column with MSSQL select layer (#4318) 7187 * Fix for an issue with multicolumn primary keys (#5155) 7188 * Add support for handling non spatial data tables (#5155) 7189 * Fix creation of spatial_ref_sys and geometry_columns tables (#5339) 7190 7191MySQL: 7192 * robustness for huge coordinates in spatial filter 7193 7194NAS driver: 7195 * also accept XML files that have NAS-Operationen_optional.xsd in header 7196 * make driver thread-safe with Xerces 7197 * warn when geometry cannot be saved 7198 7199OCI driver: 7200 * fix make plugin option 7201 7202ODBC driver: 7203 7204OSM driver: 7205 * support relations with more than 2000 members in a OSM XML file (#5055) 7206 * make the driver work with PBF files produced by osmconvert. 7207 * osmconf.ini: report the waterway attribute for the lines layer (#5056) 7208 * add an option in osmconf.ini to enable creating a 'all_tags' field, combining both fields specifically identified, and other tags 7209 * always use quoting of key/values in other_tags field (#5096) 7210 * use alternative implementation of FindNode() that is a bit more efficient when process is CPU-bound 7211 * fix issue with attribute filtering 7212 * avoid GetNextFeature() to be blocked in certain conditions in non-interleaved mode (#5404) 7213 7214PG driver: 7215 * upgrade to support RFC 41 in read/write (multiple geometry fields) 7216 * use ST_Estimated_Extent() on table layers if GetExtent() is called with force = 0 (#5427) 7217 * add a OGR_TRUNCATE configuration option (#5091) 7218 * let postgres name the constraints to avoid long name truncation resulting in conflicts (#5125) 7219 * map PG 'numeric' to OFTReal instead of OFTInteger 7220 * retrieve SRID from geometry value, if not found in geometry_columns (#5131) 7221 * fix ResolveSRID() when the current user has no select rights on geometry_columns table (#5131) 7222 * fix retrieval of SRID on a table without SRID constraint, and when the datasource is opened with ' tables=fake' (#5131) 7223 * robustness for huge coordinates in spatial filter 7224 * fix delete layer bug on PG 2.0 (#5349) 7225 * fix to be able to detect version of EntrepriseDB (#5375) 7226 * Fix UTF-8 encoded string length 7227 7228PGDump driver: 7229 * upgrade to support RFC 41 (multiple geometry fields) 7230 * fix error when inserting a string that has backslash in it with PostgreSQL >= 9.1 (#5160) 7231 7232REC driver: 7233 * fix runtime compatibility for Windows 7234 7235Shapefile driver: 7236 * fix buffer overflow when creating a field of type Integer with a big width (#5135) 7237 * delete temporary .cpg file earlier in REPACK 7238 * fix leak of file descriptor in error code paths 7239 * speed optimizations when reading geometries from .shp (#5272) 7240 * add a 2GB_LIMIT=YES layer creation option (and SHAPE_2GB_LIMIT configuration option) 7241 * .sbn support: increase allowed max depth from 15 to 24 (#5383) 7242 7243SOSI driver: 7244 * fix memory leaks, and crashes 7245 * advertise OLCCreateField capability 7246 7247S57 driver: 7248 * make the driver thread-safe 7249 * remove use of MAX_CLASSES in favor of dynamic sizing (#5227) 7250 * fix GetFeature() on DSID layer 7251 7252SQLite/Spatialite driver: 7253 * Make SQLite SQL dialect compatible with multiple geometry fields (note: however, multiple geom fields is not yet supported by OGR SQLite table layers) 7254 * implement SetAttributeFilter() on SQL result layers, to directly inject it as a WHERE clause when possible 7255 * add the OGR_SQLITE_PRAGMA configuration option 7256 * Spatialite: correctly set proj4text field of spatial_ref_sys when inserting a new SRS in the spatial_ref_sys table (#5174) 7257 * Spatialite: fix insertion in spatial_ref_sys to avoid issues with non-numeric authority codes (auth_srid) 7258 * Spatialite: make creation of database much faster with spatialite 4.1 by using InitSpatialMetaData(1) (#5270) 7259 * Spatialite: use thread-safe initialization for spatialite >= 4.1.2 7260 * avoid Spatialite views to emit (hidden) errors that cause troubles to MapServer OGR input driver (#5060) 7261 * attempt to make VirtualOGR (and thus sqlite dialect) work even with a libsqlite3 compiled with SQLITE_OMIT_LOAD_EXTENSION (on Unix only) 7262 * add warning when calling CreateField() with a field name that is 'ROWID' since it can cause corrupted spatial index 7263 * serialize StringList as non-truncated strings 7264 * detection of DateTime/Date/Time column type on the result of a max() / min() function 7265 * ensure fields of type DateTime/Date/Time are properly recognized if the table is empty (#5426) 7266 7267VFK driver: 7268 * fix memory leak 7269 * change VFK header check (first line starts with '&H') 7270 * implement OGR_VFK_DB_DELETE configuration option 7271 * read all data blocks by default 7272 * fix GetFeatureCount() 7273 * don't use existing internal db when it's older then original vfk file 7274 7275VRT driver: 7276 * add support for multiple geometry columns in OGRVRTLayer, OGRVRTUnionLayer and OGRVRTWarpedLayer (RFC 41) 7277 * add validation of OGR VRT document against the schema (if libXML2 available); 7278 can be disabled by setting GDAL_XML_VALIDATION configuration option to NO 7279 * make relativeToVRT=1 work with CSV:filename or GPSBABEL:driver:filename (#5419) 7280 7281WFS driver: 7282 * WFS 2.0: be a good citizen and send TYPENAMES (with a S) for GetFeature request (but still TYPENAME for DescribeFeatureType) 7283 * accept TYPENAME(S) in URL with characters escaped by '%' (#5354) 7284 7285XLS driver: 7286 * don't use sheetId attribute from workbook.xml to link a sheet name to its filename. The first sheet is sheet1.xml, etc... 7287 7288XPlane driver: 7289 * accept V1000 APT files 7290 7291== SWIG Language Bindings == 7292 7293All bindings: 7294 * include constraints.i in gdal.i so that NONNULL constraints are really applied 7295 * add Feature.SetFieldBinaryFromHexString() 7296 * add SpatialReference.EPSGTreatsAsNorthingEasting (#5385) 7297 * map OGR_L_GetStyleTable(), OGR_L_SetStyleTable(), OGR_DS_GetStyleTable(), OGR_DS_SetStyleTable() 7298 * Add OGR_STBL_AddStyle() and map all OGR_STBL_ C methods to SWIG 7299 7300CSharp bindings: 7301 * Fix handling UTF8 strings in GDAL C# (#4971) 7302 * Add C# typemaps for RFC-39 functions (#5264) 7303 * Fix typo in OGRLayerAlg.cs (#5264) 7304 * Add missing typemaps for C# (#5265) 7305 7306Java bindings: 7307 * run 'make ANDROID=yes' in swig/java to generate SWIG bindings that compile for Android (#5107) 7308 * fix linking issue that is encountered in non libtool builds with g++ 4.6 7309 * add multireadtest utility 7310 * respect JAVA_HOME set via configure 7311 7312Perl bindings: 7313 * ColorTable method of ColorTable class was documented but ColorEntries was 7314 implemented. Implemented but deprecated ColorEntries. 7315 7316Python bindings: 7317 * fix ref-counting of callable passed to gdal.PushErrorHandler() that could cause segfaults (#5186) 7318 * make gdal_array.NumericTypeCodeToGDALTypeCode accept numpy dtype arguments (#5223) 7319 * add default xoff,yoff,xsize,ysize values to ReadRaster calls 7320 * make ogr.CreateGeometryFromWkt() and SpatialReference.ImportFromWkt() properly validate their argument (#5302) 7321 7322= GDAL/OGR 1.10.0 Release Notes (r23656 to r25905) = 7323 7324== In a nutshell... == 7325 7326 * New GDAL drivers: 7327 - ARG: read/write support for ARG datasets (#4591) 7328 - CTable2: read/write support for CTable2 datum grid shift format 7329 - DDS: write-only support for DirectDraw Surface format (#5017) 7330 - IRIS: read support for products generated by the IRIS weather radar software (#4854) 7331 - MAP: read OziExplorer .map files (#3380) 7332 - MBTiles: read-only support for MBTiles rasters (needs libsqlite3) 7333 * New OGR drivers: 7334 - ElasticSearch: write-only support to write into ElasticSearch databases (needs libcurl) 7335 - ODS : read/write support for OpenOffice .ods (Open Document Spreadsheets) (needs libexpat) 7336 - OSM : read-only support for .osm / .pbf OpenStreetMap files 7337 - PDF: read/write support for vector/structured PDF files 7338 - XLSX: read/write support for MS Excel 2007 and later Open Office XML .xlsx spreadsheets (needs libexpat) 7339 * RFC 39: OGR Layer algebra methods : http://trac.osgeo.org/gdal/wiki/rfc39_ogr_layer_algebra 7340 * Add a SQL SQLite dialect : http://gdal.org/ogr/ogr_sql_sqlite.html 7341 * Make GDAL loadable as a SQLite3 extension (named VirtualOGR) (#4782) 7342 * /vsicurl_streaming/: new virtual file system handler designed to read in streaming mode dynamically generated files 7343 * GDAL API_PROXY mechanism to run GDAL drivers in a separate process: http://gdal.org/gdal_api_proxy.html 7344 * Significantly improved drivers : PDF, SQLite, JP2OpenJPEG 7345 * Add a geocoding client : http://gdal.org/ogr/ogr__geocoding_8h.html 7346 * Upgrade to EPSG 8.0 database 7347 7348== New installed files == 7349 7350 * data/ozi_datum.csv 7351 * data/ozi_ellips.csv 7352 * data/osmconf.ini 7353 * include/cpl_progress.h 7354 * include/cpl_spawn.h 7355 * bin/gdalserver[.exe] 7356 7357== Backward compatibility issues == 7358 7359Due to the 2-digit number '10' in GDAL 1.10, the GDAL_VERSION_NUM macro has been changed. 7360The new advised way of testing the GDAL version number (for GDAL 1.10 or later) at compilation time is : 7361 7362#ifdef GDAL_COMPUTE_VERSION /* only available in GDAL 1.10 or later */ 7363#if GDAL_VERSION_NUM >= GDAL_COMPUTE_VERSION(1,10,0) 7364/// 7365#endif 7366#endif 7367 7368Testing of previous versions is of course unchanged. 7369 7370== GDAL/OGR 1.10.0 - General Changes == 7371 7372Build(Unix): 7373 * New optional dependencies : libpcre (for regular expressions support in SQLite), libxml2 (validation of GML files) 7374 * --with-python: make it work with python3, and also accept path to python binary as argument of --with-python (#4725) 7375 * Use nc-config to detect netcdf compilation and linking parameters (#4424) 7376 * Add frmts/vrt to CONFIG_CFLAGS for development version of gdal-config (needed for postgis 2.0 compilation) 7377 * Fix compilation failure with iconv on FreeBSD (#4525) 7378 * Make FileGDBAPI detection work with FileGDBAPI v1.1 and v1.2 (#4570) 7379 * Fix build on Gentoo with its custom zlib 1.2.6 with the OF macro removed 7380 * Mark man target as phony (#4629) 7381 * Add guess for the directory where to find openjdk on Ubuntu 12.04 (#4643) 7382 * Look for geotiff headers in /usr/include/libgeotiff too (#4706) 7383 * For install target, create gdalplugins subdirectory in $(DESTDIR)$(INST_LIB)/ (Unix, except MacOSX) 7384 * Better detection of OpenCL headers and library (#4665) 7385 * Changed libdap test to use dap-config to detect version when possible 7386 7387Build(Windows): 7388 * (Preliminary) support to build INGRES 7389 * Make CPLGetErrorHandlerUserData() exported 7390 * Make OGDI include path overridable (to match OSGeo4W's default location) 7391 * Build and install plugins 7392 7393== GDAL 1.10.0 - Overview of Changes == 7394 7395Port: 7396 * CPL Thread API: add condition API, modeled on POSIX pthread_cond_ API 7397 * Add CPLGetNumCPUs() 7398 * Deserialize various forms of textual representation for positive/negative infinity 7399 * Add routine to validate a XML file against its XSD schema (needs libxml2); 'optimize' it for GML files 7400 * CPLRecodeStub(): for Windows, provide an implementation of UTF8 <--> CPxxx conversions using Windows API 7401 * Make VSIFileManager::Get() thread-safe 7402 * Fix thread-safety of CPLOpenShared() (#4848) 7403 * Add CPLZLibDeflate() and CPLZLibInflate() 7404 * Add API for OAuth2 authentication protocol. 7405 * Curl: allows setting the CURLOPT_PROXYAUTH setting through GDAL_PROXY_AUTH=BASIC/NTLM/DIGEST/ANY, 7406 allow setting CURLOPT_HTTPAUTH through GDAL_HTTP_AUTH=BASIC/NTLM/GSSNEGOTIATE/ANY (#4998) 7407 * /vsicurl/ and /vsicurl_streaming/ : make it possible to cache the files in RAM with VSI_CACHE = TRUE 7408 * /vsizip/: fix handling of Eof() that could cause missed last feature(s) of zipped shapefiles (#4748) 7409 7410Core: 7411 * Add a DMD_SUBDATASETS driver metadata, and advertise it in relevant drivers (#4902) 7412 * Fix statistics computation when nodata value is +/- infinity (#4506) 7413 * GDALNoDataMaskBand: implement IRasterIO() for an optimization in common use case (#4488) 7414 * GDALVersionInfo(): add BUILD_INFO version string 7415 * GMLJP2: Fix bad interpretation when Lat/Long (#4657) 7416 * Set nodata value when creating external overviews so that AVERAGE algorithm works as expected (#4679) 7417 * EXIFExtractMetadata() moved to gcore/gdalexif.cpp to make it usable for other drivers 7418 * Fix infinite recursion in GDALOpen() (#4835) 7419 * GDALRasterBand::IRasterIO() : optimize downsampling/upsampling code path 7420 * C API: make GDALSetDefaultRAT() accept a NULL RAT. All drivers are ready for that now. 7421 * GDALRasterBand::GetDefaultHistogram(): change how min and max bounds are computed in the non GDT_Byte case 7422 * GDALDataset::BlockBasedFlushCache(): fix crash when band has sub-blocking 7423 7424Algorithms: 7425 * GSOC Image Correlator work (preliminary state) 7426 * Warp: divide Lanczos resampling time by at least a factor of 4. 7427 * Warp: add NUM_THREADS warping option to set the number of threads to use to parallelize the computation part of the warping 7428 * Warp: do not stop collecting chunks to operate on just because some subchunks fail (#4795) 7429 * Warp: add mode and average resampling methods (#5049) 7430 * OpenCL warper: handle errors in set_supported_formats(), fix memory leaks in error code paths, add detection of Intel OpenCL (by the way, Intel OpenCL seems to work properly only with a Float32 working data type) 7431 * OpenCL warper: fix segmentation fault related to source/destination validity masks (#4840) 7432 * Geoloc: do not trust pabSuccess in geolocation transformer (#4794) 7433 * Geoloc: add bilinear interpolation of coordinates from backmap (#4907) 7434 * Geoloc: add GDALTransformGeolocations() and SWIG binding 7435 * Add nearest neighbor and cubic interpolation of DEM in GDALRPCTransform (#3634). 7436 User can set RPC_DEMINTERPOLATION to near, bilinear or cubic to interpolate of input DEM file which set in RPC_DEM. The default interpolation is bilinear. 7437 * gdal_rasterize: fix problem identifying some connected-8 polygons (#4647) 7438 * gdal_grid: speed-up dramatically nearest neighbour search (with radius1 == radius2) by using a search quad tree 7439 * gdal_grid: parallelize processing by specifying the GDAL_NUM_THREADS configuration option (default to ALL_CPUS) 7440 * gdal_grid: for 'invdist' algorithm with default parameters, use SSE optimized version if available (at compile and runtime). Can be disabled with GDAL_USE_SSE=NO 7441 7442Utilities: 7443 * General: make usage message more self-explanatory in case of bad option (#4973) 7444 * gdalmove.py: New application for "warping" an image by just updating its SRS and geotransform. 7445 * gdal_edit.py: promote it as an 'official' tool (#4963) 7446 * gdalwarp: add "-r average" and "-r mode" resampling methods (#5049) 7447 * gdalwarp: copy metadata and band information from first source dataset and detect for conflicting values, new options -nomd and -cvmd (#3898) 7448 * gdalwarp: optimization when (-tr and -te) or (-ts and -te) are specified (#4804) 7449 * gdalwarp: assign color interpretation of source bands to target dataset, in the case of target VRT (#4462) 7450 * gdalwarp: add -setci option to set the color interpretation of the bands of the target dataset from the source dataset 7451 * gdal_translate: accept -srcwin or -projwin values that fall partially or completely outside the source raster extent. Introduce -epo and -eco options to error out in those situations. 7452 * gdallocationinfo: add a -overview overview_level option to specify an overview level, instead of the base band 7453 * gdalsrsinfo: try to open with GDAL and OGR even if argument is not a file (#4493) 7454 * gdaldem: add a -combined option to the hillshade mode to compute combined hillshading (#4753) 7455 * gdaldem: fix color-relief output with driver that has only CreateCopy() capability, and when the source block dimensions are not multiple of the raster dimension (#4764) 7456 * gdaltindex: add -t_srs option, to transform all input source bounds to same SRS (#4773) 7457 * gdalbuildvrt: add -a_srs option 7458 * gdalbuildvrt: add -sd option to select subdataset by its number 7459 * gdalbuildvrt: add a -b flag (#4992) 7460 * gdalgrid: increase working buffer of gdal_grid binary to 16 MB 7461 * gdal_retile.py: Don't pass creation options to the MEM driver used for generating temporary datasets (#4532) 7462 * gdal_edit.py: make -a_srs option work properly by expanding the user input to WKT; support -a_srs '' 7463 * gdal_edit.py: add support for -gcp option 7464 * gdal2tiles.py: make KML output conformant with KML 2.2 (#4536) 7465 * gdal2tiles.py: OL 2.12 support (#4742) 7466 * gdal_polygonize.py: add -8 option to select 8 connectedness (#4655) 7467 * gdal_merge.py, gdalident.py: remove using of glob() API 7468 * gdal2xyz.py: fix output of -csv mode with multi-band raster 7469 * gdal_contour / gdal_rasterize / gdal_translate: accept numeric values in scientific format. 7470 * crs2crs2grid.py: New sample Python script 7471 * gdalcompare.py: New sample Python scrip to compare GDAL datasets 7472 * gdal_calc.py: add --co creation option flag (#4964) 7473 * gdaladdo: add a -b flag 7474 * pct2rgb.py: deal with color tables with more than 256 entries (#4905) 7475 7476Multi driver changes: 7477 * Add support for reading .j2w, .jp2w and .wld files for JP2ECW, JP2MrSID, JP2OPENJPEG and JPEG2000 drivers (#4651) 7478 7479AAIGrid: 7480 * Change float format string for AAIGrid to prevent pointless padding/decimals (#3732) 7481 7482ACE2 driver: 7483 * Fix typo that prevented dataset to be opened with explicit /vsigzip/ (#4460) 7484 7485ADRG driver: 7486 * Various fixes when opening ill-formed datasets. 7487 7488BAG driver: 7489 * Fix serious problems with tiled images, particularly when not multiples of tile size (#4548) 7490 * Added capture of dateTime attribute 7491 * Support WKT (with Esri style VERTCS) spatial reference 7492 * Allow WGS84 spatial reference 7493 * Include compression method in metadata. 7494 7495BT driver: 7496 * Fixes for huge files (>2GB) support (#4765) 7497 7498CEOS2 driver: 7499 * Add various radarsat-1 related metadata fields (#4996) 7500 7501DIMAP driver: 7502 * Check signature in METADATA.DIM, not just file existence 7503 * Fixed DIMAP2 driver to get the proper absolute path in a specific case 7504 7505DTED driver: 7506 * Write the updated value of the partial cell indicator to the file (#4687) 7507 * Honour 'Longitude count' field of Data Record to deal properly with files with missing columns at the left and/or right of the file (#4711) 7508 7509ECW driver: 7510 * Add support for ECW SDK 5.0 7511 * Improve picking performance on large datasets (#4790) 7512 * Use ECW SDK to do super-sampling for SDK >= 4.X 7513 * Expose 256x256 block dimension instead of scanline 7514 * Workaround a ECW SDK 3.3 bug, when doing a RasterIO() with the total number of bands, but not in the 1,2,..n order (#4234) 7515 * Add heuristics to detect successive band reading pattern (such as done by QGIS). Beneficial for ECWP 7516 7517ENVI driver: 7518 * Add support for writing RPCs and GCPs 7519 * Add ability to access all ENVI header fields to the ENVI reader (#4735) 7520 * Write in the ENVI header metadata found in the ENVI metadata domain (#4957) 7521 * Fix reading of .sta file on 64bit Linux 7522 * Assume BSQ interleaving when 'interleave' keyword missing or unknown 7523 * Fix category names writing 7524 * Remove 'envi fft result' from the blacklist 7525 * Report wavelength and wavelength_units as band metadata (#3682) 7526 7527ENVISAT driver: 7528 * Ported to VSI*L 7529 7530GeoRaster driver: 7531 * Add spatialExtent and extentSRID create-options (#4529) 7532 * Fix JPEG quality not updated on metadata (#4552) 7533 * Search for RDT as regular table 7534 * Add support for RPC (#4038) 7535 7536GIF driver: 7537 * Add support for giflib 4.2.0 (#4675) and giflib 5.0 7538 7539GMT driver: 7540 * Make GMT driver thread-safe by adding a global mutex (since the netcdf library isn't thread-safe) 7541 7542GTiff driver: 7543 * Internal libtiff and libgeotiff refreshed from upstream 7544 * Use EXTRASAMPLE_UNASSALPHA by default (behavior change w.r.t. previous GDAL versions) (#4733) 7545 * Add support for reading GeoEye *.pvl metadata files (#4465) 7546 * Lossless CreateCopy'ing() from a JPEG dataset 7547 * Read EXIF metadata in the EXIF metadata domain 7548 * Ensure that rowsperstrip is never larger than ysize (#4468) 7549 * Fix writing of RGBA pixel-interleaved JPEG-compressed TIFF (#4732) 7550 * Set color interpretation to GCI_PaletteIndex after calling SetColorTable() (#4547) 7551 * Conversion for 8-bit unpacked CMYK (PHOTOMETRIC_SEPARATED) to RGBA. 7552 * Maximize EPSG compatibility where PCS is defined (#4607) 7553 * Ensure that unusual units with an authority node are saved nicely (like EPSG:2066) 7554 * Add CT_HotineObliqueMercatorAzimuthCenter support 7555 * Fix PolarStereographic / 9829 support 7556 * Make sure that GetMetadata() initializes the value of GDALMD_AREA_OR_POINT item, if not already done (#4691) 7557 * When building overviews, if the image has already an internal mask, then build internal overviews for the mask implicitly 7558 * Better handling of SetMetadata(a_string) (#4816) 7559 * Use GTIFAllocDefn/GTIFFreeDefn with libgeotiff 1.4.1+ 7560 * Add support for GEO_NORMALIZE_DISABLE_TOWGS84 (#3309) 7561 * Improve handling of description and offset/scale without reverting to .aux.xml 7562 * Workaround defects in libtiff 3.X when generating several overview levels at the same time 7563 * Special case where the EGM96 Vertical Datum code is misused as a Vertical CS code (#4922) 7564 * Support unsetting geotiff tags when calling SetGeoTransform([0,1,0,0,0,1]) and SetProjection('') 7565 * Rework how CSV files are searched w.r.t libgeotiff (#4994) 7566 7567GRIB driver: 7568 * Report nodata value (#4433) 7569 * Fix fgetc signed/unsigned problem for Grib format VSI*L reader (#4603) 7570 * Avoid caching more than 100 MB in case of dataset with many bands (#4682) 7571 * uses meshLat as the latitude_of_origin parameter of LCC projection (#4807) 7572 7573GSAG driver: 7574 * Fix hangs when reading truncated dataset (#4889) 7575 7576GS7BG driver: 7577 * Implement Create() and CreateCopy() (#4707) 7578 7579GTX driver: 7580 * Support reading old GTX files where datatype was Float64 7581 7582GXF driver: 7583 * Avoid having big buffer on stack (#4852) 7584 * Avoid locale floating point parsing problems (similar to r24367). 7585 * Implement continued lines mechanism (#4873) 7586 * Fix various vulnerabilities / DoS 7587 7588HDF4 driver: 7589 * Add ability to increase the maximum number of opened HDF4 files 7590 * Unix build: avoid issue with system hdfeos library 7591 * Ensure we do not try to use the grid tile api for non-tilesized chunks (#4672) 7592 * Preserve more Float32 attribute precision 7593 * Import HDF USGS GCTP angular parameters as radians 7594 * Restore conventional add_offset interpretation (#4891) 7595 * Be more careful about missing dimensions (#4900) 7596 * Make HDF4 driver thread-safe by adding a global mutex (since the HDF4 library isn't thread-safe) 7597 * Search for "coremetadata" attribute name instead of "coremetadata." 7598 7599HDF5 driver: 7600 * Add support for COSMO-SkyMed metadata (#4160) 7601 7602HFA driver: 7603 * Added BASEDATA support for EPT_u1 (#4537) 7604 * Fix crash on dataset closing when .ige file header is corrupted (#4596) 7605 * .aux overviews: avoid destroying existing overviews when asking twice in a row to build overviews for exactly the same overview levels (#4831) 7606 * Fix sizing of RAT string column maxwidth to include null char (#4867) 7607 * Fix segfault in HFAAuxBuildOverviews with selected bands (#4976) 7608 7609INGR driver: 7610 * do not reduce tile size to image size (#4856) 7611 * Fix value inversion when reading type 9 (bitonal RLE) untiled files (#5030) 7612 * fix slowness and incorrect random reading with RLE datasets (#4965) 7613 * Enable reading bitonal rle files wider than 22784 (0x5900) pixels (#5030) 7614 * Add RESOLUTION metadata/option to read/write DPI (#5030) 7615 * Add write support for .rle (bitonal rle files) to test the above (#5030) 7616 7617ISIS3 driver: 7618 * Ensure scaleFactor defaults to 1 (#4499) 7619 7620JP2ECW driver: 7621 * Workaround conflict between ECW SDK deinitialization and GDAL deinitialization, as shown by gdaljp2ecw tests of imageio-ext (#5024) 7622 * Promote 1bit alpha band of a RGBA dataset to 8 bits to improve general user experience (can be turned off by setting GDAL_ECW_PROMOTE_1BIT_ALPHA_AS_8BIT to NO) 7623 7624JP2KAK driver: 7625 * Capture Corder in metadata for user convenience 7626 * Fix writing of resolution box where the xresolution value was written instead of the yresolution one 7627 * Skip bands that have different data type when reading multiple bands in IReadBlock() (#4638) 7628 * Default to less than 250000 lines per tile (#5034) 7629 7630JP2OpenJPEG driver: 7631 * Require OpenJPEG 2.0.0 now 7632 * Use several decoding threads when processing multi-tiles IRasterIO() requests 7633 * Add support for writing georeferencing 7634 * Read and write JP2 Res box and translate it from/to TIFFTAG_XRESOLUTION, TIFFTAG_YRESOLUTION and TIFFTAG_RESOLUTIONUNIT metadata items 7635 * Promote 1bit alpha band of a RGBA dataset to 8 bits to improve general user experience (can be turned off by setting JP2OPENJPEG_PROMOTE_1BIT_ALPHA_AS_8BIT to NO) 7636 7637JPEG driver: 7638 * When there are no external overviews built, take advantage of the nature of JPEG compression to expose overviews of level 2, 4 and 8 7639 * Don't return junk content when requesting xml:XMP but no XMP metadata is present (#4593) 7640 * add a INTERNAL_MASK creation option to be able to disable appending the ZLib mask if not needed 7641 * add support for creating a JPEG loss-less file starting with the recent IJG libjpeg v9 7642 (with -co ARITHMETIC=yes -co BLOCK=1 -co COLOR_TRANSFORM=RGB1) 7643 7644JPEG2000 driver: 7645 * do not accept by default source bands of type different from Byte, Int16 or UInt16 since they seem to cause crashes in libjasper. 7646 This can be overridden, at your own risk, by setting JPEG2000_FORCE_CREATION configuration option to YES (#5002) 7647 7648KMLSuperOverlay driver: 7649 * Add read support 7650 * Remove bogus code that limited generation to one zoom level (#4527) 7651 * Set minLodPixels to 1 for zoom level 0 (#4721) 7652 * Fix bad placing of tiles with raster of the extent of a country or more (#4834) 7653 * Add FIX_ANTIMERIDIAN creation option (#4528) 7654 7655L1B driver: 7656 * Add support for NOAA19, METOP-B and guess for METOP-C (#2352) 7657 7658MG4Lidar driver: 7659 * Add UTF-8 filename support under Windows (#4612) 7660 7661NetCDF driver: 7662 * Fix for gdal_rasterize (#4432) 7663 * Enable PAM for band histogram and statistics (#4244) 7664 * Add longitude_of_prime_meridian value to PRIMEM 7665 * Fix SetNoDataValue() - do not update when already set to new value (#4484) 7666 * Convert longitude values in [180,360] interval to [-180,180] (#4512) - override with config option GDAL_NETCDF_CENTERLONG_180=0 7667 * Support 2D GEOLOCATION arrays when a projected variable has coordinates attribute and supporting lon/at arrays (#4513) 7668 * Ignore coordinate and bounds variables (CF sections 5.2, 5.6 and 7.1) as raster bands, but expose them as subdatasets - this allows opening files with projected SRS (or dimension bounds) directly, without specifying the variable as a subdataset 7669 * Better support for Gaussian grids - store original latitude values in special Y_VALUES geolocation metadata item and use it for netcdf export (#4514) 7670 * Write multi-dimensional variables to a single variable (not one for each unrolled band) in CreateCopy() (#2581) 7671 * Fix handling of km units in netcdf driver and importFromProj4() (#4769) 7672 * Fix detection of 1 and 2 pixel width/height netcdf datasets (#4874) 7673 * Fix subdataset data type info (#4932) 7674 * Make netCDF driver thread-safe by adding a global mutex (since the netcdf library isn't thread-safe) 7675 7676NITF driver: 7677 * nitf_spec.xml: add definition of ACFTB and AIMIDB TREs 7678 * Don't escape DESDATA for sizes >10mb (#4803) 7679 * Fix NITF creation when both BLOCKA and TRE are passed in (#4958) 7680 * Allow reading JPEG-in-NITF where JPEG stream dimensions are larger than NITF dimensions (#5001) 7681 * Support for cases with 2 LUTs 7682 7683Northwood driver: 7684 * Fixes for huge files (>2GB) support (#4565, #4645) 7685 * NWT_GRD: don't advertise scale/offset as they are transparently applied in IReadBlock() (#5839). 7686 7687PDF driver: 7688 * Add CreateCopy() support 7689 * Add update support for georeferencing and metadata 7690 * Add support for selective layer rendering (only with poppler backend) 7691 * Add GDAL_PDF_BANDS = 3 or 4 config option to select RGB or RGBA rendering; add GDAL_PDF_RENDERING_OPTIONS config option to enable selective feature rendering by combining VECTOR, BITMAP and TEXT values 7692 * Fix parsing of some georeferencing (r24022) 7693 * Recognized ISO georeferencing set at the image level (and not at the page level); expose such images as subdatasets (#4695) 7694 * Support Poppler 0.20 (and for current Poppler development version 0.23/0.24) 7695 * UTF-16 support 7696 * Report registration points as GCPs (OGC Best Practice) 7697 * Allow building driver with both Poppler and Podofo (testing purposes mostly) 7698 * Fix crashes on some PDF files with poppler >= 0.17.0 (#4520) 7699 * Improve rounding of raster dimensions (#4775) 7700 * With podofo, avoid launching the 'pdftoppm' process in a visible console on Windows (#4864) 7701 * Select neatline whose description is 'Map Layers' when it is found, to keep the best neatline for USGS PDF Topo 7702 and add GDAL_PDF_NEATLINE config. option to override that default value. 7703 * Improve detection of DPI for USGS Topo PDF to get the maximum raster quality (will increase 7704 reported dataset height and width) 7705 * Extract USGS Topo PDF embedded metadata in the EMBEDDED_METADATA domain 7706 7707PNG driver: 7708 * Internal libpng upgraded to 1.2.50 7709 7710PostgisRaster driver: 7711 * Implement CreateCopy and Delete (#4530) 7712 * Supports reading of tiled raster with irregular blocking and irregular pixel size 7713 * Cache postgres db connection. 7714 * Use PG environment variables as fallback when settings are not provided in the connection string. (#4533). 7715 * Do not report nodata value when there is none (#4414) 7716 * Removed dependency on the 'rid' column. 7717 * Fix to make SQL queries with un-rounded floating point string representations. (#4736) 7718 * Fix overview support 7719 7720Rasterlite driver: 7721 * Support all resampling methods for internal overviews (#4740) 7722 * Fix overview support with multi-table datasets (#4568, #4737) 7723 * Add RASTERLITE_OVR_OPTIONS configuration option to specify options for the tiles of the internal overviews 7724 7725RMF driver: 7726 * Fix incorrect zone number detection for Transverse Mercator (#4766) 7727 7728RPFTOC driver: 7729 * Relax SanityCheckOK() to avoid rejecting valid CIB datasets (#4791) 7730 * Avoid selecting a color table that is full black 7731 * Add missing NITF series code 'TF' for 'TFC' (and fix typo in some other long descriptions) (#4776) 7732 7733RS2 driver: 7734 * added various metadata fields (#4997) 7735 7736SDTS driver: 7737 * Various fixes when opening ill-formed datasets. 7738 7739SRP driver: 7740 * Various fixes when opening ill-formed datasets. 7741 7742TIL driver: 7743 * Fix TIL driver using overview (#3482) 7744 * Add set projection and geotransformation for TILDataset 7745 7746TSX driver: 7747 * Fix crashes in Identify() with certain filenames, and the file is empty or doesn't exist (#4622) 7748 7749VRT driver: 7750 * VRTWarpedDataset: add INIT_DEST=0 if no INIT_DEST specified (#4571) 7751 * VRTFilteredSource: fix RasterIO() to take into account source and dest windows (#4616) 7752 * avoid crashes due to int overflow when dealing with requests filling a buffer larger than 2 GB (#4815) 7753 * VRTSourcedRasterBand: override ComputeRasterMinMax(), ComputeStatistics() and GetHistogram() to make them run on sources, only when there's one VRTSimpleSource covering the whole VRTSourcedRasterBand 7754 * solve issue when the VRT is a symlink and that the sources filenames are RelativeToVRT (#4999) 7755 * Fix relariveToVRT option in VRTRawRasterBand (#5033) 7756 7757WCS driver: 7758 * Support version 1.1.2 7759 7760WebP driver: 7761 * Allow reading/writing alpha channel (libwebp >= 0.1.4) 7762 * Add support for reading XMP metadata in the xml:XMP metadata domain 7763 7764WMS driver: 7765 * Implement GetMetadataItem(Pixel_iCol_iLine, LocationInfo) to retrieve pixel attributes 7766 * Retrieve nodata, min and max values, defined per band or per dataset in the config file (#4613) 7767 * Add GetColorTable(), used by the TiledWMS mini driver (#4613) 7768 * Update TiledWMS mini-driver to support new variable substitution mechanism, min/max/nodata settings, color table support (#4613) 7769 * Add a <UserPwd> element in the XML service description file 7770 7771XYZ driver: 7772 * avoid rescanning output file at end of CreateCopy() 7773 7774== OGR 1.10.0 - Overview of Changes == 7775 7776Core: 7777 * Add OGRLayerDecorator class (decorator base class for OGRLayer), 7778 * Add OGRWarpedLayer class (on-the-fly reprojection of a base layer) 7779 * Add OGRUnionLayer class (on-the-fly concatenation of several base layers) 7780 * Add OGRFieldDefn::IsSame() and OGRFeatureDefn::IsSame() 7781 * Add OGRAbstractProxiedLayer, OGRProxiedLayer and OGRLayerPool classes 7782 * OGRGeometry: set SRS of geometries created via GEOS functions from the source geometry (idem for geometries returned by OGR_G_ForceXXXX() methods) (#4572) 7783 * OGRFeature: Add OGR_SETFIELD_NUMERIC_WARNING option to issue a warning when not fully 7784 numeric values are assigned to numeric fields. If the field type is Integer, 7785 then also warn if the long value doesn't fit on a int. 7786 * Add OGR_G_PointOnSurface() and add it to SWIG bindings 7787 * Add OGR_G_ForceToLineString / OGRGeometryFactory::forceToLineString to join 7788 connected segments in line strings. 7789 * Better implementation of getDimension() for OGRMultiPoint, OGRMultiLineString, OGRMultiPolygon and OGRGeometryCollection 7790 * Fix incorrect rounding in OGRFormatDouble that affected geometry WKT output (#4614) 7791 * OGRSQL: support UNION ALL of several SELECTs 7792 * OGRSQL: defer ORDER BY evaluation until necessary, so that a spatial filter can be taken into account after layer creation 7793 * OGRSQL: allow using indexes when OR or AND expressions are found in the WHERE clause 7794 * OGRSQL: fix incorrect result with more than 2 JOINs and SELECT with expressions with field names (#4521) 7795 * OGRSQL: fix 'SELECT MAX(OGR_GEOM_AREA) FROM XXXX' (#4633) 7796 * OGRSQL: fix invalid conversion from float to integer (#4634) 7797 * OGRSQL: fix behavior of binary operations when one operand is a NULL value 7798 * OGRDataSource::CopyLayer(): take into account field renaming by output driver (e.g. Shapefile driver that might truncated field names) (#4667) 7799 * OGRLayer::FilterGeometry() : speed-up improvement in some cases and use GEOSPreparedIntersects() when available (r23953, r25268) 7800 * OGRLayer::SetNextByIndex(): return OGRERR_FAILURE if index < 0 7801 * OGRLineString::setPoint( int iPoint, OGRPoint * poPoint ) : avoid promoting the line to 25D if the point is only 2D (#4688) 7802 * OGRGeometry::Centroid(): make it work properly on POINT EMPTY with latest SVN geos version 7803 * Add reversePoints() method on linestring 7804 7805OGRSpatialReference: 7806 * Add support for OGC URLs (#4752) 7807 * add dumpReadable() method on OGRSpatialReference 7808 * Differentiation between Hotine Oblique Mercator (aka Variant A) and Oblique Mercator (aka Variant B) (#104, #2745) 7809 * EPSG: Map methods 1028 and 1029 to normal equidistant cylindrical (#4589) 7810 * EPSG: add support for EPSG:5514 (Krovak East North) 7811 * EPSG: Add EPSGTreatsAsNorthingEasting() to deal with CRS with non-GIS friendly northing/easting axis order similarly as what was done with lat/long geographic SRS, and automatically do coord swapping in GML/WFS drivers in that case (#4329) 7812 * Ozi datum support: support all Ozi datums (#3929), support UTM projection 7813 * USGS: support USGS angular parameters in radians 7814 * MorphFromESRI() fix WKT : compare SPHEROID and PRIMEM parameters instead of names (#4673) 7815 * MorphToESRI(): Add common New Zealand GEOGCS values (#4849) 7816 * OSR ESRI: add GCS mapping name for ETRS89 7817 * ogr_srs_esri: Make InitDatumMappingTable() thread-safe 7818 * ecw_cs.wkt: Add entry for European Terrestrial Reference System 1989. 7819 * pci_datum.txt: Add entry for D894 7820 * accept "+proj=XXXX [...] +wktext" as a valid PROJ.4 string, even if projection is unhandled by OGR 7821 * recognize +proj=etmerc when importing from PROJ.4 string; and output +proj=etmerc when exporting Transverse_Mercator to PROJ.4 string if OSR_USE_ETMERC = YES (#4853) 7822 7823Utilities: 7824 * ogr2ogr: add a -dim option to force the coordinate dimension to 2 or 3 7825 * ogr2ogr: accept -nlt PROMOTE_TO_MULTI to ease conversion from shapefiles to PostGIS, by auto-promoting polygons to multipolygons and linestrings to multilinestrings 7826 * ogr2ogr: add -gcp, -order n and -tps options to georeference ungeoreferenced vectors (#4604) 7827 * ogr2ogr: fix -select with shapefile output when specified field name case doesn't match source field name case (#4502) 7828 * ogr2ogr: correctly deal with filenames that begin with 'polygon' or 'multipolygon' as arguments of -clipsrc (#4590) 7829 * ogr2ogr: return non-zero exit code if the -sql triggers an error (#4870) 7830 * ogr2ogr: make -t_srs work when there's no per layer source SRS, but there's per feature SRS 7831 * ogr2ogr: add a -datelineoffset option to provide users with capability to set different offsets than 170 to -170 (#4098) 7832 * ogr2ogr: add a -fieldmap option (#5021) 7833 * ogr2ogr: automatically rename duplicated field names of source layer so that the target layer has unique field names 7834 * ogrupdate.py: new sample script to update an OGR datasource from another one, by trying to identify matches between the 2 datasources 7835 * ogr_layer_algebra.py: new sample script to use OGR layer algebra operations 7836 7837Multi driver changes: 7838 * Fix bad AND priority when spatial and attribute filter are combined in PG, MySQL, SQLite MSSQLSpatial and VRT drivers (#4507) 7839 7840AVCE00 driver: 7841 * Fix GetFeatureCount() when an attribute or spatial filter is set 7842 7843AVCBin driver: 7844 * Fix EOF test (#3031) 7845 7846CSV driver: 7847 * Allow creating /vsimem/foo.csv 7848 * Detect and remove UTF-8 BOM marker if found (#4623) 7849 * Fix handling of empty column names in header (#4654) 7850 * Allow creating a new .csv file in a directory where there are invalid .csv 7851 files (#4824) 7852 * Use a trick so that the CSV driver creates valid single column files (#4824) 7853 * Add WRITE_BOM option to CSV driver to write UTF8 BOM for improved Excel/unicode compatibility (#4844) 7854 * Don't turn \r\n into \n in CSV field output, regardless of LINEFORMAT settings (#4452) 7855 * Don't left-pad numbers in CSV output when a width is set (#4469) 7856 * Add support for opening .tsv files, in particular the specific Eurostat .tsv files 7857 7858DGN driver: 7859 * Add support to read and write font name in the style (#3392) 7860 7861DXF driver: 7862 * Write HATCH (Polygon) compatible with other DXF viewers 7863 * Write layer geometry extent in file header (#4618) 7864 * Ignore Spline frame control points for VERTEX of POLYLINE (#4683) 7865 * Add color to POINT, INSERT and HATCH 7866 * Take into account extrusion vector to transform from OCS to WCS for MTEXT, TEXT, POINT, LINE, CIRCLE, ELLIPSE, ARC, SPLINE and HATCH (#4842) 7867 7868FileGDB driver: 7869 * Add the FGDB_BULK_LOAD configuration option (#4420) 7870 * Do compulsory field name laundering. (#4458) 7871 * Add special SQL commands 'GetLayerDefinition a_layer_name' and 'GetLayerMetadata a_layer_name' 7872 * Implement SetFeature(), DeleteFeature() and DeleteField() 7873 * Fix inserting features in a layer of geometry type wkbNone 7874 * Define CLSID/EXTCLSID to fix Feature Class alias being ignored in ArcMap (#4477) 7875 * Use more sensible default values for tolerance and scale parameters (#4455) 7876 * Use ESRI SRS DB to find the WKT definition to use when creating a layer (#4838) 7877 * Fix the way empty geometries are written 7878 * Add read support for fields of type GlobalID or GUID (#4882) 7879 * Add XML_DEFINITION layer creation option 7880 * Support setting fields of type SmallInteger, Float and GUID 7881 7882Geoconcept driver: 7883 * Partial support of relaxed GXT export syntax and fix when line is incomplete (#4983) 7884 7885GeoJSON driver: 7886 * Fix HTTP HEADERS field send to server (#4546) 7887 * GeoJSON: write crs object as a FeatureCollection attribute in generated GeoJSON files (#4995); on read, strip AXIS nodes 7888 7889Geomedia driver: 7890 * Fix loading of 'boundary' geometries when they are 2.5D or contain more than one inner rings (#4734) 7891 7892GFT driver: 7893 * Use OAuth2 authentication (was ClientLogin in previous versions). 7894 7895GML driver: 7896 * Add PREFIX and TARGET_NAMESPACE dataset creation options 7897 * Fix typo when writing geometry type name of MultiLineString in GML3 .xsd (#4674) 7898 * CreateFeature(): assign spatial ref when it is unset in source feature, even for GML2 case (fixes non-compliance with missing srsName on multi-geometries) 7899 * Make filtering of features based on OGR_GEOMETRY work (#4428) 7900 * Avoid point duplication concatenating GML curve segments (#4451) 7901 * Add special SQL command 'SELECT ValidateSchema()' 7902 * Allow reading srsDimension attribute when set on LineString element, and not on posList (#4663) 7903 * Partial support for reading GML 3.3 compat encoding profile, limited to <gmlce:SimplePolygon>, <gmlce:SimpleRectangle>, <gmlce:SimpleTriangle>, <gmlce:SimpleMultiPoint> elements 7904 * Support WFS GetFeature response document to be piped and opened with /vsistdin/ 7905 * Support specifying connection string as 'filename.gml,xsd=some_filename.xsd' to explicitly provide a XSD 7906 * Improve detection of extent and srs for WFS 2.0 7907 * Allow ISO-8859-15 encoded files to be used by Expat parser (#4829) 7908 * Handle CompositeCurve like MultiCurve (for NAS) 7909 * Remove duplicate points in rings 7910 * Add OGR_ARC_MINLENGTH to limit the number of segments in interpolated arcs 7911 * When there are several geometries per feature, use geometry inside <XX:geometry> element for Inspire compatibility 7912 * Return per-feature SRS if there's no global SRS for a layer 7913 * Parse correctly <gml:outerBoundaryIs> when there are attributes in the element (#4934) 7914 * Recognize <gml:GeodesicString> 7915 * Recognize <gml:Envelope> elements (#4941) 7916 * Fix crash when reading CityGML attribute with empty string (#4975) 7917 7918ILI driver: 7919 * Support for format codes (#3972) 7920 * ILI1: Use Topic name from model in itf output 7921 * ILI1: Recode ISO 8859-1 strings 7922 * ILI1: Various fixes related to enumerations 7923 * ILI2: Fix reading with models 7924 7925Ingres driver: 7926 * Add effuser and dbpwd connection parameters. 7927 * Enhance EPSG search bath on WKT AUTH ids. 7928 * Use system defined sequence for fid instead of global (#4567) 7929 * Fix a name mixup when creating the table (#4567) 7930 7931KML driver: 7932 * Report empty layers when there is only empty layers; don't error out on empty document (#4511) 7933 * Recognize file whose root element is <Document> and not <kml> 7934 7935Idrisi driver: 7936 * Add support for reading attributes from .AVL / .ADC files 7937 * Ignore nodata value when computing min/max of CreateCopy()'ed dataset 7938 * Avoid setting unset values of mean and stddev to PAM (#4878) 7939 7940LIBKML driver: 7941 * Add stylemap support 7942 * Add support for GroundOverlay reading (#4738) 7943 * Fix memory leak in OGRLIBKMLDataSource::FindSchema() when a schema is referenced by name and not by id (#4862) 7944 * Correct use of temporary variable for schema field names (#4883) 7945 * Update the layer class internal feature count when a new feature is added 7946 7947MITAB driver: 7948 * Fix unwanted changes in data types while converting a datasource to MIF (#3853) 7949 * Fix incorrect handling of Mollweide projection (#4628) 7950 * Fix double free in OGRTABDataSource::Create() when exiting with error (#4730) 7951 * Add datum mapping between EPSG/authority codes and the MapInfo definitions. Falls back to old behavior of name/string matching. (#481) 7952 * Avoid negative zeros in TOWGS84 read from TAB file (#4931) 7953 7954MSSQLSpatial driver: 7955 * Report DeleteFeature/DeleteLayer capabilities 7956 * Fix the parser to swap coordinates with geography data type (#4642) 7957 * Fix to read multipoint geometries correctly (#4781) 7958 * Fix to read 3D geometries correctly (#4806, #4626) 7959 * Use MSSQL catalog if geometry_columns doesn't exist (#4967) 7960 * Utilize OGRFieldDefn::IsIgnored() (#4534) 7961 * Remove requirement for identity fid column in MSSQL tables (#4438) 7962 7963MySQL: 7964 * Enable auto reconnect to MySQL (#4819) 7965 * Reset field width and precision when converting from an unhandled field type to TEXT (#4951) 7966 7967NAS driver: 7968 * Better support for wfsext:Replace (#4555) 7969 * Skip elements "zeigtAufExternes" and "objektkoordinaten" (fixes PostNAS #3 and #15) 7970 * Issue a warning when geometry is overwritten, invalid geometry is found or featureless geometry appears 7971 * Issue a debug message when a existing attribute is overwritten (to catch array) 7972 * Use forceToLineString() on line strings (fixes PostNAS #18) 7973 * Handle MultiCurve and CompositeCurve 7974 * Merge multilinestrings 7975 * Accept XML files that have AAA-Fachschema.xsd in header (and remove trailing whitespace) 7976 * Add EPSG:25833 7977 7978NULL driver: 7979 * No-op output driver for debugging/benchmarking purpose (Not included in build process) 7980 7981OCI driver: 7982 * Fix for index creation when layers are created (#4497) 7983 7984ODBC driver: 7985 * Allow opening directly *non-spatial* MS Access .MDB databases (on Windows only) 7986 * Make SetAttributeFilter(NULL) work (#4821) 7987 * Add optimized GetFeatureCount() implementation 7988 7989NTF driver: 7990 * Various fixes when opening ill-formed datasets. 7991 7992OCI driver: 7993 * Fix issue with pre-existing tables with laundered names not being recognized (#4966) 7994 * Make sure the FID counter is correctly initialized when data is appended (#4966) 7995 * Better quoting of identifiers (#4966) 7996 7997PGeo driver: 7998 * PGeo / Geomedia : remove heuristics that tried to identify if a MDB file belonged to the PGeo or Geomedia driver (#4498) 7999 8000PG driver: 8001 * Add a 'COLUMN_TYPES' layer creation option (#4788) 8002 * Fix insertion of features with FID set in COPY mode (#4495) 8003 * Honour datasource read-only mode in CreateField(), CreateFeature(), SetFeature() and DeleteFeature() (#4620) 8004 * Avoid fatal error when the public schema is absent (#4611) 8005 * Differ SRS evaluation on SQL layers (#4644) 8006 * Optimize SRID fetching on SQL result layer; compatibility with PostGIS 2.0 by using ST_SRID (#4699, #4700) 8007 * Always fetch the SRS to attach it to feature geometry of result SQL layers. 8008 8009PGDump driver: 8010 * Add a 'COLUMN_TYPES' layer creation option (#4788) 8011 8012REC driver: 8013 * Add robustness checks against corrupted files 8014 8015SDE driver: 8016 * Add support for CLOB and NCLOB data type (#4801) 8017 8018Shapefile driver: 8019 * Add support for reading ESRI .sbn spatial index (#4719) 8020 * Add deferred layer loading 8021 * Implement auto-growing of string and integer columns 8022 * Add a special SQL command 'RESIZE table_name' to resize (shrink) fields to their optimum size, also available as a RESIZE=YES layer creation option for convenience 8023 * Recode field name from UTF-8 to DBF encoding in CreateField() 8024 * In creation, limit fields of type OFTString to a width of 254 characters (#5052) 8025 * Spatial index optimization (#4472) 8026 * Fix GetFeatureCount() when spatial filter set, especially on big-endian hosts (#4491) 8027 * Fixed wrong return value of OLCStringsAsUTF8 in OGRShapeLayer::TestCapability if GDAL was compiled without iconv support (#4650) 8028 * Support properly creating layers that include dot character 8029 * Avoid assert() if SetFeature() is called on a feature with invalid FID (#4727) 8030 * Correctly deal with .cpg files containing 8859xx string (#4743) 8031 * Make TestCapability(OLCFastFeatureCount) return TRUE when an attribute filter is set only if attribute indices can be used 8032 * Shapelib: Fix memory leaks in error code path of DBFCreateLL() (#4860) 8033 * Deal better with shapefile directories with foo.shp and FOO.DBF, particularly for REPACK support, and particularly for Windows OS (on Linux, foo.shp and FOO.DBF will be 2 different layers) 8034 * Delete temporary _packed.cpg file generated during REPACK of a layer whose .dbf has an accompanying .cpg file 8035 * In DeleteDataSource(), delete .cpg file if existing 8036 8037S57 driver: 8038 * Various fixes when opening ill-formed datasets. 8039 * Preliminary support for FFPT/FFPC update records (#5028) 8040 * Add RECODE_BY_DSS suboption to OGR_S57_OPTIONS configuration option that can be set to YES so that the attribute values are recoded to UTF-8, from the character encoding specified in the S57 DSSI record (#5048, #3421, adapted from patch by julius6) 8041 8042SQLite/Spatialite driver: 8043 * Add support for tables with multiple geometry columns (#4768) 8044 * Add (preliminary) support for SpatiaLite 4.0 database changes (#4784) 8045 * Make GDAL loadable as a SQLite3 extension (named VirtualOGR) (#4782) 8046 * Add support for OFTDateTime/OFTDate/OFTTime field types 8047 * Add a SRID layer creation option 8048 * Make REGEXP function available by using libpcre (#4823) 8049 * Add a COMPRESS_COLUMNS layer creation option to make string columns ZLib compressed 8050 * Implement minimal set of spatial functions if SpatiaLite isn't available 8051 * SpatiaLite: make use of spatial filter on result layers when the SQL expression is simple enough (no join, etc...) (#4508) 8052 * SpatiaLite: spatial index can be used even when linking against regular SQLite (#4632) 8053 * SpatiaLite: to improve performance, defer spatial index creation at layer closing or when a spatial request is done 8054 * SpatiaLite: use SpatiaLite 'layer_statistics' and 'spatialite_history' to cache the row count and extent of (spatial) layers 8055 * Spatialite: add support for reading Spatialite 4.0 statistics (filling them on the fly still not implemented) 8056 * SpatiaLite: for SpatiaLite 4.0, translate INIT_WITH_EPSG=NO into InitSpatialMetaData('NONE') to avoid filling the spatial_ref_sys table 8057 * On SQL result layers, report the SRS of the geometry of the first feature as the layer SRS 8058 * Deferred layer definition building for table and view layers 8059 * Speed-up opening of a result layer that has an ORDER BY 8060 * Cache GetExtent() result 8061 * Allow inserting empty feature 8062 * Return empty layer when SELECT returns 0 rows (#4684) 8063 * Add compatibility for newer SQLite versions when using the VFS layer (#4783) 8064 * Add missing column name quoting 8065 8066TIGER driver: 8067 * Fix opening TIGER datasource by full file name (#4443) 8068 * Updated to use VSI*L 8069 8070VFK driver: 8071 * SQLite is now a compulsory dependency for VFK 8072 * Store VFK data in SQLite (in-memory) database 8073 * Don't read whole file into buffer, but only on request 8074 * id property of data records in VFK file exceed int limit -> use GUIntBig for id values 8075 * Fix reading multi-line data records 8076 * Recode string feature properties - convert from cp-1250 to utf-8 8077 * Skip invalid VFK features 8078 8079VRT driver: 8080 * Add <OGRVRTWarpedLayer> (on-the-fly reprojection of a base layer) 8081 * Add <OGRVRTUnionLayer> (on-the-fly concatenation of several base layers) 8082 * Add <FeatureCount>, <ExtentXMin>, <ExtentYMin>, <ExtentXMax>, <ExtentYMax> to <OGRVRTLayer> 8083 * Add an optional 'dialect' attribute on the <SrcSQL> element 8084 * Fix OGR VRT sensitive to whitespace and <?xml> nodes (#4582) 8085 * Optimizations to avoid feature translation when possible 8086 * Implement GetFIDColumn() (#4637) 8087 * Implement StartTransaction(), CommitTransaction() and RollbackTransaction() by forwarding to the source layer 8088 * Auto enable bAttrFilterPassThrough when possible 8089 8090WFS driver: 8091 * WFS paging: change default base start index to 0 (was 1 before), as now clarified by OGC (#4504) 8092 * Accept several type names if the TYPENAME parameter is specified 8093 * Forward SQL ORDER BY clause as a WFS SORTBY for WFS >= 1.1.0 8094 * Fix spatial filter with WFS 2.0 GeoServer 8095 * Check that left-side of a binary operator in an attribute filter is a property name before submitting it to server-side 8096 * Major overhaul of URL-escaping 8097 * Fix issues when querying the WFSLayerMetadata and that one of the field contains double-quote characters (#4796) 8098 * Remove auto-added ACCEPTVERSIONS=1.0.0,1.1.1 - when none of VERSION or ACCEPTVERSIONS were specified - because it does not work with WFS 2.0 only servers 8099 * Automagically convert MAXFEATURES= to COUNT= if people still (wrongly) used it for WFS 2.0 8100 * Honour paging when running GetFeatureCount() and that RESULTTYPE=HITS isn't available (e.g. WFS 1.0.0) (#4953) 8101 * Optimize WFS 1.0 (or WFS 1.1.0 where RESULTTYPE=HITS isn't available) so that in some circumstances the GML stream 8102 downloaded is used to compute GetFeatureCount() and GetExtent() together 8103 * Fix segfault on non-GML output when there's SRS axis swapping but the feature has no geometry (#5031) 8104 8105XLS driver: 8106 * Set FID to the row number in the spreadsheet software (first row being 1). In case OGR detects a header line, the first feature will then be assigned a FID of 2 (#4586) 8107 * Non-ascii path support for Windows (#4927) 8108 8109== SWIG Language Bindings == 8110 8111All bindings: 8112 * Add VSIReadDirRecursive() (#4658) 8113 * Add a osr.CreateCoordinateTransformation(src, dst) method (and for Java, a static method CoordinateTransformation.CreateCoordinateTransformation(src, dst) (#4836) 8114 * Add ogr.ForceToLineString() 8115 * Clear error before OGR_Dr_Open() (#4955) 8116 * Add a SetErrorHandler(handler_name) method 8117 8118CSharp bindings: 8119 * Add C# signature for FileFromMemBuffer that accepts byte array (#4701) 8120 8121Java bindings: 8122 * Fix compilation issue with SWIG 2.0.6 on Java bindings (#4669) 8123 * New test application: ogrtindex.java 8124 * Fix values of gdalconst.DCAP_* and gdalconst.DMD_* constants (#4828) 8125 * Fix check for opaque colors in getIndexColorModel() 8126 8127Perl bindings: 8128 * Specify module files to install 8129 * Return values have to be mortal, this was not the case in many instances. 8130 * New method Driver::Name aka GetName 8131 * doc target in GNUmakefile to call doxygen 8132 * Default to first band in GetRasterBand. 8133 * New method Geo::OGR::Layer::DataSource 8134 * New method Geo::OGR::Layer::HasField 8135 * Geometry method accepts geometries in Perl structures 8136 * Fixed a bug in FeatureDefn::create which changed the fields. 8137 * New experimental methods ForFeatures and ForGeometries. 8138 * InsertFeature, Tuple and Row methods use the Tuple and Row methods from Feature. 8139 * Do not use pattern my var = value if ...; as it seemingly may cause unexpected things. 8140 target_key is optional argument. 8141 * Allow setting geometry type with schema argument. 8142 * Fix incorrect behavior of Geo::OGR::Geometry method Points in the case of a Point (#4833) 8143 * Preserve the coordinate dimension in Move method 8144 8145Python bindings: 8146 * setup.py: Changes to run without setuptools (#4693) 8147 * setup.py: Automatically run 2to3 for Python3 8148 * Define __nonzero__ on Layer object to avoid GetFeatureCount() being called behind our back when doing 'if a_layer:' (#4758) 8149 * Fix performance problem when instantiating Feature, especially with Python 3 8150 * Add RasterBand.ReadBlock(), mostly for driver testing 8151 * Reject strings when array of strings are expected 8152 * make gdal.PushErrorHandler() also accept a Python error handler function as an argument (#4993) 8153 * Fix Feature.ExportToJSon() to write the id attribute when it is 0 (the undefined value is NullFID == -1) 8154 8155= GDAL/OGR 1.9.0 Release Notes = 8156 8157== In a nutshell... == 8158 8159 * New GDAL drivers: ACE2, CTG, E00GRID, ECRGTOC, GRASSASCIIGrid, GTA, NGSGEOID, SNODAS, WebP, ZMap 8160 * New OGR drivers: ARCGEN, CouchDB, DWG, EDIGEO, FileGDB, Geomedia, GFT, IDRISI, MDB, SEGUKOOA, SEGY, SVG, XLS 8161 * Significantly improved drivers: NetCDF 8162 * Encoding support for shapefile/dbf (#882) 8163 * RFC 35: Delete, reorder and alter field definitions of OGR layers 8164 * RFC 37: Add mechanism to provide user data to CPLErrorHandler (#4295) 8165 * gdalsrsinfo: new supported utility to report SRS in various form (supersedes testepsg) 8166 8167== New installed files == 8168 8169 * data/nitf_spec.xml and data/nitf_spec.xsd 8170 8171== Backward compatibility issues == 8172 8173 * GTiff: ensure false easting/northing in geotiff geokeys are treated as being in geosys units (#3901) 8174 * GRIB: Fix grid vs cell-center convention (#2637) 8175 * OGR SQL: with DISTINCT, consider null values are such, and not as empty string (#4353) 8176 8177== GDAL/OGR 1.9.0 - General Changes == 8178 8179Build(Unix): 8180 * Add --with-rename-internal-libtiff-symbols and --with-rename-internal-libgeotiff-symbols 8181 flags in order to safely link against an external libtiff (3.X) and a GDAL built with 8182 internal libtiff (4.0) support (#4144) 8183 * Add --with-mdb --with-java,--with-jvm-lib, --with-jvm-lib-add-rpath options 8184 * Add --with-podofo, --with-podofo-lib, --with-podofo-extra-lib-for-test options 8185 * Add --with-armadillo 8186 * Update to libtool 2.4 8187 * Fix linking against static libkml (#3909) 8188 * Fix Xerces detection by using LIBS instead of LDFLAGS (#4195) 8189 * Check for .dylib too, when configuring MrSID SDK paths (#3910) 8190 * Fix wrong include order in GNUmakefile of GPX and GeoRSS drivers (#3948) 8191 * cpl_strtod.cpp: Enable android support (#3952). 8192 * ensure swig-modules depends on lib-target so make -j works with swig bindings 8193 * Change how we check for GEOS >= 3.1 (#3990) 8194 * Define SDE64 on at least x86_64 platforms (#4051) 8195 * Make ./configure --with-rasdaman=yes work (#4349) 8196 * MinGW cross compilation: clear GEOS_CFLAGS and XERCES_CFLAGS 8197 if headers found in /usr/include, do not use Unix 64 bit IO 8198 * MinGW build: define __MSVCRT_VERSION__ to 0x0601 if not already set 8199 8200Build(Windows): 8201 * Move MSVC warning disabling to nmake.opt, add SOFTWARNFLAGS for external code 8202 * Use nmake.local (#3959) 8203 * cpl_config.h.vc: fix up so it also works with mingw (#3960) 8204 * Build testepsg utility by default when OGR is enabled (#2554) 8205 8206== GDAL 1.9.0 - Overview of Changes == 8207 8208Port: 8209 * /vsigzip/ : Avoid reading beyond file size in case of uncompressed/stored files in zip (#3908) 8210 * /vsicurl/ : Better support for escaped and UTF-8 characters 8211 * /vsicurl/ : speed-up with a per-thread Curl connection cache 8212 * /vsicurl/ : read https directory listing 8213 * /vsicurl/ : look for GDAL_DISABLE_READDIR_ON_OPEN configuration option in 8214 Open() and Stat() to avoid trying fetching the directory file list 8215 * /vsicurl/ : fix performance problem when parsing large directory listings (#4164) 8216 * /vsicurl/ : recognize listing of Apache 1.3 8217 * /vsicurl/ : fix ReadDir() after reading a file on the same server 8218 * /vsicurl/ : fetch more info (size, date) when listing FTP or HTTP directories and save it in cache; use those info for ReadDir() and Stat() 8219 * /vsicurl/: accept 225 as a valid response code for FTP downloads (#4365) 8220 * /vsicurl/ : add CPL_VSIL_CURL_ALLOWED_EXTENSIONS configuration option that can be used to restrict files whose existence is going to be tested. 8221 * /vsitar/ : Recognize additional .tar files with slightly header differences 8222 * /vsizip/ : wrap the returned file handle in a BufferedReader 8223 * /vsizip/ : fix 1900 year offset for year returned by VSIStatL() 8224 * /vsizip and /vsitar: remove leading './' pattern at the beginning of filenames contained in the archive 8225 * /vsistdout_redirect/ : New virtual file system driver that has the same 8226 behavior as /vsistdout/ (write-only FS) except it can redirect the output to 8227 any VSIVirtualFile instead of only stdout (useful for debugging purposes) 8228 * Implement VSI*L read caching - useful for crappy io environments like Amazon 8229 * VSI*L: Add Truncate() virtual method and implement it for unix, win32 and /vsimem file systems 8230 * VSI*L: Add ReadMultiRange() virtual method to read several ranges of data in single call; add an optimized implementation for /vsicurl/ 8231 * VSIFEofL(): make it more POSIX compliant. 8232 * Fine tune CPLCorrespondingPaths() for different basenames when paths involved. 8233 * VSIWin32FilesystemHandler::Open() : implement append mode. Needed by ISIS2 driver with attached label (#3944) 8234 * CPLString: add case insensitive find operator (ifind) 8235 * RFC23: Add the iconv() based implementation of the CPLRecode() function (#3950) 8236 * Preliminary support for wchar_t with iconv recode (#4135) 8237 * Avoid calling setlocale if we are already in the C locale, or GDAL_DISABLE_CPLLOCALEC is TRUE (#3979) 8238 * CPLMiniXML: emit warnings when encountering non-conformant XML that is however accepted by the parser 8239 * add CPLBase64Encode(); move cpl_base64.h contents to cpl_string.h 8240 * Use CRITICAL_SECTION instead of Mutex on win32 8241 * CPLHTTPFetch(): Add a CLOSE_PERSISTENT option to close the persistent sessions 8242 * CPLHTTPFetch(): Add support for "NEGOTIATE" http auth mechanism 8243 * CPLHTTPFetch(): Add a CUSTOMREQUEST option 8244 * VSIBufferedReaderHandle: fix Eof() 8245 * Add CPLStringList class 8246 * Add CPLEmergencyError() - to call when services are too screwed up for normal error services to work (#4175) 8247 * CPLEscapeString(,,CPLES_URL) : don't escape dot character; fix escaping of characters whose code >= 128 8248 8249Core: 8250 * Provide for ABI specific plugin subdirectories on all platforms 8251 * Force cleanup of datasets when destroying the dataset manager 8252 * Add a GDALDataset::CloseDependentDatasets() that can be used by GDALDriverManager::~GDALDriverManager() to safely close remaining opened datasets (#3954) 8253 * Add GDALRasterBand::ReportError() and GDALDataset::ReportError() to prepend dataset name (and band) before error message (#4242) 8254 * Fix performance problem when serializing huge color tables, metadata, CategoryNames and GCPs to VRT/PAM (#3961) 8255 * Be careful about Nan complex values getting histogram, avoid locale issues with statistics metadata 8256 * GDALRasterBand::IRasterIO() default implementation : don't try to use full-res band if I/O failed on the appropriate overview band (for WMS errors) 8257 * RasterIO: Return earlier when a write error occurred while flushing dirty block 8258 * GDAL_DISABLE_READDIR_ON_OPEN can be set to EMPTY_DIR to avoid reading the dir, but it set an empty dir to avoid looking for auxiliary files 8259 * Use sibling file list to look for .aux.xml, .aux, .ovr, world files, tab files 8260 * Add GDALFindAssociatedFile() (#4008) 8261 * PAM: Make sure GCPs loaded from a .aux.xml override any existing ones from other sources, like an .aux file 8262 * PAM: Add cloning of CategoryNames 8263 * PAM : PamFindMatchingHistogram() - fix floating-point comparison 8264 * GMLJP2: Use http://www.opengis.net/gml as the schemaLocation 8265 * GMLJP2: Support for capturing and writing page resolution in a TIFF compatible way (#3847) 8266 * GDALJP2Box::SetType() : remove byte-swapping so that SetType()/GetType() correctly round-trips. Do appropriate changes in JP2KAK and ECW drivers. (#4239) 8267 * GDALReplicateWord(): fix off-by-one error initialization (#4090) 8268 8269Algorithms: 8270 * polygonize: Added GDALFPolygonize() as an alternative version of GDALPolygonize() using 32b float buffers instead of int32 ones. (#4005) 8271 * gdalwarp: take into account memory needed by DstDensity float mask (#4042) 8272 * rasterfill: create working file as a bigtiff if at all needed (#4088) 8273 * gdalrasterize: use double instead of float to avoid precision issues (#4292) 8274 8275Utilities: 8276 * gdalsrsinfo: new supported utility to report SRS in various form (supersedes testepsg) 8277 * gdalinfo: add '-nofl' option to only display the first file of the file list 8278 * gdalinfo: add '-sd num' option to report subdataset with the specified number. 8279 * gdalinfo: add '-proj4' option to gdalinfo, to report a PROJ.4 string for the CRS 8280 * gdal_translate: propagate INTERLEAVE metadata to intermediate VRT dataset 8281 * gdal_translate: force quiet mode when writing to /vsistdout/ 8282 * gdalwarp: Disable CENTER_LONG rewrapping for cutline (#3932) 8283 * gdalwarp: add -refine_gcps option to discard outliers GCPs before warping (#4143) 8284 * gdalwarp: add warning if user specifies several of -order, -tps, -rpc or -geoloc options 8285 * gdalwarp: speed-up when using -tps with large number of GCPs 8286 * gdalwarp: add support for optional use of libarmadillo to speed-up matrix inversion in -tps mode 8287 * gdalwarp: detect situations where the user will override the source file 8288 * gdallocationinfo: do not let one off-db pixel cause all the rest to be suppressed (#4181) 8289 * gdal_rasterize: fix half pixel shift when rasterizing points; make gdal_rasterize utility increase the computed raster extent by a half-pixel for point layers (#3774) 8290 * gdal_rasterize: when source datasource has a single layer, use it implicitly if none of -l or -sql is specified 8291 * nearblack: add -color option (#4085) 8292 * nearblack: improve detection of collar 8293 * nearblack: remove useless restrictions on number of bands for -setmask and -setalpha options (#4124) 8294 * gcps2vec.py: Fix command line parsing; Add SRS definition to created vector layer; Use Point geometry when dumping pixel/line coordinates. 8295 * gdal_merge.py: add support for -separate with multiband inputs (#4059) 8296 * gdal_merge.py: add a -a_nodata option (#3981) 8297 * gdal_proximity.py: -co option existed, but was unused... 8298 * gdal_fillnodata.py: add -co option 8299 * Add gdal_ls.py and gdal_cp.py as Python samples 8300 * Add new sample utility, gdal_edit.py, to edit in place various information of an existing GDAL dataset (projection, geotransform, nodata, metadata) (#4220) 8301 * gdalcopyproj.py: make it copy GCPs too 8302 * Add warning if a target filename extension isn't consistent with the output driver 8303 * Add --pause for convenient debugging, document it and --locale 8304 8305Multi-driver topics: 8306 * Implement reading XMP metadata from GIF, JPEG, PNG, GTiff, PDF and the 5 JPEG2000 drivers. The XMP metadata is stored as raw XML content in the xml:XMP metadata domain (#4153) 8307 * Mark BT, DIPEx, ERS, FAST, GenBIN, GSC, GSBG, GSAG, GS7BG, JDEM, JP2ECW, PNM, RMF, TIL, WCS and WMS drivers as compatible with VSI virtual files 8308 * Port DOQ1, DOQ2, ELAS, Idrisi, L1B, NDF, NWT_GRD, NWT_GRC, USGSDEM to VSI virtual file API 8309 * PAM-enable BT and BLX drivers 8310 * Implement Identify() for AAIGrid, ACE2, DTED, NWT_GRD, NWT_GRC, WMS, WCS, JDEM and BSB drivers 8311 * Make GIF, JPEG and PNG drivers return a non NULL dataset when writing to /vsistdout/ 8312 * HFA and GTiff: add explicit error message when trying to add external overviews when there are already internal overviews (#4044) 8313 * Initialize overview manager to support external overviews for AAIGRID, DIPX, ELAS, GXF, FIT, FITS, GMT, GRIB, GSAG, GSBG, GS7BG, ILWIS, L1B, LCP, Leveller, NWT_GRD, NWT_GRC, RIK, SDTS and SAGA 8314 8315AAIGrid: 8316 * Make opening from /vsicurl/ work even when the server returns an empty file list 8317 8318ACE2 driver: 8319 * New for GDAL/OGR 1.9.0 8320 * Read ACE2 DEM 8321 8322AIG driver: 8323 * Support uncompressed integer files, new in ArcGIS 10 it seems (#4035) 8324 * Use color table from PAM if no native one (#4021) 8325 * Fallback to PAM mechanism for RAT (#4021) 8326 8327BSB driver: 8328 * Parse the GD keyword in BSB_KNP to recognize European 1950 datum (#4247) 8329 * fix compilation issues with -DBSB_CREATE 8330 8331CEOS2 driver: 8332 * avoid potential crash reading past end of string. (#4065) 8333 8334CTG driver: 8335 * New for GDAL/OGR 1.9.0 8336 * Read USGS LULC Composite Theme Grid files 8337 8338DIMAP driver: 8339 * Add support for DIMAP2 8340 * Check underlying raster for SRS. There are cases where HORIZONTAL_CS_CODE is empty and the underlying raster is georeferenced 8341 8342E00GRID driver: 8343 * New for GDAL/OGR 1.9.0 8344 * Read Arc/Info Export E00 GRID 8345 8346ECRGTOC driver: 8347 * New for GDAL/OGR 1.9.0 8348 * Read TOC.xml file of ECRG products 8349 8350ECW driver: 8351 * Use a long refresh time for ecwp:// connections to ensure we get full resolution data, make configurable 8352 * Re-enable writing non8bit data in jpeg2000 8353 * Add implementation of an Async reader (4.x SDK) 8354 * Improve to support all /vsi stuff (#2344) 8355 * Ensure ECW_ENCODE_ values are applied for direct Create as well as CreateCopy 8356 * force adfGeoTransform[5] sign to negative. (#393) 8357 * Mark GDAL_DCAP_VIRTUALIO=YES when the driver is configured in read-only mode 8358 * Ensure we fallback to native geotransform if no pam override 8359 * Try to read projection info embedded in ECW file before reading the worldfile (#4046) 8360 * Add support for updating geotransform and projection info of a ECW file (#4220) 8361 * Fix ECW_CACHE_MAXMEM that was without effect and ECW_AUTOGEN_J2I that set an unrelated ECW parameter (#4308) 8362 * Allow to open a ECW file with invalid EPSG code from SWIG bindings (#4187) 8363 8364EHdr driver: 8365 * Improve floating point detection (#3933) 8366 * Recognize MIN_VALUE and MAX_VALUE as found in ETOPO1 header 8367 * Try opening the .sch file for GTOPO30 or SRTM30 source file 8368 * Ignore bogus .stx file where min == nodata 8369 8370EIR driver: 8371 * Add support for DATA_TYPE keyword 8372 8373ENVI driver: 8374 * Add support for ESRI style coordinate system string (#3312) 8375 * Try to guess interleave mode from file extension, if interleave keyword is missing 8376 * Refuse to open unsupported types, but attempt to open everything else. 8377 8378ENVISAT driver: 8379 * Correct dfGCPLine values for stripline products (#3160, #3709) 8380 * Fix checking of tie points per column for MERIS GCPs (#4086) 8381 * Report metadata from the ASAR ADS and GADS in the RECORDS metadata domain (#4105) 8382 * Read MERIS metadata (#4105) 8383 * Read data from ERS products in ENVISAT format (#4105) 8384 * Improved MERIS Level 2 bands detection (#4141 and #4142) 8385 8386EPSILON driver: 8387 * Now require libepsilon 0.9.1 to build (now dual LGPL/GPL) (#4084) 8388 8389ERS driver: 8390 * Use case insensitive find so case does not matter (#3974) 8391 * Handle case of 1 m pixel resolution when CellInfo is missing (#4067) 8392 * Implement ERSRasterBand::SetNoDataValue() (#4207) 8393 * Add support for DATUM, PROJ and UNITS creation option; report the values read from the .ers file in the ERS metadata domain (#4229) 8394 8395GeoRaster driver: 8396 * Set nodata causes invalid XML metadata (#3893) 8397 * Fix SetStatistics() failure (#4072) 8398 * Fix default interleaving (#4071) 8399 * modelCoordinateLocation=CENTER default (#3266) 8400 * Cache block/level error in update (#4089) 8401 * Fix sequence.nextval not supported (Oracle 10g) (#4132) 8402 * change BLOCKING option to OPTIMALPADDING 8403 * fix 'cannot specify columns on insert create option' (#4206) 8404 * Fix ULTCoordinate Rows/Columns swapping (#3718) 8405 * Fix loading of small images, FlushCache issue (#4363) 8406 8407GIF driver: 8408 * Make CreateCopy() more friendly with writing in /vsistdout/ 8409 8410GRIB driver: 8411 * Fix grid vs cell-center convention (#2637) 8412 * use /vsi for all jpeg2000 files now 8413 * Fix to allow GFS data to show up properly (#2550) 8414 * Added a ConfigOption in GRIB driver to not normalize units to metric when reading the data 8415 * Fixed grib1 & grib2 : pixel size precision introduces error for corner coordinates (#4287) 8416 8417GTA driver: 8418 * New for GDAL/OGR 1.9.0 8419 * Read/write support for Generic Tagged Arrays 8420 8421GTiff driver: 8422 * Ensure false easting/northing in geotiff geokeys are treated as being in geosys units. Add GTIFF_LINEAR_UNITS=BROKEN config option to try and read old broken files, and logic to cover for older libgeotiffs when reading (#3901) 8423 * Add support for a special tag to keep track of properly written linear units (#3901) 8424 * Implement deferred directory chain scanning to accelerate simple opens 8425 * Make GTiff COPY_SRC_OVERVIEWS to deal with unusual source overview sizes (#3905) 8426 * Fix bug when using -co COPY_SRC_OVERVIEWS=YES on a multiband source with external overviews (#3938) 8427 * Add logic to fill out partial tiles on write in for jpeg images (#4096) 8428 * Updated to libtiff 4.0.0 final 8429 * Refresh with libgeotiff 1.4.0, to support for GeogTOWGS84GeoKey 8430 * Add support for Geocentric SRS 8431 * libtiff: Enable DEFER_STRILE_LOAD 8432 * Turn warning 'ASCII value for tag xx into more silent CPLDebug message 8433 * Overviews: Improve error reporting for >16bit images to JPEG compression 8434 * Use CPLAtof() for geotiff and epsg .csv file handling (#3886, #3979) 8435 * Lots of Imagine and ESRI PE string citation handling changes from 1.8-esri. Some citation related changes only compiled in if ESRI_SPECIFIC defined. 8436 * Give PAM information precedence over metadata from GeoTIFF itself. Avoid unnecessary (default) writes of scale/offset. Treat (0,1,0,0,0,-1) as a default geotransform as well as (0,1,0,0,0,1). 8437 * Migrate in some ESRI only logic for 1bit color tables, AdjustLinearUnits and default for 1bit data 8438 * Add a GTIFF_IGNORE_READ_ERRORS configuration option (#3994) 8439 * Lazy loading of RPC/RPB/IMD files (#3996) 8440 * Add mutex protection in GTiffOneTimeInit() to avoid occasional segfaults 8441 * Stop interpreting 4th band as alpha when not defined 8442 * Also list nSubType == FILETYPE_PAGE as subdatasets 8443 * CreateCopy(): copies category names from the source bands 8444 * Add capability of writing TIFFTAG_MINSAMPLEVALUE and TIFFTAG_MAXSAMPLEVALUE 8445 * Don't prevent from loading GTiff driver even if libtiff version mismatch detected (#4101) 8446 * Use GTIFF_ESRI_CITATION flag to disable writing special meaning ESRI citations 8447 * Optimize GTiffRGBABand implementation (#3476) 8448 * Add GTIFF_DIRECT_IO config. option that can be set to YES so that IRasterIO() reads directly bytes from the file using ReadMultiRange(). 8449 * Use VSI_TIFFOpen() in GTIFFBuildOverviews() to make it work on virtual file systems 8450 * Treat _UNASSALPHA as alpha 8451 8452GRASSASCIIGrid driver: 8453 * New for GDAL/OGR 1.9.0 8454 * Read GRASS ASCII grids (similar to ArcInfo ASCII grids) 8455 8456GRIB driver: 8457 * Check for memory allocation failures 8458 8459HDF4 driver: 8460 * Use larger object name buffer 8461 * Handle SWopen failures 8462 8463HDF5 driver: 8464 * Fix HDF5/BAG handle/memory leaks (#3953) 8465 * Better error checking 8466 * Do not return NULL from getprojectionref() (#4076) 8467 * Identify datasets whose header starts with some XML content (#4196) 8468 * Fixed HDF5 variable length string attributes reading (#4228) 8469 8470HFA driver: 8471 * Add support for writing RATs (#999) 8472 * Add support for reading 2bit compressed .img files (#3956) 8473 * Update EPRJ_ list based on input from Erdas, round trip Krovak and Mercator Variant A (#3958) 8474 * Major push to move projections from 1.6-esri into trunk in HFA driver (#3958) 8475 * Reinitialize RRDNamesList and ExternalRasterDMS (#3897) 8476 * Ensure the whole entry is reinitialized when writing proparams and datum (#3969) 8477 * Ensure PEString cleared if we aren't writing it (#3969) 8478 * Get nodata from an overview if not present on main band. Set geotransform[1] and [5] to 1.0 if pixelSize.width/height are 0.0. Improve error checking if MakeData() fails. 8479 * atof() changed to CPLAtofM() to avoid locale issues. 8480 * Altered Edsc_BinFunction column "Value" to "BinValues" and changed type. 8481 * Equirectangular StdParallel1 changed to LatitudeOfOrigin. 8482 * Logic to preserve psMapInfo->proName as the PROJCS name for UTM/StatePlane. 8483 * Special state plane zone handling. 8484 * Special wisconsin handling for some LCC and TM SRSes. 8485 * 1-bit null blocks to default to 1 in ESRI_BUILDs 8486 * Add support for GDA94 (#4025) 8487 8488Idrisi driver: 8489 * Fix segfaults when fields are missing in .ref or .rdc files (#4100) 8490 * Fix problem with inverse flattening when reading a SRS of a sphere (#3757) 8491 8492INGR driver: 8493 * Set NBITS for 1 bit bands 8494 8495ISIS2/ISIS3 driver: 8496 * Various improvements to PDS related drivers (#3944) 8497 8498JaxaPalsar driver: 8499 * Fixed datatype of ALOS PALSAR products Level 1.5 (#4136) 8500 * Fixed detection of unsupported PALSAR Level 1.0 products (#2234) 8501 8502JPIPKAK driver: 8503 * Add try to in GetNextUpdatedRegion() to protect against kakadu exceptions (#3967) 8504 * Fixed a serious bug in the computation of fsiz and region. (#3967) 8505 8506KMLSUPEROVERLAY driver : 8507 * Remove spaces between coordinates in coordinate triplets as mandated by KML 2.2 spec, to restore compatibility with Google Earth 6.1.0.5001 (#4347) 8508 8509LAN driver: 8510 * Preliminary support for writing gis/lan files 8511 8512MEM driver: 8513 * Add support for remembered histograms and PIXELTYPE 8514 8515MG4Lidar driver: 8516 * Clamp nOverviewCount, some LiDAR files end up with -1 overviews 8517 8518MrSID driver: 8519 * Initialize overview manager to enable RFC 15 mask band support (#3968) 8520 * Mark GDAL_DCAP_VIRTUALIO=YES when the driver is configured in read-only mode 8521 * Handle LTI_COLORSPACE_RGBA 8522 8523NetCDF driver: 8524 * Set cylindrical equal area representation to the proper cf-1.x notation (#3425) 8525 * Fix precision issue in geotransform (#4200) and metadata 8526 * Add support for netcdf filetypes nc2(64-bit) and nc4 to netCDFDataset (#3890, #2379) 8527 * Add function Identify and IdentifyFileType() (#3890, #2379) 8528 * Temporarily disabling PAM for netcdf driver (#4244) 8529 * Make creation of geographic grid CF compliant (#2129) 8530 * Fixes for netcdf metadata export: duplication, Band metadata, int/float/double vs. char* and add_offset/scale_factor (#4211, #4204), double precision ( 4200) 8531 * Fix netcdf metadata import (float and double precision) (#4211) 8532 * Improve import of CF projection 8533 * Add netcdf history metadata (#4297) 8534 * CF-1.5 compatible export of projected grids (optional lon/lat export) 8535 * Fix LCC-1SP import and export (#3324) 8536 * Fix handling of UNITS import and export (#4402 and #3324) 8537 * Fix upside-down export and import of grids without projection and geotransform (#2129, #4284) 8538 * Support import of polar stereographic variant without standard parallel (#2893) 8539 * New driver options 8540 * Add simple progress indicator 8541 * Add support for netcdf-4, HDF4 and HDF5 (#4294 and #3166) 8542 * Add support for deflate compression 8543 * Add format support information and CreateOptionList to driver metadata 8544 * Add support for valid_range/valid_min/valid_max 8545 * Proper handling of signed/unsigned byte data 8546 * Add support for Create() function and significantly refactor code for export (#4221) 8547 * Improvements to CF projection support (see wiki:NetCDF_ProjectionTestingStatus) 8548 8549NGSGEOID driver: 8550 * New for GDAL/OGR 1.9.0 8551 * Read NOAA NGS Geoid Height Grids 8552 8553NITF driver: 8554 * Add a generic way of decoding TREs from a XML description file located in data/nitf_spec.xml 8555 * Add a new metadata domain xml:TRE to report as XML content the decoded TREs 8556 * Add NITF_OPEN_UNDERLYING_DS configuration option that can be set to FALSE to avoid opening the underlying image with the J2K/JPEG drivers 8557 * Support JP2KAK driver for jpeg2000 output, use /vsisubfile/ in all cases 8558 * NITFCreate(): deal with cases where image_height = block_height > 8192 or image_width = block_width > 8192 (#3922) 8559 * Add IREPBAND and ISUBCAT creation option (#4343) 8560 * Make sure scanline access is used only on single block image (#3926) 8561 * Add a NITF_DISABLE_RPF_LOCATION_TABLE_SANITY_TESTS configuration option that can be set to TRUE to blindly trust the RPF location table (#3930) 8562 * Correctly assign hemisphere for a ICORDS='U' NITF file with accompanying .nfw and .hdr files (#3931) 8563 * Make PAM available at band level for JPEG/JPEG2000 compressed datasets (#3985) 8564 * Read IMRFCA TRE for RPC info. Read CSEXRA TRE. 8565 * Read CSDIDA and PIAIMC TREs as metadata 8566 * Optional support for densifying GCPs and applying RPCs to them 8567 * Add GetFileList() that captures associated files with some NITF products. 8568 * Added ESRI only ExtractEsriMD() function. Add raw header capture in NITF_METADATA domain in base64 encoded form. 8569 * Fetch NITF_DESDATA in segment data; decode specialized fields of XML_DATA_CONTENT and CSATTA DES 8570 * Truncate TRE name to 6 character (#4324) 8571 * Take into account the presence of comments when patching COMRAT for JPEG/JPEG2000 NITF (#4371) 8572 8573NWT_GRD driver: 8574 * Fix interpolation of color when the maximum z value is below a threshold of the color scheme (#4395) 8575 8576OPENJPEG driver: 8577 * Optimize decoding of big images made of a single block 8578 * Fallback to PAM to get projection and geotransform 8579 8580PCIDSK driver: 8581 * Refresh PCIDSK SDK from upstream 8582 * Fix support for band description setting, add BANDDESCn creation option 8583 * Implement GetCategoryNames(), and color table from metadata for PCIDSK 8584 * Fix exception on files with bitmaps as bands in GetFileList() 8585 * Avoid closing and reopening file so we don't fracture the SysBMData with a metadata write 8586 * In read-only, if .pix is raster (resp. vector) only, then make sure that OGR (resp. GDAL) cannot open it 8587 8588PDF driver: 8589 * Support linking against podofo library (LGPL) instead of poppler --> however 8590 pdftoppm binary from poppler distribution is needed for rasterization 8591 8592PDS driver: 8593 * Add support for MISSING and MISSING_CONSTANT keywords for nodata values (#3939) 8594 * Add support for uncompressed images in the UNCOMPRESSED_FILE subdomain (#3943) 8595 * Add support for PDS_Sample/LineProjectOffset_Shift/Mult (#3940) 8596 * Preliminary qube write support (#3944) 8597 * Fix band offset computation in BSQ (#4368) 8598 8599PNG driver: 8600 * Add compatibility with libpng >= 1.5.0 (#3914) 8601 * Upgrade internal libpng to 1.2.46 8602 8603PNM driver: 8604 * Make it compatible with VSI virtual files 8605 8606PostgisRaster driver: 8607 * Speed of PostGIS Raster driver improved. (#3228, #3233) 8608 8609Rasterlite driver: 8610 * Robustness against buggy databases 8611 * Enable QUALITY creation option for WEBP tiles 8612 8613RS2 driver: 8614 * Setup to properly support subdataset oriented metadata and overviews (#4006) 8615 * Allow opening subdatasets by passing in the folder (#4387) 8616 8617SAGA driver: 8618 * Fix reading & writing .sdat files bigger than 2GB (#4104) 8619 * Use nodata value from source dataset in CreateCopy() (#4152) 8620 8621SDE driver: 8622 * Break assumption that LONG==long (#4051) 8623 8624SNODAS driver: 8625 * New for GDAL/OGR 1.9.0 8626 * Read Snow Data Assimilation System datasets 8627 8628SRP driver: 8629 * Set Azimuthal Equidistant projection/geotransform info for ASRP north/south polar zones (#3946) 8630 * ASRP/USRP: fix skipping of padding characters on some datasets (#4254) 8631 8632SRTMHGT driver: 8633 * Fix segfault in CreateCopy() if we cannot create the output file 8634 8635Terralib driver: 8636 * Removed driver: was unfinished and is unmaintained (#3288) 8637 8638TIL driver: 8639 * Implement GetFileList() (#4008) 8640 8641TSX driver: 8642 * Add support for selecting a directory 8643 * Make Terrasar-X driver also open TanDEM-X data (#4390) 8644 * Fix memleaks 8645 8646USGSDEM driver: 8647 * Ensure blocks read in C locale (#3886) 8648 8649VRT driver: 8650 * Implement VRTDataset::IRasterIO() that can delegate to source Dataset::RasterIO() in particular cases 8651 * Implement GetMinimum() and GetMaximum() 8652 * GetFileList(): for /vsicurl/ resources, don't actually test their existence as it can be excruciating slow 8653 * VRTComplexSource: correctly deal with complex data type (#3977) 8654 * Fix 2 segfaults related to using '<VRTDataset', but with invalid XML, as the target filename of VRTDataset::Create() 8655 * Fix 'VRTDerivedRasterBand with ComplexSource and nodata value yields potentially uninitialized buffer' (#4045) 8656 * VRTDerivedRasterBand: Recognize PixelFunctionType and SourceTransferType options in AddBand() for (#3925) 8657 * Copy GEOLOCATION metadata in CreateCopy(). 8658 * VRTDerivedRasterBand: register pixel functions in a map for faster access (#3924) 8659 * VRT warped dataset: limit block size to dataset dimensions (#4137) 8660 8661WCS driver: 8662 * Add time support (#3449) 8663 * Honour dimensionLimit restrictions on WCS request size. 8664 * Fetch projection from returned image file chunks if they have them (i.e. GeoTIFF). 8665 * Honour Resample option for WCS 1.0. 8666 * Include service url in GetFileList if ESRI_BUILD defined 8667 * Check validity of 'OverviewCount' parameter 8668 * Add support for getting the coverage offering details from the xml:CoverageOffering domain 8669 * Try to preserve the servers name for a CRS (WCS 1.0.0) (#3449). 8670 8671WebP driver: 8672 * New for GDAL/OGR 1.9.0 8673 * Read/write GDAL driver for WebP image format 8674 8675WMS driver: 8676 * Implementation of the OnEarth Tiled WMS minidriver (#3493) 8677 * Implementation of a VirtualEarth minidriver 8678 * Improve handling of .aux.xml files, ensure colorinterp support works for tiled wms server 8679 * Report subdatasets when being provided WMS:http://server.url (classic WMS), WMS:http://server.url?request=GetTileService or a url to a TMS server; recognize datasets specified as a pseudo GetMap request 8680 * Add capability to open the URL of a REST definition for a ArcGIS MapServer, like http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer?f=json 8681 * Parse WMS-C TileSet info in VendorSpecificCapabilities of GetCapabilities 8682 * Implement CreateCopy() when source is a WMS dataset to serialize to disk the definition of a WMS dataset 8683 * WMS dataset : report INTERLEAVE=PIXEL 8684 * Make autodetection of TMS work with http://maps.qualitystreetmap.org/tilecache 8685 * Add capability to set Referer http header 8686 * Add a TMS-specific hack for some servers that require tile numbers to have exactly 3 characters (#3997) 8687 * Fix to make file:// URL to work 8688 * Add hack for OSGEO:41001 8689 * Fix GDALWMSRasterBand::IReadBlock() to avoid the ReadBlocks() optimization to become an anti-optimization in some use cases 8690 * Add service=WMS parameter if not already provided in <ServerUrl> (#4080) 8691 * Add options, ZeroBlockHttpCodes and ZeroBlockOnServerException, to control which http error codes should be considered as meaning blank tile (#4169) 8692 8693ZMap driver: 8694 * New for GDAL/OGR 1.9.0 8695 * Read/write GDAL driver for ZMap Plus Grid format 8696 8697== OGR 1.9.0 - Overview of Changes == 8698 8699Core: 8700 * RFC35: Add OGRLayer::DeleteField(), ReorderField(), ReorderFields() and AlterFieldDefn() 8701 * Avoid OGRLineString::addPoint( OGRPoint * poPoint ) to always force the geometry to be 3D (#3907) 8702 * Add a OGREnvelope3D object and getEnvelope( OGREnvelope3D * psEnvelope ) / OGR_G_GetEnvelope3D() method 8703 * Add OGR_G_SimplifyPreserveTopology() / OGRGeometry::SimplifyPreserveTopology() 8704 * OGR SQL: recognize optional ESCAPE escape_char clause 8705 * OGR SQL: allow NULL to be used as a value, so that 'SELECT *, NULL FROM foo works' 8706 * OGR SQL: Accept doublequoting of column_name in 'SELECT DISTINCT "column_name" FROM table_name' (#3966) 8707 * OGR SQL: OGRGenSQLResultsLayer: if the dialect is explicitly set to OGRSQL, don't propagate the WHERE clause of the SELECT to the source layer, but evaluate it instead at the OGRGenSQLResultsLayer level (#4022) 8708 * OGR SQL: Avoid error emission on requests such as 'SELECT MIN(EAS_ID), COUNT(*) FROM POLY' 8709 * OGR SQL: Avoid setting width/precision for AVG column 8710 * OGR SQL: Add a mechanism to delete a layer (DROP TABLE x) 8711 * OGR SQL: fix segfault when evaluating a 'IS NULL' on a float column (#4091) 8712 * OGR SQL: add support for new special commands : 'ALTER TABLE layername ADD COLUMN columnname columntype', 'ALTER TABLE layername RENAME COLUMN oldname TO new name', 'ALTER TABLE layername ALTER COLUMN columnname TYPE columntype', 'ALTER TABLE layername DROP COLUMN columnname' 8713 * OGR SQL: Add implicit conversion from string to numeric (#4259) 8714 * OGR SQL: Correctly parse big SQL statements (#4262) 8715 * OGR SQL: fix joining a float column with a string column (#4321) 8716 * OGR SQL: with DISTINCT, consider null values are such, and not as empty string (#4353) 8717 * OGR SQL: fix offset conversion for SUBSTR() (#4348) 8718 * Add OGR_G_GetPoints() 8719 * Fix parsing of WKT geometries mixing 2D and 3D parts 8720 * OGR_Dr_CopyDataSource() and OGRSFDriver::CopyDataSource() : make sure that the driver is attached to the created datasource (#4350) 8721 * OGRFeature::SetFrom() supports more conversions between field types. 8722 8723OGRSpatialReference: 8724 * Update to EPSG 7.9 database 8725 * Add Geocentric SRS Support 8726 * Add support for Interrupted Goode Homolosine projection (#4060) 8727 * Add SRS vertical unit support 8728 * Add SetVertCS(), OSRSetVertCS(), SetCompound(), IsCompound() and target oriented set/get linear units functions 8729 * ESRI : Improve spheroid remapping (#3904) 8730 * ESRI: Compare whole names in RemapNameBasedOnKeyName() (#3965). 8731 * ESRI: addition of ImportFromESRIStatePlaneWKT and ImportfromESRIWisconsinWKT methods 8732 * ESRI: importFromESRI() : support POLYCONIC projection from old style files (#3983) 8733 * ESRI: importFromESRI() : support LAMBERT_AZIMUTHAL projection from old style files (#4302) 8734 * ESRI: fix EPSG:32161 mapping 8735 * ESRI: fix Stereo/Oblique_Stereo/Double_Stereo (bugs #1428 and #4267) 8736 * ESRI: fix projection parameter mapping for Orthographic projection (#4249) 8737 * ESRI: add optional fixing of TOWGS84, DATUM and GEOGCS with GDAL_FIX_ESRI_WKT config. option (#4345 and #4378) 8738 * ESRI: fix add Krassowsky/Krasovsky 1940 spheroid mapping 8739 * Add EPSG:102113 in the data/esri_extra.wkt file 8740 * Add Germany zone 1-5 in range 31491-31495 in the data/esri_extra.wkt file 8741 * fix NAD_1983_Oregon_Statewide_Lambert_Feet_Intl code 8742 * added/updated coordinates systems provided by IGNF (#3868) 8743 * ERM: add support for EPSG:n based coordinate systems (#3955) 8744 * ImportFromEPSG(): Add default support for various degree units without supporting .csv file. 8745 * ImportFromEPSG(): Add support for spherical LAEA (#3828) 8746 * ImportFromEPSG(): use CoLatConeAxis parameter to build Krovak azimuth parameter (#4223) 8747 * importFromURN(): support compound SRS 8748 * importFromURN(): accept 'urn:opengis:crs:' syntax found in some TOP10NL GML files 8749 * Add CRS: support and for importing two part ESRI PE SRS with VERTCS 8750 * SetFromUserInput() : recognize 'IGNF:xxx' 8751 * Ensure that the result of importFromEPSGA() always has keyword ordering fixed up (#4178) 8752 * exportToERM() : deal with GDA94 datum and its UTM projections (#4208) 8753 * Fix ESRI_DATUM_NAME for D_MOLDREF99 and D_Philippine_Reference_System_1992 (#4378) 8754 8755Utilities: 8756 * ogr2ogr: Make 'ogr2ogr someDirThatDoesNotExist.shp dataSourceWithMultipleLayer' create a directory 8757 * ogr2ogr: make -overwrite/-append work with non-spatial tables created by GDAL 1.8.0; 8758 * ogr2ogr: take into account fields specified in the -where clause in combinations with -select to create the correct list of fields to pass to SetIgnoredFields() (#4015) 8759 * ogr2ogr: fix -zfield option so that the modified geometry properly reports coordinate dimension = 3. Also avoids it to be in the list of ignored field names 8760 * ogr2ogr: add -simplify option to simplify geometries 8761 * ogr2ogr: add a warning if the target filename has an extension or a prefix that isn't consistent with the default output format (i.e. Shapefile), but which matches another driver. Can be made quiet with -q option 8762 * ogrinfo/ogr2ogr: exit when SetAttributeFilter() fails, instead of silently going on (#4261) 8763 8764Multi driver topics: 8765 * RFC35 : implementation in Shapefile, Memory and PG drivers (#2671) 8766 * DXF, EDIGEO, KML, LIBKML, Shapefile, SDE, SOSI: Mark as supporting UTF-8 8767 * BNA, CSV, GPX, KML, GeoRSS, GML, LIBKML, GeoJSON, PGDump : accept both /dev/stdout and /vsistdout/ as filenames; remove 'stdout' as a valid alias that could be used in some of them (#4225, #4226) 8768 8769ARCGEN driver: 8770 * New for GDAL/OGR 1.9.0 8771 * Read-only OGR driver for Arc/Info Generate files 8772 8773CouchDB driver: 8774 * New for GDAL/OGR 1.9.0 8775 * Read/write OGR driver for CouchDB / GeoCouch 8776 8777CSV driver: 8778 * Add special recognition and handling for USGS GNIS (Geographic Names Information System) files 8779 * Directly recognize the structure of the allCountries file from GeoNames.org 8780 * Implement GetFeatureCount() to be a little bit faster 8781 * Accept /dev/stdout as a filename for CreateDataSource() 8782 * Fix handling of non-numeric values in numeric columns (NULL instead of 0) 8783 * Fix handling of column names with numbers 8784 * Recognize numeric fieldnames inside quotes 8785 * Accept real numbers with ',' as decimal separator when ';' is the field separator (CSV export in French locale) 8786 8787DXF driver: 8788 * Add support for DXF_ENCODING config var and DWGCODEPAGE header field (#4008) 8789 * Added DXF_MERGE_BLOCK_GEOMETRIES 8790 * Treat ATTDEFs the same as TEXT entities 8791 * Implement hatch polyline and elliptical arc support, hatch fill, do not polygonize closed smoothed lines 8792 * Add handling of hidden/frozen/off layers. 8793 8794DWG driver: 8795 * New for GDAL/OGR 1.9.0 8796 * Read DWG files through the use of Open Design Alliance Teigha Libraries 8797 8798EDIGEO driver: 8799 * New for GDAL/OGR 1.9.0 8800 * Read files of French EDIGEO exchange format 8801 8802FileGDB driver: 8803 * New for GDAL/OGR 1.9.0 8804 * Read/write support based on FileGDB API SDK 8805 8806GeoJSON driver: 8807 * Support writing 3D lines and polygons 8808 * Add a bbox attribute with the geometry bounding box if WRITE_BBOX layer creation option is set (#2392) 8809 * Write bbox of FeatureCollection before features when file is seekable 8810 * Remove unsetting of FID that caused FID not at the last position of properties to be lost 8811 * Properly deal with null field values in reading and writing 8812 * Handle OFTIntegerList, OFTRealList and OFTStringList fields 8813 * Recognize other arrays as OFTString field 8814 * Fix assertion on unhandled ESRI json (#4056) 8815 * Fix segfault on feature where 'properties' member exists but isn't an object (#4057) 8816 * Better detection of OGR type for numeric JSON fields (#4082) 8817 * Add COORDINATE_PRECISION layer creation option to specify the maximum number of figures after decimal point in coordinates; set to 15 by default with smart truncation of trailing zeros (like done for WKT) 8818 * Add OGR_G_ExportToJsonEx() to accept a list of options 8819 * Add ability to detect geojson files without an extension (#4314) 8820 8821Geomedia driver: 8822 * New for GDAL/OGR 1.9.0 8823 * Read-only driver to read Geomedia .MDB databases 8824 8825GeoRSS driver: 8826 * Parse RSS documents without <channel> element 8827 8828GFT driver: 8829 * New for GDAL/OGR 1.9.0 8830 * Read/write driver for Google Fusion Tables 8831 8832GML driver: 8833 * Major performance improvement when reading large multi-layer GML files. See usage of new GML_READ_MODE configuration option 8834 * Support gml:xlink resolving for huge GML files through GML_SKIP_RESOLVE_ELEMS=HUGE (requires SQLite) 8835 * Add GML_GFS_TEMPLATE config option to specify a template .gfs file that can be used for several GML files with similar structure (#4380) 8836 * Be able to build the driver with support of both Expat and Xerces libraries and add ability of select one at runtime. For UTF-8 documents, we select Expat if it is available, because it is faster than Xerces 8837 * Expose fid or gml_id as feature fields if autodetected. This behavior can be altered by the GML_EXPOSE_FID / GML_EXPOSE_GML_ID configuration option. 8838 * Improve handling of .gml and .xsd produced by FME (in particular for CanVec GML) 8839 * Be able to open .gz file directly (like OS Mastermap ones), and read/write the .gfs file next to the .gz file 8840 * Fix segfault when encountering an invalid (or unhandled by OGR) geometry and when the axis order is lat/long (#3935) 8841 * GML3: use a new method to interpret Face objects (which requires GEOS support); 8842 old method available if GML_FACE_HOLE_NEGATIVE config. option set to YES (#3937) 8843 * GML3: support Curve as a valid child for curveProperty inside directEdge parsing (#3934) 8844 * GML3: don't force the linestring to be 3D when inverting its orientation during parsing of directedEdge (#3936) 8845 * GML3: accept <pointProperty> element in <gml:LineString> or <gml:LineStringSegment> 8846 * OGR_G_CreateFromGML(): accept <gml:coordinates> with coordinate tuples separated by comma and coordinate components separated by space 8847 * Recognized schemas with <complexType> inside <element>, such as the one returned by http://deegree3-demo.deegree.org:80/deegree-utah-demo/services 8848 * Write the Z component of bounding box for 25D geometries 8849 * Force layer geometry type to 3D when there's only a .xsd file and we detect a hint that the bounding box is 3D 8850 * Handle layers of type wkbNone appropriately (#4154) 8851 * Change format of (GML 2.1.1) FID generated from Fxxx to layer_name.xxx (where xxx is the OGR FID) to ensure uniqueness (#4250) 8852 * Accept 'GML3Deegree' as a valid value for the dataset creation option FORMAT, to produce a .XSD that should be better handled by Deegree3 (#4252), and 'GML3.2' to produce GML file and schema that validate against GML 3.2.1 schema. 8853 * Don't try to parse successfully a feature type in the .xsd if there are elements we don't know how to parse. Better to rely on the .gfs mechanism (#4328) 8854 * Fix bug in OGRAtof() that caused wrong parsing of coordinates in GML files written in scientific notation (#4399) 8855 8856GMT driver: 8857 * Fix GetExtent() result that swallowed the first char of the minx bound (#4260) 8858 8859IDRISI driver: 8860 * New for GDAL/OGR 1.9.0 8861 * Read Idrisi .VCT vector files 8862 8863ILI1 driver: 8864 * Fix for missing geometry in ILI1 8865 8866LIBKML driver: 8867 * Set the OGRStylePen unit type to pixel when reading <LineStyle> 8868 * Avoid ingesting zip files that are not valid kmz (#4003) 8869 * Do not use displayname to set the field name 8870 * Recognize <Data> elements of <ExtendedData> in case <ExtendedData> doesn't use a <SchemaData> 8871 * Fix mapping of the type attribute of <SimpleType> elements inside <Schema> to OGR field type (#4171) 8872 * Parse correctly kml docs containing only one placemark 8873 * Properly set the feature style string from a placemarks style 8874 * Improve OGRStyleLabel <-> KmlLabelStyle mapping 8875 * Combine styles from the style table and features styles when LIBKML_RESOLVE_STYLE=YES (#4231) 8876 * Check that string values put in fields are valid UTF-8 (#4300) 8877 8878MDB driver: 8879 * New for GDAL/OGR 1.9.0 8880 * Read-only driver to read PGeo and Geomedia .MDB databases 8881 * Relies on using the Java Jackcess library (LGPL) through JNI. 8882 8883MITAB driver: 8884 * Add support for reading google mercator from mapinfo (#4115) 8885 * Fixed problem of the null datetime values (#4150) 8886 * Fix problem with tab delimiter used in MIF files (#4257) 8887 8888MSSQLSpatial driver: 8889 * Removing 'Initial Catalog' which is not supported in the ODBC SQL driver connection strings. 8890 * Allow to specify 'Driver' in MSSQL connection strings (#4393) 8891 * Fix for the IDENTITY INSERT problem with MSSQL Spatial (#3992) 8892 * Add more verbose warnings to the geometry validator 8893 * Fix for the schema handling problem with MSSQL Spatial (#3951) 8894 * Fix for the corrupt geometry report when using the ogr2ogr -sql option (#4149) 8895 8896MySQL driver: 8897 * Recognize columns with types POINT, LINESTRING, etc. as geometry columns 8898 8899NAS driver: 8900 * Add support for treating wfs:Delete as a special Delete feature with typeName and FeatureId properties 8901 * Handle empty files gracefully (#3809) 8902 * Preliminary support for SRS in NAS files, including 3GKn SRS 8903 * Implement special treatment for <lage> to be zero passed and string (NAS #9) 8904 * Add special handling of punktkennung (NAS #12) 8905 * Add special handling for artDerFlurstuecksgrenze (#4255) 8906 * Add support for wfsext:Replace operations (PostNAS #11) 8907 * Correct NASHandler::dataHandler() to avoid trimming non-leading white space 8908 8909NTF driver: 8910 * Create and manage height field as floating point since some DTM products have floating point elevations. 8911 8912OCI driver: 8913 * Added TRUNCATE layer creation option (#4000) 8914 * Clear errors after speculative dimension calls (#4001) 8915 * Fix multithreading related problems (#4039) 8916 * Ensure that AllocAndBindForWrite does not mess up if there are no general attributes (#4063) 8917 * Implement DeleteLayer(int) method 8918 * Ensure extents updated by SyncToDisk(), and that new features are merged into existing extents (#4079) 8919 8920OGDI driver: 8921 * Fix GetFeature() that did not like switching between layers 8922 8923PG driver: 8924 * Write geometries as EWKB by default to avoid precision loss (#4138) 8925 * Return the table columns in the order they are in the database (#4194) 8926 * Add a NONE_AS_UNKNOWN layer creation option that can be set to TRUE to force layers with geom type = wkbNone to be created as if it was wkbUnknown (PostGIS GEOMETRY type) to be able to revert to behavior prior to GDAL 1.8.0 (#4012) 8927 * Add EXTRACT_SCHEMA_FROM_LAYER_NAME layer creation option that can be set to OFF to disable analysis of layer name as schema_name.table_name 8928 * Add FID layer creation option to specify the name of the FID column 8929 * ogr2ogr: make sure that for a PG datasource, -nln public.XXX can also be used with -append 8930 * Fix CreateFeatureViaInsert() to emit 'INSERT INTO xx DEFAULT VALUES' 8931 * Fix handling of Nan with fields with non-zero width (#2112) 8932 * Use wrapper for PQexec() to use PQexecParams() instead in most cases 8933 * Add proper escaping of table and column names 8934 * OGR SQL: add proper column name escaping and quoting for PostgreSQL datasources 8935 * Launder single quote character in table name 8936 * Better reporting of error in case of failed ExecuteSQL() 8937 * Create field of type OFTString and width > 0, as VARCHAR(width) (#4202) 8938 * Add more compat with Postgis 2.0SVN (geometry_columns- #4217, unknown SRID handling) 8939 * Better behavior, in particular in error reporting, of ExecuteSQL() when passed with non-select statements, or with select statements that have side-effects such as AddGeometryColumn() 8940 8941PGDump driver: 8942 * fix handling of Nan with fields with non-zero width (#2112) 8943 * Add CREATE_SCHEMA and DROP_TABLE layer creation option (#4033) 8944 * Fix crash when inserting a feature with a geometry in a layer with a geom type of wkbNone; 8945 * PG and PGDump: fix insertion of features with first field being a 0-character string in a non-spatial table and without FID in COPY mode (#4040) 8946 * Add NONE_AS_UNKNOWN, FID, EXTRACT_SCHEMA_FROM_LAYER_NAME layer creation options 8947 * Better escaping of column and table names 8948 * Create field of type OFTString and width > 0, as VARCHAR(width) (#4202) 8949 8950PGeo driver: 8951 * Move CreateFromShapeBin() method to an upper level 8952 * Only try to open .mdb files that have the GDB_GeomColumns string 8953 * Decode Z coordinate for a POINTZM shape 8954 * Aad support for decoding multipoint/multipointz geometries 8955 * Fix setting of the layer geometry type 8956 * Add support for zlib compressed streams 8957 * Implement MultiPatch decoding 8958 8959SDE driver: 8960 * Add support for decoding NSTRING fields (#4053) 8961 * Add support in CreateLayer() to clean up partially registered tables that aren't full spatial layers 8962 * Add logic to force envelope for geographic coordsys objects (#4054) 8963 * Add USE_STRING layer creation and configuration options information 8964 * Set SE_MULTIPART_TYPE_MASK for multipolygon layers (#4061). 8965 * Change how offset and precision are set for geographic coordinate systems to more closely match SDE 8966 8967SEGUKOOA driver: 8968 * New for GDAL/OGR 1.9.0 8969 * Read files in SEG-P1 and UKOOA P1/90 formats 8970 8971SEGY driver: 8972 * New for GDAL/OGR 1.9.0 8973 * Read files in SEG-Y format 8974 8975Shapefile driver: 8976 * Encoding support for shapefile/dbf (#882) 8977 * Allow managing datasources with several hundreds of layers (#4306) 8978 * Lazy loading of SRS and lazy initialization of attribute index support 8979 * Use VSI*L API to access .qix spatial index files 8980 * Add special SQL command 'RECOMPUTE EXTENT ON layer_name' to force recomputation of the layer extent (#4027) 8981 * Faster implementation of GetFeatureCount() in some circumstances. 8982 * Fix crash in CreateField() if there is no DBF file 8983 * Fix add field record flushing fix (#4073) 8984 * Fix decoding of triangle fan in a multipatch made of several parts (#4081) 8985 * Refuse to open a .shp in update mode if the matching .dbf exists but cannot be opened in update mode too (#4095) 8986 * Recognize blank values for Date fields as null values (#4265) 8987 * Recognize 'NULL' as a valid value for SHPT creation option as documented 8988 * Check that we are not trying to add too many fields. 8989 * Support reading measure values as Z coordinate. 8990 8991SQLite/Spatialite driver: 8992 * Spatialite: major write support improvements (creation/update of Spatialite DB now limited to GDAL builds with libspatialite linking) 8993 * Spatialite: add support for 3D geometries (#4092) 8994 * Spatialite: speed-up spatial filter on table layers by using spatial index table (#4212) 8995 * Spatialite: add support for reading Spatialite views registered in the views_geometry_columns 8996 * Spatialite: better support for building against amalgamated or not 8997 * Spatialite: when it exists, use srs_wkt column in spatial_ref_sys when retrieving/inserting SRS 8998 * Spatialite: add COMPRESS_GEOM=YES layer creation option to generate Spatialite compressed geometries 8999 * Spatialite: add support for VirtualXLS layers. 9000 * Spatialite: imported VirtualShape support, in particular it is now possible to open on-the-fly a shapefile as a VirtualShape with 'VirtualShape:shapefile.shp' syntax as a datasource 9001 * Implement RFC35 (DeleteField, AlterFieldDefn, ReorderFields) 9002 * Implement DeleteDataSource() 9003 * Implement DeleteFeature() 9004 * Implement SetFeature() by using UPDATE instead of DELETE / INSERT 9005 * Add capability to use VSI Virtual File API when needed (if SQLite >= 3.6.0) 9006 * Make CreateDataSource(':memory:') work 9007 * Enforce opening update/read-only mode to allow/forbid create/delete layers, create/update features (#4215) 9008 * Launder single quote character in table name; properly escape table name if no laundering (#1834) 9009 * Use ALTER TABLE ADD COLUMN by default to create a new field; older method can still be used by defining the OGR_SQLITE_USE_ADD_COLUMN config option to FALSE in order to provide read-compat by sqlite 3.1.3 or earlier 9010 * Fix bug in CreateField() : if there was already one record, the content of the table was not preserved, but filled with the column names, and not their values 9011 * Map 'DECIMAL' columns to OGR real type (#4346) 9012 * Add OGR_SQLITE_CACHE configuration option for performance enhancements 9013 * Try to reuse INSERT statement to speed up bulk loading. 9014 9015SVG driver: 9016 * New for GDAL/OGR 1.9.0 9017 * Read only driver for Cloudmade Vector Stream files 9018 9019S57 driver: 9020 * Add support for Dutch inland ENCs (#3881) 9021 * Allow up to 65536 attributes, use GUInt16 for iAttr (#3881) 9022 * Be cautious of case where end point of a line segment has an invalid RCID 9023 * Correct handling of update that need to existing SG2D into an existing feature without it (#4332) 9024 9025VRT driver: 9026 * Do not try to read too big files 9027 * Lazy initialization of OGRVRTLayer 9028 * Don't set feature field when source feature field is unset 9029 9030WFS driver: 9031 * Add preliminary support for WFS 2.0.0, but for now don't request it by default. 9032 * Increase performance of layer definition building by issuing a DescribeFeatureType request for several layers at the same time 9033 * Better server error reporting 9034 * Use the layer bounding box for EPSG:4326 layers (restricted to GEOSERVER for now) (#4041) 9035 * Add capability of opening a on-disk Capabilities document 9036 * Add special (hidden) layer 'WFSLayerMetadata' to store layer metadata 9037 * Add special (hidden) layer 'WFSGetCapabilities' to get the raw XML result of the GetCapabilities request 9038 * CreateFeature()/SetFeature(): use GML3 geometries in WFS 1.1.0 (make TinyOWS happy when it validates against the schema) 9039 * Make spatial filtering work with strict Deegree 3 servers 9040 * Fix reading when layer names only differ by their prefix 9041 9042XLS driver: 9043 * New for GDAL/OGR 1.9.0 9044 * Read only driver for MS XLS files and relies on FreeXL library. 9045 9046XPlane driver: 9047 * Port to VSI*L API 9048 9049XYZ driver: 9050 * Ignore comment lines at the beginning of files 9051 9052== SWIG Language Bindings == 9053 9054General : 9055 * RFC 30: Correct the signature of Datasource.CreateDataSource() and DeleteDataSource(), gdal.Unlink() to accept UTF-8 filenames (#3766) 9056 * Add Band.GetCategoryNames() and Band.SetCategoryNames() 9057 * Add Geometry.GetPoints() (only for Python and Java) (#4016) 9058 * Add Geometry.GetEnvelope3D() 9059 * Add Geometry.SimplifyPreserveTopology() 9060 * Extend SWIG Geometry.ExportToJson() to accept a list of options (#4108) 9061 * Add (OGR)DataSource.SyncToDisk() 9062 * Add SpatialReference.SetVertCS(), IsSameVertCS(), IsVertical(), SetCompound(), IsCompound() 9063 * Add SpatialReference.SetIGH() (#4060) 9064 * RFC 35: Add OGRLayer.DeleteField(), ReorderField(), ReorderFields(), AlterFieldDefn() 9065 * Add gdal.VSIFTruncateL() 9066 9067CSharp bindings: 9068 * Implement the typemap for utf8_path in C# (#3766) 9069 * Correcting the signature of OGRDataSource.Open to make the utf8 typemap to work (#3766) 9070 9071Java bindings: 9072 * Turn the gdalJNI, gdalconstJNI and osrJNI into package private classes 9073 * Make Layer.GetExtent() return null when OGR_L_GetExtent() fails. 9074 9075Perl bindings: 9076 * The "Points" method of Geometry was not accepting its own output in the case of a single point. It accepted only a point as a list. Now it accepts a point both as a list containing one point (a ref to a point as a list) and a point as a list. 9077 * Fixed UTF-8 support in decoding names (datasource, layer, field etc.). 9078 * Assume all GDAL strings are UTF-8, handle all changes in typemaps. 9079 * Additions to Perl bindings due to new developments etc: Layer capabilities, GeometryType method for Layer, improved create, new Export and Set methods for SpatialReference. 9080 * Detect context in a typemap which returns a array, this now returns a list in list context; the change affects at least GetExtent and GetEnvelope methods, which retain backward compatibility though new and/or changed methods: FeatureDefn::Name, FeatureDefn::GeometryIgnored, FeatureDefn::StyleIgnored, Feature::ReferenceGeometry, Feature::SetFrom, FieldDefn::Ignored, Geometry::AsJSON 9081 * Perl typemaps: more correct manipulation of the stack, more cases where a list is returned in a list context, better handling of callback_data @Band::COLORINTERPRETATIONS, Band methods Unit, ScaleAndOffset, GetBandNumber, RasterAttributeTable method LinearBinning 9082 * Typemaps for VSIF{Write|Read}L, tests and docs for some VSI* functions. 9083 * Perl bindings: better by name / by index logic, some checks for silent failures, return schema as a hash if wanted, support ->{field} syntax for features, return list attributes as lists or listrefs as wished so that ->{field} works for lists too (API change) 9084 9085Python bindings: 9086 * Improvements for ogr.Feature field get/set 9087 * Add hack to bring Python 3.2 compatibility 9088 * First argument of VSIFWriteL() should accept buffers for Python3 compat 9089 * Fix reference leak in 'typemap(in) char **dict' 9090 * Add gdal.VSIStatL() 9091 * swig/python/setup.py : fix for virtualenv setups (#4285) 9092 * Layer.GetExtent() : add optional parameter can_return_null that can be set to allow returning None when OGR_L_GetExtent() fails 9093 * Make gdal.VSIFSeekL(), gdal.VSIFTellL() and gdal.VSIFTruncateL() use GIntBig instead of long for compat with 32bit platforms 9094 * Add script to build the python extensions with Python 2.7 and a mingw32 cross-compiler under Linux/Unix 9095 9096Ruby bindings: 9097 * Build SWIG Ruby Bindings against modern Ruby versions (1.8.7 and 1.9.2) (#3999) 9098 9099= GDAL/OGR 1.8.0 release notes = 9100 9101(Note: Most changes/bugfixes between 1.7.0 and 1.8.0 that have already gone 9102to the 1.7.X maintenance releases are not mentioned hereafter.) 9103 9104== In a nutshell... == 9105 9106* New GDAL drivers : GTX, HF2, JPEGLS, JP2OpenJPEG, JPIPKAK, KMLSUPEROVERLAY, 9107 LOS/LAS, MG4Lidar, NTv2, OZI, PDF, RASDAMAN, XYZ 9108* New OGR drivers : AeronavFAA, ArcObjects, GPSBabel, HTF, LIBKML, MSSQLSpatial, NAS, 9109 OpenAir, PDS, PGDump, SOSI, SUA, WFS 9110* Significantly improved OGR drivers : DXF, GML 9111* New implemented RFCs : RFC 7, RFC 24, RFC 28, RFC 29, RFC 30, RFC 33 9112* New utility : gdallocationinfo 9113 9114== Backward compatibility issues == 9115 9116* MITAB driver: use "," for the OGR Feature Style id: parameter delimiter, 9117 not "." as per the spec. Known impacted application : 9118 MapServer (http://trac.osgeo.org/mapserver/ticket/3556) 9119* RFC 33 changes the way PixelIsPoint is handled for GeoTIFF (#3838,#3837) 9120* GML driver: write valid <gml:MultiGeometry> element instead of the non-conformant 9121 <gml:GeometryCollection>. For backward compatibility, recognize both syntax for 9122 the reading part (#3683) 9123 9124== GDAL/OGR 1.8.0 - General Changes == 9125 9126Build(All): 9127 * Make sure that 'import gdal' can work in a --without-ogr build 9128 9129Build(Unix): 9130 * Fix compilation on RHEL/Centos 64bit for expat and sqlite3 (#3411) 9131 * Update to autoconf 2.67 and libtool 2.2.6 9132 * During the external libtiff autodetection check whether library version is 4.0 9133 or newer, fallback to internal code otherwise. It is still possible to link 9134 with older libtiff using the explicit configure option (#3695) 9135 * Make --with-threads=yes the default 9136 * Allow using --with-spatialite=yes 9137 * Check /usr/lib64/hdf for RedHat 64bit 9138 9139Build(Windows): 9140 * Change the default MSVC version to VS2008. 9141 9142== GDAL 1.8.0 - Overview of Changes == 9143 9144Port: 9145 * RFC 7 : Use VSILFILE for VSI*L Functions (#3799) 9146 * RFC 30 : Unicode support for filenames on Win32 9147 * Implement Rename() for /vsimem 9148 * New virtual file system handlers : 9149 - /vsicurl/ : to read from HTTP or FTP files (partial downloading) 9150 - /vsistdin/ : to read from standard input 9151 - /vsistdout/ : to write to standard output 9152 - /vsisparse/ :mainly to make testing of large file easier 9153 - /vsitar/ : to read in .tar or .tgz/.tar.gz files 9154 * Add C API to create ZIP files 9155 * Add support for writable /vsizip/ 9156 * Add VSIBufferedReaderHandle class that is useful to improve performance when 9157 doing backward seeks by a few bytes on underlying file handles for which 9158 backwardseeks are very slow, such as GZip handle 9159 * Add service for base64 decoding 9160 * CPL ODBC : Add transaction support (#3745) 9161 * CPL ODBC: Increase the default connection timeout to 30 sec 9162 * Add VSIStatExL() that has a flag to specify which info is really required 9163 (potential speed optimization on slow virtual filesystems such as /vsicurl) 9164 * Add VSIIsCaseSensitiveFS() to avoid ugly #ifndef WIN32 / #endif in the code of 9165 various drivers 9166 * Add Recode() convenience method to CPLString 9167 * HTTP downloader: add PROXY and PROXYUSERPWD options (and GDAL_HTTP_PROXY and 9168 GDAL_HTTP_PROXYUSERPWD configurations option) to allow request to go through a 9169 proxy server. 9170 9171Core: 9172 * RFC 24: progressive/async raster reading 9173 * On Unix, add capability of opening the target of a symlink through GDALOpen() 9174 even if it not a real filename. Useful for opening resources expressed as 9175 GDAL virtual filenames in software offering only file explorers (#3902) 9176 * Assume anything less than 100000 for GDAL_CACHEMAX is measured in megabytes. 9177 * Read cartesian coordinates if applicable in GDALLoadOziMapFile(). 9178 * Avoid being overly sensitive to numeric imprecision when comparing pixel 9179 value and nodata value in GDALRasterBand::ComputeStatistics()/ 9180 ComputeRasterMinMax(), especially for GeoTIFF format where nodata is 9181 stored as text (#3573) 9182 * Better handling of NaN (not a number) (#3576) 9183 * Add C wrapper GDALSetRasterUnitType() for GDALRasterBand::SetUnitType() (#3587) 9184 * Add GDALLoadRPCFile() to read RPCs from GeoEye _rpc.txt files (#3639) 9185 * Allow GDALLoadRPB/RPC/IMDFile() to be called directly with the RPB/RPC/IMD 9186 filename 9187 * In GDAL cache block, use 64-bit variables for cache size 9188 * Add GDALSetCacheMax64(), GDALGetCacheMax64() and GDALGetCacheUsed64() (#3689) 9189 * Improve formatting of seconds in DecToDMS() 9190 * Support negative nPixelOffset values for RawRasterBands 9191 * GDALDatasetCopyWholeRaster(): improve performance in certain cases by better 9192 fitting to input/output block sizes 9193 * Add GDALRasterBandCopyWholeRaster() 9194 * Make sure band descriptions are properly captured and cloned (#3780) 9195 * GDALDataset/GDALRasterBand::CreateMaskBand(): invalidate pre-existing raster 9196 band mask that could be created lazily with GetMaskBand()/GetMaskFlags(), 9197 so that a later GetMaskBand() returns the newly created mask band 9198 * Overview computation : speed improvements in resampling kernels 9199 * Fix dereferencing of open datasets for GetOpenDatasets (#3871) 9200 * Add DllMain callback to set-up and tear-down internal GDAL library 9201 resources automatically (#3824) 9202 * List .aux file if it used in GDALPamDataset::GetFileList() 9203 * PAM dataset : try retrieving projection from xml:ESRI metadata domain 9204 9205Algorithms: 9206 * rasterize: Burn the attribute value in ALL the bands during rasterization. (#3396) 9207 * geoloc : Allow using XBAND and YBAND with height == 1 in the case of a regular 9208 geoloc grid, suc h as for LISOTD_HRAC_V2.2.hdf (#3316) 9209 * GDALFillNodata(): improve&fix progress report 9210 * warper : Try to determine if we will need a UnifiedSrcDensity buffer 9211 when doing memory computations (#3515). 9212 * warper : GDALSuggestedWarpOutput2(): use more sample points around the edge 9213 of the raster to get more accurate result (#3742) 9214 * warper : added (preliminary) support for mask bands that aren't nodata or alpha 9215 * warper : integrate Google Summer of Code OpenCL implementation of warper 9216 * gdalgrid: Move ParseAlgorithmAndOptions from apps/gdal_grid.cpp to 9217 alg/gdalgrid.cpp (#3583) 9218 * RPCTransformer: take into account optional DEM file to extract elevation 9219 offsets (RPC_HEIGHT_SCALE and RPC_DEM transformation options added) (#3634) 9220 * GDALReprojectImage() : correctly assign nSrcAlphaBand and nDstAlphaBand (#3821) 9221 * gdalgrid : Properly initialize the first nearest distance in GDALGridNearestNeighbor(). 9222 9223Utilities : 9224 * gdallocationinfo : new 9225 * nearblack: add -setalpha option to add/set an alpha band + -of, -q, -co 9226 * nearblack: add -setmask option to use a mask band to mask the nodata areas 9227 * gdalbuildvrt: support stacking ungeoreferenced images when using -separate, 9228 provided they have the same size (#3432) 9229 * gdalbuildvrt: implement a check to verify that all color tables are identical 9230 * gdalbuildvrt: automatically create a VRT mask band as soon one of the sources 9231 has a dataset mask band (non-trivial = neither alpha, neither alldata, neither nodata) 9232 * gdalbuildvrt: use OSRIsSame() to check if all source raster have same SRS (#3856) 9233 * gdal_translate: Transfer GEOLOCATION in the -of VRT case if spatial 9234 arrangement of the data is unaltered 9235 * gdal_translate : add support for resizing datasets with mask bands 9236 * gdal_translate : add -mask option to add a mask band from an input band/mask band. 9237 Also extend syntax for the value of the -b option to allow specifying mask band as input band 9238 * gdal_translate : support '-a_nodata None' as a way of unsetting the nodata value 9239 * gdal_translate : invalidate statistics when using -scale, -unscale, -expand, -srcwin, 9240 -projwin or -outsize and a new -stats option to force their (re)computation (#3889) 9241 * gdal_rasterize: Add capability of creating output file (#3505) 9242 * gdaldem: add a new option, -compute_edges, that enable gdaldem to compute 9243 values at image edges or if a nodata value is found in the 3x3 window, 9244 by interpolating missing values 9245 * gdaldem : add '-alg ZevenbergenThorne' as an alternative to Horn formula 9246 for slope, aspect and hillshade 9247 * gdaldem : support GMT .cpt palette files for color-relief (#3785) 9248 * gdalwarp: add -crop_to_cutline to crop the extent of the target dataset to 9249 the extent of the cutline 9250 * gdalwarp: add a -overwrite option (#3759) 9251 * gdal_grid : Properly use the spatial filter along with the bounding box. 9252 * epsg_tr.py: added -copy format for INGRES COPY command 9253 * hsv_merge.py: support RGBA dataset as well as RGB dataset, add -q and -of 9254 options, avoid using hillband when it is equal to its nodata value 9255 * val_repl.py: copy geotransform and projection from input dataset to output 9256 dataset 9257 * gdal_retile.py : assign color interpretation (#3821) 9258 * gdal_retile.py : add -useDirForEachRow option to create a different output structure (#3879) 9259 * Make gdal_translate and gdalwarp return non-zero code when block writing failed 9260 for some reason (#3708) 9261 * loslas2ntv2.py : new utility : .los/.las to NTv2 converter 9262 * gdal_calc.py : new utility 9263 * Add -tap option to gdal_rasterize, gdalbuildvrt, gdalwarp and gdal_merge.py 9264 to align on a standard grid (#3772) 9265 9266AAIGRID driver: 9267 * Cast nodata value to float to be consistent with precision of pixel data in 9268 GDT_Float32 case; small optimization to avoid reading the first 100K when 9269 we know that the datatype is already Float32 9270 * Allow reading files where decimal separator is comma (#3668) 9271 * Detect 1e+XXX as a real value among integer values (#3657) 9272 * Add a AAIGRID_DATATYPE configuration option that can be set to Float64 9273 * speed-up CreateCopy(), particularly on windows, by buffering the output 9274 9275AIGrid driver: 9276 * Support sparse sets of tile files {w,z}001???.adf (#3541) 9277 9278BSB driver: 9279 * Capture extension lines for headers 9280 * Added UNIVERSAL TRANSVERSE MERCATOR, LCC and POLYCONIC handling (#3409) 9281 * provide an option (BSB_IGNORE_LINENUMBERS) to ignore line numbers as some 9282 generators do them wrong but the image is otherwise readable (#3776) 9283 * Avoid turning missing values to index 255 (#3777) 9284 9285DODS driver: 9286 * Compilation fix to support libdap 3.10 9287 9288DTED driver: 9289 * Add origin metadata in original format (#3413) 9290 * Report NIMA Designator field as 'DTED_NimaDesignator' metadata (#3684) 9291 * Fixes to read some weird DTED3 file 9292 9293ECW driver: 9294 * Support building against 4.1 SDK (compat with older versions maintained) (#3676) 9295 * Add alpha support with 4.1 SDK, and various configuration options 9296 * Add pseudo powers of two overviews. 9297 9298EHdr driver: 9299 * Improvements to deal with http://www.worldclim.org/futdown.htm datasets 9300 9301ENVI driver: 9302 * Support tabulation character in .hdr files (#3741) 9303 * Support reading gzipped image file (#3849) 9304 9305ERS driver: 9306 * Read "Units" child of the "BandId" node and set it as unit type for RasterBand. 9307 9308FITS driver: 9309 * Accept files whose metadata list doesn't end with 'END' (#3822) 9310 9311GeoRaster driver : 9312 * Suppress error when testing SRID code as EPSG (#3326) 9313 * Several improvements and fixes (#3424) 9314 * Deprecates JPEG-B compression (#3429) 9315 * Fix GetColorInterpretation() on RGBA's alpha channel (#3430) 9316 * Allows OS authentication (#3185) 9317 * Add support for Point Cloud, add transaction control wrapper 9318 * use OCI Bind to load VAT (#3277) 9319 * Change order of NODATA tag on XML metadata (#3673) 9320 * Add support for per band NoData value - Oracle 11g (#3673) 9321 * Add support to ULTCoordinate - (#3718) 9322 * Fix interleaving cache error (#3723) 9323 * Fix compress vs nbits order error (#3763) 9324 * Fix writing interleaved jpeg #3805 and reading default blocksize #3806 9325 * Add create option blocking=(YES,NO,OPTIMUM) #3807, also fix #3812 9326 9327GRASS driver: 9328 * Update GDAL and OGR GRASS drivers to compile against GRASS 7.0SVN (#2953) 9329 9330GTiff driver : 9331 * RFC 33 : Adjust PixelIsPoint handling (#3838,#3837) 9332 * Refresh internal libtiff with upstream 9333 * Refresh internal libgeotiff with upstream 9334 * Add PREDICTOR_OVERVIEW configuration option to set the predictor value for 9335 LZW or DEFLATE compressed external overviews; Also make sure that the 9336 predictor value gets well propagated in the case of internal overviews (#3414) 9337 * Add a COPY_SRC_OVERVIEWS creation option (for CreateCopy()) that copies 9338 existing overviews in the source dataset. 9339 * Make GetScale() and GetOffset() retrieve values from PAM if not available in 9340 internal metadata 9341 * Use GCP info from PAM if available 9342 * Support CreateCopy() on datasets with a color indexed channel and an alpha 9343 channel (#3547) 9344 * Allow reading geotransform when opening with GTIFF_DIR prefix (#3478) 9345 * Add a warning when clipping pixel values for odd-bits band 9346 * Make sure that 16bit overviews with jpeg compression are handled using 12bit 9347 jpeg-in-tiff (#3539) 9348 * Add GDAL_TIFF_OVR_BLOCKSIZE configuration option to specify block size used 9349 for overviews 9350 * Read RPCs from GeoEye _rpc.txt files (#3639) 9351 * Implement GetUnitType() and SetUnitType(); make sure to remove 9352 TIFFTAG_GDAL_METADATA tag if it existed before and there are no more 9353 metadata; fix to make sure we can unset offset & scale stored in PAM 9354 * Speed-up writing of blocks in case of multi-band 8 bit images 9355 * Support TIFF_USE_OVR config option to force external overviews 9356 * Add special ability to for xml:ESRI metadata into PAM 9357 * Try to detect build-time vs runtime libtiff version mismatch (*nix only) 9358 * Added logic to expand verticalcs using importFromEPSG() when possible 9359 * Create internal masks with deflate compression if available 9360 * Fix jpeg quality propagation (particularly remove warning when 9361 using a deflate compressed internal mask band with jpeg compressed main IFD) 9362 * Add support for JPEG_QUALITY_OVERVIEW configuration option for internal 9363 overviews when adding them after dataset reopening 9364 * auto-promote mask band to full 8 bits by default (unless 9365 GDAL_TIFF_INTERNAL_MASK_TO_8BIT is set TO FALSE). 9366 * add LZMA compression optional support (requires latest libtiff4 CVS HEAD) 9367 * Supporting writing compound coordinate systems. 9368 9369GTX driver: 9370 * New for GDAL/OGR 1.8.0 9371 * Read NOAA .gtx vertical datum shift files. 9372 9373GXF driver: 9374 * Cast nodata value to float to be consistent with precision of pixel data in 9375 GDT_Float32 case 9376 * Introduce a GXF_DATATYPE configuration option that can be set to Float64 9377 * Use GDALGetScanline() instead of GDALGetRawScanline() so that #SENS 9378 is applied to normally return things in conventional orientation as 9379 is assumed by the geotransform. (#3816). 9380 9381HDF4 driver: 9382 * Prevent reading nonexistent subdatasets 9383 * Allow reading 1D subdatasets, in particular for GEOLOC bands 9384 * Workaround strange test that swaps xsize, ysize and nbands for the particular 9385 case of the dataset of ticket #3316 9386 * Speed up access to HDF4_SDS datasets; allow multi-line block dimension for 9387 HDF4_EOS datasets (#2208) 9388 * HDF4_EOS_GRID : detect tile dimensions and use them as block size; increase 9389 HDF4_BLOCK_PIXELS default value to 1,000,000 (#3386) 9390 * Support reading of L1G MTL metadata (#3532) 9391 * Read as HDF if HDFEOS returned 0 datasets 9392 * Improve fetching the geolocation data in case of one-to-one mapping and 9393 abcence of dimension maps (#2079) 9394 * Properly set the GCP projection for MODIS Aerosol L2 Product. 9395 * Fetch scale/offset, unit type and descriptions for some HDF-EOS datasets. 9396 9397HDF5 driver: 9398 * Avoid setting bogus projection if we don't get georeferencing from 9399 CreateProjections(). Avoid trying to operate if DeltaLat/Lon is zero. 9400 Avoid crashing on NULL poH5Object->pszPath in CreateMetadata(). (#3534) 9401 * Ensure backslashes are preserved in paths for UNC on win32 (#3851) 9402 9403HF2 driver: 9404 * New for GDAL/OGR 1.8.0 9405 * Read and write HF2/HFZ heightfield raster 9406 9407HFA driver: 9408 * Ensure that an .aux file created for overviews has AUX=YES set so a 9409 base raster will not be created. 9410 * Various robustness improvements (#3428) 9411 * Support pulling overviews from an .rrd file even if the .aux does not 9412 reference it (#3463) 9413 * avoid using empty names for layer, if we have one generate a fake name, 9414 use for overviews (#3570) 9415 * Add support for New Zealand Map Grid to HFA driver (#3613) 9416 * Support EPT_s8 in BASEDATA (#3819) 9417 * Substantial improvements for Rename/CopyFiles (#3897) 9418 9419Idrisi driver: 9420 * Allow color items greater than maximum value (#3605) 9421 9422JPEGLS driver: 9423 * New for GDAL/OGR 1.8.0 9424 * JPEG-LOSSLESS driver based on CharLS library 9425 9426JP2KAK driver: 9427 * Allow quality as low as 0.01 9428 * Major restructuring, all reading now goes through DirectRasterIO (#3295) 9429 * Introduce YCC optimization 9430 * Ensure we fetch <= 8 bit images with their true precision (#3540) 9431 * Make JP2KAK_RESILIENT also turn off persist, and force sequential access (#4336) 9432 * Fix reading overviews via direct case (#4340) 9433 9434JP2OpenJPEG: 9435 * New for GDAL/OGR 1.8.0 9436 * JPEG2 driver based on OpenJPEG library 9437 9438JPIPKAK driver: 9439 * New for GDAL/OGR 1.8.0 9440 * JPIP driver based on Kakadu library 9441 9442KMLSUPEROVERLAY driver : 9443 * New for GDAL/OGR 1.8.0 9444 * Added new plug-in GDAL Super-Overlay Driver. The driver allows converts 9445 raster (like TIF/GeoTIFF, JPEG2000, JPEG, PNG) into a directory structure 9446 of small tiles and KML files which can be displayed in Google Earth. 9447 9448LOS/LAS driver: 9449 * New for GDAL/OGR 1.8.0 9450 * Read NADCON .los/.las Datum Grid Shift files 9451 9452MG4Lidar driver 9453 * New for GDAL/OGR 1.8.0 9454 * Read MG4 Lidar point cloud data and expose it as a Raster. It depends on 9455 the current, freely-available-though-not-open-source MG4 Lidar SDK v1.1 9456 9457MrSID: 9458 * Updated to support MrSID SDK v8.0.0 (compat with older versions maintained) (#3889) 9459 * Updated to support writing MG4/Raster (#3889) 9460 * Support reading projection from .met files accompanying NASA LandSat SID files 9461 9462NetCDF driver: 9463 * Improve coordinate system support (#3425) 9464 * Add support for multiple standard_parallel tags to support LCC single 9465 standard parallel (#3324) 9466 * Add CF-1 spheroid tag support for netcdf driver 9467 * Add support for weather/climate files with pixel size in km 9468 * Attempt to fix flip image (#3575) 9469 * Add support for Scale and Offset (#3797) 9470 9471NITF driver: 9472 * Ensure that igeolo corners are not messed up if irregular, keep center/edge 9473 of pixel location info (#3347) 9474 * Add capture of select RPF attribute metadata (#3413) 9475 * Carry raw IGEOLO and ICORDS through as metadata (#3419) 9476 * Added NITFPossibleIGEOLOReorientation() in an attempt to deal with 9477 files written with the IGEOLO corners out of order. 9478 * Implement readonly support for RSets (#3457) 9479 * Add capability of writing CGM segment as creation option (or from the source 9480 CGM metadata domain if no CGM= creation option); for consistency, also add 9481 the capability of writing TEXT segment as creation option, in addition to 9482 the existing capability of writing it from the source TEXT metadata domain (#3376) 9483 * Fix read out of buffer for NBPP < 8 and very small block size; fix decoding 9484 of NBPP=4 (#3517) 9485 * Add FILE_TRE creation option to write TRE content in XHD field of file header 9486 * Add SDE_TRE creation option to write GEOLOB and GEOPSB TREs. This is limited 9487 to geographic SRS, and to CreateCopy() for now 9488 * Allow using NITF header located in STREAMING_FILE_HEADER DE segment when 9489 header at beginning of file is incomplete 9490 * Improve NITF to NITF translation 9491 * Fetch TREs from DE segment 9492 * Support reading CSSHPA DES & extracting embedded shapefile 9493 * Support writing image comments (ICOM) 9494 * Add description for NITF file & image header fields in creation options XML 9495 * Accept A.TOC files with frame entries that have same (row,col) coordinates 9496 * Avoid erroring out when file or image user TRE size is just 3 9497 * Load subframe mask table if present (typically, for CADRG/CIB images with IC=C4/M4) (#3848) 9498 * A few hacks to accept some (recoverable) file inconsistencies (#3848) 9499 9500NTv2 driver: 9501 * New for GDAL/OGR 1.8.0 9502 * Read&write NTv2 Datum Grid Shift files 9503 9504OZI driver: 9505 * New for GDAL/OGR 1.8.0 9506 * Read OZI OZF2/OZFX3 files 9507 9508PAUX driver: 9509 * Add support for INTERLEAVE option 9510 9511PCIDSK2 driver: 9512 * PCIDSK SDK refreshed from upstream 9513 * Remove svn:external for pcidsk sdk; Copy it directly in GDAL tree 9514 * Support for reading and writing descriptions added to the PCIDSK SDK. 9515 * Add bitmap support 9516 * Support for reading/writing complex PCIDSK files through libpcidsk 9517 * Support worldfile if lacking internal georef (#3544) 9518 * Fix locking state at CPLThreadMutex creation (#3755) 9519 * Improved projection support. 9520 9521PDF driver: 9522 * New for GDAL/OGR 1.8.0 9523 * Read Geospatial PDF (through poppler library), either encoded according 9524 to OGC Best practice or Adobe ISO32000 extensions. 9525 9526PDS driver: 9527 * Support quoted SAMPLE_TYPE. Check for UNSIGNED in SAMPLE_TYPE for UInt16. 9528 * Support files where scanlines are broken over several records. 9529 * Support newline continuation 9530 * Recognize ENCODING_TYPE = "N/A" (N/A surrounded by double-quotes) 9531 * Take into account MINIMUM, MAXIMUM, MEAN and STANDARD_DEVIATION when 9532 available to set the statistics 9533 9534PNG driver: 9535 * Update internal libpng to 1.2.44 9536 * Internal libpng : Make screwy MSPaint "zero chunks" only a warning, 9537 not error (#3416). 9538 * Added ZLEVEL creation option 9539 9540PostGIS Raster (formerly WKTRaster driver): 9541 * Improved block reading and raster settings reading in WKT Raster driver 9542 * Functions SetRasterProperties and GetGeoTransform modified to allow both 9543 referenced and not referenced rasters 9544 * Connection string parsing simplified. Schema, table name and where clause 9545 can be passed with or without quotes 9546 * New parameter "mode" 9547 9548RASDAMAN driver: 9549 * New for GDAL/OGR 1.8.0 9550 * Read rasters in rasdaman databases 9551 9552RMF driver: 9553 * Significant improvements. Implemented decompression scheme typically 9554 used in DEM data. 9555 9556SRP driver: 9557 * Relax strict equality test for TSI size for unusual products (#3862) 9558 9559TerraSAR driver: 9560 * Enhancements related to GCPs handling (#3564). 9561 9562USGSDEM driver: 9563 * Support non-standard DEM file (#3513) 9564 9565VRT driver: 9566 * Preliminary Overview support on VRT bands (#3457) 9567 * Support for mask band : VRT may expose a mask band, 9568 and mask bands can be used as VRTRasterBand sources 9569 * Port to VSIF*L API; advertise GDAL_DCAP_VIRTUALIO=YES 9570 * Make format identification less strict (#3793) 9571 * Support for LocationInfo metadata item on bands 9572 9573WCS driver: 9574 * Decode base64 encoded multipart data 9575 9576WMS driver: 9577 * Adds a <UserAgent> optional parameter so that the user be able to provide 9578 its own useragent string for picky WMS servers (#3464) 9579 * Default color interpretation for wms driver (#3420) 9580 * Add UnsafeSSL setting (#3882) 9581 9582XYZ driver: 9583 * New for GDAL/OGR 1.8.0 9584 * Read ASCII XYZ gridded datasets 9585 9586== OGR 1.8.0 - Overview of Changes == 9587 9588Core: 9589 * RFC 28 : OGR SQL Generalized Expressions 9590 * RFC 29 : Support for ignoring fields in OGR 9591 * Add OGRLayer::GetName() and OGRLayer::GetGeomType() virtual methods, 9592 and their C and SWIG mappings (#3719) 9593 * On Unix, add capability of opening the target of a symlink through OGROpen() 9594 even if it not a real filename. Useful for opening resources expressed as 9595 GDAL virtual filenames in software offering only file explorers (#3902) 9596 * Expat based XML readers : add support for reading files with Windows-1252 9597 encoding 9598 * Use transactions in CopyLayer for better speed. (#3335) 9599 * OGRGeometry::importFromWkt() : allow importing SF-SQL 1.2 style WKT while 9600 preserving compatibility with previously recognized non conformant WKT (#3431) 9601 * Add C functions : OGR_G_ForceToPolygon(), OGR_G_ForceToMultiPolygon(), 9602 OGR_G_ForceToMultiPoint() and OGR_G_ForceToMultiLineString() 9603 * Add C functions : OGR_G_Length(), OGR_G_Simplify(), OGR_G_Area(), OGR_G_Boundary() 9604 OGR_G_SymDifference() and OGR_G_UnionCascaded() 9605 * Add C function: OGR_F_StealGeometry() 9606 * Move Centroid() method from OGRPolygon to OGRGeometry base class to be able 9607 to operate on various geometry types, and to be consistent with PostGIS 9608 ST_Centroid() capabilities and the underlying GEOS method 9609 * Make the GetStyleTable() SetStyleTable() SetStyleTableDirectly() methods on 9610 datasources and layers virtual (#2978) 9611 * Add OGRSFDriverRegistrar::DeregisterDriver() and OGRDeregisterDriver() 9612 * Improve detection of rounding errors when writing coordinates as text with 9613 OGRMakeWktCoordinate() 9614 * OGR SQL: allow comparing datetime columns in WHERE clause 9615 * OGR indexing: re-use .ind file in read-write mode when calling CreateIndex() 9616 but the index was opened as read-only (follow up of #1620); ensure that the 9617 .ind file is closed before being unlink()'ed 9618 * AssemblePolygon: ensure largest area ring is used as exterior ring (#3610) 9619 * OGRGeometryFactory::createFromGEOS() : preserve coordinate dimension 9620 (with GEOS >= 3.3) (#3625) 9621 * Allow calling transformWithOptions() with a NULL poCT 9622 * Improve wrapdateline, especially on LINESTRING 9623 * Fix getEnvelope() for OGRPolygon and OGRGeometryCollection to avoid taking 9624 into empty sub-geometries; Fix OGRLayer::GetExtent() to avoid taking into 9625 account empty geometries 9626 * Support attribute index scan with the sql 'IN' operator (#3686) 9627 * Add attribute index support for the sql queries in mapinfo tab format (#3687) 9628 * OGRGometry: add a swapXY() virtual method 9629 * Implement special field support for IsFieldSet 9630 * OGRLineString::transform() : allow partial reprojection if 9631 OGR_ENABLE_PARTIAL_REPROJECTION configuration option is set to YES (#3758) 9632 * Add OGR_G_ExportToGMLEx() that can take options to enable writing GML3 9633 geometries compliant with GML3 SF-0 9634 * OGRFeature::SetField() : support setting integer and real lists from a 9635 string in the format (n:value,value,value,...) 9636 9637OGRSpatialReference: 9638 * Big upgrade to EPSG 7.4.1 with improved datum logic 9639 * Use PROJ 4.8.0 thread-safe functions if available to avoid global OGR PROJ4 9640 mutex when doing OGRProj4CT::TransformEx() 9641 * Support for defining VERT_CS and COMPD_CS from EPSG and from/to PROJ.4 9642 * Implement OGRSpatialReference:IsVertival() and 9643 OGRSpatialReference::IsSameVertCS() methods 9644 * add RSO gamma handling (proj #62) 9645 * TMSO support 9646 * Adjust handling of NAD27 to avoid towgs84 params, use +datum when no towgs84, 9647 do not emit +ellipse if +datum used (#3737) 9648 * exportToProj4() : add +towgs84= instead of +datum= if both information are 9649 available. This behavior can be turned off by setting 9650 OVERRIDE_PROJ_DATUM_WITH_TOWGS84=NO (#3450) 9651 * Add PROJ4_GRIDS EXTENSION as a way of preserving datum grids 9652 * ogr_srs_proj4: add a table for Prime Meridians; improve recognition of prime 9653 meridian to export them as names when possible with exportToProj4() 9654 * importFromProj4(): recognize +f= option 9655 * Correct handling of Mercator2SP from EPSG (#2744) 9656 * Make GetAxis() const 9657 * Improve axis orientation recognition for stuff like EPSG:3031 9658 * Fix Amersfoort (geotiff #22) 9659 * Panorama: Added zone number to the list of projection parameters list. 9660 Use the zone number when we need to compute Transverse Mercator projection. 9661 * Panorama: Use Pulkovo 42 coordinate system instead of WGS84 as a fallback 9662 if the CS is not specified. 9663 * ESRI: added support for Mercator in an old style file 9664 * Add Bonne, Gauss-Schreiber Transverse Mercator, Mercator (2SP), Two Point 9665 Equidistant and Krovak to the list of projections description dictionary. 9666 * SRS validation : various fixes 9667 * Exposure OSRImportFromERM() and OSRExportToERM() functions in C API. 9668 * PCI : Fix the transfer of scale for Stereographic Projection (#3840). 9669 Add support for Oblique Stereographic (SGDO) (#3841) 9670 * Substantially upgrade PCI datum conversions using PCI datum/ellips.txt files 9671 9672Various drivers: 9673 * Improve behavior of DXF, VFK, GPX, SHAPE, PG, LIBKML, KML, VRT, CSV, GML, 9674 BNA, GeoRSS, GEOJSON drivers when LC_NUMERIC is not the C locale 9675 9676Utilities: 9677 * ogr2ogr: copy datasources and layers style table 9678 * ogr2ogr: use OGRGeometryFactory::forceToMultiLineString() when -nlt 9679 MULTILINESTRING is specified 9680 * ogr2ogr: allow -wrapdateline if neither input or output srs is specified, 9681 but input layer srs is geographic 9682 * ogr2ogr: add -splitlistfields and -maxsubfields options to split fields of 9683 type IntegerList, RealList or StringList into as many subfields of 9684 single type as necessary. 9685 * ogr2ogr: accept None or Null as a special value of -a_srs to nullify the output SRS 9686 * ogr2ogr: ignore -overwrite options if the output datasource does not yet exist (#3825) 9687 * ogr2ogr: special case when output datasource is a existing single-file Shapefile : 9688 auto-fill the -nln argument if not specified (#2711) 9689 * ogr2ogr: add a -explodecollections option to split multi geometries into several features 9690 * ogr2ogr: add a -zfield option to set the Z coordinate of a 3D geometry from the value of 9691 a field 9692 9693AeronavFAA driver: 9694 * New for GDAL/OGR 1.8.0 9695 9696ArcObjects driver: 9697 * New for GDAL/OGR 1.8.0 9698 9699BNA driver: 9700 * Ported to use VSIF*L API 9701 9702CSV driver: 9703 * For files structured as CSV, but not ending with .CSV extension, the 'CSV:' 9704 prefix can be added before the filename to force loading by the CSV driver 9705 * Support reading airport data coming from http://www.faa.gov/airports/airport_safety/airportdata_5010 9706 * If a datasource is created with the extension .csv assume this should be 9707 the first layer .csv file instead of a directory 9708 * Skip empty lines (#3782) 9709 * Port to VSI*L API for read&write; support writing to /vsistdout/ 9710 9711DGN driver: 9712 * Correct computation of abyLevelsOccurring (#3554). 9713 9714DODS driver: 9715 * Compilation fix to support libdap 3.10 9716 9717DXF driver: 9718 * Smooth polyline entity support added 9719 * Read blocks as a distinct layer instead of inlining 9720 * Assemble file at end with changes to header template - so far only inserting 9721 new layer definitions 9722 * Support for writing user defined blocks 9723 * Add limited hatch support 9724 * Add support for writing linetypes. Support using complete dxf files as 9725 the header or trailer template. 9726 * Apply the INSERT entity id to all features inserted in its place (#3817) 9727 * various fixes 9728 * Implement Win1252/utf8 conversion for dxf text 9729 * Fix issues with text angles, text escape and multiline text 9730 * add support for \U+xxxx unicode chars in labels 9731 9732GeoJSON driver: 9733 * Add reader to parse JSON output of FeatureService following GeoServices REST 9734 * Read and write "id" member at feature object level 9735 * Various robustness fixes to avoid crashes 9736 * Fix combined spatial and attribute filtering (#3803) 9737 9738GeoRSS driver: 9739 * Ported to use VSIF*L API 9740 * Recognize <gml:MultiPoint>, <gml:MultiLineString> and <gml:MultiPolygon> 9741 * Support reading GeoRSS inside <rdf:RDF> 9742 9743GML driver: 9744 * Adding support for xlink:href. (#3630) 9745 * Add support for Polish TBD GML 9746 * Support reading <gml:Curve>, <gml:MultiCurve>, <gml:TopoCurve>, 9747 <gml:TopoSurface>, <gml:Ring>, <gml:Surface>, <gml:PolygonPatch>, 9748 <gml:pointMembers>, <gml:curveMembers>, <gml:surfaceMembers> 9749 <gml:Triangle>, <gml:Rectangle>, <gml:Tin/gml:TriangulatedSurface>, 9750 <gml:Arc>, <gml:Circle> elements in GML3 geometries 9751 * Recognize <gml:Solid> and <gml:CompositeSurface>, <gml:OrientableSurface> elements 9752 (dealt as an approximation as multipolygons, and not as volumes) 9753 * Add support for "complex structure flattening" of attributes, and OFTStringList, 9754 OFTRealList and OFTIntegerList field types in case of multiple occurrences of 9755 a GML element (such as UK Ordnance Survey Mastermap) (#3680) 9756 * Add support for CityGML generic attributes <stringAttribute>, <intAttribute> and 9757 <doubleAttribute> 9758 * Various improvements for better support of AIXM 5.1 9759 * Write and retrieve layer geometry type to/from .gfs file (#3680) 9760 * Support using the <GeometryElementPath> to retrieve the appropriate geometry in 9761 case several ones are available per feature 9762 * Use VSIF*L API for read&write 9763 * XSD reader : various improvements, in particular to support various types of schema 9764 returned by WFS DescribeFeatureType 9765 * XSD writer: change the default GeometryPropertyType to a more precise type name 9766 according to the layer geometry type 9767 * Write valid <gml:MultiGeometry> element instead of the non-conformant 9768 <gml:GeometryCollection>. For backward compatibility, recognize both syntax for 9769 the reading part (#3683) 9770 * Support reading SRS per layer when possible, and deal with urn:ogc:def:crs:EPSG::xxx 9771 geographic coordinate systems (as returned by WFS 1.1.0 for example) to restore 9772 (longitude, latitude) order (unless GML_INVERT_AXIS_ORDER_IF_LAT_LONG is set to NO) 9773 Also add a GML_CONSIDER_EPSG_AS_URN option that can be set to YES when EPSG:XXXX should 9774 be considered as urn:ogc:def:crs:EPSG::XXXX 9775 * Expose gml:id as a string field when reading <wfs:FeatureCollection> 9776 * Add dataset creation option FORMAT=GML3 to write GML3 SF-0 compliant data 9777 * Add dataset creation option SPACE_INDENTATION=YES/NO to optionally disable space indentation 9778 when writing GML. 9779 * Recognize GML answer of MapServer WMS GetFeatureInfo request 9780 * Fix datatype detection to fallback to Real when an integer cannot fit into a 32bit int (#3866) 9781 * GML/WFS : use SRS defined in global gml:Envelope if no SRS is set for any feature geometry 9782 9783GMT driver: 9784 * Add support for multilinestring reading (#3802) 9785 9786GPSBabel driver: 9787 * New for GDAL/OGR 1.8.0 9788 * Read/Write files supported by GPSBabel utility 9789 9790GPX driver: 9791 * Port write side of the driver to VSIF Large API 9792 * Add LINEFORMAT dataset creation option 9793 * Allow writing track points and route points with their own attributes by 9794 writing point features in track_points and route_points layers 9795 9796HTF driver: 9797 * New for GDAL/OGR 1.8.0 9798 * Read Hydrographic Transfer Format (HTF) 9799 9800Ingres driver: 9801 * Implement support for spatial reference systems (atrofast, #3159) 9802 * Added support for GEOMETRYCOLLECTION as a generic geometry type, and 9803 fleshed out the layer creation logic to support all geometry types. 9804 9805KML driver: 9806 * KML vertex output: avoid warning for coordinates just above 90 and 180 9807 degrees due to numerical imprecisions 9808 * Port to VSI*L API for write 9809 9810LIBKML driver: 9811 * New for GDAL/OGR 1.8.0 9812 * Alternate KML driver relying on Google libkml 9813 9814MITAB driver: 9815 * Use "," for the OGR Feature Style id: parameter delimiter, not "." as per 9816 the spec. 9817 * Synchronized with mitab CVS HEAD 9818 * Fixed crash when trying to get the same mitab feature twice 9819 9820MSSQLSpatial driver: 9821 * New for GDAL/OGR 1.8.0 9822 * Read/write support for MS SQL Spatial databases 9823 9824NAS driver: 9825 * New for GDAL/OGR 1.8.0 9826 * Reads the NAS/ALKIS format used for cadastral data in Germany 9827 9828OCI driver: 9829 * Allows OS authentication (#3185) 9830 * Uppercase table_name on SQL queries #1960 - OCI: ogr2ogr with append option 9831 is not considering layer creation 9832 * Support creation of non-spatial tables (#3690) 9833 * Set MULTI_LOAD as default #3656, for new layer and update 9834 9835OGDI driver: 9836 * Add OGR_OGDI_LAUNDER_LAYER_NAMES configuration option to simplify reported layer names 9837 * Fix GetFeatureCount() when used with SetAttributeFilter() 9838 9839OpenAir driver: 9840 * New for GDAL/OGR 1.8.0 9841 * Read Special Use Airspace in OpenAir format 9842 9843PCIDSK driver: 9844 * Implement creation/update and coordinate system support 9845 9846PDS driver: 9847 * New for GDAL/OGR 1.8.0 9848 * Read NASA Planetary Data Systems TABLE objects 9849 9850PGeo driver: 9851 * Add PGEO_DRIVER_TEMPLATE option 9852 9853PGDump driver: 9854 * New for GDAL/OGR 1.8.0 9855 * To output PostgreSQL SQL dump (very similar to shp2pgsql utility) 9856 9857PostgreSQL driver: 9858 * Add support for PostgreSQL >= 9.0 new binary data format 9859 * Use canonical (HEXEWKB) form to get geometry to speed-up feature retrieval. 9860 WKT-based retrieval can still be used if PG_USE_TEXT configuration option 9861 is set to YES 9862 * If the PG_USE_BASE64 configuration option is set to YES, geometries will be 9863 requested as BASE64 encoded EWKB instead of canonical HEX encoded EWKB. 9864 (useful when bandwidth is the limiting factor) 9865 * Don't instantiate layer defn at layer creation. This can speed up 9866 significantly database opening when they are many tables and the user just 9867 needs to fetch one with GetLayerByName(). 9868 * Implement efficient OGRLayer::GetName() and OGRLayer::GetGeomType() 9869 * Allow creating layer with eType = wkbNone 9870 * Don't require to have found a layer in readonly mode to succeed in opening 9871 the datasource. 9872 * Add TEMPORARY (ON/OFF) layer creation option to create TEMPORARY tables 9873 * CreateLayer() : don't launder schema_name if passed string is schema_name.table_name, 9874 and when testing if the layer already exists prepend or remove the 9875 schema_name to the table_name when comparing to layer names 9876 * Handle Nan and Inf values for float types in INSERT, UPDATE and 9877 COPY SQL commands. (#3667) 9878 * Retrieve the FID of a newly inserted feature (#3744) 9879 * Remove use of deprecated PostGIS functions when running against PostGIS 2.0SVN 9880 9881S57 driver: 9882 * Avoid crashing if there is a missing VRPT field in a vector record. 9883 9884SOSI driver: 9885 * New for GDAL/OGR 1.8.0 9886 * Read Norwegian SOSI-standard 9887 9888Shapefile driver: 9889 * Use VSI*L API for .prj file so it works in virtual circumstances (#3536). 9890 * CreateLayer(): Check that the layer doesn't already exist 9891 * Implement multipatch read support 9892 * Remove ESRI style spatial indexes from Shapefile on update via OGR (#2798) 9893 * Fix conflict between spatial and attribute indexes (#3722) 9894 * Create integer fields with unknown width as 10 characters instead of 11 9895 to avoid them getting immediately considered to be real when reopening (#2151) 9896 * Make 'ogr2ogr -overwrite dst.shp src.shp -nln dst' work when dst.shp already exists 9897 9898SQLite driver: 9899 * Spatialite : use MBRIntersects operator instead of MBRWithin (#3810) 9900 * Spatialite: avoid executing some Spatialite functions several times when 9901 issuing SQL queries 9902 * Add a INIT_WITH_EPSG dataset creation option to fill the spatial_ref_sys 9903 table with content of EPSG CSV files (default to NO); several fixes to be 9904 robust to single quote characters in SRS strings 9905 * Fix to make CopyLayer() work when src layer is a SQL result layer (#3617) 9906 * Add OGR_SQLITE_SYNCHRONOUS configuration option that, when set to OFF, 9907 can speed up considerably write operations (e.g. on EXT4 filesystems), 9908 at the expense of extra robustness w.r.t system crashes. 9909 * Spatialite: when creating a spatialiate DB, add a srs_wkt column in the 9910 spatial_ref_sys table, as introduced in libspatialite 2.4.0 9911 * Implement the DeleteLayer() interface and report the ODsCDeleteLayer capability 9912 9913SUA driver: 9914 * New for GDAL/OGR 1.8.0 9915 * Read Special Use Airspace in Tim Newport-Peace's format 9916 9917VRT driver : 9918 * Fix GetExtent() on non VGS_Direct VRT layers (#3783) 9919 9920WFS driver: 9921 * New for GDAL/OGR 1.8.0 9922 * WFS client that brings read & write (WFS-T) support for WFS 1.0.0 and 1.1.0 9923 9924== SWIG Language Bindings == 9925 9926General : 9927 * Add Geometry.Length(), Geometry.Area(), Geometry.Simplify(), Geometry.UnionCascaded(), 9928 Geometry.SymDifference, Geometry.Boundary() 9929 * Add SpatialReference.GetUTMZone() 9930 * Add Geometry.ForceToPolygon(), Geometry.ForceToMultiPolygon(), 9931 Geometry.ForceToMultiPoint() and Geometry.ForceToMultiLineString() 9932 * Add Band.SetScale() Band.SetOffset(), and Band.SetUnitType() 9933 * Add ogr.RegisterDriver() and ogr.DeregisterDriver() 9934 * Move ogr.GeometryTypeToName() and ogr.GetFieldTypeName() from Java bindings 9935 to all bindings 9936 * Initialize return values of GetRasterStatistics() so that we know if they 9937 have been updated 9938 * Add Feature.SetFromWithMap() 9939 * Add gdal.GridCreate() (#3661) 9940 * Expose OSR GetSemiMajor(), GetSemiMinor(), GetInvFlattening() and 9941 ImportFromERM() functions 9942 9943CSharp bindings: 9944 * Use the .NET Framework 2.0 transparency rules (level 1 transparency) for the 9945 VC2010 builds (#3559) 9946 * Fix GDAL_DMD_ and GDAL_DCAP_ constants for Csharp (#3601) 9947 9948Java bindings: 9949 * Add GdalGrid.java, GDALContour.java 9950 * Add 'make test' target for Unix/Windows 9951 9952Perl bindings: 9953 * Support polygons in TransformPoints. 9954 * Test for existence of capability before comparison (avoid unnecessary warning) 9955 * Added CAPABILITIES lists to driver, datasource and layer classes; 9956 Capabilities and TestCapability methods return and use strings as documented 9957 already earlier; added FIELD_TYPES, JUSTIFY_TYPES, GEOMETRY_TYPES and 9958 BYTE_ORDER_TYPES lists into appropriate classes 9959 * "create" constructor for FeatureDefn 9960 * Add aliases Equals and Intersects as mentioned in #3492 9961 * Changes to support RFC 30 9962 * Add bindings for ReadDir, Stat, FillNodata 9963 * Simple support for PostGIS HEX EWKB (remove/add SRID) 9964 * The Schema method of FeatureDefn returns a schema, where each field hash contains 9965 also key 'Index' and the field index as the value. 9966 9967Python bindings: 9968 * Fix compilation of Python bindings with Python 3.X on 64 bit platform 9969 * Optimize Band.ReadRaster() and Dataset.ReadRaster() to avoid extra buffer 9970 copy; also add the capability to pass the result buffer such as 9971 result_buf = ' '; ReadRaster(0, 0, 1, 1, buf_obj = result_buf) (#3521) 9972 * NumPy Band.WriteArray() : use numpy object directly instead of converting to 9973 string 9974 * Band.ReadAsArray() : instantiate the numpy object before calling RasterIO() 9975 instead of creating it from a string 9976 * NumPy : add support for signed byte 9977 * Make sure that feat.SetField('field_name', double_value) goes through 9978 OGR_F_SetFieldDouble() instead of being first converted to string 9979 * Add an optional parameter can_return_null to Dataset.GetGeoTransform(); 9980 when used and set to True, None is returned when GDALGetGeoTransform() 9981 returns CE_Failure (instead of the fake (0,1,0,0,0,1)); backward 9982 compatibility preserved when the parameter isn't specified 9983 * Avoid suppressing warnings and errors when exceptions are used (#3632) 9984 * Add gdalinfo.py, ogrinfo.py and ogr2ogr.py as sample scripts, direct ports 9985 of corresponding C/C++ utilities 9986 * Allow manipulating buffer > 2 GB on 64bit builds for ReadRaster() and WriteRaster() 9987 * Map gdal.GetCacheMax(), gdal.SetCacheMax() and gdal.GetCacheUsed() to the 9988 corresponding 64bit new API 9989 * Reset error status before new GDAL/OGR call when using gdal.UseExceptions() (#3077) 9990 * Changes to support RFC 30 9991 * Fix Feature.ExportToJson() (#3870) 9992 9993= GDAL/OGR 1.7.0 = 9994 9995(Some of the bug fixes mentioned below might also have gone into 1.6.X maintenance releases.) 9996 9997== In a nutshell... == 9998 9999* New GDAL drivers : BAG, EPSILON, Northwood/VerticalMapper, R, Rasterlite, 10000 SAGA GIS Binary, SRP (USRP/ASRP), EarthWatch .TIL, WKT Raster 10001* GDAL PCIDSK driver using the new PCIDSK SDK by default 10002* New OGR drivers : DXF, GeoRSS, GTM, PCIDSK and VFK 10003* New utility : gdaldem, gdalbuildvrt now compiled by default 10004* Add support for Python 3.X. Compatibility with Python 2.X preserved (#3265) 10005* Remove old-generation Python bindings. 10006* Significantly improved GDAL drivers: GeoRaster, GeoTIFF, HFA, JPEG2000 Jasper, JPEG2000 Kakadu, NITF 10007* Significantly improved OGR drivers: CSV, KML, SQLite (SpatiaLite support), VRT 10008* WARNING: incompatibility between MrSID GeoDSDK and libgeotiff 1.3.0 or internal libgeotiff on some platforms (see #3309) 10009 10010== GDAL/OGR 1.7.0 - General Changes == 10011 10012Build (All) : 10013 * Add gdalbuildvrt to the list of utilities built by default (#2747) 10014 * Improve Mingw compatibility (#2649) 10015 * Add Expat read support for GML driver when Xerces is unavailable (#2999) 10016 * Fix GML and ILI reading problems with Xerces 3.x (#3156) 10017 * Add 8/12bit JPEG-in-TIFF support 10018 * Fix trunk compilation against libdap 3.9.X (#3105) 10019 10020Build (Windows) : 10021 * Check for CURL_LIB instead of CURL_DIR 10022 * ensure OGR_ENABLED gets defined if INCLUDE_OGR_FRMTS set (#2784) 10023 * Change quoting in VCDIR and SETARGV to avoid likely problems. 10024 * added dll and target-lib targets 10025 * fix _findfirst handle type for win64 (#3035) 10026 * Add support to compile OGR-postgis as a plugin (#3125) 10027 * Trap failures in subdirectories and stop build 10028 10029Build (Unix) : 10030 * Use proper object file names when building prerequisites lists (#1878) 10031 * Updated man page generation 10032 * Add new ./configure test to check that the GCC 4.1 built-in functions for atomic memory access are really available 10033 * Handle external libz (#2942) 10034 * Add support for 64bit file i/o on BSD systems, through fseeko/ftello 10035 * Add support for linking against libspatialite to benefit from spatial functions in SQL queries (#2666) 10036 * Fix support for --with-threads configure option on BSDs (tested on DragonFlyBSD 2.2.1) 10037 * Add support for autodetection of ogdi 3.2 in ./configure (#3007) 10038 * Remove additional dependency to libgdal.so added during linking in gdal/apps (#2970) 10039 * Improved ax_oracle_oci.m4 macro to handle libnnzXX for Oracle 10 and 11. 10040 * support using the Oracle Instant Client SDK 10041 * Make --with-ingres work with newer versions (#3126) 10042 * Search for alternative HDF4 flavor in HDF4 testing macro. Alternative HDF4 10043 (libmfhdfalt/libdfalt) build is NetCDF-compatible and used in Debian. 10044 * Support MacOSX "fat" binary building 10045 10046Port : 10047 * Provide API and implementation for thread and SMP safe atomic increments (#2648) 10048 * Add /vsisubfile virtual file driver 10049 * Added gzip write implementation 10050 * VSI ZIP : Allow natural chaining of VSI drivers without requiring double slash 10051 * Add a shortcut when looking for .csv files that are already open 10052 * Add CPLSetThreadLocalConfigOption() 10053 * Add CPLIsUTF8() and CPLForceToASCII(); Use them in GML, KML, GPX and GeoRSS drivers (#2971) 10054 * Add CPLStrlcpy() and CPLStrlcat(), clones of BSD strlcpy() and strlcat() functions 10055 * Add CPLStrnlen() 10056 * Add CSLLoad2() and CPLReadLine2L() with max number of lines and chars per line allowed 10057 * cplkeywordparser.cpp: Support parsing IMD files with values of the form list of lists 10058 * odbc: Fixed the null terminators for columns of length (x*511)+1, where x>1. (#2727) 10059 * unix VSIF*L : reworked to avoid unnecessary seeks which can be expensive 10060 * added HTTPAUTH and USERPWD options for http fetch (#3091) 10061 10062== GDAL 1.7.0 - Overview of Changes == 10063 10064Algorithms: 10065 * cutline : optimize by clipping cutline to region of interest (#2736) 10066 * cutline : avoid scanline to scanline blending problems (#2740) 10067 * rasterfill : substantially reworked 10068 * rasterfill : deprecate bConicSearch option - unused 10069 * rasterize : optimized 10070 * rasterize : Added GDALRasterizeLayersBuf() function to rasterize geometries directly 10071 into the supplied raster array. 10072 * rasterize : Add ALL_TOUCHED rasterize option (#2840) 10073 * rasterize : Added 3D support for rasterizing points and lines. (#3202) 10074 * rasterize : correct case of vertical/horizontal lines on raster right/bottom edge (#3268) 10075 * Added GDALCreateGenImgProjTransformer3() function 10076 * warp: Reduce destination file size, especially when it has compression (#1688) 10077 * warp: Fix crash when reprojecting to irrelevant SRS (#3079) 10078 * warp: avoid using the destination nodata value for integer datatypes (#3142) 10079 * warp: fix panDstValid generation, and avoid using it improperly (#3222) 10080 * warp: Restore support of reprojection of a lat-long image crossing 180E/180W longitude (#3206) 10081 * contour: Fix name of GDAL_CG_Create in contour.cpp (#2795) 10082 * contour: Generate contours with correct orientation (#3129) 10083 * gdalgeoloc: Improve geoloc backmap interpolation (#2501) 10084 * overview: added support for cubic convolution overviews 10085 * gdal_grid: 3 new metrics: data point count, average distance between data points 10086 and a grid node, average distance between data points. 10087 * gdal_grid: Properly cast the poOptions parameter in data metrics computation functions. (#3207) 10088 10089Core : 10090 * Added mechanism to clear overviews if zero overviews requested. Implemented by GTiff and HFA drivers (#2915) 10091 * Support for overviews in subdatasets 10092 * Support for overviews in proxydb directory (#2432) 10093 * SetColorTable(NULL) is permitted and means delete (#2421) 10094 * Preserve NBITS and SIGNEDBYTE in CreateCopy() for supporting drivers (#2902) 10095 * GDALCopyWords() : performance optimizations 10096 * Add GDALCheckDatasetDimensions() and GDALCheckBandCount() 10097 * Add GDALGetColorInterpretationByName() 10098 * Use tiff .ovr for overviews if .aux is just metadata (#2854) 10099 * Add missing argument in function declaration for GDALRATTranslateToColorTable() 10100 * Do not use colortable for bit2grayscale overviews (#2914) 10101 * Support world files with blank lines (ESRI Merge) 10102 * Add worldfiles in GetFileList() (ESRI Merge) 10103 * Fix rpb/imd loading with a path (#3047) 10104 * Add support for using overviews in GDALDataset::BlockBasedRasterIO() (#3124) 10105 * Take into account SIGNEDBYTE for GetStatistics() & GetHistogram() (#3151) 10106 * Add GDALReadOziMapFile() and GDALLoadOziMapFile() to read projection 10107 and georeferencing information from OziExplorer .MAP files. 10108 * Added declarations for GDALLoadTabFile() and GDALReadTabFile() 10109 * Add missing case for CInt16 and CInt32 in GDALNoDataMaskBand and GDALNoDataValuesMaskBand 10110 10111Utilities : 10112 * gdaldem: new for GDAL/OGR 1.7.0 (#2640) 10113 * gdalinfo: 10114 - add -norat switch 10115 - do not report RPC or GEOLOCATION metadata with -nomd 10116 - Use pretty wkt to display GCP projection 10117 * gdalwarp: 10118 - fix cutline blend distance setting (#2733) 10119 - in -te case, adjust the resolution after computing the image dimensions 10120 - improved cutline support (#2733, #2847, #2884, #2984) 10121 - avoid overwriting an existing destination file that cannot be opened in update mode with a new GTiff file 10122 - better heuristics to guess output extent when projection from lat/long world 10123 extent to other world global projections (#2305) 10124 * gdaltindex: 10125 - Avoid unnecessary error message in gdaltindex when creating a new shapefile (#2779) 10126 - Rewritten to use OGR API instead of ShapeLib API, so as to produce .prj files more easily (#982) 10127 * gdal_contour: 10128 - make -3d option work even after -fl option (#2793) 10129 - Call GDALGetProjectionRef() on the dataset, not the raster band (#3062) 10130 * gdalbuildvrt: 10131 - Add -separate, -allow_projection_difference, -te, -tr, -q, -addalpha options 10132 - Add -srcnodata and -vrtnodata options (#3254) 10133 - Add -hidenodata option (#3327) 10134 - Avoid accidental overwriting of a non VRT dataset due to reversed filename order 10135 - Fix -resolution lowest/highest (#3198) 10136 * gdaladdo: add -clean option (#2915) 10137 * gdaladdo: add -q option 10138 * gdal_grid: Add support for spatial filtering with -clipsrc option 10139 * gdal_translate: support translation of a dataset with subdatasets if the parent has bands 10140 * gdal_translate: Add 'gray' as a value of -expand rgb option 10141 * gdal_translate: Add -unscale commandline option 10142 * gdal_merge.py: Add progress report 10143 * gdal_vrtmerge.py: Fix -separate case (#2836) 10144 * gdal_vrtmerge.py: Write the <SourceProperties> element (#1985) 10145 * gdal_retile.py: add lanczos resampling (#2859) 10146 * gdal_fillnodata.py: ensure dstfile support works by copying source (#2866) 10147 * GDAL2Tiles: --srcnodata support + fixed KML rendering for -p raster 10148 * rgb2pct.py: Added ability to use a preexisting color table from a file (#2958) 10149 * pct2rgb.py and rgb2pct.py : Copy the GCPs and their projection to the target dataset. 10150 * classify.py: Fix order of args to numpy.ones() and numpy.zeros() (#3089) 10151 * hsv_merge.py: New sample script to greyscale as intensity into an RGB image, 10152 for instance to apply hillshading to a dem colour relief. 10153 * support filename globbing for various Python scripts (#2783) 10154 * --formats will add 'v' in report on drivers that support virtual io 10155 * all utilities and scripts : consistently advertise -q as the official quiet 10156 option, but accept both -q and -quiet (#3820) 10157 10158Changes in various drivers : 10159 * Implement support for overviews on subdatasets for HDF4, HDF5, NetCDF, NITF, XPM, TERRAGEN, PCIDSK (#2719) 10160 * Add support for 64bit offsets in /vsisubfile, JPEG and JP2ECW drivers 10161 * External overviews support added to some drivers (JDEM, ...) 10162 * Avoid incorrect GEOGCS AXIS settings (#2713) 10163 * Use GDALCheckDatasetDimensions() and GDALCheckBandCount() in various drivers 10164 * Many memory leak fixes (HDF5, HKV, Leveler, MFF, NITF, RMF, JPEG2000, WCS ... drivers) 10165 * Many fixes to improve robustness against corrupt data in many drivers 10166 * Error out when trying to open a read-only dataset in update mode (#3147) 10167 * Ensure that the same JPEG2000 driver that has been used with CreateCopy() is used to re-open it (#1596) 10168 10169ADRG driver: 10170 * Support PSP != 100 (#3193) 10171 10172AIG driver: 10173 * Differ opening of the RAT only when GetDefaultRat() is called. 10174 Will improve performances and make less likely the error message of #3031 10175 10176AAIGRID driver: 10177 * Fix bad reading of AAIGRID dataset whose last line doesn't have a linebreak character (#3022) 10178 * Make the ArcInfo ASCII driver more Mac-compatible. (#3212) 10179 10180BAG driver : 10181 * New for GDAL/OGR 1.7.0 10182 10183BLX driver: 10184 * Implement progress callback in CreateCopy() (#2830) 10185 10186BMP driver: 10187 * Modify GetGeoTransform() to return geotransform based on the resolution 10188 information in the BMP header if nothing else is available (ESRI merge). 10189 * use pam functions properly for geotransform when not using world file 10190 10191BSB driver: 10192 * Fix several issues with BSB files reading (#2782) 10193 * Handle properly more than 256 GCPs (#2777) 10194 * Add logic to chip GCPs around to avoid split over dateline problems (#2809) 10195 * Add logic to reproject GCPs into Mercator for mercator projected images. 10196 10197DTED driver: 10198 * Re-enable DTED driver to recognize files not starting by a UHL record (#2951) 10199 10200ECW driver: 10201 * Enable the JP2ECW driver to open JP2 files with the VSILAPI 10202 * Fix build with MSVC2008 (#2850) 10203 * Fix memory overwrite while zooming an ECW image (#2934) 10204 * Speed-up de-registration of the driver that can take up to 3 seconds (#3134) 10205 10206EHDR driver: 10207 * Add color table update. Add limited support for floating point 10208 files (.flt) (ESRI Merge) 10209 * added support for SIGNEDBYTE pixels (#2717) 10210 * Restructure stats handling so pam capture works right when stx write fails 10211 * improve a bit .clr reading (#3253) 10212 10213ENVI driver: 10214 * Move RPC info into the RPC domain (#3063) 10215 * Converted to using VSI Large File API (#3274) 10216 * re-enabled complex support (#3174) 10217 10218EPSILON driver: 10219 * New for GDAL/OGR 1.7.0 10220 * Mainly used coupled with Rasterlite 10221 10222ERS driver: 10223 * Added PIXELTYPE support to report/create SIGNEDBYTE (#2902) 10224 * Give precedence to PAM SRS, and even check for .aux file. (ESRI Merge) 10225 10226FAST driver: 10227 * Support 7 bands (#3307) 10228 10229Fujibas driver: 10230 * Fix to work on big-endian hosts 10231 10232GenBin driver: 10233 * Implemented custom class for 1bit (U1) files (#2730) 10234 * Fix inverse flattening computation (#2755). 10235 * Added U2 and U4 support 10236 * Look for LSB, assuming MSB if not found (#2730) 10237 10238GeoRaster driver: 10239 * Fix compression problems 10240 * Add MaskBand support 10241 * Support UNICODE metadata 10242 * Support cross database schema/user access 10243 * add COORDLOCATOR create option 10244 10245GeoTIFF driver : 10246 * Add 8/12bit jpeg in tiff support 10247 * Add support for creating external BigTIFF overview files, 10248 with BIGTIFF_OVERVIEW configuration option. (#2785) 10249 * Add support for deleting a color table (#2421) 10250 * Add logic for Imagine citation parsing 10251 * Add logic for encoding and reading ESRI PE string from citation. 10252 * Add support for reading and writing vertical datum info from geotiff 10253 * Changes to units handling. (#2755) 10254 * Optimize opening speed by deferring fetching the coordinate system till GetProjectionRef (#2957) 10255 * Optimize GTiffRasterBand::IReadBlock() for multi-band interleaved case. 10256 * Avoid unnecessary re-writing the TIFF directory (#3021) 10257 * Use official value for inverse flattening of the WGS84 ellipsoid (#2787) 10258 * Add metadata domain for XML documents (#2786) 10259 * Make GTiff driver friendly with files with huge number of bands and pixel interleaving (#2838) 10260 * Avoid precaching other bands if block cache size is not big enough to accommodate them (#2838) 10261 * Internal libtiff (4.0.0beta5) and libgeotiff (1.3.0beta) upgraded 10262 * use the SetCitationToSRS call for the PCSCitationGeoKey in a similar fashion to the GTCitationGeoKey (#2933) 10263 * NBITS set for GTiffOddBits. YCbCr JPEG added as a compression type. 10264 generate MINISWHITE IMAGESTRUCTURE metadata item. Set missing blocks 10265 to the nodata value if there is one. (ESRI Merge) 10266 * Support GeoTIFF with only ProjectedCSTypeGeoKey defined (#3019) 10267 * External overviews: try to preserve the bit depth of the original image 10268 * Allow reading and creation of big all-in-one-strip 8bit TIFF (#3094) 10269 * Handle projection methods for Google Mercator special case (#3217) 10270 10271GFF driver : 10272 * Fix support for big endian host (#2832) 10273 * Add pam, and overview support. Switch to VSI*L API to support virtualio (#3014) 10274 10275GIF driver : 10276 * Introduced a BIGGIF driver to handle GIF files without using the 10277 slurp into memory approach. (#2542) 10278 * CreateCopy() reports now progress 10279 * Replace internal libungif by giflib-4.1.6 (#1825) 10280 * Read projection and georeferencing from OziExplorer .MAP file if possible. 10281 10282GRASS driver: 10283 * Add support for GRASS 7.0 GDAL and OGR plugins (#2953) 10284 * Use GRASS_GISBASE for GDAL GRASS driver instead of hard-coded path (#2721) 10285 10286GRIB driver: 10287 * only scan for PDS templates in GRIB2 files (#2858) 10288 * Avoid dumping GribLen debug message if built with -DDEBUG. 10289 * Remove verbosity from GRIB driver (#2887) 10290 * Make GRIB detection thread safe (#3209) 10291 * Check that bands have the same dimensions (#3246) 10292 10293GS7BG driver: 10294 * Recognize version 2 datasets (#3123) 10295 10296HDF4 driver : 10297 * Allow HDF4 subdataset name to include Windows letter drive (#2823) 10298 10299HDF5 driver : 10300 * subdatsets need to be numbered from 1 not 0 (#2462) 10301 * Block size recognition. (#2270) 10302 * Fix initial value for nGCPCount in HDF5ImageDataset (#2774) 10303 * Fixes to type classification, and to avoid listing subdatsets for unsupported pixel data types (#2941) 10304 * Mark PAM for not saving .aux.xml files at this level. Directly open 10305 subdatasets in HDF5Dataset::Open() if there is only one subdataset. 10306 10307HFA driver: 10308 * Support reading and evaluating 3rd order xforms (#2716) 10309 * Various improvements to SRS support, particularly to preserve PE 10310 compatibility. (#2755) 10311 * Added HFAEntry::RemoveAndDestroy() method to remove nodes from tree (#2421) 10312 * Added support for deleting color tables (#2421) 10313 * Add a scaled progress monitor for HFADataset::IBuildOverviews() 10314 * Fix HFA u2 compression/decompression (ESRI merge) 10315 * Add support for reading compressed s8 HFA (#3152) 10316 * Defer opening overviews till they are first requested (#3155) 10317 * Support multiple excluded values (#3252) 10318 * added a variety of additional coordinate system based types missing in some files (#3262) 10319 * Various fixes (#2421, #2842, #2755, #3082, #2730) 10320 10321Idrisi driver: 10322 * Writing text file in CRLF format (#3199) 10323 * forward porting esri changes + other changes 10324 * provide default values on Create() (#3243) 10325 10326INGR driver: 10327 * Fix INGR driver that was failing on big endian hosts (#2898) 10328 * Fix RLE support (#3106) 10329 * Added overview building (#2904) 10330 10331JPEG driver: 10332 * Enable the JPEG driver to read and create 12bit JPEG images when JPEG12_ENABLED=yes 10333 * Internal libjpeg: additional changes to ensure operation with IPP enabled apps (#2606,#2845) 10334 * JPEG read optimizations : differ extraction of EXIF metadata and internal maskband 10335 10336JPEG2000 (JasPer) Driver: 10337 * Allow proper reading of JP2 images where dimensions are not multiple of 256 (#2399) 10338 * Add a virtual I/O interface to able to read from/write to JPEG2000-NITF files 10339 * Do not deregister jas_image_clearfmts() to avoid failure when gdal_translat'ing from JP2 streams 10340 * Add proper reading of YCbCr images as RGB 10341 * fix decoding of bit depth for BPCC and PCLR boxes 10342 10343JP2KAK (Kakadu) Driver : 10344 * Fix band selection from ycbcr to rgb converted images in DirectRasterIO (#2732) 10345 * Support jpc vsisubfile streams 10346 * add handling of reversibly compressed data with 9 to 16 bits precision (#2964) 10347 * Modify transfer_bytes() buf32 case to offset/scale based on precision. (#2964) 10348 Fixed _WriteTile() lossless 16bit case to avoid improper 32K offset. 10349 Added support for NBITS image structure metadata, and creation option. 10350 * Added logic to limit tiles to 64K due to jpeg2000 limitation. (ESRI Merge) 10351 * Fix offsetting of 16U buf32 data (#3027) 10352 * Support 16u/16s imagery through DirectRasterIO interface (#3049) 10353 * Support external overviews as an override to internal overviews 10354 * Rework jp2kak support to use natural kakadu builds (Windows build) 10355 * ensure external overviews get used if available (#3276) 10356 * add preliminary multi-threading read support via DirectRasterIO() 10357 10358 10359LAN driver: 10360 * Give preference to PAM coordinate system since built-in info is very 10361 limited. Fallback to PAM geotransform if internal missing. (ESRI Merge) 10362 10363LCP driver: 10364 * Add projection file support (#3255) 10365 10366MEM driver: 10367 * Allow creating bands of more than 2GB each if size_t is large enough. 10368 * Added GetInternalHandle() implementation to fetch band memory buffer 10369 10370MrSID driver: 10371 * Implement faster resampling for 1:1 case 10372 * Improve stream implementation so it works for jp2 with v7 10373 * Make the JP2MrSID driver accept .ntf extension to allow reading jpeg2000 10374 datastream in NITF files 10375 * Avoid reporting large metadata objects. Add MG version to metadata. 10376 10377NetCDF driver: 10378 * Fix handling of pixel validity mask (#3112) 10379 * correct a problem with 5+ dimensional data access (#2583) 10380 * fix y flip detection in common case (#2654) 10381 * add support for subdataset names with Windows full path names, like NETCDF:D:\... 10382 10383NITF driver: 10384 * Add support for reading & creating large (>4GB) NITF files. 10385 * Add support for NITF/JPEG2000 overviews (JP2KAK) 10386 * Add support for reading & creating 12bit JPEG compressed NITF files when JPEG12_ENABLED=yes 10387 * Add support for creating a NITF file with many bands and big TRE content 10388 * Add support for creating several uncompressed images in a NITF file (#2989) 10389 * Add support for creating M3 (masked multi-block JPEG compressed) images 10390 * Add support for unpacking a wider variety of pixel depths. 10391 * Add support for overriding IGEOLO with GEOLOB TRE precision georef (#3180) 10392 * Add support for for CFloat32 reading & writing (#2526) 10393 * Add support for reading and writing NITF file with large single block (#3263) 10394 * Allow Jasper driver to be used for NITF IC=C8 (JPEG2000) CreateCopy() if JP2ECW is not available 10395 * Allow JP2MrSID driver to be used for reading JPEG2000 datastreams in NITF 10396 * Avoid issues when reading M3 single block images 10397 * Fix CreateCopy() of multi block JPEG-NITF 10398 * Various bugfixes (#2940, #2912, #3029, #3088) 10399 * Support NITF file with a color table and JPEG2000 data content (#3110) 10400 10401NWT_GRC / NWG_GRD drivers (Northwood/VerticalMapper) : 10402 * New for GDAL/OGR 1.7.0 10403 10404OGDI driver: 10405 * improve finding of PROJ.4 include files for OGDI (#1242) 10406 10407PCIDSK driver (old driver): 10408 * Added worldfile reading. Added PAM fallback for geotransform. 10409 * Added support for default overviews (i.e. .ovr or .rrd). (ESRI Merge) 10410 * fail somewhat gracefully on compressed images 10411 10412PCIDSK driver (new driver): 10413 * New for GDAL/OGR 1.7.0, using the PCIDSK SDK 10414 10415PDS driver: 10416 * Transfer various keywords to metadata 10417 * Made keyword handler more in complaint with ODL (#2956) 10418 * Support detached files with an offset (#3177) 10419 * Support .LBL labelled compressed files 10420 10421PNG driver : 10422 * Upgrade internal libpng to 1.2.35 10423 * Only write a world file if the source datasource has a geotransform 10424 * Allow writing a nodata value of 0 as the transparent color value (#3208) 10425 10426R driver: 10427 * New for GDAL/OGR 1.7.0 10428 10429Rasterlite driver 10430 * New for GDAL/OGR 1.7.0 10431 10432RIK driver: 10433 * Improved error checking 10434 10435SAGA GIS Binary driver: 10436 * New for GDAL/OGR 1.7.0 10437 10438SDE driver : 10439 * Fix exporting ArcSDE raster results in a displaced image (#2063) 10440 10441SRP driver (ASRP/USRP): 10442 * New for GDAL/OGR 1.7.0 10443 10444SRTM driver : 10445 * Set GDALMD_AOP_POINT metadataitem (#1884) 10446 10447TIL driver (EarthWatch .TIL) driver: 10448 * New for GDAL/OGR 1.7.0 10449 10450VRT driver : 10451 * Honour the INIT_DEST warp option (#2724) 10452 * Improve performance of LUTs in VRTComplexSource from O(n) to O(log2(n)) (#3003) 10453 * Implement (advertized in doc) support for SetMetadataItem( "source_0", szFilterSourceXML, "vrt_sources" ) on a VRTSourcedRasterBand (#3052) 10454 * Implement GetFileList() to list the source files 10455 * Fix wrong initialization of destination buffer in VRTSourcedRasterBand::IRasterIO() in case of not standard pixel/line spacing. (#2867) 10456 10457WCS driver: 10458 * do not try to parse HTML content, which is returned by some provider when the server doesn't exist 10459 * added HttpAuth and UserPwd options for authentication (#3091) 10460 10461WKT Raster driver: 10462 * New for GDAL/OGR 1.7.0 10463 10464WMS driver: 10465 * Support TMS/formatted URLs in WMS minidriver (#2878) 10466 * Be tolerant if we have required 3 bands and got 4, or the other way round 10467 * Declare a user agent string 10468 10469== OGR 1.7.0 - Overview of Changes == 10470 10471Utilities: 10472 * ogrinfo: Preserve order of source layers specified on ogrinfo command line, 10473 and use GetLayerByName() which enables to read some hidden layers 10474 like public.<table> layers from a PG database (#2922, #2026) 10475 * ogr2ogr: 10476 - Add -clipsrc and -clipdst option to clip geometries to the specified extents 10477 - Add -fieldTypeToString option to conveniently cast any fields of given type to fields of type string (#2968) 10478 - Add -progress option for ogr2ogr to displaying progress (#2998) 10479 - Add -wrapdateline option to ogr2ogr to deal with geometries that cross 180 degree longitude (#3158) 10480 - Add -dialect flag to specify SQL dialect 10481 - Preserve order of source layers specified on command line (#2922) 10482 - -overwrite and -append now automatically imply -update (#3048) 10483 - Support converting to a format after field name "laundering" (#3247) 10484 * ogrtindex: 10485 - Skip layers whose schema does not match instead of terminating (#3141) 10486 - Add a -accept_different_schemas option for non-MapServer use cases (#3141) 10487 - Set SRS to tileindex when one is found in the tiles 10488 * ogr2vrt.py : new script that will create a VRT corresponding to a 10489 source datasource (sample script for the moment, not promoted officially) 10490 10491Core : 10492 * Improved OGR feature style (#2875, #2808) 10493 * Considerable speed-up of ExportToWkt() for very large geometries 10494 * Added new OGR_GEOM_AREA special field (#2949) 10495 * ensure forceToMultiLineString() works for MultiPolygons (#2735) 10496 * Various fixes in OGR SQL engine (r16116, #2996, #2788, #3143, #3144) 10497 * Add OGREnvelope::Intersect() 10498 * Add OGR_G_ApproximateArcAngles() for ellipses 10499 * Fix crash on Ubuntu 8.10 in GetFieldAsString() because of (too) strict guard logic (#2896) 10500 * add field type max so we can iterate through all possible values 10501 * Avoid making a 2D5 geometry from a 2D only linestring when reprojecting 10502 10503OGRSpatialReference : 10504 * Upgrade EPSG derived files to EPSG 7.1 10505 * Added support to operate on COMPD_CS coordinate systems 10506 * Added support for importing spatial reference definitions from the OziExplorer .MAP files. 10507 * Introduce static methods to destroy OGRSpatialReference and OGRCoordinateTransformation objects 10508 * Expose more of the axis orientation API to C 10509 * Add missing Eckert 1, 2, 3 and 5 projections 10510 * Fix typos in proj4 conversion for Wagner projections 10511 * Hack in EXTENSION nodes for Google Mercator (#3136) 10512 * Validates PROJCS with AXIS definitions (#2739) 10513 * Added support for urn:ogc:def:crs:OGC::CRS:84 (and CRS:83, CRS:27) per WMS spec. 10514 * Wide variety of improvements to preserve PE strings through a morphFromESRI() 10515 and morphToESRI() process (#2755) 10516 * Fix inversion of dictionary filename and GEOGCS/PROJCS name in OGRSpatialReference::exportToERM() (#2819) 10517 * Fix SpatialReference::IsSame() for LOCAL_CS case (#2849) 10518 * Fix bug in ImportFromXML that prevented from retrieving projection method 10519 * Accept both href and xlink:href in OGC XML 10520 * improve us foot translation handling (#2901) 10521 * OGRSpatialReference::importFromUrl() : add a default 10 second timeout to avoid waiting forever when remote server is stalled 10522 * ensure we can translate mercator1sp with non-zero origin to proj4 (#3026) 10523 * ensure scalefactor preserved in somerc translation (#3032) 10524 * SRS_ESRI: attempt to correct equidistant cylindrical parameter morph (#3036) 10525 * SRS_ESRI: improve plate_carree parameter morphing (#3036) 10526 * SRS_PCI : Fix PCI projection string handling for UTM 10527 * esri_extra.wkt: correct equidistant conic definitions (#3086) 10528 * SRS_PANORAMA : Added support for British National Grid and Pulkovo 1995 datums. 10529 * Improve recognition of WKT text strings when translating into proj4 hard-coded datum names, in particular nzgd49 10530 (also add ggrs87, carthage, hermannskogel, ire65); Fix ellipsoid parameters for modified airy (#3104) 10531 * OSRGetEllipsoidInfo() available for various OGR SRS modules 10532 * added support for OGC:CRS84 and similar srses from wms/wcs spec in SetFromUserInput (#3090) 10533 10534BNA driver : 10535 * Fix output of BNA driver with polygons with inner ring (#2985) 10536 * Proper CRLF output on Windows (#3256) 10537 10538CSV driver : 10539 * Add support for reading and writing CSV files with semicolon or tabulation 10540 as the field separator (#2925, #2136) 10541 * Add automatic treatment of WKT column as geometry 10542 * Add 'CREATE_CSVT' layer creation option 10543 10544DXF driver : 10545 * New for GDAL/OGR 1.7.0 10546 10547Geoconcept driver: 10548 * Fix 'private Class and SubClass headers are inverted' (#2919) 10549 * Fix error in writing 2.5D/3D export file (#2921) 10550 10551GeoJSON driver: 10552 * updated JSON-C library to version 0.9 10553 * use VSIF*L API 10554 10555GML driver : 10556 * Speed-up considerably parsing of GML coordinates in big geometries, in particular on Windows 10557 * Add support for gml3.1.1 srsDimension attribute, to deal with 3D geometries (#2311) 10558 * Support multiple <gml:pos> elements in linearrings of polygons (#3244) 10559 * Limited support for GML3 10560 * Support direct use of FIDs as long as they are all numeric or they have a completely fixed prefix (#1017) 10561 * Fix OGRGMLLayer::GetFeatureCount() if there's a .XSD file available (#2969) 10562 * Added support for out-of-band attributes on features (for NAS) 10563 * Adding the date field type to xsd writer and precision info for OFTReal fields. (#2857) 10564 10565GPX driver: 10566 * Add GPX_SHORT_NAMES configuration option to make the GPX driver report shorter field names 10567 and avoid duplicated field names once translated to shapefile (#2966) 10568 * Write the <bounds> element (write only) 10569 * Avoid escaping XML content when writing <extensions>. 10570 * Add appropriate xmlns when detecting Garmin GPX extensions 10571 10572GRASS driver: 10573 * Do not report 3D geometries for 2D GRASS maps (#3009) 10574 10575GTM (GPSTrackMaker) driver : 10576 * New for GDAL/OGR 1.7.0 (#3113) 10577 10578ILI driver : 10579 * Improved curve segmentation algorithm 10580 * ILI1: Support for multiple point geomtries 10581 * ILI1: Support Real and Integer column types 10582 10583Ingres driver: 10584 * Utilize the new OGC based ingres capabilities (#3159) 10585 10586KML driver: 10587 * Support reading MultiGeometry and layers with mixed geometry type. 10588 * Speed-up considerably the reading of huge KML geometries (#3005) 10589 * Speed-up considerably with huge number of layers 10590 * Moved the location of the Style element to match the OGC Schema (#2858) 10591 * Advertise 25D geometry type when relevant (#1803, #1853, #2181) 10592 * Relax KML driver about xmlns (#3004) 10593 10594MySQL driver : 10595 * Fix mysql driver compilation with mysql 5.1/g++-4.3.2 (Mandriva 2009.1) (#2972) 10596 * Fixed bug MySQL driver truncating decimal places for double field type. (#2852) 10597 10598OCI driver : 10599 * OCI varchar2 columns can be up to 4000 bytes (#2876) 10600 10601ODBC driver : 10602 * make it slightly less likely that the srs_tablename parsing will interfere with complex DSNs. 10603 * support for schemas (#1969) 10604 10605OGDI driver : 10606 * fix to avoid applying old spatial filter to unrelated layer 10607 * fix to force ResetReading() when changing current layer 10608 10609PGEO driver : 10610 * Recognize more ESRI shape type constants. (#2991, #3100) 10611 * implement GetFIDColumn() and GetGeometryColumn() methods (#2694) 10612 10613PostgreSQL driver: 10614 * Add support for tables with 'geography' column type introduced in PostGIS 1.5 (#3216) 10615 * Extend support of schemas in PG driver with 2 new options in the connection string: 10616 active_schema=foo and schemas=foo[,bar] (#522 and #525) 10617 * Implement OGRPGTableLayer::CreateFeature() by using UPDATE instead of DELETE + INSERT (#2557) 10618 * Implement SetNextByIndex() for layers of PG datasources (#3117) 10619 * Support PG 'real' data type in tables (#3006) 10620 * Speed-up PG database opening by avoiding 2 SQL requests per table 10621 * Avoid evaluating GetFieldIndex() on each field of each feature, 10622 which can be very expensive if the layer has many fields 10623 * allow ST_AsBinary with non binary connections 10624 * added a configuration option PG_SKIP_VIEWS. 10625 10626GeoRSS driver : 10627 * New for GDAL/OGR 1.7.0 (#2726) 10628 10629OCI driver: 10630 * support blob column binding 10631 10632PCIDSK driver : 10633 * New for GDAL/OGR 1.7.0 10634 10635Shape driver : 10636 * Handle duplicate field names in shapefile driver. (#3247) 10637 * Support for opening and handling .DBF files > 2 GB (#3011) 10638 * Optimize to use shape bounds for spatial test before organizing poly (#2775) 10639 * Support for alternate date format (#2746) 10640 * Improve/fix TestCapability() on OGRShapeLayer 10641 * Refreshed shapelib from upstream 10642 10643S57 driver : 10644 * Fix incorrect return value of GetFeatureCount() on S57 SOUNDG layer when SPLIT_MULTIPOINT=ON; 10645 also avoid warning on that layer when ADD_SOUNDG_DEPTH=OFF (#3163) 10646 10647SQLite driver: 10648 * Add creation and write support in SpatiaLite-compatible databases 10649 * Add SPATIAL_INDEX creation option for SpatiaLite tables if linked against 10650 libspatialite (default to YES) 10651 * Implement OGRSQLiteTableLayer::TestCapability(OLCFastFeatureCount) 10652 * Implement OGRSQLiteLayer::GetFIDColumn() and GetGeometryColumn() 10653 * Implement TestCapability(OLCRandomRead) 10654 * Add a SQLITE_LIST_ALL_TABLES configuration option to list all(non-spatial) 10655 tables into a SQLite DB even if there are spatial tables 10656 * Avoid reporting the primary key column as a regular column. 10657 * Better precision for double values in CreateFeature() 10658 10659VFK driver: 10660 * New for GDAL/OGR 1.7.0 10661 10662VRT driver: 10663 * Allow fast spatial filtering in the VGS_Direct case 10664 * Add support for CreateFeature(), SetFeature() and DeleteFeature() operations 10665 * Added field definition and style control 10666 * Added new vrt/schema creation capability (@dummy@ datasource, ogr2vrt.py script) 10667 * Implement 'SrcRegion' element 10668 * Add a 'reportSrcColumn' attribute to the 'GeometryField' to avoid reporting 10669 the x,y,wkt or wkb source fields in the VRT layer field definition 10670 * Forward TestCapability(), GetExtent(), SetNextByIndex() to source layer when possible 10671 10672XPlane/Flightgear driver: 10673 * Improve handling of Bezier curves (#3030) 10674 * Support new file names used by XPlane 9.00 & later 10675 * Cut into 2 pieces airway segments that cross the antemeridian 10676 * Add new layer 'Stopway' that contains the shape of the stopway/blastpad/over-run of a runway 10677 * Recognize code 16 and 17 for seaplane bases and heliports and add a new field to APT layer 10678 10679== SWIG Language Bindings == 10680 10681General: 10682 * Recommended SWIG version is 1.3.39 10683 * Added API : 10684 - GDAL : 10685 gdal.FilldoData(), gdal.FileFromMemBuffer(), gdal.Unlink() 10686 gdal.ApplyGeoTransform(), gdal.InvGeoTransform() 10687 Band.GetUnitType(), Band.GetBand() 10688 Band.ComputeStatistics(), Band.HasArbitraryOverviews() 10689 RasterAttributeTable.GetLinearBinning() and SetLinearBinning() 10690 extend [Band|Dataset].[ReadRaster|WriteRaster] to accept pixel, line and band spacing parameters 10691 - OGR: 10692 ogr.GeneralCmdLineProcessor(), Geometry.Segmentize(), FieldDefn.GetTypeName(), 10693 Geometry.ApproximateArcAngles() 10694 - OSR : 10695 osr.ImportFromMICoordSys(), osr.ExportToMICoordSys(), SpatialReference.Clone() 10696 osr.EPSGTreatsAsLatLong(), osr.ImportFromEPSGA() 10697 * Make resampling an optional parameter for gdal.RegenerateOverview(), 10698 to be consistent with gdal.RegenerateOverviews() 10699 * NONNULL checks have been added to check various arguments of methods 10700 * add missing constants : DCAP_VIRTUALIO, color interpretations, OGR constants 10701 10702CSharp bindings : 10703 * Add support for GetFieldAsStringList, GetFieldAsDoubleList and 10704 GetFieldAsIntegerList in the C# wrapper (#2839) 10705 * Support MSVC2008 builds with the csharp interface (#2862) 10706 * Change the dll mapping rules to support the recent MONO versions 10707 * Use GC pinned arrays instead of the double copy in the RasterIO functions (#3073) 10708 * Add typemaps to support custom CPLErrorHandler via C# swig bindings 10709 10710Perl bindings : 10711 * in Polygonize make a local copy of the parameters as they are potentially edited 10712 10713Python bindings : 10714 * Add support for Python 3.X. Compatibility with Python 2.X preserved (#3265) 10715 * Remove old-generation Python bindings. 10716 * Add Python binding's version description capabilities (#3137) 10717 * NUMPY : Make Band|Dataset.ReadAsArray() take into account preallocated array (#2658, #3028) 10718 * Various memory leaks fixed 10719 * Fix gdal.RegenerateOverviews(), Feature.GetFieldAsStringList(), 10720 Feature.GetFieldAsIntegerList(), Feature.GetFieldAsDoubleList(), 10721 Transform.TransformPoints and CoordinateTransformation.TransformPoints 10722 * Extend python TransformPoints typemap to accept any sequence (#3020) 10723 * Make Geometry iterable (#1886) 10724 10725Java bindings (general changes): 10726 * Maintained again. A lot of changes to get them into clean state. 10727 * RasterIO API : added API for standard Java arrays in addition to DirectByteBuffer 10728 * Javadoc available at http://gdal.org/java 10729 10730= GDAL/OGR 1.6.0 = 10731 10732== GDAL/OGR 1.6.0 - General Changes == 10733 10734Build (Unix): 10735 * Added basic support for LDFLAGS 10736 * Try prefix/lib before prefix/src for proj.4 linking (#1345) 10737 * Allow specification of a python binary for --with-python (#2258) 10738 * Added NAS driver config support 10739 * Fixed Expat detection problem on MinGW (#2050) 10740 * Fix INST_DATA setting (/share/gdal instead of /share) (#2382) 10741 * Build MSGN driver on Unix-like platforms 10742 * Added MSG driver support to configure.in. EUMETSAT Wavelet Transform software is only detected on request, option --with-msg specified. 10743 * Improve cross-compilation 10744 * Fix linking with HDF4 library when configuring with --with-hdf4 or --with-hdf4=yes (#2602) 10745 * Fixes for compilation with GCC 4.3 10746 10747Build (Windows) 10748 * Default to non-debug builds. Use /GR in pre 1400 builds so that dynamic_cast doesn't just cause an blowout. Use .pdb file with version embedded. 10749 * Make vc++ builds usable from mingw (#2216) 10750 * Updated nmake.opt for building with Visual C++ adding /W3 flag for release build and /W4 for debug build. 10751 * Add VS Makefile for GDAL and OGR DODS drivers (#2383) 10752 10753Build (All) 10754 * Remove support for "Panorama" GIS SDK (#2669) 10755 10756Port: 10757 * RFC 19: Added VSIMalloc2() and VSIMalloc3() API and use them in GDAL drivers 10758 * RFC 23: Added implementation of recode API 10759 * Added infrastructure to detect bad arguments to printf-like functions 10760 * Added CPLHashSet data structure 10761 * Added quad tree implementation derived from shapelib & mapserv 10762 * Added support for reading on-the-fly .gz files and .zip files (#1369) 10763 * Added CSLFindName() 10764 * Added two new flags to CSLTokenizeString2() function: CSLT_STRIPLEADSPACES and CSLT_STRIPENDSPACES to strip leading and ending spaces from the token. 10765 * Added CSVGetNextLine() to fetch next record based on just csv filename 10766 * Added CPL_ACCUM_ERROR_MSG=ON for CPLQuietErrorHandler 10767 * Added CPL_MAX_ERROR_REPORTS config option (#2409). 10768 * Added CPL_INLINE macro 10769 * Added UNREFERENCED_PARAM macro to cpl_port.h. 10770 * Added CPLGenerateTempFilename() 10771 * Improve performance of CPLParseXMLString from O(n*n) to O(n) where n is the number of siblings node 10772 * Fix bug with url encoding in CPLEscapeString() (#2314) 10773 * Various fixes in CPLList implementation (CPLListInsert and CPLListRemove) (#2134) 10774 * VSIMEM: added path normalization so everything is converted to forward slashes 10775 * VSIMEM: prevent file extension, or write/update to files opened in readonly mode 10776 * cpl_path.cpp: Add CPLAssert to check that the string inputs are not the result static buffer 10777 10778Utilities: 10779 * Added a --utility_version that displays the version of GDAL used for compiling the utility and add runtime checks to see if GDAL library is compatible with the utility version 10780 10781== GDAL 1.6.0 - Overview of Changes == 10782 10783Core : 10784 * RFC 22 : Added RPC and IMD support 10785 * Added support for computing statistics for datasets with arbitrary overviews in GDALRasterBand::ComputeStatistics() 10786 * Added Gaussian resampling in overview building (#2137) 10787 * Added Mode resampling in overview building (#2347) 10788 * Allow fast NONE overview generation (#2677) 10789 * Added in GDALRasterBand::GetRasterSampleOverview() and ComputeRasterMinMax() (#2148) 10790 * Preliminary gmljp2 specific changes to address axis orientation (#2131) 10791 * Added GDALProxyDataset and GDALProxyRasterBand abstract classes to be able to make proxy datasets and raster bands 10792 * Added a proxy dataset class, GDALProxyPoolDataset, that differ at the maximum the opening of the underlying dataset and keep the number of simultaneous opened underlying datasets under a limit (similar to what is done in the RPFTOC driver) 10793 * Migrate GDALRegenerateOverviews() to C API 10794 * Added GDALDestroyDriver() 10795 * Added special case in GDALCopyWholeRaster to be more friendly when writing a tiled compressed GeoTIFF (massive reduction of destination file size) 10796 * Added GDALRegenerateOverviewsMultiBand to process all the bands at the same time to optimize the generations of compressed pixel-interleaved overviews (such as JPEG-In-TIFF). Optimization triggered in some cases for external and internal GeoTIFF overviews. PHOTOMETRIC_OVERVIEW and INTERLEAVE_OVERVIEW config options added for external overviews. -ro option added to gdaladdo to generate external overviews for GeoTIFF. Result : divide by 2 to 3 the size of JPEG-In-TIFF overviews on big RGB datasets 10797 * Add a new class GDALNoDataValuesMaskBand to create a per-dataset nodata mask band (GMF_PER_DATASET | GMF_NODATA) when the metadata item NODATA_VALUES is found on the dataset (#2149) 10798 10799 * Fix segfault when building overviews with --config USE_RRD YES (#2145) 10800 * PAM: save floating point nodata in IEEE floating point binary format 10801 * Fix division by zero in GDALGetRandomRasterSample (#2429) 10802 * GDALOpen: Use EOVERFLOW if defined otherwise use hardcoded likely values (#2437) 10803 * Replace implementation of arrays for maintaining the list of opened shared datasets by a CPLHashSet to avoid O(n*n) complexity 10804 * Fix GDALRasterBand::IRasterIO fails to read data from dataset when block cache is too small (#2457) 10805 * Modify GDALFindAssociatedAuxFile() to only select .aux files that have the same raster configuration as the target dataset (PxLxB). (#2471). 10806 * When available use arbitrary overviews for computations in GDALRasterBand::ComputeRasterMinMax() and GDALRasterBand::GetHistogram(). 10807 * Fix crash in GDALValidateCreationOptions when passed a creation option not in format key=value (#2499) 10808 * Fix 'GDALNoDataMaskBand::IReadBlock doesn't behave correctly when eWrkDT != eDataType' (#2504) 10809 * Use nodata masks when generating overviews (#2149) 10810 * Improve error propagation when GDALRasterBlock::Write() fails (#2524) 10811 * gdalnodatamaskband: add case for uint16 and uint32 as uint32 - fixes neg. nodata values for these 10812 * Add a special case for dealing with RasterIO expansion on writes (#773) 10813 * Add GDALValidateCreationOptions() checks in GDALDriver::Create() and GDALDriver::CreateCopy(). Can be disabled with GDAL_VALIDATE_CREATION_OPTIONS=NO 10814 * Optimization of GDALCopyWords for transfer from buffer of packed bytes to buffer of bytes with interleaving (#2536) 10815 * Use BlockBasedRasterIO in GDALDataset::IRasterIO for pixel-interleaved datasets when source and destination have the same size (#2536) 10816 * PAM: Allow empty category in .aux.xml (#2562) 10817 * GDALDataTypeUnion(): Add missing GDT_CInt16 case that was triggering a CPLAssert(FALSE) (linked to #2564) 10818 * PAM: improve the find existing histogram logic to check approx and out of range 10819 * Fix validation of values for creation option parameters of type float 10820 * Fix memory leak related to PAM histograms 10821 * Restrict dataset sharing to a one thread by tracking owning pid (#2229) 10822 * rasterio.cpp: Handle >2GB memory arrays on a 64-bit build (#2199) 10823 10824Algorithms: 10825 * Added GDALPolygonize() function 10826 * Added sieve filter 10827 * Add implementation of raster hole filler 10828 * Added proximity algorithm implementation 10829 * Added GDALRasterizeLayers() function to rasterize the all the features in the list of layers rather than individual geometries. 10830 * Added support for point geometries rasterization 10831 * Added line rasterization routine. 10832 * Added GDALCreateGenImgProjTransformer2() 10833 10834 * warper: massive upgrade that fixes number of problems with Cubic Spline and Lanczos resamplers, multiple performance improvements. 10835 * Implement overview building for paletted rasterbands with average resampling by selecting the nearest entry after averaging on R,G,B components (#2408) 10836 * Fix destination coordinate system setting logic in GDALReprojectImage (#2231) 10837 * Modify GDALChecksum to give it a deterministic behavior when given a GDT_[C]Float[32|64] rasterband with NaN and Inf values. The result is backward compatible with previous implementations with finite values 10838 * Add options to RPC transformer, use for RPC_HEIGHT offset 10839 * TPS : fix uninitialized variables (#2300), fix wrong behavior with negative coordinates (#2615) 10840 * gdalgeoloc.cpp : Fix crash in GDALCreateGeoLocTransformer if X_DATASET, etc... cannot be opened (#2434) 10841 * warper: Prevent crashes when srcAlphaBand and dstAlphaBand are wrong 10842 * Fix tiling in gdal_grid and output of geotransform when -txe and -tye not specified (#2508) 10843 * warper: Wait for the threads to complete before leaving GDALWarpOperation::ChunkAndWarpMulti() (#2518) 10844 * warper: When warping an RGBA image whose borders have alpha=0, avoid writing alpha=255 with bilinear, cubic, cubic spline resampling 10845 * warper: Properly set a resample window size for Cubic Spline kernel. (#2414) 10846 * gdalsimplewarp.cpp: fix pointer array allocation (#2586) 10847 10848Utilities: 10849 * gdal_lut.py: New for 1.6.0. Sample app applying a greyscale lookup table 10850 * gdal_polygonize.py : New for 1.6.0 10851 * gdal_proximity.py : New for 1.6.0 10852 * gdal_sieve.py: New for 1.6.0 10853 * densify.py: New for 1.6.0. A generic Translator class for ogr2ogr-like operations that can be easily overridden for special translation operations 10854 * gdalflattenmask : New utility to merge regular data bands with the mask bands, for applications not being able to use the mask band concept. (Not compiled by default) 10855 * gdal2ogr: New for 1.6.0. to create an OGR datasource from the values of a GDAL dataset; May be useful to test gdal_grid and generate its input OGR file (Not compiled by default) 10856 10857 * Fix crash in gdalenhance 10858 * Add -nln switch for gdal_contour 10859 * gdalgrid: Fixed zero search radius handling in nearest neighbor interpolation method. 10860 * gdalgrid: Added support for data metrics (minimum, maximum and range) computation. 10861 * gdalgrid: Added spatial filter support applied on the OGR data source 10862 * gdalgrid: Added ability to read values from the attribute field using the "-zfield" option. 10863 * gdalgrid: fix crash on features with NULL geometry or when no point geometry is found on a layer (#2424) 10864 * esri2wkt.py: Fix esri2wkt for NG python bindings (#2548) 10865 * Build testepsg utility by default when OGR is enabled (Ticket #2554). 10866 * gdaltranslate: new -expand rgb|rgba option to make color table expansion 10867 * gdaltindex: Use correct index variable name 10868 * gdal2tiles.py: Bug fix: switched axes in BoundingBox of tilemapresource.xml. 10869 * gdal2tiles.py: Bug fix: wrong Origin in tilemapresource.xml. 10870 * gdal2tiles.py: New version of GDAL2Tiles (SoC 2008 - GDAL2Tiles Improvements) 10871 * gdal_retile.py: Some minor enhancement optionally storing the georeferencing data of created tiles in a csv file 10872 * gdal_vrtmerge.py: add support for NODATA 10873 * gdalinfo: Don't show RAT if -nomdd is used. 10874 * gdalinfo: Display checksums on overviews when -checksum is specified 10875 * gdalinfo: Display whether the mask band has overviews 10876 * ogr2ogr: reset -gt to 1 with -skipfailures, document -gt (#2409) 10877 * ogr2ogr: Output error messages on stderr to be consistent; Make error message about failed reprojection more clearer (hopefully); Advertise the use of -skipfailures in error message (#2588) 10878 * nearblack: Add support for scanning from top and bottom as well as from the sides. 10879 * Prevent crash in gdalwarpsimple utility and in GDALSimpleImageWarp() when source dataset has no raster band 10880 * gdal_rasterize: check that coordinates systems match (Ticket #1937) 10881 * gdalwarp: Add cutline support 10882 10883Various drivers: 10884 * Reports GDAL_DCAP_VIRTUALIO=YES for drivers supporting it (#2193) 10885 * Add warnings in CreateCopy() methods for drivers not supporting color tables (#1939) 10886 * Simplify and harmonize how ESRI world file extensions are handled for BMP, GIF, JPEG, PNG and GTiff drivers (fix #1734) 10887 * Windows : enable bigtiff by default when using internal libtiff (#2257) 10888 * Added plugin building support for ECW, MrSID, HDF5, NetCDF, FITS and SDE drivers. 10889 * fix case of capabilities xml elements to match properly (#2322) 10890 * Add ALPHA creation option in the list of creation options 10891 10892AAIGrid Driver: 10893 * Re-fix nodata test when determining AAIGrid data type (Ticket #2107). 10894 * fix yllcorner computation (#1794) 10895 * mark driver as supporting virtualio. 10896 * Fix wrong data type used to read the source band AAIGCreateCopy (#2369) 10897 * Add DECIMAL_PRECISION creation option for AAIGRID (#2430) 10898 10899ADRG driver: 10900 * Initialize PAM to avoid creating .aux.xml file when gdalinfo an ADRG dataset 10901 * Prevent opening in update mode && fix reading of blocks in creation mode 10902 * Prevent error message coming from ADRG driver when trying to open in update mode a non-existing dataset 10903 * Avoid error reporting and subsequent failure on some DIGEST files where the last record ends in a non-standard way 10904 10905BLX Magellan Topo driver: 10906 * New for 1.6.0 (#2254 and #2570) 10907 10908BSB driver: 10909 * Add support for alternate palettes via config option 10910 * Fix Valgrind warning about read of uninitialized memory; Replace a CPLAssert by a test in case of corrupted dataset; Remove static buffer in BSBReadHeaderLine to improve thread-safety 10911 * Update BSB write support to use VSIF*L API (still disabled by default); fix palette handling (last color entry was lost); add GCP/Geotransform writing 10912 10913COSAR driver: 10914 * Initialize integral variables to prevent failure of test condition in case file read operation fails; clean signed/unsigned mismatch warning. 10915 * Additional tests to protect against corrupted datasets 10916 10917DIMAP driver: 10918 * Fix use of static CPL buffers 10919 * Implement GetFileList() and support for opening directory for DIMAP format 10920 * Add metadata at the raster band level by reading the Spectral_Band_Info tag 10921 10922DODS driver: 10923 * Add using namespace libdap for version 3.8.2 (#2404) 10924 10925DTED driver: 10926 * Add the GDAL_DTED_SINGLE_BLOCK config option to make a single block of a whole DTED file. This can speed-up a lot scanline oriented algorithms (#1909) 10927 * Add support for DTED products strictly following MIL-D-89020 that was buggy 10928 * Fix compilation without CPL 10929 * Improve thread safety 10930 10931ECW driver: 10932 * Fix memory leaks (#2210) 10933 * Be more careful deciding what geotransforms to ignore (#1935) 10934 * Rename ecw plugin gdal_ECW_JP2ECW.so/dll (#2320) 10935 * Properly set default nPixelSpace and nLineSpace in ECWRasterBand::IRasterIO(). 10936 * Added pixel data type checking in ECWCreateCopy() (#2593). 10937 10938EHDR driver: 10939 * Port EHDR driver to large file API (by apetkov) (#2580) 10940 10941EIR (Erdas Imagine Raw format) driver: 10942 * New for 1.6.0 10943 10944ENVI driver: 10945 * fix problems with old/new state plane zone codes (#2227) 10946 10947ERS driver: 10948 * add support for HeaderOffset keyword (#2598) 10949 10950FAST driver: 10951 * Order the GCP in TL, TR, BR, BL order to benefit from the GDALGCPsToGeoTransform optimization 10952 * Add support for Euromap FAST datasets for IRS-1C/IRS-1D PAN/LISS3/WIFS (#2329) 10953 * Fix USGS projection decoding for EOSAT FAST format Rev C (#2381) 10954 * Add support for detection of FAST IRS P6 and CARTOSAT-1 band filenames 10955 10956FITS driver: 10957 * Fix crash in FITS when dataset has metadata; Fix 2 minor Valgrind warnings (#2396) 10958 * Fix crash on int32 test case in fits.py for 64-bit GDAL build (#2579) 10959 10960GeoRaster driver: 10961 * New for 1.6.0 10962 10963GFF driver: 10964 * Close file pointer in dataset destructor 10965 10966GIF driver: 10967 * Disable opening of large files which hang GDALOpen() (#2542) 10968 10969GRASS driver: 10970 * Fix obvious memory leaks in GRASS driver (#2537) 10971 * fix to use G_free() instead of free() (#1983) 10972 10973GRIB driver: 10974 * Moved from spike to trunk: grib now standard, but support --without-grib option 10975 10976GSAG driver: 10977 * Prevent crash on huge number of rows 10978 * Prevent Valgrind warnings on bogus short GSAG files 10979 * Major update to correct upside problems, removing Create (#2224, #1616, #2191) 10980 10981GS7BG driver: 10982 * Fixed geotransformation matrix calculation (#2132) 10983 * Properly read the header on big-endian system. 10984 * Fix bigendian support (#2172) 10985 10986GTiff driver: 10987 * Add support for reading and writing embedded nodata masks of a TIFF file (TIFFTAG_SUBFILETYPE=FILETYPE_MASK) 10988 * Added SUBDATASETS support 10989 * Add the ability to create files with PHOTOMETRIC=PALETTE. 10990 * Add the ability to update palette on existing files (#2421) 10991 * Enforce PROFILE properly for Create (#1527) 10992 * Add support for reading a CMYK TIFF. By default, it will be opened with the RGBA interface (CMKY->RGBA translation done by libtiff. Said to be *very* crude), unless 'GTIFF_RAW:' is specified before the filename. In that later case, the CMYK bands will be presented. Also add support for translating to a CMYK TIFF too : the source dataset must have CMYK bands. No colorspace translation is done 10993 * Internal libtiff : refresh from upstream libtiff 10994 * Added GTiffSplitBitmapBand to treat one row 1bit files as scanline blocks (#2622) 10995 * Don't use GCS if it is less than 1 (#2183). 10996 * Modified so that the RGBA interface is not used for YCbCr mode JPEG compressed data. Set JPEGCOLORMODE to RGB at the point a directory is read to avoid error report if doing it later during writing. This fixes the GDAL 1.5.0 issues with writing YCbCr JPEG compressed data (#2189). 10997 * Fix memory leak in gt_wkt_srs.cpp 10998 * Prevent crash in GTiff driver in case we cannot GDALOpen the newly create-copied file 10999 * Fix buffer overflow when calling GTIFDirectoryInfo in GTIFGetOGISDefn (#2372) 11000 * add special handling for 24bit data which gets byteswapped by libtiff (#2361) 11001 * Replace hard-coded 3 byte increment by iPixelByteSkip in int24 gtiff decoding (#2361) 11002 * Cleaunup frmt/gtiff directory by removing unused files. Move TIFF_WriteOverview to gt_overview.cpp. Create gt_overview.h to declare TIFF_WriteOverview and GTIFFBuildOverviewMetadata 11003 * Add a ENDIANNESS creation option to GTiff driver for debug purpose mostly 11004 * Fix writing of blocks on TIFF files in non-native endianness (#2398) 11005 * Push extra bands of pixel interleaved data into block cache (#2435) 11006 * Improve integration with PAM metadata loading and saving (#2448) 11007 * Fix potential buffer overflow in GTIFAngleStringToDD (committed in upstream libgeotiff) - #2228 11008 * Fix GTiffOddBitsBand::IWriteBlock with GDT_UInt16/32; Error properly with GDT_Float32; Support creating files with NBITS>8; Handle NBITS=1 IReadBlock/IWriteBlock in GTiffOddBitsBand; Prevent subtle IReadBlock/IWriteBlock round-tripping bug for NBITS<8 (#2360) 11009 * Set the TIFFTAG_COMPRESSION compression before asking the default strip size, so that in the case of JPEG compression, the correct strip height is selected (either 8 or 16). Tested with libtiff-3.8.2 and internal libtiff 11010 * Prevent crash on tiff_ovr_9 when JPEG-In-TIFF support is not built 11011 * In GTiffDataset::Create(), set TIFFTAG_JPEGCOLORMODE=JPEGCOLORMODE_RGB when creating a TIFF with COMPRESS=JPEG and PHOTOMETRIC=YCBCR; In Crystalize(), backup the value of TIFFTAG_JPEGCOLORMODE and set it again after writing the directory (#2645) 11012 * Handle more gracefully the case where we open or create a TIFF file with a compression method not built in libtiff (use of TIFFIsCODECConfigured) 11013 * Don't fail when TIFFTAG_JPEGCOLORMODE tag cannot be read 11014 * IPP libjpeg compatibility changes (#2606) 11015 * ensure zip/jpeg quality is preserved in crystalize. (#2642) 11016 * support handling nodata via pam/aux mechanisms (#2505) 11017 * ensure TIFFFlush() is called in FlushCache() (#2512) 11018 * Replace Crystalize() by SetDirectory() in GTiffDataset::IBuildOverviews() so that 2 consecutive ds.BuildOverviews() calls work without needing to close and reopen the dataset in between 11019 * Prevent crash when disk is full 11020 * Add detection of big-endian bigtiffs when BIGTIFF_SUPPORT is *NOT* defined 11021 * Add missing ScaleAtCenter parameter for Hotine Oblique Mercator when writing the geotiff keys 11022 * Added logic to pre-clear geotiff tags when updating a file (#2546) 11023 * Add ExtraSample tag in overviews too (#2572) 11024 * Fix handling of non-degree angular units (#601) 11025 11026GXF driver: 11027 * Add GXFRasterBand::GetNoDataValue (fix #835) 11028 * Avoid crash on bogus GXF file 11029 11030HDF4 driver: 11031 * add support for projected NRL products (#2225) 11032 * make a block consist of several scanlines for SDS case to speed up (#2208) 11033 * Add H4ST prefix to names of HDF4SubdatasetType enumeration values. (#2296). 11034 * Remove useless and dangerous redefinition of sincos in HDF-EOS (#2494) 11035 * Added compatibility definitions for HDF 4.2 library (#2609) 11036 * Read HDF raster images containing in HDF-EOS datasets (#2656) 11037 11038HDF5 driver: 11039 * Fix minor memory leaks and one incorrect memory usage in HDF5 11040 * implement support for 1.8+ hdf library versions (#2297) 11041 11042HFA driver: 11043 * Avoid possible uninitialized variable usage in HFAWriteXFormStack() 11044 * Fix BASEDATA count value (preceding pointer) at 1 (#2144) 11045 * Incorporate generalization of EPT_f32 reduced precision handling (#1000) 11046 * Add missing creation options, fix doc to refer to COMPRESSED instead of COMPRESS (#2167) 11047 * remove static buffer to improve thread-safety 11048 * Read invalid blocks as nodata value if available. Create new files with all blocks marked invalid. Support writing to invalid blocks as long as there is already a pointer to valid data. (#2427) 11049 * add support for writing 1, 2 and 4 bit data (#2436) 11050 * Attempt to preserve PROJCS name in sMapInfo.proName, and to capture it as the PROJCS name when reading. This will hopefully preserve symbolic names like NAD_1983_StatePlane_Ohio_South_FIPS_3402_Feet instead of replacing them with something generic like "Lambert_Conformal_Conic" (#2422). 11051 * avoid reducing array sizes if writing them in random order (#2427) 11052 * Prevent writing out cached information after the file has been closed. Loosely related to (#2524). 11053 * Error out gracefully and early on attempts to write to readonly file (#2524) 11054 * Open the dependent file(s) with same permissions as master (#2425) 11055 * Fix crash in HFACompress::compressBlock when compressing random data with m_nDataTypeNumBits >= 16 (#2525) 11056 * Fix reading of a non-initialized compressed HFA file (#2523) 11057 * Add FORCETOPESTRING, and ensure ProjectionX applied to all bands (#2243) 11058 * Added support for unique values color tables (#2419) 11059 11060HTTP driver: 11061 * Fix HTTP driver when falling back to /tmp (#2363) 11062 11063IDRISI driver: 11064 * Force min/max calculation on IWriteBlock 11065 * remove conditional from CreateColorRamp() call 11066 * Fix #2444 (lat/long) and #2442 (uppercase file extension) 11067 11068ILWIS driver: 11069 * Modified to use VSI*L API for reading and writing. Modify ReadBlock() so that data written on newly created datasets can still be read back. 11070 * Fix memory leaks in ILWIS driver 11071 * Avoid writing an ILWIS file to disk when it is a src_dataset. Design of responsible class (IniFile) is simplified, to prevent this from happening unintentionally. 11072 * Spend extra effort to find the most compact GDAL data-type for storing the ILWIS data; Added missing ILWIS-system domains to the list; Initialized variables before they are used; Added comments to code. 11073 * Solved unwanted rounding in the pixel size, that resulted in wrong map size calculation. 11074 11075INGR driver: 11076 * Support splitting bitonal images into scanline blocks too (#1959) 11077 * Fix compilation of INGR driver on big-endian target (#2613) 11078 11079ISIS3 driver: 11080 * fix earth model, already in meters, not kilometers! (#2321) 11081 * ensure we adjust first tile offset depending on band (#2573) 11082 11083ISO8211 driver: 11084 * corrections to handle double byte attributes better (#1526) 11085 * add a -xml option to 8211dump utility; add a 8211createfromxml utility to generate a ISO8211 file from the output of 8211dump -xml 11086 * robustness fixes 11087 11088JP2KAK driver: 11089 * Add VSI*L reading and writing (vsil_target) (#2255) 11090 * Remove KAKADU4 related ifdefs, we now assume at least KAKADU 4.2. 11091 * disable JPIP - not working with modern Kakadu 11092 11093JPEG driver: 11094 * Added support for reading georeferencing from .tab files. Fixes #682. 11095 * Add support for reading images in CMYK and YCbCrK color spaces (#2443) 11096 * make sure bHasDoneJpegStartDecompress is set in Reset() (#2535) 11097 * Added fill/flush support compatible with IPP libjpeg (#2606) 11098 11099LCP (FARSITE) driver: 11100 * New for 1.6.0 11101 11102L1B driver: 11103 * Added support for NOAA-18(N) and METOP-2 datasets; tiny code refactoring. 11104 * L1B : add auto guess of data format when it is 2 spaces or empty string 11105 * The GAC GCPs are not tied to the center of pixel. 11106 * Serious code rewriting in order to read datasets without archive header 11107 11108MEM driver: 11109 * Avoid failure when doing mem_driver->Create('MEM:::') 11110 11111MrSID driver: 11112 * Use VSI Virtual File API in MRSID DSDK I/O routines. MrSID reading now 11113works through the VSI calls as any other GDAL driver. 11114 * Added support for MrSID DSDK 7.x (#2410) 11115 * Use int 32 types instead of long types for LTI_METADATA_DATATYPE_UINT32 and LTI_METADATA_DATATYPE_SINT32 metadata (#2629) 11116 11117MSG driver: 11118 * Fixes and improvements to enable compilation with GCC 4.x (Ticket #2168). 11119 11120NDF driver: 11121 * Support NDF2 files in other than the current directory (#2274) 11122 * Added somewhat improved coordinate system support (#2623) 11123 11124NetCDF driver: 11125 * Handle very large attributes properly (#2196) 11126 * NETCDF plugin name doesn't correspond to the loader entry name causes an error in AutoLoadDrivers (#2464) 11127 * Fix allocation of panBandZLev (#2582) 11128 * Fix accidentally too large memory allocation (#2591) 11129 * Do not report char variables as subdataset (#2599) 11130 * Fix LAEA projection (#2584) 11131 11132NITF driver: 11133 * Add support for RPB and IMD files 11134 * Handle NITF JPEG-compressed image with data mask subheader (IC=M3) multi-blocks (#2364) 11135 * Implement SetProjection for NITF (#2095) 11136 * Added support for decoding 12 bit images (#2532) 11137 * Added support for writing TEXT segments in CreateCopy() 11138 * Added support for writing arbitrary user defined TREs 11139 * Fix #2249 : shift when writing NITF color table with nColors < 256 11140 * Prevent crash with LUT entry count > 256 11141 * Disable unnecessary VSIFFlush() calls that slowdown writing on some systems 11142 * Apply untested RPC00A remapping (#2040) 11143 * Fix #2135 by narrowing workaround test made for #1750 11144 * Prevent crash on NITF file without image segment (#2362) 11145 * Additional fix for handling 1-bit uncompressed NITF images with NITF_IC=NM (#1854) 11146 * Set IREP=RGB implicitly when the first 3 channels of an image are R,G,B (#2343) 11147 * Allocate one extra byte for the NULL terminating character when reading TEXT data in NITF file (#2366) 11148 * Fix 'adding BLOCKA TRE precludes writing IGEOLO' (#2475) 11149 * Add GDAL_DMD_CREATIONOPTIONLIST for NITF 11150 * Prevent crash when using a bad value for TRE creation option 11151 * Fallback to pam info for nodata (#2596) 11152 11153PAUX driver: 11154 * Check for either generated spelling of AuxiliaryTarget (#2219) 11155 11156PCRaster driver: 11157 * Add overview support 11158 * Added support for CSF version 1. Updated nodata values to be equal to gdal's internal ones. 11159 11160PDS driver: 11161 * Add support for # style comments (#2176) 11162 * Improve PDS dataset identification & fixes image segment offset (#2397) 11163 * Add LSB_SIGNED_INTEGER 11164 11165PGCHIP driver: 11166 * Many memory leak fixes & cleanups, add an extra parameter '%name=my_name' for handling several rasters in the same table, add support for reading&writing geotransform 11167 11168PNM driver: 11169 * Fix potential buffer overflow in case of bad PNM file 11170 * Fix logical tests in PNM Identify (bug #2190) 11171 11172RAW drivers: 11173 * manage RawRasterBand NODATA values at PAM level 11174 * RawRasterBand : add extra parameter bOwnsFP to enable the RawRasterBand to take ownership of the fpRaw so as to close it properly in its destructor 11175 * Fix crash in rawdataset.cpp with pixeloffset=0 (#2576) 11176 11177RMF driver: 11178 * Do not forget to swap block size/offset table on big-endian archs. (#2169) 11179 * Added support for reading and writing extended header.. 11180 * RMF driver can crash / corrupt stack when importing projection from Panorama (#2277) 11181 * Fixed error checking code returned by color table read function. 11182 * Added support for reading big endian variant of the RSW files. 11183 * Report units and dataset statistics (#2670) 11184 11185RPFTOC driver: 11186 * Enable external overview building on RPFTOC subdatasets 11187 * Use new proxy API instead of RPFTOCGDALDatasetCache 11188 * Initialize PAM for RPFTocDataset 11189 * Implement GetFileList() for RPFTOCDataset and RPFTOCSubDataset 11190 11191RS2 driver: 11192 * Added projection reading 11193 * Updates to RADARSAT-2 driver to account for tiled GeoTIFF images. 11194 * Capture all files for GetFileList(). 11195 * Support selecting directory as well as product.xml to open the dataset. 11196 * Various other enhancements 11197 11198SDTS driver: 11199 * Prevent infinite recursion in SDTSRasterReader::GetBlock when CEL0 file is truncated 11200 * SDTS DEM : Read metadata in the IDEN file 11201 11202SGI driver: 11203 * Implemented SGI write support (always RLE) 11204 * Fix SGI driver that misidentified SRTMHGT files as SGI files (#2289) 11205 11206Terragen Driver: 11207 * Fix overflow in implicit constant conversion (#2119) 11208 11209Terralib driver: 11210 * New for 1.6.0 11211 11212TSX driver: 11213 * Added support to extract GCPs from XML metadata for TerraSAR-X SSC products. 11214 * Provide an error message if the sceneInfo tag cannot be found in the TerraSAR-X image metadata. 11215 * Fix lat/lon inversion (whoops, #2565); expose additional metadata items 11216 11217USGSDEM driver: 11218 * mark NTS and INTERNALNAME as legal options 11219 * make parser more permissive (#2348) 11220 * add missing ZRESOLUTION creation option in GDAL_DMD_CREATIONOPTIONLIST 11221 * USGSDEM: add precisions to creation options documentation; check that source dataset dimensions are at least 2x2 for CreateCopy() 11222 * USGSDEM: fix USGSDEMDecToPackedDMS when input is very close to an integer degree value 11223 11224VRT driver: 11225 * Use VSIF Large API in VRTDataset::Open to fix #1070 11226 * recover from failure to create transformer (#2240) 11227 * Added LUT based transformation support to the VRTComplexSource 11228 * Extend the output of <SimpleSource> in a forward and backward compatible way, and make use of GDALProxyPoolDataset when possible 11229 * Add the <ColorTableComponent> element to <ComplexSource> to do color table expansion in the VRT 11230 * Fix failure when attempting to read a warped VRT made from a 3-band dataset with -dstalpha option (#2502) 11231 * In VRTDerivedRasterBand::IRasterIO() don't call RasterIO() on sources with 0,0 for nPixelSpace and nLineSpace as most sources, except VRTSimpleSource, don't translate them. 11232 * Allow empty category in VRT rasterband (#2562) 11233 * Use nodata in VRTKernelFilteredSource::FilterData (#1739) 11234 * Fix VRT average resampling when resampling factor > 100% (#1725) 11235 11236WCS driver: 11237 * Improvements to identify Band field name 11238 * More fiddling with GetCoverage() bounding boxes. Avoid half pixel bounding box shift south east. When using GridOffset/GridStep values expand the bounding box out by 1% of a pixel to avoid "on edge" rounding issues. 11239 * Strip namespaces off DescribeCoverage response (early), and add a bug 11240workaround for GeoServer WCS 1.1 responses. 11241 * Correct wcs 1.1 band identification logic 11242 * URL encode format and coverage name. Improve error recognition. 11243 * GridOffset should be top left corner of pixel center oriented bounds 11244 11245WMS driver: 11246 * Add ClampRequests setting (#2450) 11247 * Fix WMS driver to make it work when ReadBlockFromFile() must deal with blocks already in block-cache but that are not the band to fill (#2647) 11248 * Add a <Timeout> option (#2646) 11249 11250XPM driver: 11251 * Prevent crash when opening an XPM file with large file API 11252 11253 11254== OGR 1.6.0 - Overview of Changes == 11255 11256General: 11257 * RFC 21: OGR SQL type cast and field name alias (#2171) 11258 * Added support for outline color in OGRStyleLabel (#2480) 11259 * Added support for symbol outline color in OGR Style Strings (#2509) 11260 * Added geometry type merger 11261 * Added SetEquirectangular2() 11262 * Added SetLinearUnitsAndUpdateParameters() to C API 11263 * Add support to translate OGRPolygon to OGRMultiLineString 11264 * Add a segmentize() method to OGRGeometry to modify the geometry such it has no segment longer then the given distance; add a -segmentize option to ogr2ogr 11265 * Many performance fixes in OGRGeometryFactory::organizePolygons (#1217, #2428, #2589) 11266 * Changed OGRFeature::GetStyleString() to return the value of the OGR_STYLE field if no style string have been specified. 11267 * Ensure OpenShared sharing is only with same thread (#2229) 11268 * ogrfeaturestyle : OGRSTBrushAngle parameter should not be georeferenced. 11269 * Strip whitespaces at the start and end of parsed pairs of style elements in OGRStyleTool::Parse(). As per #1413. 11270 * Remove empty linestrings from multilinestring objects 11271 * Allow 'POINT EMPTY' in WKT (bug #1628) 11272 * Fix OGRGeometryCollection::getCoordinateDimension() (#2334) 11273 * Make OGRLineString::importFromWkb and OGRPolygon::importFromWkb with EMPTY geometries 11274 * Implement IsEmpty() for all geometries without using GEOS (for speed purpose, and also because GEOS 2.2.3 is buggy with multipolygons with empty polygon inside); Make exportToWkt() export a valid WKT when multipoints/linestrings/polygons have an empty geometry inside 11275 * Reintroduce OFTWideString and OFTWideStringList but mark them as deprecated (#2359). 11276 * Fixed segmentation fault in swq_select_finish_summarize when SQL query issued on layer without any attributes like empty shapefile (Ticket #2358). 11277 * Fix crash in OGRDataSource::ExecuteSQL with an empty SQL query (#2386) 11278 * Make OGRLayer::FilterGeometry more restrictive in the geometries it selects (#2454) 11279 * OGRStyleVector class and related stuff has been removed (#2070). 11280 11281 * Fixed OGR SQL to properly escape single quotes in string literals (Ticket #2220). 11282 * Prevent an OGR driver from being registered several times (#2544) 11283 11284Utilities: 11285 * Start on a dissolve utility based on ogr2ogr 11286 * Add --version and --licence options for OGR CLI utilities 11287 11288OGRSpatialReference: 11289 * RFC 20: Axes methods 11290 * Upgrade to EPSG 6.17 11291 * Added support for "International Map of the World Polyconic" and "Wagner I-VII" projections. 11292 * Add EquidistantCylindricalSphere and GaussLabordeReunion (#2134) 11293 * Fix exportToProj() translation for OSGB36 (#2160) 11294 * ogr_srs_panorama.cpp : Fixed search in ellipsoid list 11295 * ogr_srs_pci.cpp : List of ellipsoids updated 11296 * Treat spherical mercator 1SP similarly to normal mercator 1sp (proj #9). 11297 * Ensure Clear() clears the bNormInfoSet flag and use Clear() from the various import methods to wipe old state (#2533). 11298 * add import/export for MITAB CoordSys 11299 * Added declarations for OSRImportFromMICoordSys()/OSRExportToMICoordSys(); make OSRImportFromPanorama()/OSRExportToPanorama() externally visible again. 11300 * Ensure rectified_grid_angle gets stripped for HOM projections (#2575) 11301 * ogr_srs_esri.cpp: Correct test of iRGAChild (#2575). 11302 * Recent EPSG releases seem to use PolarLongOrigin instead of ProjCenterLong for the Krovak projection parameters. Handle either (#2559). 11303 * Test that input pointer is not NULL in OGRSpatialReference::importFromWkt(). 11304 11305AVC driver: 11306 * Make AVCE00 a distinct driver 11307 * Update from AVCE00 master, includes the fixes for #2495 (GCC warnings) 11308 * Detect compressed E00 input files and refuse to open them instead of crashing (#2513) 11309 * Avoid scanning the whole E00 input file in AVCE00ReadOpenE00() if the file does not start with an EXP line (#1989) 11310 11311BNA driver: 11312 * Fix crash when trying to write features with empty geometries 11313 * Add support for Unix End-Of-Line characters on Windows 11314 11315CSV driver: 11316 * Add support for writing the geometry of features through the new GEOMETRY layer creation option 11317 * Allow to define field width via .csvt text file (bug #2142) 11318 * Handle more gracefully CSV files with an empty column title (#2538) 11319 11320DGN driver: 11321 * add some experimental linkage testing 11322 11323DODS driver: 11324 * add using namespace libdap for version 3.8.2 (#2404) 11325 11326Geoconcept Export driver: 11327 * New for 1.6.0 11328 11329GeoJSON driver: 11330 * Fixed GeoJSON driver crash when writing features with null geometry (#2212) 11331 * GeoJSON: enabled read/write of 25D geometry types. 11332 * Improved GeoJSON driver to gracefully handle JSON strings that do not encode GeoJSON content. 11333 * Support GeoJSON 1.0 Spec CRS 'link' and 'name' members. (#2665) 11334 11335GPX driver: 11336 * XML Datetime can be expressed without explicit timezone mention 11337 * <extensions> is valid inside <rtept> and <trkpt> too 11338 * Add support for GPX 1.0 reading 11339 * Handle degenerate and NULL geometries in creation mode 11340 * Remove noisy CPL_DEBUG message when GPX driver built without Expat and when the input file doesn't look like GPX (#2394) 11341 * Prevent GPX and KML drivers to read too much of a non GPX/KML file (#2395) 11342 * GPX writer: Remove leading spaces for a numeric field (#2638) 11343 11344GML driver: 11345 * Support reading GML 3 posList geometry (#2311) 11346 * Add logic to potentially track geometry type (mostly for NAS just now) 11347 * Fix #2141 : GML driver recognizes improperly strings as integers 11348 * Do geometry element name test (IsGeometryElement) case sensitive to avoid false positives on property names, and such (#2215). 11349 * Fix memory bug in OGRGMLLayer::GetNextFeature() when using attribute filter (#2349) 11350 11351GMT driver : 11352 * Remove spaces from numeric field values before writing to avoid unnecessary quoting. 11353 11354GRASS driver: 11355 * Call Vect_close() in the OGR GRASS driver (#2537) 11356 11357INGRES driver: 11358 * New for 1.6.0 11359 11360Interlis 1 driver: 11361 * Support for SURFACE polygons spread over multiple OBJECTs Polygonize on demand. Generation of area layer 11362 * Fix a crash (#2201) 11363 * Fix memory leaks & apps/test_ogrsf correctness in OGRILI1 (#2203) 11364 * Prevent crash in OGRILI1DataSource::Open with an empty string (#2335) 11365 * Fixed column order detection for some Interlis 1 models (#2595) 11366 11367Interlis 2 driver: 11368 * Fix memory usage and leaks in OGRILI2 (bug #2203) 11369 * Fix logic to detect ILI2 datasets (#2516) 11370 11371KML driver: 11372 * Updated KML write driver to support KML v2.2. 11373 * Added support for "SchemaData" - typed KML fields that maintain feature data. 11374 * Support of date types, written out as strings (#2264) 11375 * Added automatic coordinate system transformation to WGS84 (the only CS that KML recognizes). (#2271) 11376 * Report XML parsing error in KML driver in a similar way it's done in the GPX driver 11377 * Speedup detection of KML documents 11378 * Use VSI Large File API 11379 * Corrected case on schemaUrl attribute and added the id attribute to the schema element. (#1897) 11380 11381MITAB driver: 11382 * Upgraded to current dev version of MITAB - includes a number of TAB StyleString improvements 11383 * Support font point outline color 11384 11385MySQL Driver: 11386 * Fix memory leaks in MySQL driver 11387 * Fix crash with very long WHERE clause in MySQL driver 11388 * Use assignSpatialReference for read features 11389 * Fix SRS cache in FetchSRS() 11390 * MYSQL: Add backquotes around table and column names to enable the use of reserved keywords (#2315) 11391 * Fix reporting of capabilities for OGRMySQLResultLayer 11392 * return proper results for various writing capabilities (#2184) 11393 11394NTF driver: 11395 * Update for new meridian and strategi products (#2600) 11396 11397OCI driver: 11398 * Fixed memory leaks in OCI driver reported by Linda Thompson (#2120) 11399 * Support for OCI + VRT to access non spatial data (#2202) 11400 * Prevent from calling CPLError when SDO_GEOMETRY is missing (non spatial) (#2202) 11401 * Added support for fields of type DATE and TIMESTAMP [WITH [LOCAL] TIME ZONE] as OFTDate and OFTDateTime. 11402 * An extra space is needed for the decimal separator when retrieving the numeric fields (#2350) 11403 * Improved OCI driver to query spatial extent of layer using SDO_GEOM_METADATA for better performance (Ticket #543). 11404 * OCI: Filter out MDSYS.CS_SRS entries with NULL value of WKTEXT. 11405 * add compound and stroked-arc read support 11406 11407PG (Postgres/PostGIS) Driver: 11408 * Add the ability to specify a list of tables to be treated as layers with the 'tables=' connection string option (#1699) 11409 * Add SPATIAL_INDEX creation option to create GIST index. Turned ON by default (#959) 11410 * Add support for listing and correctly fetching geometry type of inherited spatial tables (#2558) 11411 * Add support for Postgis tables with multiple geometry columns (#1476) 11412 * Fixes to Postgres binary cursor mode and improvement/fixes to data types handling (#2312) 11413 * Implement efficient GetFeatureCount, SetSpatialFilter and GetExtent for OGRPGResultLayer 11414 * Apply spatial filter in OGRPGDataSource::ExecuteSQL() 11415 * Make binary cursor work with non-PostGIS geometry column 11416 * Fix memory leaks 11417 * Fix write outside of allocated buffer in OGR PG driver (#2303) 11418 * Use assignSpatialReference for read features 11419 * Fix geometry filter when there is no PostGIS geometry column 11420 * Fix getting the PK of a table with PostgreSQL <= 7.3; Fix CreateFeatureViaCopy when geometry column is not PostGIS geometry 11421 * Use the 'auth_srid' to avoid mismatches between OGR and PostGIS WKTs of EPSG codes (#2123) 11422 * Fix reporting of capabilities and handling of spatial and attribute filters by OGRPGResultLayer 11423 * Add PG_USE_POSTGIS to be able to disable PostGIS for debug purpose 11424 * Re-enable PQsetClientEncoding but set it to UNICODE now that the driver advertises OLCStringsAsUTF8 11425 * Replace use of risky sprintf by CPLString to avoid potential buffer overflows 11426 * In non PostGIS mode, skip tables of schema 'information_schema' 11427 * Allow VACUUM through ExecuteSQL() without a transaction (#2619). 11428 11429PGEO driver: 11430 * correct testcapability results (#2601) 11431 * treat type 50 geometry as SHPT_ARC (#1484) 11432 11433SDE driver: 11434 * Versioned editing/write support for SDE. 11435 11436SQLite driver: 11437 * Added support for geometry_columns, and WKB support 11438 * Added preliminary FGF to geometry support 11439 * Added spatial_ref_sys support 11440 * Added preliminary support for spatialite geometries 11441 11442SHAPE driver: 11443 * CreateField() now works on populated layers (#2672) 11444 * Cleanup to remove unused old classification code for multipolygons (#2174) 11445 * Fix error class in VSI_SHP_Error (#2177) 11446 * Fix crash with polygon with nParts == 0 11447 * Change SHAPE driver to return a NULL geometry instead of an empty OGRMultiPoint, OGRMultiLineString and OGRMultiPolygon (bug #2217) 11448 * Fix crashes on corrupted geometries (#2218 and #2610) 11449 * Fix crash when dealing with unhandled field types in shape driver, in DEBUG mode (#2309) 11450 * Add case for wkbMultiLineString and 25D in OGRShapeLayer::CreateFeature 11451 * Make SHPWriteOGRObject write a SHPT_NULL object for empty geometries and handle correctly multigeometries with empty geometries inside 11452 * Make sure field type set to OFTDate when OFTDataTime requested (#2474) 11453 * Implement OGRShapeDataSource::DeleteLayer() (#2561) 11454 11455S57 driver: 11456 * Ensure SOUNDG in multipoint form is MultiPoint25D not 2D. 11457 * Print out contents of OGR_S57_OPTIONS environment variable if set (for debug 11458purposes). 11459 * Correct control for applying updates, now done in Ingest method. 11460 11461VRT driver: 11462 * carry style string through VRT layer 11463 * Pass the envelope of the geometry as the spatial filter in the sub-query (#2214) 11464 * Add "shared" attribute on SrcDataSource to control sharing. Default to OFF for SrcLayer layers, and ON for SrcSQL layers. This endeavors to avoid conflicts of layer state. (#2229) 11465 11466XPlane/Flightgear driver: 11467 * New for 1.6.0 11468 11469 11470 11471== SWIG Language Bindings == 11472 11473SWIG General : 11474 * Added GetHistogram 11475 * Added SetLinearUnitsAndUpdateParameters 11476 * Added GetSubDatasets method on Dataset 11477 * Added SetEquirectangular2 11478 * Cast returned value to OGRDriverShadow in GetDriver method instead of OGRLayerShadow 11479 * Make it possible to skip adding the inline C functions into the wrapper 11480 * Fix SWIG ReadRaster_internal and DSReadRaster_internal may crash (#2140) 11481 * Modify GeneralCmdLineProcessor() to recognise that a <= 0 return result is special and means NULL should be returned indicating a need to terminate the calling application. 11482 * Added SetMetadataItem/GetMetadataItem 11483 * Added gdaltransformer wrapper for RFC 22 11484 * implement the BuildFromEdges function #2380 11485 * Added ComputeProximity 11486 * Added GDALRegenerateOverviews 11487 * Added GetFileList 11488 * Added GRA_Lanczos 11489 * Added gdal.Polygonize() 11490 * expose GDALDestroyDriverManager() to improve leak detection 11491 * Added RasterizeLayer() and SieveFilter() 11492 * If we receive an odd array type in BandWriteArray(), cast the array to float64 which we do support (#2285). 11493 11494SWIG C# related changes: 11495 * Implement GDALProgressFunc callback for C# (fix for #2122) 11496 * Fixed that passing null as the options parameter of Driver.CreateCopy causes access violation (#2185). 11497 * Added GDALCreateCopy sample application 11498 * Support for signing the GDAL C# assemblies (#2186) 11499 * Added raster specific tests 11500 * Reworked the wrapper implementation 11501 * Added the bandMap parameter to the C# Dataset.ReadRaster and Dataset.WriteRaster API. 11502 * Added a C# sample to demonstrate the GDALDatasetRasterIO operations. 11503 * Added Band.GetHistogram to the C# bindings 11504 * Sample application for Band.GetHistogram. 11505 * Added the GDALAdjustContrast sample to demonstrate the image correction at the C# side. 11506 * Added Dataset.GetGCPs, Dataset.SetGCPs and GCPsToGeoTransform in the C# bindings (bugs #2426, #1986 and #1677 11507 * Added support for using OGR.Layer in Gdal.Polygonize 11508 * Changed the behavior to use OSR.SpatialReference and OSR.CoordinateTransformation instead of defining the same classes in the OGR namespace 11509 * Changed the scope from internal to public of the required functions 11510 11511SWIG Python related changes: 11512 * Fix layer __getitem__ bug (#2187) 11513 * add some sugar to ogr.DataSource.DeleteLayer to be able to take in either an index or a layer name. If you give it a name, it *will* loop through all of the layers on the datasource. This might be expensive depending on the driver. 11514 * add date/time fetching support to the generic GetField implementation... note this is not real 'datetime' support yet 11515 * a typemap for taking in lists of GDAL objects #2458 11516 * don't always return 0 for OGRErrs #2498 11517 * Added GetDefaultHistogram() with Python implementation 11518 * support for mingw Windows builds 11519 * Link with gdal_i.lib instead of gdal.lib when building with MSVC compiler. (#2578) 11520 11521SWIG Perl 11522 * Added a more verbose description to the error message if projection method test fails. Skip testing parameters of International Map of the World projection since it fails (a bug?). 11523 * driver's create method's 2nd parameter, if given, is a listref 11524 * Support Cygwin by adding -lstdc++ to LIBS if OS is cygwin 11525 * Add GetDriver method as an alias to _GetDriver for DataSource. This fixes an unnoticed side-effect of rewrapping GetDriver for root class OGR. 11526 * force name to be a string for _GetLayerByName and make default for name 0 11527 * fix Layer::Schema 11528 * use perl hash also for fields in schema (the new API was not really implemented), add Schema method also for Feature 11529 * croak in Geometry::create unless type, wkt, wkb, or gml given 11530 * do not call UseExceptions when booting OGR wrappers since it is only done once when booting GDAL (of which OGR is a part), do not include inline functions from cpl_exceptions.i into OGR wrappers 11531 * add exception support as for OGR 11532 * use geometry factory methods in Geometry::create; accept also only coordinate parameters (i.e. auto-add 0 if needed) in Point method for Point type 11533 * Add wrappers for field types datetime and lists. Do not use the overloaded (field name) versions of the get/set functions. 11534 * GetField and SetField methods, which check for goodness of the field (name, index) and support dates, times, datetimes, and lists. In Row and Tuple the field value may be a listref. 11535 * Support HEXWKB in Geo::OGR::Geometry::create. 11536 * As* methods for Geometry as aliases for ExportTo; SpatialReference->create constructor 11537 * made needed links from parameters to typemaps to make Get- and SetDefaultHistogram methods work in Perl 11538 * support for mingw Windows builds 11539 11540SWIG Java: 11541 * removed colortable from java bindings for now (#2231) 11542 11543= GDAL/OGR 1.5.0 = 11544 11545== GDAL/OGR 1.5.0 - General Changes == 11546 11547Build: 11548 * CFG environment variable now ignored. Instead set CFLAGS and CXXFLAGS 11549 environment variables to desired compilation options, or use --enable-debug 11550 for a debug build. Default is "-g -O2" like most other packages. 11551 * Added --with-hide-internal-symbols to restrict exported API from .so files 11552 to be the GDAL public API (as marked with CPL_DLL). 11553 11554Other: 11555 * OGR and GDAL C APIs now generally check for NULL objects and recover 11556 with an error report instead of crashing. 11557 11558 11559== GDAL 1.5.0 - Overview of Changes == 11560 11561Core: 11562 * Enable Persistent Auxiliary Metadata (.aux.xml) by default. 11563 * Support for "pam proxies" for files in read-only locations. 11564 * Create and !CreateCopy pre-Delete output existing dataset. 11565 * Added Identify() method on drivers (per RFC 11: Fast Format Identify) 11566 * Implement !GetFileList() on datasets (per RFC 12). 11567 * Implement Delete(), Rename(), Copy() based on !GetFileList() (per RFC 12). 11568 * vrtdataset.h, memdataset.h and rawdataset.h are now considered part of 11569 the public GDAL API, and will be installed along with gdal.h, etc. 11570 * Support nodata/validity masks per RFC 14: Band Masks. 11571 * Plugin drivers test for ABI compatibility at load time. 11572 * Creation flags can now be validated (this is used by gdal_translate) 11573 * Default block cache size changed to 40MB from 10MB. 11574 11575Algorithms / Utilities: 11576 * gdal_grid: New utility to interpolate point data to a grid. 11577 * gdal2tiles.py is new for 1.5.0. 11578 * gdaltransform: stdin/stdout point transformer similar to PROJ.4 cs2cs. 11579 * gdalwarp: Several fixes related to destination "nodata" handling and 11580 nodata mixing in resampling kernels. 11581 * gdalwarp: Added Lanczos Windows Sinc resampling. 11582 * gdal_rasterize: added -i flag to rasterize all areas outside geometry. 11583 * gdalenhance: new utility for applying histogram equalization enhancements. 11584 * gdalmanage: Utility for managing datasets (identify, delete, copy, rename) 11585 * nearblack: Utility for fixing lossy compressed nodata collars. 11586 11587Intergraph Raster Driver: 11588 * New for 1.5.0. 11589 11590COSAR (TerraSAR-X) Driver: 11591 * New for 1.5.0. 11592 * SAR Format. 11593 11594COASP Driver: 11595 * New for 1.5.0 11596 * SAR format produced by DRDC CASP SAR Processor. 11597 11598GFF Driver: 11599 * New for 1.5.0 11600 11601GENBIN (Generic Binary) Driver: 11602 * New for 1.5.0. 11603 11604ISIS3 Driver: 11605 * New for 1.5.0. 11606 * Also PDS and ISIS2 driver improved substantially and all moved to frmts/pds 11607 11608WMS Driver: 11609 * New for 1.5.0. 11610 11611SDE Raster Driver: 11612 * New for 1.5.0. 11613 11614SRTMHGT Driver: 11615 * New for 1.5.0. 11616 11617PALSAR Driver: 11618 * New for 1.5.0. 11619 * SAR format. 11620 11621ERS Driver: 11622 * New for 1.5.0. 11623 * ERMapper ASCII Header 11624 11625HTTP Driver: 11626 * New for 1.5.0. 11627 * Fetches file by http and then GDALOpen()s. 11628 11629GSG Driver: 11630 * New for 1.5.0. 11631 * Golden Software Surfer Grid. 11632 11633GS7 Driver: 11634 * New for 1.5.0. 11635 * Golden Software Surfer 7 Binary Grid. 11636 11637Spot DIMAP Driver: 11638 * New for 1.5.0. 11639 11640RPFTOC Driver: 11641 * New for 1.5.0. 11642 11643ADRG Driver: 11644 * New for 1.5.0. 11645 11646NITF Driver: 11647 * Added support for writing JPEG compressed (IC=C3). 11648 * Added support for reading text segments and TREs as metadata. 11649 * Added support for 1bit images. 11650 * Added support for GeoSDE TRE for georeferencing. 11651 * Support PAM for subdatasets. 11652 * Improved NSIF support. 11653 * Support C1 (FAX3) compression. 11654 * Improved CADRG support (#913, #1750, #1751, #1754) 11655 11656ENVI Driver: 11657 * Many improvements, particularly to coordinate system handling and metadata. 11658 11659JP2KAK (Kakadu JPEG2000) Driver: 11660 * Now builds with libtool enabled. 11661 11662GTIFF (GeoTIFF) Driver: 11663 * Now supports BigTIFF (read and write) with libtiff4 (internal copy ok). 11664 * Upgraded to include libtiff 4.0 (alpha2) as the internal option. 11665 * Support AVERAGE_BIT2GRAYSCALE overviews. 11666 * Produce pixel interleaved files instead of band interleaved by default. 11667 * Support TIFF files with odd numbers of bits (1-8, 11, etc). 11668 * Add ZLEVEL creation option to specify level of compression for DEFLATE method 11669 11670GIF Driver: 11671 * Nodata/transparency support added. 11672 11673JPEG Driver: 11674 * Support in-file masks. 11675 11676AIGrid Driver: 11677 * Supports reading associated info table as a Raster Attribute Table. 11678 11679HFA Driver: 11680 * Support MapInformation/xform nodes for read and write. 11681 * Support AVERAGE_BIT2GRAYSCALE overviews. 11682 * Support Signed Byte pixel type. 11683 * Support 1/2/4 bit pixel types. 11684 * Support PE_STRING coordinate system definitions. 11685 * Support nodata values (#1567) 11686 11687WCS Driver: 11688 * Support WCS 1.1.0 11689 11690DTED Driver: 11691 * Can now perform checksum verification. 11692 * Better datum detection. 11693 11694HDF4 Driver: 11695 * Support PAM for subdatasets. 11696 11697Leveller Driver: 11698 * Added write support. 11699 * Added v7 (Leveller 2.6) support. 11700 11701== OGR 1.5.0 - Overview of Changes == 11702 11703General: 11704 * Plugin drivers test for ABI compatibility at load time. 11705 * SFCOM/OLEDB stuff all removed (moved to /spike in subversion). 11706 * Various thread safety improvements made. 11707 * Added PointOnSurface implementation for OGRPolygon. 11708 * Added C API interface to OGR Feature Style classes (RFC 18). 11709 11710Utilities: 11711 * All moved to gdal/apps. 11712 11713OGRSpatialReference: 11714 * Supports URL SRS type. 11715 * Upgraded to EPSG 6.13. 11716 * Operating much better in odd numeric locales. 11717 11718BNA Driver: 11719 * New for 1.5.0. 11720 11721GPX Driver: 11722 * New for 1.5.0. 11723 11724GeoJSON Driver: 11725 * New for 1.5.0. 11726 11727GMT ASCII Driver: 11728 * New for 1.5.0. 11729 11730KML Driver: 11731 * Preliminary read support added. 11732 11733DXF / DWG Driver: 11734 * Removed due to licensing issues with some of the source code. Still 11735 available in subversion from under /spike if needed. 11736 11737PG (Postgres/PostGIS) Driver: 11738 * Added support for recognising primary keys other than OGR_FID to use as FID. 11739 * Improved schema support. 11740 * Performance improvements related to enabling SEQSCAN and large cursor pages 11741 11742Shapefile Driver: 11743 * Do not keep .shx open in read only mode (better file handle management). 11744 * Use GEOS to classify rings into polygons with holes and multipolygons if it is available. 11745 * Support dbf files larger than 2GB. 11746 11747MySQL Driver: 11748 * Added support for BLOB fields. 11749 11750MITAB (MapInfo) Driver: 11751 * Upgraded to MITAB 1.6.4. 11752 11753Interlis Drivers: 11754 * Support datasources without imported Interlis TID 11755 * Remove ili2c.jar (available from http://home.gdal.org/dl/ili2c.jar 11756 * Support for inner rings in Surface geometries. 11757 * Support spatial and attribute filters. 11758 11759== SWIG Language Bindings == 11760 11761 * The "Next Generation" Python SWIG bindings are now the default. 11762 * Python utility and sample scripts migrated to swig/python/scripts and 11763 swig/python/samples. 11764 * Added Raster Attribute Tables to swig bindings. 11765 * Added Geometry.ExportToKML 11766 * Added CreateGeometryFromJson 11767 * Added Geometry.ExportToJson 11768 11769SWIG C# related changes: 11770 * Support for the enumerated types of the C# interface 11771 * C# namespace names and module names follows the .NET framework naming guidelines 11772 * Changed the names of the Windows builds for a better match with the GNU/Linux/OSX builds 11773 * The gdalconst assembly is now deprecated 11774 * GDAL C# libtool build support 11775 * !CreateFromWkb support 11776 * Dataset.!ReadRaster, Dataset.!WriteRaster support 11777 * Added support for Dataset.!BuildOverviews 11778 * More examples added 11779 11780SWIG Python related changes: 11781 * Progress function callback support added. You can use a Python function, or the standard GDALTermProgress variant 11782 * Sugar, sweet, sweet sugar. 11783 * ogr.Feature.geometry() 11784 * ogr.Feature.items() 11785 * ogr.Feature.keys() 11786 * doxygen-generated docstrings for ogr.py 11787 * geometry pickling 11788 * setuptools support 11789 * !PyPi http://pypi.python.org/pypi/GDAL/ 11790 * setup.cfg for configuring major significant items (libs, includes, location of gdal-config0 11791 * support building the bindings from *outside* the GDAL source tree 11792 11793SWIG Java: 11794 * SWIG Java bindings are orphaned and believed to be broken at this time. 11795 11796=============================================================================== 11797 11798GDAL/OGR 1.4.0 - General Changes 11799-------------------------------- 11800 11801 11802Perl Bindings: 11803 - Added doxygen based documentation. 11804 11805NG Python Bindings: 11806 - Implemented numpy support. 11807 11808CSharp Bindings: 11809 - Now mostly operational. 11810 11811WinCE Porting: 11812 - CPL 11813 - base OGR, OSR and mitab and shape drivers. 11814 - GDAL, including GeoTIFF, DTED, AAIGrid drivers 11815 - Added test suite (gdalautotest/cpp) 11816 11817Mac OSX Port: 11818 - Added framework support (--with-macosx-framework) 11819 11820 11821 11822GDAL 1.4.0 - Overview Of Changes 11823-------------------------------- 11824 11825WCS Driver: 11826 - New 11827 11828PDS (Planetary Data Set) Driver: 11829 - New 11830 11831ISIS (Mars Qubes) Driver: 11832 - New 11833 11834HFA (.img) Driver: 11835 - Support reading ProjectionX PE strings. 11836 - Support producing .aux files with statistics. 11837 - Fix serious bugs with u1, u2 and u4 compressed data. 11838 11839NITF Driver: 11840 - Added BLOCKA reading support. 11841 - Added ICORDS='D' 11842 - Added jpeg compression support (readonly) 11843 - Support multiple images as subdatasets. 11844 - Support CGM data (as metadata) 11845 11846AIGrid Driver: 11847 - Use VSI*L API (large files, in memory, etc) 11848 - Support upper case filenames. 11849 - Support .clr file above coverage. 11850 11851HDF4 Driver: 11852 - Added support for access to geolocation arrays (see RFC 4). 11853 - External raw raster bands supported. 11854 11855PCIDSK (.pix) Driver: 11856 - Support METER/FEET as LOCAL_CS. 11857 - Fix serious byte swapping error on creation. 11858 11859BMP Driver: 11860 - Various fixes, including 16bit combinations, and non-intel byte swapping. 11861 11862GeoTIFF Driver: 11863 - Fixed in place update for LZW and Deflated compressed images. 11864 11865JP2KAK (JPEG2000) Driver: 11866 - Added support for reading and writing gmljp2 headers. 11867 - Read xml boxes as metadata. 11868 - Accelerate YCbCr handling. 11869 11870JP2MrSID (JPEG2000) Driver: 11871 - Added support for reading gmljp2 headers. 11872 11873EHDR (ESRI BIL) Driver: 11874 - Support 1-7 bit data. 11875 - Added statistics support. 11876 11877 11878OGR 1.4.0 - Overview of Changes 11879------------------------------- 11880 11881OGR SQL: 11882 - RFC 6: Added support for SQL/attribute filter access to geometry, and 11883 style strings. 11884 11885OGRSpatialReference: 11886 - Support for OGC SRS URNs. 11887 - Support for +wktext/EXTENSION stuff for preserving PROJ.4 string in WKT. 11888 - Added Two Point Equidistant projection. 11889 - Added Krovak projection. 11890 - Updated support files to EPSG 6.11. 11891 11892OGRCoordinateTransformation: 11893 - Support source and destination longitude wrapping control. 11894 11895OGRFeatureStyle: 11896 - Various extensions and improvements. 11897 11898INFORMIX Driver: 11899 - New 11900 11901KML Driver: 11902 - New (write only) 11903 11904E00 Driver: 11905 - New (read only) 11906 - Polygon (PAL) likely not working properly. 11907 11908Postgres/PostGIS Driver: 11909 - Updated to support new EWKB results (PostGIS 1.1?) 11910 - Fixed serious bug with writing SRSes. 11911 - Added schema support. 11912 11913GML Driver: 11914 - Strip namespaces off field names. 11915 - Handle very large geometries gracefully. 11916 11917ODBC Driver: 11918 - Added support for spatial_ref_sys table. 11919 11920SDE Driver: 11921 - Added logic to speed things up while actually detecting layer geometry types 11922 11923PGeo Driver: 11924 - Added support for MDB Tools ODBC driver on linux/unix. 11925 11926VRT Driver: 11927 - Added useSpatialSubquery support. 11928 11929 11930=============================================================================== 11931 11932GDAL/OGR 1.3.2 - General Changes 11933-------------------------------- 11934 11935WinCE Porting: 11936 - Support for MS WinCE new for this release. 11937 11938Java SWIG Bindings: 11939 - Preliminary support implemented. 11940 11941 11942GDAL 1.3.2 - Overview of Changes 11943-------------------------------- 11944 11945Locale: 11946 - Force numeric locale to "C" at a few strategic points. 11947 11948Idrisi Driver: 11949 - New for 1.3.2. 11950 - Includes reading and writing. 11951 - Limited coordinate system support. 11952 11953DIPEx Driver: 11954 - New for GDAL 1.3.2 (related to ELAS format). 11955 11956Leveller Driver: 11957 - New for GDAL 1.3.2. 11958 11959NetCDF Driver: 11960 - Improved autoidentification of x, y dimensions. 11961 - Improved CF support. 11962 11963JPEG2000 (JasPer) Driver: 11964 - Use GDALJP2Metadata to support various kinds of georeferencing. 11965 11966JPEG2000 (JP2KAK) Driver: 11967 - Support writing tiles outputs so that very large images can be written. 11968 11969GeoTIFF Driver: 11970 - Report error when attempting to create >4GB uncompressed file. 11971 - Updated to latest libtiff, now supports "old jpeg" fairly well. 11972 - Improved support for subsampled YCbCr images. 11973 11974Imagine (HFA) Driver: 11975 - Support reading affine polynomial transforms as geotransform. 11976 - Support overviews of different type than base band. 11977 - Support reading RDO style "nodata" indicator. 11978 11979PCI Aux Driver: 11980 - Support projections requiring parameters. 11981 11982MrSID Driver; 11983 - Fixed problem with writing files other than 1 or 3 bands. 11984 - Support ESDK 6.x. 11985 11986BMP Driver: 11987 - Added support for 32bit images with bitfields compression. 11988 11989DODS Driver: 11990 - Upgraded to support libdap 3.6.x. 11991 - Upgraded to support [-x][-y] to flip image. 11992 11993gdal_rasterize Utility: 11994 - New for GDAL 1.3.2. 11995 - Rasterize OGR polygons into a raster. 11996 11997 11998 11999OGR 1.3.2 - Overview of Changes 12000------------------------------- 12001 12002OGRFeature: 12003 - Added support for OFTDate, OFTTime and OFTDateTime field types. 12004 - Also applied to a few drivers (shapefile, mysql, postgres) 12005 12006OGRLayer: 12007 - GetFIDColumn() and GetGeometryColumn() added. 12008 12009Generic OGR SQL: 12010 - Proper support for spatial and attribute filters installed on 12011 OGR SQL resultsets. 12012 12013OGRSpatialReference: 12014 - Upgraded data files to EPSG 6.9 12015 12016PostGIS Driver: 12017 - Include proj4text in new spatial_ref_sys entries. 12018 - Fixed support for very large queries. 12019 - Fixed DeleteLayer() implementation. 12020 - Added COPY support for accelerated loading. 12021 12022MySQL Driver: 12023 - Added read and write support for Spatial types. 12024 - Support spatial_ref_sys and geometry_columns tables. 12025 - Various other improvements (dates, smallint, tinyint, etc) 12026 - More robust auto-detection of column types for layers 12027 created from SQL statements 12028 12029ArcSDE Driver: 12030 - New for 1.3.2. 12031 - Read-only support for all geometry types. 12032 - Supports coordinate systems. 12033 - Requires SDE C API from ESRI. 12034 12035Shapefile Driver: 12036 - Avoid posting errors when .dbf's without .shps are opened. 12037 - Added pseudo-SQL REPACK command after deleting features. 12038 - Implement DeleteFeature() 12039 12040S-57 Driver: 12041 - Added support for Arcs. 12042 - Added special DSID_DSSI feature class to capture header info. 12043 12044DGN Driver: 12045 - Support writing geometry collections. 12046 12047DWG/DXF Driver: 12048 - New for OGR 1.3.2 12049 - Only supports writing DWG and DXF. 12050 - Depends on DWGdirect library. 12051 12052 12053=============================================================================== 12054 12055GDAL 1.3.1 - Overview of Changes 12056-------------------------------- 12057 12058Next Generation SWIG Wrappers (GDAL and OGR): 12059 - Python, Perl and Ruby bindings considered to be ready to use. 12060 - C#, Java, PHP are at best initial prototypes. 12061 - Added configure options for most NG options. 12062 12063PCRaster Driver: 12064 - libcsf is now included as part of GDAL. 12065 - PCRaster enabled by default on win32. 12066 - --with-pcraster=internal option now supported on unix (but not yet default) 12067 12068VSI Virtualization: 12069 - The "large file API" (VSI*L) has been re-engineered to allow installing 12070 additional file handlers at runtime. 12071 - Added "in memory" VSI handler so that now any driver using VSI*L 12072 functions for data access can operate on in-memory files. 12073 - PNG, JPEG and GeoTIFF drivers upgraded to work with in-memory support. 12074 12075Raster Attribute Tables: 12076 - Implemented new Raster Attribute Tables support. See the 12077 GDALRasterAttributeTable class for more information. 12078 12079Erdas Imagine Overviews: 12080 - Erdas Imagine driver upgraded to support building internal overviews. 12081 - Generic overview handler updated to support overviews in Erdas Imagine 12082 format for any file format. Set USE_RRD config option to YES to enable. 12083 12084gdalwarp: 12085 - Added proper support for "unified source nodata", so the -srcnodata 12086 switch works well. 12087 12088RIK Driver: 12089 - New Swedish format driver implemented by Daniel Wallner. 12090 12091JPEG Driver: 12092 - Substantial improvements to EXIF support. 12093 12094MrSID Driver: 12095 - Updated with proper JPEG2000 support as JP2MRSID driver, including 12096 encoding with ESDK. 12097 - Updated to support MrSID Version 5.x SDKs. 12098 12099PNG Driver: 12100 - Fixed serious bugs with 16bit file support. 12101 - Added NODATA_VALUES to identify RGB sets that indicate a nodata pixel. 12102 12103 12104OGR 1.3.1 - Overview of Changes 12105------------------------------- 12106 12107Reference Counting: 12108 - OGRSpatialReference and OGRFeatureDefn now honour reference counting 12109 semantics. 12110 - Note that, especially for the OGRFeatureDefn, it is now critical that 12111 all drivers be careful with reference counting. Any OGR drivers not in 12112 the core distribution will likely crash if not updated. 12113 12114ESRI Personal Geodatabase Driver: 12115 - New driver implemented for ESRI Personal Geodatabase (.mdb) files. 12116 - Uses ODBC, enabled by default on win32. 12117 12118ODBC Driver: 12119 - Updated to support binary fields. 12120 - Updated to support WKB geometry fields. 12121 - Updated to support DSN-less connections. 12122 12123S57 Driver: 12124 - Added support for Inland Waterways, and Additional Military Layers profiles 12125 12126 12127=============================================================================== 12128 12129GDAL 1.3.0 - Overview of Changes 12130-------------------------------- 12131 12132Multithreading: 12133 - Lots of work done to implement support for multiple threads reading 12134 from distinct GDALDataset objects at the same time. 12135 12136GDALRasterBand / Persistent Auxiliary Metadata (PAM): 12137 - Support for preserving a variety of metadata in a supporting XML file. 12138 - GDALRasterBand now supports "remembering" histograms, and has a concept 12139 of the default histogram. 12140 - GDALRasterBand now supports remembering image statistics. 12141 - Disabled by default (set GDAL_PAM_ENABLED=YES to turn on). 12142 - Supported by *most* drivers with some caveats. 12143 12144GDALCopyWords(): 12145 - This function is a low level work horse for copying and converting pixel 12146 data in GDAL. It has been substantially optimized by Steve Soule (Vexcel). 12147 12148Next Generation Bindings: 12149 - Kevin Ruland and Howard Butler are working on reworked support for 12150 SWIG to generate Python, PHP, Java, C# and other language bindings for GDAL 12151 and OGR. 12152 12153VB6 Bindings: 12154 - Now substantially complete, see VB6 directory. 12155 12156HDF5 Driver: 12157 - New HDF5 driver implemented by Denis Nadeau. 12158 12159RMF Driver: 12160 - New driver for Raster Matrix Format by Andrey Kislev. 12161 12162MSGN (Meteosat Second Generation Native) Driver: 12163 - New driver implemented by Frans van der Bergh. 12164 12165VRT Driver: 12166 - Fixed whopper of a memory leak in warped raster case. 12167 12168NetCDF Driver: 12169 - Preliminary CF conventions support by Denis Nadeau. 12170 12171NITF Driver: 12172 - NITF files between 2 and 4 GB in size can now be read and written. 12173 12174JPEG Driver: 12175 - Added support for reading EXIF as metadata by Denis Nadeau. 12176 12177DODS Driver: 12178 - Fixed up libdap 3.5.x compatibility. 12179 12180JP2ECW (JPEG2000 ECW SDK) Driver: 12181 - Implemented support for new GML-in-JPEG2000 specification. 12182 - Implemented support for old MSI "worldfile" box. 12183 12184JP2KAK (JPEG2000 Kakadu) Driver: 12185 - Implemented support for new GML-in-JPEG2000 specification. 12186 - Implemented support for old MSI "worldfile" box. 12187 12188PCIDSK Driver: 12189 - tiled files now supported for reading. 12190 - overviews now supported for reading. 12191 12192HFA (Imagine) Driver: 12193 - Supports creating internal overviews in very large files. 12194 - Support reading class names. 12195 - Support creating compressed files. 12196 12197GeoTIFF Driver: 12198 - Support reading files with odd bit depths (i.e. 3, 12, etc). 12199 - Support 16/24bit floating point TIFFs (per Technote 3) (Andrey). 12200 - Support 12bit jpeg compressed imagery using libjpeg "MK1" library. 12201 12202HDF4 Driver: 12203 - Added support for ASTER Level 1A, 1B and 2 products (Andrey). 12204 12205 12206OGR 1.3.0 - Overview of Changes 12207------------------------------- 12208 12209OGRGeometry: 12210 - WKT (and GML) encoding now attempts to preserve pretty much full double 12211 precision. 12212 - geometries are now "coordinate dimension preserving" rather than dynamically 12213 figuring out dimension depending on whether Z is set. So a geometry can 12214 now be 3D even if all z values are zero. 12215 - Fixed up proper EMPTY geometry support per standard. 12216 12217GRASS Driver: 12218 - New driver for GRASS 6 vector data written by Radim Blazek. 12219 12220Interlis Driver: 12221 - New driver for Swiss Interlis format from Permin Kalberer (SourcePole). 12222 12223Shape Driver: 12224 - Fixed logic for degenerate polygons (Baumann Konstantin). 12225 12226PostgreSQL/PostGIS Driver: 12227 - Implemented fast GetExtent() method (Oleg Semykin). 12228 - Implemented layer type from geometry_columns (Oleg Semykin). 12229 - Handle PostGIS 1.0 requirements for coordinate dimension exactness. 12230 - Handle EWKT type in PostGIS 1.0. 12231 - Generally PostGIS 0.x and 1.0 should now be supported fairly gracefully. 12232 - Added PostGIS "binary cursor" mode for faster geometry access. 12233 12234VRT Driver: 12235 - Pass through attribute queries to underlying driver. 12236 - Pass through spatial queries as attribute filters on the underlying layer. 12237 12238S57 Driver: 12239 - Added concept of supporting different profiles. 12240 - Added prototype AML profile support. 12241 12242MySQL Driver: 12243 - Fixed for FID recognition (eg. mediumint). 12244 12245GML Driver: 12246 - Various fixes for generated GML correctness (Tom Kralidis). 12247 12248TIGER/Line Driver: 12249 - Added Tiger 2004 support. 12250 12251Oracle Driver: 12252 - Use VARCHAR2 for fixed size string fields. 12253 - Use OCI_FID config variable when creating layers, and reading select results 12254 12255 12256 12257 12258=============================================================================== 12259 12260GDAL 1.2.6 - Overview of Changes 12261-------------------------------- 12262 12263gdal_translate: 12264 - Added -sds switch to copy all subdatasets. 12265 12266gdalwarp: 12267 - Added Thin Plate Spline support (-tps switch). 12268 12269GDALRasterBand: 12270 - Now uses two level block cache allowing efficient access to files 12271 with a very large number of tiles. 12272 - Added support for YCbCr color space for raster band color interpretations. 12273 - Added AdviseRead() method - currently only used by ECW driver and OGDI 12274 drivers. 12275 12276ILWIS Driver: 12277 - New driver for the raster format of the ILWIS software. 12278 12279ECW Driver: 12280 - Updated to use ECW SDK 3.1 (older ECW SDK no longer supported!) 12281 12282ECWJP2 Driver: 12283 - Added JPEG2000 support driver based on ECW/JPEG2000 SDK with a variety 12284 of features. 12285 12286NITF Driver: 12287 - Added support for reading *and* writing JPEG2000 compressed NITF files 12288 using the ECW/JPEG2000 SDK. 12289 - Added ICHIPB support. 12290 12291HDF Driver: 12292 - Add support for georeferencing from some additional metadata formats. 12293 - Fixed bug with multi-band HDF-EOS datasets. 12294 12295MrSID Driver: 12296 - Driver can now be built as a plugin on win32. 12297 - Split out MrSID 3.x SDK support - not readily buildable now. 12298 - Implemented accelerated IO cases for MrSID 4.x SDK. 12299 - Support for writing MrSID files added (improved?) 12300 12301Imagine Driver: 12302 - Fixed bug reading some large multiband Imagine files. 12303 - Added support for writing compressed files. 12304 12305Win32 Builds: 12306 - Added versioning information to GDAL DLL. 12307 12308L1B Driver: 12309 - Only return a reduced grid of control points. 12310 12311IDA (WinDisp4) Driver: 12312 - New read/write driver for the Image Display and Analysis raster format 12313 used by WinDisp 4. 12314 12315NDF (NLAPS) Driver: 12316 - Added NDF/NLAPS read driver for version 1 and 2. 12317 12318MSG Driver: 12319 - Added support for the Metosat Second Generation raw file format. 12320 12321GTiff Driver: 12322 - Added support for offset/scale being saved and loaded (special metadata). 12323 - Added Cylindrical Equal Area. 12324 - Added PROFILE creation option to limit extra tags. 12325 12326PNG Driver: 12327 - Updated internal code for libpng to libpng 1.2.8. 12328 12329 12330OGR 1.2.6 - Overview of Changes 12331------------------------------- 12332 12333OGRSFDriverRegistrar: 12334 - Added support for autoloading plugin drivers from ogr_<driver>.so. 12335 12336ogr.py: 12337 - Geometry, and Feature now take care of their own reference counting and 12338 will delete themselves when unreferenced. Care must still be taken to 12339 unreference all features before destroying the corresponding 12340 layer/datasource. 12341 - ogr.Feature fields can now be fetched and set directly as attributes. 12342 - Geometry constructor can now take various formats (wkt, gml, and wkb). 12343 - Added docstrings. 12344 - Added better __str__ methods on several objects. 12345 - Various other improvements. 12346 12347OGRLayer: 12348 - Re-wrote generic spatial search support to be faster in case of rectangular 12349 filters. 12350 - Intersects() method now really uses GEOS. This also affects all OGR 12351 layer spatial filtering (with non-rectangular filters). 12352 - Added SetNextByIndex() method on OGRLayer. 12353 12354OGRSpatialReference: 12355 - Automatically generate +towgs84 from EPSG tables when translating to 12356 PROJ.4 if available and TOWGS84 not specified in source WKT. 12357 - Updated GML CRS translation to follow OGC 05-011 more closely. Still 12358 incomplete but operational for some projections. 12359 - Added support for FIPSZONE State Plane processing for old ESRI .prjs. 12360 - Added Goode Homolosine support. 12361 - Added GEOS (Geostationary Satellite) support. 12362 12363OCI (Oracle) Driver: 12364 - Added GEOMETRY_NAME creation option to control the name of the field to 12365 hold the geometry. 12366 12367PostGIS Driver: 12368 - Fixed some problems with truncation for integer and float list fields. 12369 12370Shapefile Driver: 12371 - Added support for MapServer style spatial index (.qix). 12372 12373GML Driver: 12374 - Improved support for 3L0 (GML 3 - Level 0 profile) reading and writing. 12375 On read we can now use the .xsd instead of needing to build a .gfs file. 12376 12377 12378=============================================================================== 12379 12380GDAL 1.2.5 - Overview of Changes 12381-------------------------------- 12382 12383gdalwarp Utility: 12384 - Added "proper" source and destination alpha support. 12385 12386PCRaster Driver: 12387 - added write support, now consider ready for regular use. 12388 12389MrSID Driver: 12390 - Initial support for writing to MrSID with encoding SDK. 12391 12392GeoTIFF Driver: 12393 - Updated internal copy of libtiff to fix overview building ... really! 12394 - Fixed bug when writing south-up images. 12395 12396 12397OGR 1.2.5 - Overview of Changes 12398------------------------------- 12399 12400OGRSpatialReference: 12401 - Added Bonne projection. 12402 12403Docs: 12404 - Added OGR C++ API Tutorial (reading and writing). 12405 12406PostGIS Driver: 12407 - Implemented SetFeature() and DeleteFeature() methods for in-place updates. 12408 12409Oracle (OCI) Driver: 12410 - Fixed support for writing into Oracle 10g. 12411 - Fixed serious memory leak of geometries. 12412 - Fixed bug with 3D multipolygons. 12413 - Added support for selecting tables in the datasource name. 12414 12415=============================================================================== 12416 12417GDAL 1.2.4 - Overview of Changes 12418-------------------------------- 12419 12420gdalwarp: 12421 - Fixed some issues with only partially transformable regions. 12422 - Added Alpha mask generation support (-dstalpha switch). 12423 12424HFA/Imagine Driver: 12425 - bug fix in histogram handling. 12426 - improved support for large colormaps. 12427 12428Envi Driver: 12429 - Capture category names and colormaps when reading. 12430 12431SAR CEOS Driver: 12432 - Added support for PALSAR/ALOS Polarimetric Datasets. 12433 12434RadarSat 2 Driver: 12435 - New. Reads RadarSat 2 Polarimetric datasets with a "product.xml" and 12436 imagery in TIFF files. 12437 12438OGDI Driver: 12439 - Important bug fix for downsampled access. 12440 12441GeoTIFF Driver: 12442 - Lots of libtiff upgrades, including some quite serious bug fixes. 12443 - Added better support for 16bit colormaps. 12444 - Write projection information even if we don't have a geotransform or GCPs. 12445 - Improved alpha support. 12446 - Generate graceful error message for BigTIFF files. 12447 12448DODS Driver: 12449 - Almost completely reimplemented. Uses chunk-by-chunk access. Supports 12450 reading several bands from separate objects. Some new limitations too. 12451 12452NetCDF Driver: 12453 - Separated out a GMT NetCDF driver and a more generic but partially broken 12454 NetCDF driver (Radim). 12455 12456JP2KAK Driver: 12457 - Added alpha support, including greyscale+alpha. 12458 12459AirSAR Driver: 12460 - New, reads AirSAR Polarimetric Radar format. 12461 12462 12463 12464OGR 1.2.4 - Overview of Changes 12465------------------------------- 12466 12467epsg_tr.py: 12468 - Added escaping rules when generating PostGIS output. 12469 12470tigerpoly.py: 12471 - Discard dangles and degenerate rings. 12472 12473VRT Driver: 12474 - Fixed serious error in handling cleanup of VRT datasources, was often 12475 causing a crash. 12476 12477SQLLite Driver: 12478 - Fixed substantial memory leaks. 12479 12480MySQL Driver: 12481 - New readonly non-spatial MySQL driver implemented. 12482 12483MITAB Driver: 12484 - Updated from upstream, several fixes. 12485 12486TIGER/Line Driver: 12487 - Fixed serious bug with handling "full" records at end of .RT2 file. 12488 12489OCI/Oracle Driver: 12490 - Added OCI_FID environment support to control FID selection. 12491 12492OGRGeometry: 12493 - Added Centroid() implementation (from GEOS?) 12494 12495 ============================================================================= 12496 12497GDAL 1.2.3 - Overview of Changes 12498-------------------------------- 12499 12500GeoTIFF Driver: 12501 - Fixed many missing compression codecs when built with the internal 12502 libtiff. 12503 - Modified driver metadata to only list available compression types. 12504 12505DODS Driver: 12506 - Added support for OPeNDAP version after 3.4.x (use of opendap-config). 12507 12508GRASS Driver: 12509 - Fixed support for building with grass57. 12510 12511MrSID Driver: 12512 - Fixed support for MrSID Encoding SDK. 12513 12514NITF Driver: 12515 - Fixed serious bug with non-square output files. 12516 12517 12518OGR 1.2.3 - Overview of Changes 12519------------------------------- 12520 12521OGRSpatialReference: 12522 - Corrected memory leaks - OSRCleanup() cleans up temporary tables. 12523 - Fixed build problem with ogrct.cpp on Solaris. 12524 12525TIGER Driver: 12526 - Improved generality of support for GDT files. 12527 12528OGRGeometry: 12529 - Added getArea() method for rings, polygons and multipolygons. 12530 12531 ============================================================================= 12532 12533GDAL 1.2.2 - Overview of Changes 12534-------------------------------- 12535 12536GRASS Driver: 12537 - Add Radim's version of the driver submitted by Radim. This version 12538 uses GRASS 5.7 libraries directly instead of using libgrass. 12539 12540DODS Driver: 12541 - Added support for spatial_ref, FlipX and FlipY .das info. 12542 12543CPG Driver: 12544 - added new driver for Convair Polarimetric format. 12545 12546HDF Driver: 12547 - Significant bugs fixed. 12548 12549USGS DEM Driver: 12550 - Support writing UTM projected files. 12551 12552PNG Driver: 12553 - Upgraded to libpng 1.2.6. 12554 12555MrSID Driver: 12556 - Substantial performance improvements. 12557 - Support for DSDK 4.x 12558 - Support JPEG2000 files via MrSID SDK. 12559 12560NITF Driver: 12561 - Support JPEG2000 compressed files (with Kakadu support) 12562 12563ESRI BIL: 12564 - Support .clr color files. 12565 12566VRT Driver: 12567 - Added support for describing raw files with VRTRawRasterBand. 12568 - Added support for virtual warped files with VRTWarpedRasterBand. 12569 12570GeoTIFF Driver: 12571 - Fix support for 16bit image color tables. 12572 - Write ExtraSamples tag for files with more samples than expected 12573 in photometric interpretation. 12574 - External overviews now built for read-only files. 12575 12576Erdas Imagine Driver: 12577 - Fixed support for compressed floating point layers. 12578 - Various other fixes for compatible with newer Imagine versions. 12579 - improved metadata handling. 12580 12581gdal_merge.py: 12582 - sets projection on output file. 12583 12584 12585OGR 1.2.2 - Overview of Changes 12586------------------------------- 12587 12588SQLite Driver: 12589 - New read/write driver implemented for SQLite databases. 12590 12591CSV Driver: 12592 - New read/write driver implemented for comma separated value files. 12593 12594S-57 Driver: 12595 - Substantial performance improvements. 12596 12597ODBC Driver: 12598 - Arbitrary length field values now supported. 12599 12600GEOS: 12601 - Integration a series of methods utilizing GEOS when available. Note 12602 that Intersect() is still just an envelope comparison. 12603 12604OGRSpatialReference: 12605 - Fixed Swiss Oblique Mercator support. 12606 12607 ============================================================================= 12608 12609GDAL 1.2.1 - Overview of Changes 12610-------------------------------- 12611 12612gdal_contour: 12613 - Now build and installed by default. 12614 12615HDF4 Driver: 12616 - Added some degree of HDF-EOS support. HDFEOS layer now part of GDAL. 12617 12618DODS Driver: 12619 - Substantial fixes, support for flipped datasets. 12620 12621HFA (Erdas Imagine) Driver: 12622 - Fixed bug with files between 2 and 4GB. 12623 - Capture statistics as metadata. 12624 12625Erdas 7.x LAN/GIS Driver: 12626 - Newly implemented. 12627 12628USGS DEM Driver: 12629 - Various fixes to creation support / CDED product. 12630 12631NITF Driver: 12632 - Capture USE001 and STDIDC TREs as metadata. 12633 - Capture all sorts of header information as metadata. 12634 - Support geocentric corner coordinate specification. 12635 12636MrSID Driver: 12637 - Support added for DSDK 4.0.x. 12638 12639ECW Driver: 12640 - Added preliminary support for using 3.0 SDK for JPEG2000 support. 12641 - Fix oversampling assertion problem. 12642 12643ArcInfo Binary Grids: 12644 - Added support for 0x01 and 0x20 block type. 12645 12646 12647OGR 1.2.1 - Overview of Changes 12648------------------------------- 12649 12650OGRSpatialReference: 12651 - Various fixes related to prime meridians. 12652 12653PostgreSQL/PostGIS Driver: 12654 - Added layer name laundering. 12655 - Launder names on by default. 12656 - Clean stale entries in geometry_columns table when creating a layer. 12657 - Support treating names views as layers. 12658 - Handle long command strings. 12659 12660S57 Driver: 12661 - Fixed serious bugs with support for auto-applying update files. 12662 - Improvements to S57 writing support. 12663 12664 ============================================================================= 12665 12666GDAL 1.2.0 - Overview of Changes 12667-------------------------------- 12668 12669Configuration: 12670 - Libtool used by default with Unix style builds. Use --without-libtool 12671 to avoid this. 12672 - PROJ.4 can now be linked statically using --with-static-proj4. 12673 - Added --without-bsb option for those averse to legal risk. 12674 12675DODS/OPeNDAP Driver: 12676 - Preliminary DODS (OPeNDAP) driver implemented (James Gallagher @ URI). 12677 12678PCIDSK Driver: 12679 - PCIDSK read/write raster driver implemented (Andrey). 12680 12681Erdas Imagine / HFA Driver: 12682 - Support recent Imagine versions (data dictionary changes). 12683 - Better logic to search for .rrd file locally. 12684 - Support creating files in the 2GB to 4GB size range. 12685 12686GIF Driver: 12687 - Updated to libungif 4.1.0. 12688 - Various hacks to try and identify transparent colors better. 12689 12690BMP Driver: 12691 - Handle 32bit BMPs properly. 12692 12693HDF4 Driver: 12694 - Added proper support for multi-sample GR datasets. 12695 - Various fixes and improvements for specific product types. 12696 12697GeoTIFF Driver: 12698 - Added PHOTOMETRIC option to control photometric interp of new files. 12699 12700JPEG2000/Kakadu Driver: 12701 - Support reading/creating lossless 16bit files. 12702 - Updated to support Kakadu 4.1 library. 12703 12704NITF Driver: 12705 - Implement support for IGEOLO="U" (MGRS/UTM) coordinates. 12706 - Added overview (as external GeoTIFF file) support. 12707 12708MrSID Driver: 12709 - Support DSDK 4.2.x. 12710 12711PNG Driver: 12712 - Support required byte swapping of 16bit PNG data. 12713 12714FAST Driver: 12715 - lots of fixes, supports more datums and ellipsoids. 12716 12717NetCDF Driver: 12718 - New driver implemented for netCDF support. 12719 - Pretty much tied to form of netCDF used in GMT for now. 12720 12721VTerrain .bt Driver: 12722 - New driver for VTerrain .bt elevation format. 12723 12724ECW Driver: 12725 - support supersampled reads efficiently. 12726 - special case for dataset level RasterIO() implemented for much better 12727 performance in some applications. 12728 12729ESRI BIL (EHdr) Driver: 12730 - Support world files. 12731 12732VRT Driver: 12733 - Implement filtering support. 12734 12735GIO (Arc/Info Binary Grid via avgridio.dll): 12736 - Driver disabled ... to undependable. 12737 12738 12739Python: 12740 - Preliminary support for numarray in addition to numpy (Numeric). 12741 12742Contouring: 12743 - New gdal_contour utility program implementing contour generation. 12744 - Underlying algorithm in gdal/alg. 12745 12746Warping: 12747 - Improved support in GDALSuggestedWarpOutput() for "world" sized 12748 files that are only partially transformable. 12749 - Bicubic resampler improved. 12750 - What was gdalwarptest is now gdalwarp, and the old gdalwarp is now 12751 gdalwarpsimple. The sophisticated warper is now the default. 12752 12753Man Pages: 12754 - Man pages for GDAL utilities now being maintained and installed (Silke). 12755 12756 12757 12758OGR 1.2.0 - Overview of Changes 12759------------------------------- 12760 12761OGRSpatialReference: 12762 - Added methods for converting to/from GCTP representation. 12763 - Added HOM 2 points on centerline variant. 12764 12765DODS (OPeNDAP) Driver: 12766 - Preliminary implementation. 12767 12768TIGER/Line Driver: 12769 - Added support for GDT ASCII TIGER-like format. 12770 - Support TIGER/Line 2003 format. 12771 12772S-57 Driver: 12773 - Preliminary export support implemented. 12774 - Support capture of FFPT (feature to feature) linkages. 12775 - Support capture of TOPI from VRPT. 12776 - Support capture of primitives as additional layers. 12777 12778Shapefile Driver: 12779 - gdal/frmts/shapelib removed from GDAL source tree, now just a 12780 copy of required shapelib files are kept in gdal/ogr/ogrsf_frmts/shape. 12781 - Attempt identify polygons that are really multi-polygons and convert them 12782 into multi-polygons properly (Radim Blazek). 12783 - Create FID attribute in .dbf file if no attribute added by application. 12784 12785GML Driver: 12786 - Lots of fixes and improvements for reading and writing. 12787 - Now writes a schema file by default. 12788 - Field types are set now when reading based on data found on first pass. 12789 - Added support for the various kinds of geometry collections. 12790 12791DGN Driver: 12792 - Now using dgnlib 1.9 - this carries with it various new element types 12793 and some important bug fixes. 12794 12795ODBC Driver: 12796 - New ODBC driver implemented. Build by default on Windows, and buildable 12797 on Unix (with unixodbc). 12798 12799VRT Driver: 12800 - New "virtual" OGR Datasource format implemented. 12801 - Configuration stored in XML control file. 12802 12803Oracle (OCI) Driver: 12804 - support reading views. 12805 12806OGR Core: 12807 - Added support for WKT EMPTY geometry objects (like "MULTIPOINT(EMPTY)"). 12808 - Added DeleteFeature() method on OGRLayer class. 12809 12810NTF Driver: 12811 - Support CHG_TYPE attribute for landline plus product. 12812 12813 12814 12815 ============================================================================== 12816 12817GDAL 1.1.9 - Overview of Changes 12818-------------------------------- 12819 12820 o MrSID Driver: New for 1.1.9, read-only, includes good coordinate system 12821 support, and should be high performance. 12822 12823 o ECW Driver: Now reads coordinate system information (but doesn't write). 12824 12825 o HDF Driver: Added support for Hyperion Level 1, Aster Level 1A/1B/2, MODIS 12826 Level 1B(earth-view)/2/3, SeaWIFS Level 3. 12827 12828 o L1B Driver: Now reads GCPs for georeferencing. 12829 12830 o NITF Driver: Support for reading RPC, variety of bugs fixes for reading and 12831 writing. Also some general RPC infrastructure added to GDAL. 12832 12833 o JP2KAK Driver: Can be used with Kakadu 4.0.2 now. Compatibility fixes 12834 for internal geotiff to improve compatibility with Mapping Science tools. 12835 Added palette support. 12836 12837 o HFA (Imagine) Driver: Added read/write support for color table opacity. 12838 Added write support for large (spill) files. 12839 12840 o "core" directory renamed to "gcore" to avoid confusing configure script. 12841 12842 o Added support for GDAL_DATA environment variable to point to GDAL support 12843 data files (those in gdal/data directory). 12844 12845 o Added GDALDataset::RasterIO() for more efficient reading of multiple bands 12846 in one request (in some cases anyways). 12847 12848 o High performance warp api considered to be complete now, and substantially 12849 optimized. 12850 12851 o gdal_merge.py: supported multiple bands, copying PCT. 12852 12853 12854OGR 1.1.9 - Overview of Changes 12855------------------------------- 12856 12857 o Oracle Spatial: New generic read/write, and implemented highly optimized 12858 loading support. 12859 12860 o Tiger driver: added support for TIGER/Line 2002 product. 12861 12862 o GML driver: now supports Xerces versions from 1.6 up to 2.3. Lots of 12863 bugs fixes and improvements. GML Geometry now in OGR core. 12864 12865 o Improved support for translating to and from ESRI WKT, including a complete 12866 mapping between EPSG related ESRI datum names and OGR's expected names. 12867 12868 o Improved support for alternate prime meridians in coordinate system code. 12869 12870 o Shapefiles: Can write features with NULL geometry, 12871 12872 o DGN: added 3d write support. 12873 12874 o Implemented generic attribute indexing support (only used for shapefile 12875 at this point). Use in SQL where clauses and ExecuteSQL(). 12876 12877 o WKT MULTIPOINT in/out formatting fixed. 12878 12879 o Added SynToDisk() method on OGRDataset and OGRLayer. 12880 12881 o Implemented "Web Coordinate Transformation Service" (ogr/wcts). 12882 12883 o Implemented "in memory" format driver. 12884 12885 o C API documented. 12886 12887 12888 12889 12890 ============================================================================== 12891 12892GDAL 1.1.8 - Overview of Changes 12893-------------------------------- 12894 12895 o Implemented HDF 4 read/write support. This includes HDF EOS reading. 12896 12897 o Implemented Windows BMP read/write support. 12898 12899 o Implemented NITF read/write support. 12900 12901 o Implemented NOAA Polar Orbiter L1B format driver. 12902 12903 o Implemented EOSAT FAST format driver. 12904 12905 o Implemented a JasPer based JPEG2000 driver (several limitations). 12906 12907 o Implemented a Kakadu based JPEG2000/GeoJP2(tm) driver (full featured, but 12908 Kakadu is not open source). 12909 12910 o Implemented new 'gdalwarp' application for projection and GCP based image 12911 warping. See gdal/alg for underlying algorithms. Currently gdalwarp only 12912 supports 8 bit images and holds the whole source image in memory. 12913 12914 o Implemented write support for ESRI ASCII Grids. 12915 12916 o Lots of improvements to GeoTIFF driver. Metadata writing, update of 12917 georeferencing, and support for writing PCS codes based on AUTHORITY fields 12918 in WKT. 12919 12920 o Implemented support for uncompressed 1bit data in Erdas Imagine files, 12921 as well as generic metadata. 12922 12923 o Fixed 0xFF compression support in the Arc/Info Binary Grid (AIG) driver. 12924 12925 o Lots of improvements to BSB drive, including preliminary uncompressed 12926 output support, support for reading BSB 3.0 and GEO/NOS. 12927 12928 o Lots of work on VRT format. 12929 12930 o ECW: Fixed bug with reading a more than full resolution. 12931 12932 o Envisat driver now supports AATSR TOA and MERIS data. 12933 12934 o Fixes for nodata support in GRASS driver. 12935 12936 o Added the --version and --formats options to many utility programs. 12937 12938 o gdal_translate: 12939 - added -projwin flag to copy a window specified in projection coordinates. 12940 - added the -a_srs option to assign a user supplied SRS to output file. 12941 - translation with subsetting to any format now support (uses VRT inside). 12942 12943 o Lots of metadata now attached to driver objects describing their 12944 capabilities. 12945 12946 o Implemented GDALDestroyDriverManager() to ensure full memory cleanup of 12947 GDAL related resources. 12948 12949 o Added a 'devinstall' target on Windows to support easy installation of 12950 include files and stub libraries on Windows. Also many other improvements 12951 to Windows build. Most options can be easily turned on and off from the 12952 nmake.opt file now. 12953 12954 12955OGR 1.1.8 - Overview of Changes 12956------------------------------- 12957 12958 o Implemented support for writing 2D DGN files. Added support for MSLINK 12959 and Text values available as attributes. 12960 12961 o Implemented FMEObjects based read driver. 12962 12963 o Implemented ExecuteSQL() method on OGRDataSource. Generic code supports 12964 fairly full featured SELECT statements. 12965 12966 o Various fixes to 3D shapefile support. 12967 12968 o Fixes to binary representation for 2.5D geometries. Fixed MULTIPOINT WKT 12969 geometry representation. 12970 12971 o Upgraded OGRSpatialReference.importFromEPSG() to use the new EPSG 6.2.2 12972 tables instead of the old EPSG 4.x tables. 12973 12974 o Many fixes to PostGIS driver, including special creation options for 12975 "laundering" field names to save tokens. 12976 12977 o Many improvements to standards conformance of OGRSpatialReference WKT 12978 representation to the OGC Coordinate Transformations specification. Still 12979 some quirks related to prime meridians and coordinate systems with units 12980 other than degrees. 12981 12982 o Implemented support for Meridian 2 NTF files in NTF driver. Better 12983 support for GENERIC_CPOLY geometries. 12984 12985 o Added support for [NOT] IN, [NOT] LIKE and IS [NOT] NULL predicates in 12986 WHERE clauses. 12987 12988 o Implemented a C API for accessing OGR. 12989 12990 o Implemented support for building OLE DB Provider with Visual Studio.NET 12991 (many changes in ATL templates). Lots of other OLE DB improvements for 12992 better MapGuide compatibility. 12993 12994 12995GDAL 1.1.7 - Overview of Changes 12996-------------------------------- 12997 12998 o Add XPM (X11 Pixmap) format. 12999 13000 o Added rough ENVI raster format read support. 13001 13002 o Added --version support (and supporting GDALVersionInfo() function). 13003 13004 o Special hooks for getting raw record data from sar ceos files and Envisat 13005 via the metadata api. 13006 13007 o Upgraded TIFF/GeoTIFF support to CVS version ... includes new extension 13008 API and removes need for private libtiff include files entirely. 13009 13010 o gdal_translate now has scaling option (-scale). 13011 13012 o Added utility documentation. 13013 13014OGR 1.1.7 - Overview of Changes 13015------------------------------- 13016 13017 o Added Arc/Info binary coverage format read support. 13018 13019 o Added ogrtindex for building MapServer compatible OGR tile indexes. 13020 13021 o Added default implementation of GetFeature(fid) method on OGRLayer. 13022 13023 o Shape driver now supports reading and creating free standing .dbf files 13024 for layers without geometry. 13025 13026 o Added utility documentation. 13027 13028 o Fixed major memory/file handle leak in SDTS access. 13029 13030 o Added ADSK_GEOM_EXTENT support for OLE DB provider. 13031 13032 o Ensure shapefiles written with correct polygon ring winding direction 13033 plus various other shapefile support fixes. 13034 13035 o GML read/write working reasonable well, including use of .gfs files. 13036 13037 13038GDAL 1.1.6 - Overview of Changes 13039-------------------------------- 13040 13041 o Add > 2GB file support on Linux 2.4. 13042 13043 o Implemented USGS DEM reading. 13044 13045 o Implemented BSB Format (Nautical Chart Format) read support. 13046 13047 o Preliminary implementation of Virtual Datasets (gdal/frmts/vrt). 13048 13049 o Support for writing DTED files. 13050 13051 o Some raw formats (i.e. PAux, HKV) support files larger than 2GB. 13052 13053 o Add the AddBand() method on GDALDataset. 13054 13055 o PAux: Added color table read support. 13056 13057 o Various fixes to OGDI driver. 13058 13059 o Stripped out the GDALProjDef related capabilities. Superseded by 13060 OGRSpatialReference, and OGRCoordinateTransformation functionality. 13061 13062 o Improved CEOS support, notable for ESA LANDSAT files, D-PAF ERS-1 and 13063 Telaviv ERS data. 13064 13065 o geotiff: upgraded libtiff support to approximately libtiff 3.5.7. 13066 13067 o DGN: Added support for complex shapes, shapes assembled from many elements. 13068 Various other improvements. 13069 13070 13071OGR 1.1.6 - Overview of Changes 13072------------------------------- 13073 13074 o Fixed OGDI driver so that gltp urls with drive letters work properly on 13075 windows. 13076 13077 o Many improvements to OLE DB provider during the process of making it 13078 compatible with the MapGuide (SDP) client. These include implementing 13079 restrictions for schema rowsets, treating missing information like WKT 13080 coordinate systems as NULL fields, and setting ISLONG on geometry fields. 13081 Also made thread safe. 13082 13083 o DGN: Threat SHAPE elements as polygons. Set style information for text. 13084 Added 3D support for most elements. 13085 13086 o Fixed bugs in WKT format for some OGR geometry types (i.e. multipoint). 13087 13088 o Added support for morphing to/from ESRI WKT format for OGRSpatialReference. 13089 13090 o NTF: Don't try to cache all the records from multiple files at once. 13091 13092 o Added experimental XML SRS support ... not the final schema. Added 13093 supporting "minixml" support to CPL. 13094 13095 o PostGIS: Upgraded to PostGIS 0.6. Added "soft transaction" semantics. 13096 Many create feature calls can now be part of one transaction. Transactions 13097 are now a general OGR concept although only implemented for PostGIS. 13098 13099 o Added transform() and transformTo() methods for reprojecting geometries and 13100 added user options for this in ogr2ogr. 13101 13102 o Very preliminary GML read/write support. Needs Xerces C++ XML parser for 13103 read support. 13104 13105============================================================================== 13106 13107GDAL 1.1.5 New Features 13108----------------------- 13109 13110o AIGrid: 13111- Return nodata value. 13112 13113o OGDI: 13114- Added format user documentation. 13115- Added Sub Dataset support. 13116- Utilize OGDI 3.1 style capabilities metadata. 13117 13118o SAR_CEOS: 13119- Added support for Alaska SAR Toolbox naming convention. 13120- Read map projection record for corner GCPs. 13121 13122o PNG Driver: 13123- read/write support for transparency via colortable and nodata value. 13124 13125o Erdas Imagine (HFA) Driver: 13126- Added support for reading external large image files. 13127- Added support for uncompressed, but reduced precision blocks. 13128 13129o GIF Driver: 13130- Added .wld world file support. 13131- Added transparency read support. 13132- Upgraded to libungif 4.x. 13133 13134o JPEG Driver: 13135- Added .wld world file support. 13136 13137o PAux Driver: 13138- Added limited gcp and projection read support. 13139 13140o GeoTIFF Driver: 13141- Added specialized support for 1 bit files. 13142- Upgraded world file reading (added .wld files), use 13143GDALReadWorldFile(). 13144 13145o JDEM Driver is new (Japanese DEM format). 13146 13147o FujiBAS Driver is new. 13148 13149o ERMapper ECW Driver is new. 13150 13151o GDAL Bridge: upgraded to include new entry points, like GCP access and 13152nodata api. 13153 13154o gdal_translate: added the -not_strict option. 13155 13156o GDALGetRandomRasterSample(): Return magnitude for random samples. 13157 13158o Added use of CPL_CVSID macro in most source files. Running the RCS ident 13159command on any GDAL executable or shared library should now give a listing 13160of most object file versions from which it was built. 13161 13162o Various improvements so that static builds will work under Cygwin. 13163 13164o Various improvements so that builds can be done on MacOS X. 13165 13166o Overviews: Implement AVERAGE_MAGPHASE option for complex image overviews. 13167 13168o Added support for sub datasets to gdalinfo, core api and OGDI raster driver. 13169 13170o The size of the GDAL cache can now be overridden with the GDAL_CACHEMAX 13171environment variable (measured in MB). 13172 13173o Added Driver implementation tutorial to documentation. 13174 13175o Added apps/gdaltindex.c - application for building tile indexed raster 13176datasets suitable for use with UMN MapServer. 13177 13178 13179GDAL 1.1.5 Significant Bug Fixes 13180-------------------------------- 13181 13182o SAR_CEOS: 13183- Don't try to get GCPs from scanlines with no prefix data. 13184 13185o GeoTIFF: 13186- Fixed handling of RGBA band ordering on big endian systems. 13187- Fixed bugs in overview generation, especially when updating in place. 13188 13189o gdal-config should work properly in all situations now. 13190 13191o JPEG Driver: improved magic number tested to avoid ignoring some jpeg files. 13192 13193o FITS Driver: lots of fixes and improvements. 13194 13195 13196OGR 1.1.5 New Features 13197---------------------- 13198 13199o Implemented support for attribute query filters (SetAttributeFilter()) 13200on OGRLayer, provided SWQ based implementation, plugged into all 13201drivers and added hooks to ogrinfo. 13202 13203o MapInfo Driver: 13204- Added accelerated spatial query support. 13205- Upgraded to current MITAB source as of GDAL release date. 13206 13207o S-57 Driver: 13208- Added support for applying S-57 updates automatically. 13209 13210o SDTS Driver: 13211- Added ENID and SNID to line features. 13212- Return coordinate system in WKT instead of PROJ.4 format. 13213 13214o Shapefile Driver: 13215- Auto determine shapefile type from first object written. 13216- Added good support for NULL shapes, and NULL attribute fields. 13217- Added support for .prj files (read and write). 13218 13219o PostgreSQL Driver: 13220- Added PostGIS support. 13221- Pass attribute queries through to PostgreSQL. 13222 13223o NTF Driver: 13224- Added support for GTYPE 5 geometries (a type of arc). 13225- Added support for GEOMETRY3D records in indexed (generic) datasets. 13226 13227o TIGER/Line Driver: 13228- Added write support. 13229- Improved read support for TIGER 2000. 13230 13231o OLE DB Provider: 13232- Added support for spatial queries via ICommand parameters. 13233- Added support for attribute queries by parsing out WHERE clause. 13234- In general substantial rework and extensions were made to make it 13235work with ESRI and AutoDesk clients. 13236 13237o Added gdal/data/stateplane.txt - a test file with one line per state plane 13238zone for applications wanting to present options to users. 13239 13240o Install ogrsf_frmts.a on install if building with OGR support enabled. 13241 13242o Reports layer extents in ogrinfo. 13243 13244OGR 1.1.5 Significant Bug Fixes 13245------------------------------- 13246 13247o OGRSpatialReference: 13248- Fix bug with extracting linear units from EPSG derived definitions. 13249- Fixed bug translating LCC from EPSG to WKT (importFromEPSG()). 13250- Improved IsSame() test for GEOGCS now. 13251- Fixed crash if PROJECTION missing from PROJCS definition. 13252 13253o S-57: 13254- Improve recovery from corrupt line geometries. 13255- Read objects as generic if the object class is not recognised. 13256- Handle LIST attributes as a string, instead of as a single int. 13257 13258o NTF: 13259- Fixed circle conversion to polylines to close the circle properly. 13260- Upped MAX_LINK to 5000 to handle much more complex geometries. 13261 13262o DGN: 13263- Don't include elements with the complex bit set in extents 13264computations. 13265 13266o OGRGeometry: 13267- Fixed WKT format (import and export) for various container types. 13268- WKT import fixed for coordinates, and Z coordinates. 13269