Gdal

Latest version: v3.9.0

Safety actively analyzes 628924 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 9

2.1

(*NOT* gdal_version.h which is a generated file)
Note: the format of GDAL_RELEASE_DATE should be YYYYMMDD.

2.2) Update two instances of year in CITATION file to the current year.

2.1.0

Not secure
Port:
* Add /vsicrypt/ virtual file system for reading/creating/update encrypted files on the fly, with random access capabilities
* Add /vsis3/ and /vsis3_streaming/ virtual file systems to read/write objects from AWS S3 buckets
* /vsizip/: avoid returning the previous file list of an already opened .zip if it has changed afterwards (6005)
* /vsizip/: use CP437 on Windows when ICONV support is available (6410)
* /vsimem/: implement append mode (6049)
* /vsistdin/: fix caching of first 1MB / VRT driver: read XML content from /vsistdin/ in a streaming compatible way (6061)
* /vsistdout/: flush when closing the handle (6149)
* Add VSIReadDirEx() with a limit on the number of files before giving up and corresponding VSIFilesystemHandler::ReadDirEx() virtual function
* cpl_vsil_cache: rework to be able to work on very large files on 32bit systems
* Add CPLThreadLocaleC class to use thread-specific locale settings (when available)
* VSIWin32Handle::Flush(): add VSI_FLUSH config option that can be set to TRUE to force FlushFileBuffers(). (hack related to 5556)
* Fix VSIL append mode in Windows (6065)
* Make CPLCreateMutexEx() support CPL_MUTEX_REGULAR; and fix CPL_MUTEX_ADAPTIVE to avoid continuing in code path for creation of recursive mutex
* Add CPLWorkerThreadPool API
* Add CPLGetThreadLocalConfigOption()
* Fix CPL_LSBINT16PTR() and CPL_LSBINT32PTR() to work with non-byte pointer (6090)
* CPLRecodeStub(): add special case for CP437 -> UTF-8 when input is only printable ASCII
* CPLHTTPFetch(): add LOW_SPEED_TIME and LOW_SPEED_LIMIT options
* CPLGetValueType(): improve heuristics to avoid detecting some WKB strings as real numbers (6128)
* Add CPL_SHA256* and CPL_HMAC_SHA256 functions
* Make CPLVirtualMemFileMapNew() work on all systems having mmap(), and thus GeoTIFF GTIFF_VIRTUAL_MEM_IO optimization too
* Add VSI_MALLOC_VERBOSE() and similar macros to output an error message in case of failed alloc
* CPLParseXMLString(): limit depth of elements to 10000
* Win32 file management: handle files whose total file path length is greater than 255 characters in Open() and Stat()
* Make CPLFormFilename(absolute_path, "..", NULL) truncate when possible
* Add VSIGetDiskFreeSpace()
* Implement CPLIsInf() for Solaris 11
* Add a CPL_FINAL macro that expands to C++11 final keyword when C++11 is enabled, and use it in a few places
* Avoid CPLEscapeString (CPLES_URL) encoding some characters unnecessarily (5526)
* Add CPLTestBool(), CPLTestBoolean(), CPLFetchBool()
* Fix CPLGetValueType() to recognize D1 as a string and not a real number (6305)
* CPLFormFilename(): use '/' directory separator on Windows on /vsicurl_streaming/ files (6310)
* Add hack enabled by -DDEBUG_BOOL to detect implicit int->bool conversions that dislike MSVC (6325)
* 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)
* 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)
* 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)

Core:
* Change default value of GDAL_CACHEMAX to 5% of usable physical RAM
* Allow open options name to be prefixed by to be silently ignored when not existing in driver options (RFC 60)
* Honour NBITS metadata item when doing RasterIO() with non-nearest resampling (6024)
* GDALClientServer: pass open options to INSTR_Open call
* Improve performance of GDALCopyWords() float->byte/int16/uint16 by using SSE2
* Decorate prototypes of RasterIO() related operations with CPL_WARN_UNUSED_RESULT
* Avoid deadlock when writing 2 datasets in 2 threads (6163)
* Remove obsolete symbols __pure_virtual(), GDALCreateProjDef(), GDALReprojectToLongLat(), GDALReprojectFromLongLat() and GDALDestroyProjDef()
* Remove obsolete non-template-based implementation of GDALCopyWords(). We don't support anymore such compilers
* GDALJP2Box::ReadBoxData(): do not abort if memory allocation fails
* Add GDALAdjustValueToDataType() in C API, and use it in GDALTranslate() and GDALWarp()
* GDALDefaultOverviews::CreateMaskBand(): fix logic error related to writing per-band mask
* Block cache: fix excessive memory consumption when dealing with datasets with different block sizes (6226)
* EXIFExtractMetadata(): fix potential 1-byte write buffer stack overflow
* MDReader: do no attempt reading side-car files on /vsisubfile/ (6241)
* GDALCheckBandCount(): allow by default a maximum number of bands to 65536
* GDALOpenInfo: add StealSiblingFiles() and AreSiblingFilesLoaded() methods
* GDALOpenInfo::GetSiblingFiles(): give up after GDAL_READDIR_LIMIT_ON_OPEN (default=1000) files in the directory
* GDALDefaultOverviews: add TransferSiblingFiles() method
* GDALDriver::DefaultCreateCopy(): fix logic related to propagation of NBITS / PIXELTYPE metadata items as creation options
* Reorder driver registration a bit so that formats with efficient identification are probed first
* Add GDALIdentifyEnum (GDAL_IDENTIFY_UNKNOWN, GDAL_IDENTIFY_FALSE or GDAL_IDENTIFY_TRUE) for return values of Identify()
* GDALLoadRPCFile(): load .rpc files from Ikonos products that have extra end-of-line character (6341)
* Export GDALRegenerateOverviewsMultiBand() symbol, but mostly for plugins (6342)
* Add GDAL_NO_AUTOLOAD to compile out the body of AutoLoadDriver (6380)
* 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)
* Add GDALGetDataTypeSizeBits() and GDALGetDataTypeSizeBytes().
* GDALReadOziMapFile(): fix reading Ozi external files from virtual file systems (https://github.com/OSGeo/gdal/pull/114)
* Add CPLSetCurrentErrorHandlerCatchDebug() to enable custom error handlers not to intercept debug messages

Algorithms:
* RPC transformer: provide SSE2 accelerated transformer
* 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)
* RPC: make RPCInverseTransformPoint() check convergence has been reached (6162)
* RPC DEM: optimize when DEM is in NAD83 or any other geodetic CS that transform as a no-op to WGS 84
* RPC DEM: take into account vertical datum of the DEM when present to convert DEM elevations to ellipsoidal heights (6084)
* RPC DEM: do fallback cubic -> bilinear and bilinear -> near on DEM edges
* RPC DEM: improve inverse transformer to validate error threshold and improve convergence (6162, 6377)
* RPC: fix issues with dateline (6472)
* TPS solver: discard duplicated GCP to avoid avoidable error, warning when 2 GCPs have same (pixel,line) but different (X,Y) or the reverse
* Warper: rework multithreaded computations to use a thread pool rather than forking threads each time
* Warper: avoid really excessive processing time for some warping with target areas completely off the source raster (especially when involving RPC) (6182)
* Warper: CreateKernelMask(): fix potential 32 bit integer overflow when using warp memory value > 2GB (6448)
* gdal_grid: add linear interpolation algorithm
* gdal_grid: add invdistnn algorithm, variation on the existing inverse distance weighting algorithm with quadtree to search for points only in the neighborhood (6038)
* gdal_grid: fix crash in optimized mode with GCC 4.4 on 64bit (5987)
* gdal_grid: compile gdalgrid AVX optimization for Windows when supported by compiler
* Add GDALTriangulationXXXX() API through libqhull
* Sieve filter: fix crash on nodata polygons (6096)
* Sieve filter: improvement to walk through the biggest neighbour chain until we find a polygon larger than the threshold (6296)
* GDALFPolygonize(): factor implementation with integer case
* GDALComputeMedianCutPCT(): fix to make it work with rasters with more than 2 billion pixels (6146)
* Overview: Make average and gauss methods aware of transparent color table entries (6371)

Utilities:
* gdalinfo: workaround bug in proj <= 4.9.1 on datasets with a SRS with a vertical shift grid (6083)
* gdal_translate: detect more reliably if specified bands are not in default order
* gdal_translate: fix -a_nodata with negative values on rasters that have PIXELTYPE=SIGNEDBYTE; fix preserving PIXELTYPE=SIGNEDBYTE with VRT
* gdal_translate: fix random behavior when -scale is used without source bounds (6455)
* gdal_rasterize: do on-the-fly reprojection of input vector onto output raster
* gdal_rasterize: rasterize: always create output with 1/2 cell buffer of input geometry envelope (6058)
* gdal_rasterize: add the -dialect option
* gdal_rasterize: accept NaN as a valid value for -init / -burn (6467)
* gdalwarp: add -doo option to specify open options of (existing) output dataset
* gdalwarp: if RPC_DEM warping option is specified, use exact transformer by default (5993)
* gdalwarp: make it honour nodata value of existing dataset (if -dstNoData isn't explicitly specified)
* gdalwarp: do not propagate STATISTICS_ of second or following source datasets
* gdalwarp: do not emit warning when using -cutline with a SRS and the source raster has RPC or GEOLOCATION
* gdalwarp: check that the cutline is valid after transformation/reprojection
* gdalwarp: better deal when dealing with a mix of RGB and RGBA datasets as input
* gdalwarp: fix -srcnodata to not put garbage values as target dstnodata (6315)
* gdalwarp: densify cutline to avoid invalid geometry after reprojection to source raster, especially in the RPC case (6375)
* gdalserver: add a -nofork mode (Unix only for now), so that multiple clients can connect to the same dataset. Useful for safe 'concurrent' updates
* add gdal_pansharpen.py script
* gdal2tiles.py: fix error on a raster with less than 3 bands that resulted in a 'IndexError: list index out of range'
* gdal2tiles.py: Change EPSG:3785 / EPSG:900913 into EPSG:3857 (5622)
* gdal2tiles.py: add Leaflet template (https://github.com/OSGeo/gdal/pull/71)
* gdal2tiles.py: add -q switch for quiet mode
* gdaldem: correctly deal with NaN as nodata value (6066)
* 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)
* gdaladdo: emit error message if passed an invalid dataset name (6240)
* gdaladdo: do not silence warnings when opening in update mode, if the open is successful
* gdalbuildvrt: fix potential crash when using -b switch (6095)
* gdalbuildvrt: accept nan as value for -srcnodata and -vrtnodata
* gdalbuildvrt: return non zero return code if the flush of the VRT to disk failed
* gdal_merge.py: takes again into account -n flag (6067)
* gdalbuildvrt / gdal_translate / VRT: use floating point values for source and destination offsets and sizes (6127)
* gdalmove.py: fix to run with GDAL 2.0 gdal.InvGeoTransform() signature
* 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)

Python samples:
* gdalpythonserver.py: update to protocol 3

AAIGRID:
* when writing with floating-point values, ensure at least one value has a decimal point to avoid issues with some readers (6060)

BMP driver:
* BMP: avoid too big color table allocation in case of wrong iClrUsed value

BLX driver:
* converted to support VirtualIO

ECRG driver:
* change subdataset definition to make sure that they only consist of frames of same scale (6043)
* fix base34 decoding and Windows filename handling (6271)

ECW driver:
* use wide char Open API on Windows when GDAL_FILENAME_IS_UTF8=YES (https://github.com/OSGeo/gdal/pull/70)
* fix reading of ECW in /vsi file systems (with SDK >= 4) (6482)

GeoRaster driver:
* fix deflate read error depending on endianness (6252)

GIF driver:
* libgif: partial resync with giflib master (but keep ABI of 4.1.6)
* fix crash when CreateCopy a source with one color in the color table

GMT driver:
* validate raster dimensions on opening, and acquire mutex in dataset destructor

GPKG driver:
* 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)
* write support: fix potential use of freed sqlite temporary DB handle when generating overviews with partial tiles (6335)
* write support: fix potential crash in scenarios when block cache is full (6365)
* write support: fix inversion of row/column in one of the SQL request involved in partial tiles management (6339)
* 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)

GTiff driver:
* add NUM_THREADS creation and open options to enable multi-threaded compression
* 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)
* Correctly take into account overridden linear units for a geotiff with a EPSG PCS code (6210, 4954)
* make VirtualMemIO() work with non native endianness
* improve VirtualMemIO() performance in tiled Contig read to single band copy
* improve single band tiled VirtualMemIO reading
* 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
* fix DirectIO() mode with complex types and inverted endianness (6198)
* optimize writing of 12-bit values
* implement lazy loading of .aux.xml and .tfw/.wld
* Internal libtiff: update to CVS HEAD post libtiff 4.0.6
* make SetColorInterpretation(GCI_AlphaBand) work on a 5 band or more GeoTIFF (6102)
* automatically set PHOTOMETRIC=RGB if manually assigning color interpretation Red,Green,Blue to band 1,2,3 before directory crystallization (6272)
* add GEOTIFF_KEYS_FLAVOR=ESRI_PE creation option to write EPSG:3857 in a ESRI compatible way (5924)
* call XTIFFInitialize() in LibgeotiffOneTimeInit() as the former isn't thread-safe, so better call it from the later which is thread-safe (6163)
* fix reading and writing angular units different from degree (namely arc-second, arc-minute, grad, gon and radian) (6171)
* do not use VirtualMemIO optimization on compressed /vsimem/ files (6195)
* correctly set GTRasterTypeGeoKey=RasterPixelIsPoint if AREA_OR_POINT=Point but there is no SRS set (6225)
* improve a bit error detection when writing
* check free space before writing (only for big, non sparse, uncompressed)
* do not read large 'one row' JBIG compressed files with the scanline API (6264)
* Fix SetMetadata() to properly clear existing PAM metadata (complement to 5807)
* prevent potential out of bounds read/write to TIFFTAG_EXTRASAMPLES (6282)
* do not use first directory as potential mask, to avoid assertion in GTiffDataset::SetDirectory() (6287)
* reject files with strips/tiles/scanlines bigger than 2 GB to avoid 32 bit integer overflow.
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)
* GTIFFWriteDirectory(): avoid memory leak of codec related memory (2055)
* Make ALPHA=NO in CreateCopy() cancel alpha color interpretation even if present in source raster
* fix problem with implicit overviews of JPEG-compressed files (6308)
* 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)
* 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)

HDF4 driver:
* Skip quotation mark when parsing HDF-EOS metadata.

HDF5 driver:
* add Komsat Mission ID to possible value for HDF5 SAR product (https://github.com/OSGeo/gdal/pull/103)

HF2 driver:
* fix reading side of the driver to work on architectures where char is unsigned, like PPC or ARM (6082)

HFA driver:
* when reading projection, preserve EPSG code if AutoIdentifyEPSG() identified the SRS, even if a PE string is present (6079)
* keep TOWGS84 even when using ESRI PE string (6158)
* fix crashes on corrupted files (6208, 6286)

INGR driver:
* check that RLE decoding produced the expected number of bytes and error out otherwise; test that 'random' line seeking actually works

JPEGLS driver:
* fix build error (6430)

JP2ECW driver:
* honour psExtraArg->eResampleAlg when upsampling (6022)

JP2KAK driver:
* honour psExtraArg->eResampleAlg when upsampling (6022)
* try rounded dimensions to decide if the data is being requested exactly at a sub-resolution
* support v7.7 on Unix (additional changes potentially needed on Windows)

JP2OpenJPEG driver:
* Safer multi-threaded use

JPEG driver:
* add USE_INTERNAL_OVERVIEWS open option (default to TRUE as in recent versions, can be set to FALSE to hide internal overviews

KMLSuperOverlay driver:
* fix 2.0 regression with some RasterIO() requests involving resampling (6311)
* recognize datasets that have a intermediate <Folder> that forms a <Document><Folder><Region/><GroundOverlay/> structure (6343)

LCP driver:
* fix wrong use of endianness macros to fix behavior on big-endian hots

Leveller driver:
* update to v9 read support (5632,)

MBTiles driver:
* add raster write support
* fix so that datasets whose lowest min zoom level is 16 or above are recognized
* be robust to invalid 'bounds' at dataset opening (6458)

MEM driver:
* avoid 32 bit overflows

NetCDF driver:
* 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)
* implement Get/SetUnitType() using the standard units attribute (https://github.com/OSGeo/gdal/pull/96)
* 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)
* 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)
* add support for the geostationary projection (6030)
* fix one byte heap write overflow in NCDFTokenizeArray() (6231)
* fix potential buffer overflows with uses of nc_inq_varname(), nc_inq_attname() and nc_get_att_text() (6227)
* validate that gridmapping:GeoTransform has 6 values (6244)
* fix wrong use of deallocator when writing a GEOLOCATION array, and other issues
* limit number of bands reported to 32768 by default
* validate raster dimensions
* validate content of NC_GLOBALGDAL variable (6245)

NGSGEOID driver:
* make it work on > 2GB file

NITF driver:
* 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)
* fix parser to properly deal with variable length items not in first nesting level

Northwoord driver:
* fix computation of intermediate color table values on non-Intel platforms (6091)

NTv2 driver:
* support reading/writing/appending to files with big-endian order (cf https://github.com/OSGeo/proj.4/issues/345)

OpenJPEG driver:
* do not expose block dimensions larger than dataset dimensions to avoid wasting memory (6233)

PCIDSK driver:
* Remove the old driver (6172)

PDF driver:
* add PDFium library as a possible back-end. Initial support contributed by Klokan Technologies GmbH (http://www.maptiler.com/)
* 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)
* make OGC BP registration work with media box where bottom_y is negative and top_y = 0 (in non rotated case)
* make OGC BP registration work with media box where min_x != 0 (in non-rotated case)
* correctly take into account non-meter linear units with OGC BP encoding, and add support for US FOOT (6292)

PDS driver:
* change default values of PDS_SampleProjOffset_Shift and PDS_LineProjOffset_Shift to 0.5 (5941)
* fix nodata value for UInt16 to be 0 (6064)
* accept 'ODL_VERSION_ID = ODL3' in header (6279)

PGChip driver:
* driver removed from sources

PLScenes driver:
* PLScenes V0: avoid opening raster to generate dummy .aux.xml

PNG driver:
* Support writing 1, 2 or 4 bit single band
* Add NBITS creation option
* fix XML of creation option list
* Update internal libpng to 1.2.56

PostgisRaster driver:
* avoid Identify() to recognize OGR PostgreSQL connection strings with schemas option and cause loud 'QuietDelete' (6034)

Raw drivers:
* better support for direct read of more than 2GB in single gulp (untested though)

RIK driver:
* fix Identify() method to recognize again non-RIK3 RIK datasets (6078)

RMF driver:
* implement GetNoDataValue()
* add read/write access to new RMF format for files larger than 4 Gb (version=0x201) (https://github.com/OSGeo/gdal/pull/11)

ROIPAC driver:
* Support offset and scale band (6189)

VICAR driver:
* change PDS_SampleProjOffset_Shift and PDS_LineProjOffset_Shift default values to 0.5 (5941)
* fix loss of precision in scale and offset

VRT driver:
* expose implicit 'virtual' overviews for VRT whose bands are made of a single SimpleSource/ComplexSource
* gdalvrt.xsd: Add capitalized versions of true and false (6014)
* GetSingleSimpleSource(): check there's a single source (6025)
* honour VRTRasterBand NBITS metadata with SimpleSource and ComplexSource
* properly take into account nodata value declared at VRT band level when doing resampling with non-nearest
* honour relativeToVRT when using AddBand() to add a VRTRawRasterBand (https://github.com/OSGeo/gdal/pull/67)
* VRT warp: fix crash with implicit overviews and destination alpha band (6081)
* make GetDefaultHistogram() on a sourced raster band save the result in the VRT (6088)
* serialize NODATA and NoDataValue items with %.16g, e.g. so as to be able to hold large int32 nodata values (6151)
* VRTSourcedRasterBand: make ComputeRasterMinMax() and ComputeStatistics() forward bApproxOK to overview band (useful for implicit overviews)
* make CreateCopy() preserve NBITS metadata item
* avoid loading sibling file list if not available
* VRT raw: don't truncate last figure of ImageOffset if there are left space padding (6290)
* VRTWarpedDataset::SetMetadataItem(): fix crash when calling with name=SrcOvrLevel and value=NULL (6397)
* 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)

WMS driver:
* add a IIP (Internet Imaging Protocol) minidriver
* limit number of zoom levels for ArcGIS MapServer JSon (6186)
* 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)

XYZ driver:
* be more robust to not exactly equal X and Y spacing (6461)

OGR 2.1.0 - Overview of Changes

Core:
* Add OGREditableLayer class to add editing capabilities to drivers with none or limited editing capabilities
* OGRGeometry: add DelaunayTriangulation() method (GEOS >= 3.4)
* OGRGeometry and derived classes: implement copy constructor and assignment operator (5990)
* OGRGeometry: Fix result of Equals on POINT EMPTY with POINT(0 0)
* OGRFeature SetField(): more type conversions allowed, particularly with array types
* OGRFeature::SetGeometry()/SetGeometryDirectly(): make it work when passed geometry is the currently installed geometry (6312)
* OGR SQL: do not silently skip NULL values in the first records when evaluating a SELECT DISTINCT (6020)
* OGR SQL: correctly sort NULL values in first positions (6155)
* OGR SQL: fix CAST(x AS bigint) to return an evaluated int64 node, and not int32 (6479)
* OGR SQL: handle 'fid' as Integer64 in where clause, and allow CAST(fid AS bigint) in selected columns (6484)
* Add OGRUpdateFieldType()
* Decorate a few functions/methods of the OGR layer API with CPL_WARN_UNUSED_RESULT
* WKT export: use 15 significant figures, instead of 15 figures after decimal point (6145)
* WKT export: do not append .0 after non-finite values (6319)
* Fix typo in definition of name of OGR_FD_ReorderFieldDefns (final s was missing)
* OGRLayer::SetIgnoredFields(): properly reset state of non first geometry fields (6283)
* Make OGRLayer::SetSpatialFilter(GetSpatialFilter()) work with non empty spatial filter (6284)
* OGRLayerDecorator: add missing CreateGeomField()
* OGRLayer::Erase(): do not discard input geometries that have no intersection with method layer (6322)
* OGRLayer::Erase(): Speedup = ~70%
* Add OGRPreparedGeometryContains()
* Use prepared geometry intersects as pretest in layer Intersection, Union, and Identity methods if requested.
Use prepared geometry containment as pretest in layer Intersection method if requested.
* Bail out from layer algebra methods if GEOS calls fail and not SKIP_FAILURES.
* 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)
* OGRParseDate(): more strict validation to reject invalid dates (6452)

OGRSpatialReference:
* Upgrade to EPSG database v8.8
* Add support for SCH (Spherical Cross-track Height) projection
* Optimize reprojection typically between WGS84 based SRS and WebMercator
* Correctly transform Mercator_2SP and _1SP to ESRI Mercator, and back from ESRI Mercator to Mercator_2SP (4861)
* No longer enforce C locale if running against latest proj that is locale safe (4.9.2 or later)
* EPSGGetPCSInfo(): use pcs.override.csv in priority over pcs.csv to read projection name, UOM, UOMAngle, GeogCS, etc... (6026)
* morphToESRI(): use GCS_WGS_1972 as GCS name for EPSG:4322 (6027)
* morphToESRI(): use Mercator_Auxiliary_Sphere projection for EPSG:3857. morphFromESRI(): map Mercator_Auxiliary_Sphere to EPSG:3857 (5924)
* Align hard-coded WKT of well known GCS definitions of WGS84, WGS72, NAD27 and NAD83 with the WKT of their EPSG def (6080)
* morphFromESRI(): special case with PROJCS name 'WGS_84_Pseudo_Mercator' (6134)
* OSR C API: fix declarations of OSRSetAxes() and OSRSetWagner(), and add missing OSRSetHOMAC(), OSRSetMercator2SP() and OSRSetTPED() (6183)
* Recognize EPSG 9835 method (Lambert Cylindrical Equal Area (Ellipsoidal)), needed for EPSG:6933 PCS for example
* importFromProj4/exportToProj4(): rework linear unit conversion between WKT name/values and proj4 unit name, and extend its scope in WKT to proj4 conversions
* OSR ESRI .prj: add support for reading custom ellipsoid in Parameters line
* on import of +proj=geos, if +sweep=x is used then store it as a proj4 extension node (6030)

Utilities:
* ogrinfo / ogr2ogr: implement filename syntax for -sql and -where
* ogr2ogr: prevent the -gt setting from overriding transaction group size of 1 set by skipfailures earlier (2409)
* ogr2ogr: warn if -zfield field does not exist in source layer
* ogr2ogr -skip: rollback dataset transaction in case of failure (6328)
* ogr2ogr: fix -append with a source dataset with a mix of existing and non existing layers in the target datasource (6345)
* ogr2ogr: imply quiet mode if /vsistdout/ is used as destination filename
* ogr2ogr: make -dim and -nlt support measure geometry types

CartoDB:
* fix GetNextFeature() on a newly create table (6109)
* defer 'CartoDBfycation' at layer closing
* optimize feature insertion with multiple rows INSERT

CSV driver:
* add editing capabilities of existing files
* add X_POSSIBLE_NAMES, Y_POSSIBLE_NAMES, Z_POSSIBLE_NAMES, GEOM_POSSIBLE_NAMES and KEEP_GEOM_COLUMNS open options
* add HEADERS open option to force OGR to handle numeric column names. (PR 63)
* add EMPTY_STRING_AS_NULL=YES/NO open option
* implement compatibility enhancements for GeoCSV specification (5989)
* fix detection of TAB delimiter in allCountries.csv when the first line has a comma (6086)
* fix issues with leading single quote, and missing first line after ResetReading(), when parsing allCountries.txt (6087)
* speed-up GetFeatureCount() on allCountries.txt
* on CreateDataSource() with a .csv name, do not try to open other existing .csv files in the directory
* make CreateGeomField() returns OGRERR_NONE in case of success instead of OGRERR_FAILURE (6280)
* avoid adding trailing comma in header line when writing 'WKT,a_single_field'

DGN driver:
* add partial 3D transformation support for cell headers

DXF driver:
* detect files without .dxf extension (5994)
* fix handling of ELLIPSE with Z extrusion axis = -1 (5705)
* take into account full definition of spline entity (degree, control points, weights and knots) when stroking splines (6436)
* 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)

ElasticSearch driver:
* use get /_stats instead of /_status for ElasticSearch 2.0 compatibility (6346)

FileGDB driver:
* make CreateFeature() honour user set FID, and implement more fine grained transaction for Linux/Unix
* give a hint of using FileGDB SDK 1.4 is FileGDB compression is used

GeoJSON driver:
* Add editing capabilities of existing files
* Add ARRAY_AS_STRING=YES open option
* Use '%.17g' formatting by default for floating-point numbers and add SIGNIFICANT_FIGURES layer creation option (6291)
* add a json_ex_get_object_by_path() function
* fix crash on null / non-json object features (6166)
* serialize string values that are valid JSon dictionary or array as it (ie do not quote them)
* make sure there's enough space to write the FeatureCollection bbox (6262). Also avoid duplicating FeatureCollection bbox if source has one (trunk only)
* Export POINT EMPTY as having a null geometry, instead as of being POINT(0 0) (6349)
* Do not 'promote' a null field to OFTString type if it had another type before (6351)

GME driver:
* Driver removed. Maps Engine being shut down at the end of January 2016.

GML driver:
* VFR: add new attribute DatumVzniku (v1.6)
* VFR: fix ST_UVOH type handling
* VFR: fix ZpusobyOchrany attributes (data types and names)
* VFR: fix CisloDomovni attributes (Integer->IntegerList)
* VFR: fix TEA attributes of StavebniObjekty
* 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)
* serialize in .gfs file the name of the geometry element when it is 'geometry' since this is a particular case (6247)
* fix logic error in BuildJointClassFromScannedSchema() (6302)

GPKG driver:
* 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
* emit warning when generating a database without .gpkg/.gpkx extension (6396)
* 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
* correct scope of gpkg_geom_XXXXX extensions to be read-write, and allow reading geometry types CURVE or SURFACE
* avoid trying to insert a gpkg_geom_XXXX extension if already done (6402)
* writer: implement strategy to flush partial_tiles temporary database when it becomes too big (6462)
* writer: when writing to GoogleMapsCompatible tiling scheme, better deal with source rasters in EPSG:4326 with latitude = +/-90 (6463)
* 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)

GPX driver:
* fix crash when parsing a 'time' extension element at route/track level (2.0 regression, 6237)

ILI driver:
* ILI1: Support for Surface polygon rings spread over multiple geometry records
* ILI1: add string TID support (https://github.com/OSGeo/gdal/pull/91)
* Fix crash with models using types derived from INTERLIS
* Fix memory leaks (6178)

JML driver:
* remove arbitrary limitation preventing from reading geometries with <gml:coordinates> larger than 10 MB (6338)

KML driver:
* fix crash on KML files without content but with nested folders (6486)

LIBKML driver:
* for documents without folder, use document name when available as name of layer (6409)

Memory driver:
* add support for sparse feature IDs
* add ADVERTIZE_UTF8 layer creation option

MITAB driver:
* Add support for block sizes other than 512 bytes in .map files, for MapInfo 15.2 compatibility (6298)
* write correct datum id for EPSG:3857
* read MID files with TAB delimiter and empty first field (5405)
* use projection code 29 when exporting non-Polar Lambert Azimuthal Equal Area (5220)
* fix crashes when parsing invalid MIF geometries (6273)

MSSQLSpatial driver:
* Implement MSSQL bulk insert (4792)
* do not treat a primary key that is not of integer type as the FID (6235)

NTF driver:
* fix potential buffer overflows when reading too short lines (6277)

ODBC driver:
* remove limitations to 500 columns

ODS driver:
* fix loss of precision in formula computation

OpenFileGDB driver:
* do not emit warning if SDC/CDF table detected and that FileGDB driver is present
* fix min/max on columns without indices (6150)
* build correct geometry for a multi-part wkbMultiLineStringZ (6332)
* add support for reading SHPT_GENERALPOINT (6478)

OSM driver:
* correct fields ids for the (non frequently used) Node message
* do not override 'our' osm_id (the node, way or relation id) with a tag named 'osm_id' (6347)
* properly deal with polygons in other_relations geometrycollection (6475)

PG driver:
* Add PRELUDE_STATEMENTS and CLOSING_STATEMENTS open option to be for example able to specify options, like statement_timeout, with pg_bouncer
* Fix 2.0 regression when overwriting several existing PostGIS layers with ogr2ogr (6018)
* Update PG, PGDump and CartoDB drivers to correctly export POINT EMPTY for PostGIS 2.2
* avoid resetting error potentially emitted by ExecuteSQL() (6194)
* sanitize management of quoting for FID column at layer creation
* fix to get SRID on result layer with PostGIS 2.2
* in copy mode (the default on layer creation), do not truncate the concatenated string list to the field width (6356)
* make such that GEOMETRY_NAME layer creation option is honoured in ogr2ogr when the source geometry field has a not-null constraint (6366)
* read and set DESCRIPTION metadata item from/into pg_description system table; add DESCRIPTION layer creation option
* support int2[] and numeric[] types, better map float4[] type
* remove code that was intended to handled binary cursors as it cannot be triggered
* fix append of several layers in PG_USE_COPY mode and within transaction (ogr2ogr -append use case) (6411)

PGDump driver:
* 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)
* in copy mode (the default on layer creation), do not truncate the concatenated string list to the field width (6356)
* make such that GEOMETRY_NAME layer creation option is honoured in ogr2ogr when the source geometry field has a not-null constraint (6366)
* set DESCRIPTION metadata item from/into pg_description system table; add DESCRIPTION layer creation option

Shapefile driver:
* accept opening standalone .dbf files whose header length is not a multiple of 32 bytes (6035)
* fix REPACK crash on shapefile without .dbf (6274)
* add capability to restore/build a missing .shx file when defining SHAPE_RESTORE_SHX to TRUE (5035)
* avoid CreateLayer() to error out when passed wkbUnknown | wkb25D (6473)

SQLite/Spatialite driver:
* support file:xxx URI syntax (derived from patch by joker99, 6150)
* fix heuristics in OGRSQLiteSelectLayer::GetExtent() to not be used when there's a sub SELECT (6062)
* fix crash on GetLayerByName('non_existing_table(geom_column)') (6103)
* fix OGRSQLiteSelectLayerCommonBehaviour::GetBaseLayer() to no longer 'eat' consecutive characters in layer name (6107)
* 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)
* fix memleak in OGRSQLiteTableLayer destructor when updating geometry_columns_time
* 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
* VFS: do not probe -wal files on /vsicurl/

SXF driver:
* fix wrong use of endianness macros to fix behavior on big-endian hots
* add recoding from CP1251 for TEXT attribute that is now decoded
* fix various issues (6357)

VRT driver:
* implement CloseDependentDatasets()
* fix editing with 'direct' geometry mode which could cause attribute column to be empty (6289)
* 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)
* 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)

XLSX driver:
* fix reading sheets with more than > 26 columns and 'holes' (6363)

XPlane driver:
* extend ICAO identifiers to 5 digits (6003)

SWIG Language Bindings

All bindings:
* add a options parameter to gdal.ReprojectImage() to pass warp options
* Change ReadRaster and WriteRaster to use GIntBig and the *IOEx-methods
* prevent NULL file pointer from being passed to VSIF*L functions
* make gdal.Rename() accept Unicode strings
* add SpatialReference.GetAxisName() and SpatialReference.GetAxisOrientation() (6441)
* add SpatialReference.GetAngularUnitsName() (6445)

Java bindings:
* Fix typemap for input parameter of type GIntBig (fixes GetFeature(long), DeleteFeature(long), etc...) (6464)
* Bump minimal java version to 1.5 in case SWIG generates anotations (6433, patch by Bas Couwenberg)
* GNUmakefile: add -f in rm commands
* GNUmakefile: add support for all hardening buildflags

Perl bindings:
* Fix 6050: string formatting in croak.
* Perl Makefile.PL: add support for all hardening buildflags (5998)
* use strict and warnings in overridden constructors.
* add $VERSION to ogr_perl.i (OGR.pm), which is required by pause.perl.org.
* Add some basic module info for CPAN.
* Bugfix for Geo::OGR::Feature->new().
* Add many utility level algorithms as methods to various classes.
* New class for XML stuff
* New Makefile.PL, which can download and build GDAL. This allows automatic testing of the CPAN module.
* Wrap VSIStdoutSetRedirection and allow creating datasets via an object, which can write and close.
* Geo::OGR::Driver and Geo::OGR::DataSource are now Perl wrappers for respective GDAL classes.
* Add to the error stack also errors from the bindings
* Fix sending utf8 from Perl to GDAL. Should also remove some "uninitialized value" warnings.
* ReadTile and WriteTile methods for Dataset, ReadTile accepts now tile size and scaling algorithm.
* Improved Parent - Child management.
* Improved support for 64bit ints.
* Measures support in Geometry class.
* Many new tests

Python bindings:
* make Feature.ExportToJson() output boolean value for a boolean field
* support floating point coordinates for the source windows of Band.ReadRaster() and Band.ReadAsArray()
* fix build with SWIG 3.0.6 (6045)
* make gdal.OpenEx() throw a Python exception in case of failed open when exceptions are enables with gdal.UseExceptions() (6075)
* Disable opening a NumPy dataset with a filename returned by gdal_array.GetArrayFilename(() unless GDAL_ARRAY_OPEN_BY_FILENAME is set to TRUE
* disable the warning about using deprecated wkb25DBit constant as it uses a trick that prevents the bindings from being used by py2exe / pyinstaller (6364)

GDAL/OGR 2.0 Release Notes

In a nutshell...

* New GDAL drivers:
- BPG: read-only driver for Better Portable Graphics format (experimental, no build support)
- GPKG: read/write/update capabilities in the unified raster/vector driver
- KEA: read/write driver for KEA format
- PLMosaic: read-only driver for Planet Labs Mosaics API
- ROI_PAC: read/write driver for image formats of JPL's ROI_PAC project (5776)
- VICAR: read-only driver for VICAR format
* New OGR drivers:
- Cloudant: read/write driver for Cloudant service
- CSW: read-only driver for OGC CSW (Catalog Service for the Web) protocol
- JML: read/write driver for OpenJUMP .jml format
- PLScenes: read-only driver for Planet Labs Scenes API
- Selaphin: read/write driver for the Selaphin/Seraphin format (5442)
* Significantly improved drivers: CSV, GPKG, GTiff, JP2OpenJPEG, MapInfo file, PG, SQLite
* RFC 31: OGR 64bit Integer Fields and FIDs (trac.osgeo.org/gdal/wiki/rfc31_ogr_64)
In OGR core, OGR SQL, Shapefile, PG, PGDump, GeoJSON, CSV, GPKG, SQLite, MySQL,
OCI, MEM, VRT, JML, GML, WFS, CartoDB, XLSX, ODS, MSSQLSpatial, OSM, LIBKML, MITAB
* RFC 46: GDAL/OGR unification ( http://trac.osgeo.org/gdal/wiki/rfc46_gdal_ogr_unification)
- GDAL and OGR PDF drivers are unified into a single one
- GDAL and OGR PCIDSK drivers are unified into a single one
* RFC 49: Add support for curve geometries (http://trac.osgeo.org/gdal/wiki/rfc49_curve_geometries)
In OGR core, and GML, NAS, PostgreSQL, PGDUMP, GPKG, SQLite, VFK, VRT, Interlis drivers
* RFC 50: Add support for OGR field subtypes (http://trac.osgeo.org/gdal/wiki/rfc50_ogr_field_subtype)
In OGR core, OGR SQL, swig bindings, CSV, FileGDB, GeoJSON, GML, GPKG, OpenFileGDB, PG, PGDump, SQLite, VRT
* RFC 51: RasterIO() improvements : resampling and progress callback (http://trac.osgeo.org/gdal/wiki/rfc51_rasterio_resampling_progress)
* RFC 52: Stricter SQL quoting (http://trac.osgeo.org/gdal/wiki/rfc52_strict_sql_quoting)
* RFC 53: OGR not-null constraints and default values (http://trac.osgeo.org/gdal/wiki/rfc53_ogr_notnull_default)
In OGR core, OGR SQL, PG, PGDump, CartoDB, GPKG, SQLite, MySQL, OCI, VRT, GML, WFS, FileGDB, OpenFileGDB and MSSQLSpatial
* RFC 54: Dataset transactions (https://trac.osgeo.org/gdal/wiki/rfc54_dataset_transactions)
In PG, GPKG, SQLite, FileGDB and MSSQLSpatial
* RFC 55: refined SetFeature() and DeleteFeature() semantics.
In GPKG, Shape, MySQL, OCI, SQLite, FileGDB, PG, CartoDB, MITAB and MSSQL
* RFC 56: OFTTime/OFTDateTime millisecond accuracy ( https://trac.osgeo.org/gdal/wiki/rfc56_millisecond_precision )
* RFC 57: 64bit histogram bucket count ( https://trac.osgeo.org/gdal/wiki/rfc57_histogram_64bit_count )
* Upgrade to EPSG v8.5 database
* Fix locale related issues when formatting or reading floating point numbers (5731)

New installed files
* data/gdalvrt.xsd: XML schema of the GDAL VRT format

Backward compatibility issues

See MIGRATION_GUIDE.TXT

GDAL/OGR 2.0 - General Changes

Build(Unix):
* Fix for cpl_recode_iconv.cpp compilation error on freebsd 10 (5452)
* Fix pthread detection for Android
* Fix in Armadillo detection test (5455)
* Fix detection of OCI by changing linking order to please modern GCC (5550)
* Fix test to accept MariaDB 10.X as valid MySQL (5722)
* Make sure $(GDAL_INCLUDE) is first to avoid being confused by GDAL headers of a previous version elsewhere in the include path (5664)
* Always use stat rather than stat64 for Mac OSX in AC_UNIX_STDIO_64. (5780, 5414).
* Add support for ECW SDK 5.1 (5390)
* Do not enable Python bindings if PYTHON env variable is set without --with-python being explicitly specified (5956)

Build(Windows):
* PDF: fix compilation issue with Visual Studio 2012 (5744)
* PDF: Add support to compile the pdf driver as plugin (5813)
* Add support for MrSID 9.1 SDK (5814)
* when building netCDF, HDF4, HDF5 as plugins, call registration of 'sub-drivers' GMT, HDF4Image and HDF5Image (5802)

Build(all):
* Ruby bindings: disable autoconf and makefile support (5880)
* Fix compilation errors with json-c 0.12 (5449)
* Fix compilation error in alg/gdalgrid.cpp when AVX is available, but not SSE (5566)

2.0

Port:
* Introduce a more generic lock API (recursive mutex, adaptive mutex, spinlock)
* Add types for CPLMutex, CPLCond and CPLJoinableThread (only enforced in -DDEBUG mode)
* Add CPLGetPhysicalRAM() and CPLGetUsablePhysicalRAM()
* CPLSpawn() on Windows: quote arguments with spaces in them (5469)
* /vsigzip/: avoid infinite loop when reading broken .gml.gz file (5486)
* /vsizip/ : fix bug that caused premature end of file condition with some read patterns (5530)
* /vsizip/ on >4GB zips: accept .zip declare 0 disks (5615)
* /vsitar/: remove useless validation test that prevents from opening valid .tar files (5864)
* /vsistdout/: add VSIStdoutSetRedirection() for compatibility with MapServer FCGI (https://github.com/mapserver/mapserver/pull/4858)
* /vsimem/: update st_mtime and return it with Stat()
* /vsimem/: in update mode, when seeking after end of file, only extend it if a write is done
* /vsimem/: Make Rename() on a directory also rename filenames under that directory (5934)
* /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)
* /vsicurl/: avoid reading after end-of-file and fix failure when reading more than 16MB in a single time (5786)
* /vsicurl/: by default do not use HEAD request when detecting a AWS S3 signed URL
* Allow CPL_VSIL_CURL_ALLOWED_EXTENSIONS to be set to special value {noext}
* VSIWin32Handle::Flush(): no-op implementation is sufficient to offer same guarantee as POSIX fflush() (5556)
* Unix VSIL: reset eof in all cases in Seek()
* Windows plugins: complementary fix to 5211 to avoid error dialog box when there are dependency problems (5525)
* Fix VSIReadDirRecursive() recursing on the parent or current directory (5535)
* cpl_error: obfuscate password
* HTTP: set CURLOPT_NOSIGNAL if available (5568)
* Add COOKIE option to CPLHTTPFetch() (5824)
* 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)
* Fix stack corruption upon thread termination with CPLSetThreadLocalConfigOption on Windows 32 bit (5590)
* cpl_csv: Stop probing for csv/horiz_cs.csv. (5698)
* vsipreload: implement clearerr() and readdir64() (5742)
* CPLsetlocale(): return a string that is thread-locale storage to avoid potential race in CPLLocaleC::CPLLocaleC() (5747)
* CPLHexToBinary(): faster implementation (5812)
* CPLAcquireMutex(): improve performance on Windows (5986)

Core:
* Add imagery (satellite or aerial) metadata support (Alos, DigitalGlobe, Eros, GeoEye, OrbView, Landsat, Pleiades, Resurs-DK1, Spot/Formosat).
* Reduce lock contention on the global cache mutex and make it possible to use spin lock instead with GDAL_RB_LOCK_TYPE=SPIN
* Block cache: make block cache manager safe with respect to writing dirty blocks (5983)
* EXIF reader: fix memleak in error code path
* EXIF reader: add missing validation for some data types (3078)
* Fix crash in GDALPamRasterBand::SerializeToXML() when saving an empty RAT (5451)
* ComputeStatistics(): use Welford algorithm to avoid numerical precision issues when computing standard deviation (5483)
* Fix crashing issue with TLS finalization on Unix (5509)
* GDALJP2Metadata::CreateGMLJP2(): use EPSGTreatsAsLatLong() and EPSGTreatsAsNorthingEasting() to determine if axis swapping is needed (2131)
* GDALJP2AbstractDataset: implement GetFileList() to report .wld/.j2w if used
* GMLJP2: be robust when parsing GMLJP2 content that has nul character instead of \n (5760)
* GMLJP2: add missing rangeParameters element to validate against GMLJP2 schema (5707)
* GMLJP2: write non null bounding box at root of FeatureCollection (5697)
* GMLJP2: SRS export as GML: output XML definition of a SRS as a GML 3.1.1 compliant Dictionary (5697)
* 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
* 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)
* GMLJP2: add compatibility with GMLJP2 v2.0 where SRS is expressed as CRS URL
* 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
* JP2Boxes: add null terminated byte to GDAL XML, XML or XMP boxes
* Add GDALGetJPEG2000Structure() (5697)
* GDALMultiDomainMetadata::XMLInit(): when importing XML metadata, erase the existing document to replace it with the new one
* Metadata: fix correct sorting of StringList / metadata (5540, 5557)
* Make GetMaskBand() work with GDT_UInt16 alpha bands (5692)
* Fix 32bit overflow in GDALRasterBand::IRasterIO() and GDALDataset::BlockBasedRasterIO() (5713)
* 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
* Fix crash when calling GetTiledVirtualMem() on non-Linux platform (5728)
* Add GDAL_OF_INTERNAL flag to avoid dataset to be registered in the global list of open datasets
* 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
* Implement GDALColorTable::IsSame()
* GDALPamDataset: do not serialize dataset metadata unless it has been set through GDALDataset::SetMetadata() or GDALDataset::SetMetadataItem()
* GDALLoadTabFile: add TAB_APPROX_GEOTRANSFORM=YES/NO configuration option to decide if an approximate geotransform is OK (5809)
* Optimize copy efficiency from tiled JPEG2000 images
* Avoid fetching remote non-existing resources for sidecar files, when using /vsicurl/ with a URL that takes arguments (5923)
* Use GDALCanFileAcceptSidecarFile() in GDALMDReaderManager::GetReader()

Algorithms:
* RPC transformer: fix near interpolation in RPC DEM (5553)
* RPC transformer: take into account nodata in RPC DEM (5680)
* RPC transformer: add RPC_DEM_MISSING_VALUE transformer option to avoid failure when there's no DEM at the transformed point (5730)
* 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
* TPS transformer: fix crash if the forward or backward transform cannot be computed (5588)
* OpenCL warper: remove unused variable in bilinear resampling that can cause compilation error (5518)
* OpenCL wrapper: fix code compilation with NVIDIA OpenCL (5772)
* Overview: Fix and speed-up cubic resampling in overview computation to take into account scaling factor (5685)
* 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)
* Overview: avoid crash when computing overview with a X dimension much smaller than Y dimension (5794)
* GDALRegenerateOverviewsMultiBand(): fix stride calculation error with certain raster dimensions (5653)
* Warper: numerous speed optimizations (SSE2 specific code, more fast code paths, ...)
* Warper: fix Cubic and Bilinear resampling to work correctly with downsizing (3740)
* Warper: fix and optimize CubicSpline
* 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)
* Warper: accept warping options METHOD=NO_GEOTRANSFORM and DST_METHOD=NO_GEOTRANSFORM to run gdalwarp on ungeoreferenced images
* Warper: fix GDALSuggestedWarpOutput() wrong extent in some circumstances (e.g. dataset of big dimension with world coordinates) (5693)
* Warper: fix integer overflow when reprojecting into an area with (part of) bounds completely outside of the source projection (5789)
* Warper: add min,max,med,q1 and q3 resampling algorithms (5868)
* Warper: add a SRC_COORD_PRECISION warping option to help getting more reproducible output when -wm parameter changes (5925)
* Warper: fix failure in GDALSuggestedWarpOut2() when top-left and bottom-right corners transform to the same point (5980)
* GDALReprojectImage(): takes into account nodata values set on destination dataset
* Median cut and dithering: optimizations and enhancements to deal with 8-bit precision (only if using internal interface for now)
* rasterfill: add option to specify driver to use for temporary files
* 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

Utilities:
* gdalinfo: display extra metadata domains attached to band, and refactor code a bit (5542)
* gdalinfo: add -oo option per RFC 46
* gdalinfo: add -json switch (partial implementation of RFC 44)
* gdaladdo: add -oo option per RFC 46
* gdaladdo: add warning when subsampling factor 1 specified
* gdal_translate: add -oo option per RFC 46
* gdal_translate: add -r and -tr options per RFC 51
* gdal_translate: add a -projwin_srs option to be able to express -projwin coordinates in another SRS than the one of the dataset
* gdal_translate: support -'outsize avalue 0' or '-outsize 0 avalue' to preserve aspect ratio
* gdal_translate: avoid preserving statistics when changing data type in situations where clamping can occur
* gdal_translate: adjust RPC metadata (pixel/line offset/scale) when subsetting/rescaling, instead of just discarding it
* gdal_translate: don't recopy band units if rescaling or unscaling is involved (3085)
* gdal_translate: increase GDAL_MAX_DATASET_POOL_SIZE default value to 450. (5828)
* gdal_translate: preserve NBITS image structure metadata when possible
* gdalwarp: add -oo option per RFC 46
* gdalwarp: add -te_srs option to specify -te in a SRS which isn't the target SRS
* 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)
* gdalwarp: initialize destination dataset to no_data value when automatically propagating source nodata (5675)
* gdalwarp: only apply INIT_DEST when processing the first input dataset (5387)
* gdalwarp: increase GDAL_MAX_DATASET_POOL_SIZE default value to 450. (5828)
* gdalwarp: do not preserve NODATA_VALUES metadata item in output dataset if adding an alpha channel with -dstalpha
* gdalwarp: fix '-dstnodata none' to avoid read of uninitialized values (5915)
* gdalwarp: make -crop_to_cutline densify cutline in source SRS before reprojecting it to target SRS (5951)
* gdaldem: avoid too large files to be produced when using -co COMPRESS=xxxx -co TILED=YES (5678)
* gdallocationinfo: add -oo option
* gdaltransform: add a -output_xy flag to restrict output coordinates to 'x y' only
* gdal_grid: use nodata= parameter in the algorithm string to determine the nodata value to set on the band (5605)
* gdal_grid: fix crash in optimized mode with GCC 4.4 on 64bit (5987)
* gdalbuildvrt: add a -r option to specify the resampling algorithm
* gdal_edit.py: add -unsetstats option (and fix -a_nodata to run on all bands, ant not just first one)
* gdal_edit.py: add -stats and -approx_stats flags (patch by mwtoews, 5805)
* gdal_edit.py: change -mo add metadata to existing one; add new option -unsetmd to clean existing metadata
* gdal_edit.py: add -oo to specify open options
* gdal_retile.py: fix to make it work with input images of different resolutions (5749)
* gdal_retile.py: implement progress bar (5750)
* gdal_merge.py: add timing information in verbose output
* gdal_merge.py: take into account alpha band to avoid writing zones of source images that are fully transparent (3669)
* gdal2tiles.py: fix inverted long/lat in BoundingBox and Origin elements of tilemapresource.xml (5336)
* pct2rgb.py: make it work with color tables with less than 256 entries (5555)
* gdal_fillnodata.py: FillNodata: copy no data value to destination band when creating a dataset (if available) (4625)
* gdal_proximity.py: add a -use_input_nodata flag
* gdalcompare.py: add options to suppress selected comparisons
* gdalcompare.py: takes into account differences in overview bands
* gdalcompare.py: compute difference on float to avoid integer underflow
* 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

Python samples:
* Added swig/python/samples/jpeg_in_tiff_extract.py
* Added dump_jp2.py
* Added validate_jp2.py
* Added build_jp2.py
* Added gcps2ogr.py
* tolatlong.py: report error when operating on a non-georeferenced dataset

AAIGRID:
* Fix formatting string (5731)

BAG driver:
* change nodata value for uncertainty band to 1e6 (5482)

BMP driver:
* back out r17065 change that inferred georeferencing based on the resolution information in the BMP header (3578)

DIMAP driver:
* DIMAP 2: handle the case where the Raster_Data element is in main file (5018, 4826)
* DIMAP 2: fix to extract geodetic SRS (5018, 4826)
* DIMAP 2: fix to extract geotransform from JPEG2000 file if not available in XML (5018, 4826)

DDS driver:
* Add ETC1 compression format support
* Header correction for worldwind client

ECW driver:
* correctly assign color interpretation to bands if order is unusual

ENVI driver:
* 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)
* when writing, consider that LOCAL_CS SRS is like ungeoreferenced (5467)

ERS driver:
* reset RasterInfo.RegistrationCellX/Y if setting a new geotransform on an updated .ers file (5493)
* fix SetProjection() (5840)

GeoRaster driver:
* fix Oracle SRID authority (5607)
* fix user-defined SRID issue (5881)
* new SRID search (5911)

GIF driver:
* add compatibility with giflib 5.1 (5519)
* fix crash on images without color table (5792)
* fix reading of interlaced images with giflib >= 5.0
* validate the size of the graphic control extension block (5793)
* implement GetFileList() to report worldfile

GRASS driver:
* GRASS 7.0.0 support (5852)

GRIB driver:
* avoid divide by zero while setting geotransform on 1xn or nx1 grib file (5532)
* allow writing PDS template numbers to all bands (5144)

GTiff driver:
New capabilities:
* for JPEG-in-TIFF, use JPEG capabilities to decompress fast overview levels 2,4 and 8, to generate 'hidden' overviews used by RasterIO()
* add DISCARD_LSB creation option (lossy compression) to be best used with PREDICTOR=2 and LZW/DEFLATE compression
* when GTIFF_DIRECT_IO=YES is enabled, performance improvements in GTiffRasterBand::DirectIO() with Byte dataset and Byte buffer
* implement dataset DirectIO()
* 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)
* support reading and created streamable files
* for JPEG-compressed TIFF, avoid quantization tables to be emitted in each strip/tile and use optimized Huffman coding by default
* avoid SetNoDataValue() to immediately 'crystallize' the IFD
* allow unsetting TIFFTAG_SOFTWARE, TIFFTAG_DOCUMENTNAME, etc... by removing them from metadata list or passing None as a value of SetMetadataItem() (5619)
* allow lossless copying of CMYK JPEG into JPEG-in-TIFF
* set alpha on target by default when translating from Grey+Alpha
* 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)
* add RPCTXT=YES creation option to write sidecar _RPC.TXT file
* internal libtiff updated to upstream libtiff 4.0.4beta
* internal libgeotiff updated to upstream libgeotiff SVN head
* speed optimization on write (at least in Vagrant) (5914)
* use importFromEPSG() when ProjectedCSTypeGeoKey is available (5926)
* on reading better deal with a few ESRI formulations of WebMercator (5924)
Fixes:
* when overriding metadata in update mode, make sure to clear it from PAM file (5807)
* fix handling of Mercator_2SP (5791)
* avoid TIFF directory to be written (at end of file) when creating a JPEG-in-TIFF file
* 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
* fix to make band SetMetadata(NULL) clear band metadata (5628)
* fix error message when requesting a non existing directory
* check data type with PHOTOMETRIC=PALETTE
* be robust to out-of-memory conditions with SplitBand and SplitBitmapBand
* avoid using optimized JPEG --> JPEG-in-TIFF path if INTERLEAVE=BAND is specified with a 3-band JPEG
* to make Python bindings happy, avoid emitting CE_Failure errors due to libtiff errors when we still manage to open the file (5616)
* avoid crash when reading GeoTIFF keys if the stored key type isn't the one expected
* make sure to call libgeotiff gtSetCSVFilenameHook() method when linking against external libgeotiff
* avoid/limit DoS with huge number of directories
* clean spurious spaces when reading values from _RPC.TXT
* serialize RPC in PAM .aux.xml file if using PROFILE != GDALGeoTIFF and RPB = NO
* fix clearing of GCPs (5945)
* avoid generated corrupted right-most and bottom-most tiles for 12-bit JPEG-compressed (5971)
* make sure to use scanline write API when writing single-band single-strip 1-bit datasets

GRASS driver:
* fix compilation issues against GRASS 7

HDF4 driver:
* Add configuration support to be able to open more files simultaneously
* Add class suffix to the parameter name when parsing HDF-EOS objects.
* Fix AnyTypeToDouble() to use proper type (int instead of long) to work with DFNT_INT32/DFNT_UINT32 on 64-bit Linux (5965)
* MODIS: Set more correct values for PIXEL_/LINE_ OFFSET/STEP by comparing longitude and latitude subdatasets dimensions with main subdataset dimensions

HDF5 driver:
* avoid opening BAG files in the case HDF5 and BAG are plugins, and HDF5 is registered before BAG

HFA driver:
* fix recognition of Hotine Mercator Azimuth Center in Imagine format (and Swisstopo GeoTIFF) (5551)
* fix various hangs on invalid files
* read projection even when it does not contain datum information (4659)

HTTP driver/wrapper:
* make it work with vector files too
* fix handling of non VSI*L file on Windows

IRIS driver:
* add support for the SHEAR data type (5549)

JPEG2000 driver:
* 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)
* add GMLJP2 creation option
* add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box
* Add capability of reading GMLJP2 v2 embedded feature collections and annotations
* Add read/write support for RPC in GeoJP2 box (5948)

JP2ECW driver:
* add metadata about JPEG2000 codestream and boxes (5408)
* Add 1BIT_ALPHA_PROMOTION open option (default to YES) to control expansion of 1-bit alpha channel to 8-bit
* correctly assign color interpretation to bands if order is unusual
* add WRITE_METADATA and MAIN_MD_DOMAIN_ONLY creation options to write GDAL metadata, JP2 XML boxes or XMP box
* add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box
* Add capability of reading GMLJP2 v2 embedded feature collections and annotations
* Add read/write support for RPC in GeoJP2 box (5948)

JP2KAK driver:
* Compatibility with Kakadu v7.5 (4575, 5344)
* Handle Kakadu version 7 allocator.finalize (4575)
* fix bug in vsil_target::end_rewrite() that prevented TLM index to be generated (5585)
* Add FLUSH in creation option XML (5646)
* 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)
* add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box
* Add capability of reading GMLJP2 v2 embedded feature collections and annotations
* Add read/write support for RPC in GeoJP2 box (5948)

JP2OpenJPEG driver:
* Support writing arbitrary number of bands. (5697)
* Generate cdef box when transparency is needed. Add NBITS, 1BIT_ALPHA and ALPHA creation options (5697)
* add INSPIRE_TG (for conformance with Inspire Technical Guidelines on Orthoimagery), PROFILE, JPX and GEOBOXES_AFTER_JP2C creation option (5697)
* add GMLJP2V2_DEF creation option to create a GMLJP2 v2 box
* Add capability of reading GMLJP2 v2 embedded feature collections and annotations
* add PRECINCTS creation option (5697)
* allow several quality values to be specified with QUALITY creation option. Add TILEPARTS, CODEBLOCK_WIDTH and CODEBLOCK_HEIGHT options (5697)
* support reading&writing datasets with unusual order of band color interpretation (5697)
* add WRITE_METADATA and MAIN_MD_DOMAIN_ONLY creation options to write GDAL metadata, JP2 XML boxes or XMP box (5697)
* add support for reading/writing/updating IPR box (from/into xml:IPR metadata domain) (5697)
* add YCC creation option to do RGB->YCC MCT, and turn it ON by default (5634)
* add USE_SRC_CODESTREAM=YES experimental creation option, to reuse the codestream of the source dataset unmodified
* support reading & writing images with a color table (5697)
* support update mode for editing metadata and georeferencing (5697)
* add compatibility with OpenJPEG 2.1 (5579)
* fix warning when reading a single tile image whose dimensions are not a multiple of 1024 (5480)
* Add 1BIT_ALPHA_PROMOTION open option (default to YES) to control expansion of 1-bit alpha channel to 8-bit
* Add read/write support for RPC in GeoJP2 box (5948)
* limit number of file descriptors opened

JPEG driver:
* use EXIF overviews if available
* add EXIF_THUMBNAIL creation option to generate an EXIF thumbnail
* use optimized Huffman coding to reduce file size
* add support for reading and writing COMMENT
* optimize whole image reading with dataset IRasterIO()
* report non-fatal libjpeg errors as CE_Warning (or CE_Failure if GDAL_ERROR_ON_LIBJPEG_WARNING = TRUE) (5667)
* in compressor, increase default val of max_memory_to_use to 500MB

JPIPKAK driver:
* avoid symbol collision with kdu_cpl_error_message from JP2KAK driver
* reset the bNeedReinitialize flag after a timeout (3626)

KMLSuperOverlay driver:
* fix truncated raster on 32 bit builds (5683)
* make Identify() more restrictive to avoid false positives

L1B driver:
* add support for little-endian LRPT datasets (5645)
* expose band mask when there are missing scanlines (5645)
* expose WGS-84 or GRS-80 datum if read from header record (5645)

MAP driver:
* retrieve the image filename in a case insensitive way (5593)

MBTiles driver:
* better detection of 4 bands dataset and take into account alpha component of color table in RasterIO() (5439)
* avoid wrong detection of 3 bands when finding paletted PNG in /vsicurl mode (5439)
* fix dimension computation when opening a single tile dataset
* better computation of extent from min/max of tile coordinates, for a single zoom level
* use standard EPSG:3857 origin to fix a ~8m shift (5785)

MEM driver:
* implement optimized versions of raster band and dataset IRasterIO()

MSG driver:
* fix compilation problem (5479)
* fix memory leaks (5541)

NetCDF driver:
* Force block size to 1 scanline for bottom-up datasets if nBlockYSize != 1 (5291)
* Fix computation of inverse flattening (5858)
* In case the netCDF driver is registered before the GMT driver, avoid opening GMT files
* Fix crash on opening a NOAA dataset (5962)

NGSGEOID driver:
* make Identify() more restrictive

NITF driver:
* 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
* HISTOA TRE: put definition of TRE in conformance with STDI-0002 (App L page 14) and STDI-0006 (Page 57) (5572)

OGDI driver:
* Remove OGDIDataset::GetInternalHandle (5779).

OZI driver:
* remove .map header detection from Identify() since this is actually handled by the MAP driver

PCIDSK driver:
* close dataset in case of exception in PCIDSK2Dataset::LLOpen() (5729)

PCRaster driver:
* Align libcsf code with PCRaster raster format code (5843)
* Implement Create() (5844)
* Improve handling of no-data value (5953)

PDF driver:
* add compatibility with Poppler 0.31.0
* in the OGC Best practice case, switch rotational terms of the geotransform matrix (gt[2] and gt[4])
* in the OGC Best practice case, handle rotations of 90 and 270 degrees.
* advertise LAYERS metadata domain
* deal with OHA- datum (Old Hawaiian)
* fix compilation problem with Podofo on Windows (patch by keosak, 5469)
* add sanity check on page count

PDS driver:
* Added support for SPECTRAL_QUBE objects used e.g. by THEMIS instrument of Mars Odyssey spacecraft.

PNG driver:
* add creation options to write metadata in TEXT/iTXt chunks
* optimize whole image reading with dataset IRasterIO()
* Internal libpng: update to 1.2.52

PostgisRaster driver:
* Fix read of metadata for tables with multiple raster cols (5529)

Rasterlite driver:
* accept space in filename

RPFTOC driver:
* add tweak for weird relative directory names in the A.TOC file (5979)

VRT driver:
* 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)
* VRT warp: make selection of source overview work (5688)
* 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)
* make sure nodata value set on VRT raster band is taken into account in statistics computation (5463)
* fix ComputeStatistics() on VRT that are a sub-window of source dataset (5468)
* VRT raw: fix corrupted serialization on Windows (5531)
* 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)
* VRT warp: avoid to warp truncated blocks at right/bottom edges, so that scale computation is correct
* fix RasterIO() to be able to fill buffers larger than 2GB (5700)
* fix performance problem when serializing into XML a big number of sources
* do not output empty <Metadata> node on VRTDataset and VRTRasterBand elements
* fix rounding of output window size on VRTSimpleSource (5874)
* add trick to make relativeToVRT works for a VRT-in-VRT
* add more checks to CheckCompatibleForDatasetIO() to avoid issues with overview bands (5954)
* preserves relative links on reserialization of existing VRT (5985)

USGSDEM driver:
* take into account horizontal unit = ft in the UTM case (5819)

TIL driver:
* fix half pixel shift in geo registration (5961)

WEBP driver:
* Lazy uncompressed buffer allocation and optimize band-interleaved IRasterIO() for whole image reading

WMS driver:
* Add support for ArcGIS server REST API
* fix to make GDAL_DEFAULT_WMS_CACHE_PATH configuration option work as expected (4540)
* move the WMS layer name encoding to be done before the sub datasets URLs are created.

XYZ driver:
* fix back line seeking with datasets that have not the same number of values per lines (5488)
* deal with lines that have missing values (but still regularly spaced)

OGR 2.0 - Overview of Changes

Core:
* OGRPolygon::importFromWkt(): fix memleak when importing broken 2.5D polygon
* Fix OGRFeature::SetGeometryDirectly() and SetGeomFieldDirectly() to free the passed geometry even if the method fails (5623)
* OGR SQL: Add hstore_get_value(hstore, key) function
* 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
* OGR SQL: support arbitrary boolean expression on ON clause of a JOIN
* OGR SQL: accept AS keyword in 'FROM table_name AS alias' clause
* OGR SQL: don't consider backslash-doublequote as an escape sequence when inside a single-quoted string literal
* Add OGR_API_SPY mechanism (http://www.gdal.org/ograpispy_8h.html)
* Make OGRParseDate() recognize ISO 8601 format
* ogr_core.h: only ignore -Wfloat-equal for IsInit() and not for the rest of the file and files that include it (5299)
* OGR layer algebra: properly initialize field maps to avoid Valgrind warnings in OGRLayer::Update() (5778)
* Make OGR_F_SetFieldBinary() set OFTString fields, mostly for testing purposes
* OGR_G_CreateGeometryFromJson(): attach a WGS84 SRS to the returned geometry if the json object has no 'crs' member (5922)

OGRSpatialReference:
* Upgrade to EPSG v8.5 database
* 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)
* Proj.4 export: export Aitoff, Winkel I, Winkel II, Winkel-Tripel, Craster, Loximuthal, Quartic Authalic
* Adding support for Mercator_Auxiliary_Sphere without AUTHORITY SECTIONS (3962)
* Add QSC (Quadrilateralized_Spherical_Cube) projection, compatible with PROJ 4.9
* Various fixes to put EXTENSION node before AUTHORITY and make it pass Validate() (5724)
* importFromEPSG()/exportToProj4(): avoid precision loss in TOWGS84 parameters, e.g. on Amersfoort / RD EPSG:4289 (https://trac.osgeo.org/proj/ticket/260)
* Add OSRCalcInvFlattening() and OSRCalcSemiMinorFromInvFlattening(), and use them in various places (5858)
* Remove deprecated variant of OGRSpatialReference::importFromOzi() (5932)

Utilities:
* ogrinfo: add -oo option per RFC 46
* ogrinfo: display dataset and layer metadata. Add -nomdd, -listmdd, -mdd all|domain options, like in gdalinfo. OGR VRT: add dataset and layer metadata support
* ogrinfo: add -nocount and -noextent options
* ogr2ogr: add -oo and -doo options per RFC 46
* ogr2ogr: add -spat_srs option
* ogr2ogr: turn string value to one element list if destination field is stringlist
* ogr2ogr: fix problem with SRS when copying layers with multiple geometry columns with different SRS (5546)
* ogr2ogr: add special case for -update and GPKG and input=output
* 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)
* 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)
* ogr2ogr: copy source dataset and layer metadata, unless disabled by -nomd. Additional dataset metadata can be set with -mo KEY=VALUE
* ogr2ogr: add -ds_transaction to force dataset transactions, mainly for FileGDB driver
* ogr2ogr: fix crash with -clipdst when a reprojection fails before (5973)
* ogrlineref: fix project if reper lies on first point or last point of line
* ogr_layer_algebra.py: for Update, Clip and Erase, only creates attribute of input layer by default (5976)

Other:
* OGR WCTS removed from tree

Cross driver changes:
* MSSQLSpatial and GPKG: use standardized 'GEOMETRY_NAME' option name. Add GEOMETRY_NAME to SQLite (5816)
* FileGDB and MySQL: use standardized 'FID' option name. SQLite: add a FID layer creation option (5816)
* SQLite, GPKG, PG, PGDump: in a newly created table, allow to create a integer field with same name of FID column (5845)

BNA driver:
* fix segfault when calling GetNextFeature() on a write-only layer

CartoDB:
* add CARTODBFY layer creation option
* launder layer and column names by default (5904)
* enable by default batch insertion of features in update mode
* 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).
* implement deferred field creation
* support boolean type
* register tables with cdb_cartodbfytable()
* fix creation of features with Date/DateTime/Time values
* fix for multi-user account, and optimization for SQL layers
* implement TestCapability() and CreateDataSource() similarly to PostgreSQL, i.e. redirect to Open() in update mode
* accept a user column to have the same name of the FID (cartodb_id)
* do automatic polygon->multipolygon promotion at creation time
* in authenticated mode, retrieve all column information, including spatial info, default value and primary key in one single statement
* use integer primary key of tables, when available, to scroll faster among features instead of using OFFSET/LIMIT (5906)

CSV driver:
* add optional field type detection with AUTODETECT_TYPE=YES open option
* 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
* fix to avoid truncation of WKT geometries to 8000 characters (5508)
* fix segfault when reading allCountries.txt of geonames.org (5668)
* accept space as separator as input/output, and add MERGE_SEPARATOR=YES/NO open option

DXF driver:
* improve TestCapability(ODsCCreateLayer)

FileGDB driver:
* add layer creation option to set CONFIGURATION_KEYWORD
* avoid error message when failing to import SRS from WKID code (might be an ESRI code for example)
* do not reject features with null geometry
* use LatestWKID when available (5638)
* 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)
* fix CreateFeature() to work when a esriFieldTypeGlobalID field is not set
* report width of string fields (5806)
* add compatibility with FileGDB SDK v1.4
* enable bulk load on newly created layers

GeoJSON driver:
* implement Date/Time/DateTime field type detection
* expose a 'id' object, of type string, directly on Feature object (not in its properties) as a field
* add FLATTEN_NESTED_ATTRIBUTES and NESTED_ATTRIBUTE_SEPARATOR open options
* TopoJSON: establish layer schema from objects properties (5870)
* implement automatic scrolling through result sets of ArcGIS GeoServices Feature Service (5943)
* accept and skip UTF-8 BOM (5630)
* ESRIJson: parse correctly rings of esriGeometryPolygon objects to build correct Polygon or MultiPolygon (5538)
* avoid truncation of real numbers on reading (5882)
* internal libjson-c: Fix to read floating point numbers in non C locale (5461)
* improve TestCapability(ODsCCreateLayer)
* make string comparison for authority name case insensitive so as to recognize lowercase 'epsg' (4995)
* support reading Feature without geometry field

GeoRSS driver:
* fix to parse ATOM feed documents with atom: namespace (5871)

GME driver:
* Added fixes discovered while using v.in.ogr and v.out.ogr in GRASS

GML driver:
* add XSD=filename open option
* 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
* Fix bug that prevented multiple instances of the reader with Xerces backend (5571)
* parse correctly GML geometries whose srsDimension attribute is on top-level geometry element and not on posList (5606)
* add datasource option SRSDIMENSION_LOC=GEOMETRY to be able to write srsDimension attribute on top level geometry element, default on posList unchanged (5066)
* add support for reading layers resulting from a WFS 2.0 join query
* read/write top <gml:description> and <gml:name> as DESCRIPTION and NAME metadata items. Also add GML_ID, DESCRIPTION and NAME creation options
* support to reader response to CSW GetRecords queries
* Fix incorrect geometry cast when reading GML topogeometries (5715)
* VFR: fix ST_Z type (changes) -- list all layers
* VFR: include also non-spatial (removed) features (ZaniklePrvky) in type ST_Z (changes)
* VFR: use String when 32-bit integer was not wide enough
* VFR: add support for UVOH file type
* VFR: add missing support for OriginalniHraniceOmpv geometry
* VFR: update GFS files to RFC31 (OGR 64bit Integer Fields and FIDs)
* update RUIAN GFS files: add missing GMLFeatureClasses to OB type (SpravniObvody, Mop, Momc)
* add support for parsing .xsd with a <choice> of polygonProperty and multiPolygonProperty
* remove wrong case insensitive comparison related to gml_registry.xml use
* various fixes to better deal with ArcByCenterPoint() as found in FAA AIXML files
* make Expat parser accept trailing nul characters
* 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
* fix GML_ATTRIBUTES_TO_OGR_FIELDS=YES to work correctly with xlink:href too (5970
* make GML_EXPOSE_GML_ID to be honoured on WFS documents

GPKG driver:
* add support for non-spatial layers via the gdal_aspatial extension (5521)
* add support for creating spatial index
* add layer metadata read/write support
* implement ST_GeometryType(), GPKG_IsAsisgnable() and ST_SRID() to be compatible with Geometry Type Triggers and SRS ID Triggers Extensions
* on creation, use GEOMCOLLECTION (instead of GEOMETRYCOLLECTION) (5937)
* make SELECT expressions passed to ExecuteSQL() be evaluated by SQLite
* make it possible to use spatialite 4.2.0 SQL functions
* add a 'INDIRECT_SQLITE' dialect that goes through the VirtualOGR mechanism (e.g. for compat with older Spatialite)
* allow table names with dash character (5472)
* emit warning when required extensions are not implemented
* disable PRAGRAM integrity_check by default, since it can be expensive on big files
* read-only support for tables without integer primary key
* fix Date and DateTime support
* implement TEXT(maxwidth) type in read and creation
* implement deferred table creation
* fix reporting of geometry type for 2.5D (previous behavior had the effect to turn to wkbUnknown)
* put correct value (1) in gpkg_geometry_columns for 2.5D tables (5481)
* fix component geometry type of 3D MultiGeometries (5629)
* fix GetExtent() crash on layers without extent set in gpkg_contents (5471)
* avoid leak when a table has more than one FID column
* accept spatial tables whose geometry field is declared as BLOB
* recognize both GeomCollection and GeometryCollection as possible values, until GeoPackage SWG clears what is the official value
* escape all column names in SQL (5520)
* accept geometries with Spatialite format, that can be returned with issuing a SQL request using spatialite functions
* enable Spatialite 4.3 'amphibious' mode to avoid explicit cast to Spatialite geometries

GPSBabel driver:
* automatically open .igc files, implement Identify() and add open options
* advertise creation option

GTM driver:
* declare OLCCreateField and OLCSequentialWrite capabilities

IDRISI driver:
* fix support for multi-ring polygons (5544)

ILI driver:
* Use Ili1TransferElement written by ili2c 4.5.5 and newer
* Fix crash in polygon geometry reading
* Fix reading SURFACE polygons with multiple rings
* Fix reading tables with polygon type
* Support curve geometries for ILI1 and ILI2.
* Add a MODEL open option

ISIS3 driver:
* fix to recognize IsisCube.Mapping.LatitudeType = Planetocentric (5717)

KML driver:
* fix segfault when calling GetNextFeature() on a write-only layer

LIBKML driver:
* add support for reading gx:MultiTrack
* rework libkml singleton factory management (5775)

MITAB driver:
* add support for append/update/delete operations on .tab files (5652)
* add support for CreateField() on non empty file, AlterFieldDefn() and DeleteField() for .TAB (5652)
* implement SyncToDisk() for TAB layers (5652)
* convert to use of VSI*L FILE API (5558)
* don't write field width for integer fields in .mif, which is incompatible with MapInfo (3853)
* report OLCCreateField for .mif files (5477)
* fix opening .mif file without .mid file (5570)
* swap StdParallel1 and stdParallel2 if necessary on LCC projections (https://github.com/mapgears/mitab/issues/1)
* take into account scale/bounds to properly round coordinates (https://github.com/mapgears/mitab/issues/2)
* add MITAB_BOUNDS_FILE configuration option to specify a file with projection bounds (https://github.com/mapgears/mitab/issues/3)
* add BOUNDS layer creation option (5642)
* refactor import/export of MIF coordsys to use the TAB code; take into account MITAB_BOUNDS_FILE to add Bounds to the CoordSys string
* close polygon rings when reading Region from MIF file (5614)
* fix segfault in CreateFeature() if passing an invalid OGR feature style string (1209)

MSSQLSpatial driver:
* Implement SPATIAL_INDEX layer creation option for MSSQL (5563)
* Implement support for WKB geometry upload (5682)
* Fix schema handling in MSSQL driver (5401)
* Fix spatial geometry field handling (5474)
* Bind string fields to unicode string columns in the database (5239)
* Fix recognizing image columns as geometry columns for the select layers. (5498)
* Fix issue when creating non-spatial table (5696)
* Fix to read metadata if the tables are specified in the connection string (5796)
* Fix crash if the tablename is specified in the connection string (5826)
* Include geometry column name in Update statement (5930)
* Implement FID layer creation option (5816)
* Fix issue when removing an MSSQL spatial layer

MySQL:
* thread-safe initialization of mysql client library (5528)

NAS driver:
* implement wfs:update (adds new context 'update' and fields "endet" and "anlass" to "delete" layer).
* also assign xlink:href attributes as layer attribute (not only in "alkis_beziehungen" layer; 5372)
* fix filtering on OGR_GEOMETRY special field
* make chevrons configurable by NAS_INDICATOR

OCI driver:
* 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)
* Fix FID (multi_load=off, OGRNullFID) - start with 1 (not -1) (5454)
* use VARCHAR2 instead of VARCHAR for unsupported types
* Fix "ORA-00972: identifier is too long" error (5466)
* Fix memory leaks (5599)
* Fix creation of date and datetime fields (5600)
* initialize member variable to avoid UpdateLayerExtents() to be called randomly on non spatial tables (5376)
* avoid spatial index to be created each time SyncToDisk() is called
* fix memory leak in DeleteLayer(const char*)
* fix reading of 2D geometries that were always turned as 3D
* in layers returned by ExecuteSQL(), only expose geometry column if there's one
* force NLS_NUMERIC_CHARACTERS to ". " (5709)

ODBC driver:
* try alternate DSN template for 64bit ODBC
* make ODBC driver honour PGEO_DRIVER_TEMPLATE config. option (and also MDB_DRIVER_TEMPLATE in case PGEO_DRIVER_TEMPLATE isn't defined) (5594)

ODS driver:
* fix export of OFTDate fields that were exported as string

OpenAir driver:
* tweak detection logic to read beyond first 10KB bytes when needed (5975)

OpenFileGDB driver:
* add compatibility with .gdbtable files bigger than 4 GB (5615)
* support opening files with ConfigurationKeyword=MAX_FILE_SIZE_4GB or MAX_FILE_SIZE_256TB (5615)
* fix occasional write-after-end-of-buffer (5464)
* avoid error message when failing to import SRS from WKID code (might be an ESRI code for example)
* fix spatial filter with GeneralPolygon shapes (5591)
* fix for reading GDB with string fields with a default value length > 127 (5636)
* better handling of certain definitions of raster columns
* use LatestWKID when available (5638)
* increase accepted size for field description zone up to 10 MB (5660)
* fix ResetReading() on SQL layer with ORDER BY on indexed column (5669)
* add support for non spatial GDB v9 tables (5673)
* improve error reporting when file exists but cannot be opened due to permission problem (5838)
* report width of string fields (5806)
* try to deal more gracefully with inconsistent nValidRecordCount vs nTotalRecordCount values (5842)
* report 25D layer geometry type on FileGDB v9 tables when relevant
* optimize sequential reading of sparse layers
* avoid warning when opening a00000004.gdbtable
* disable feature count optimization with IS NOT NULL on an index column

OSM driver:
* add mechanism to compute fields from other fields/tags with SQL expressions. Apply it for z_order on lines layer
* fix random crash, particularly on MacOSX (5465)
* add CONFIG_FILE, USE_CUSTOM_INDEXING, COMPRESS_NODES, MAX_TMPFILE_SIZE and INTERLEAVED_READING open options

PG driver:
* use COPY mode by default (unless PG_USE_COPY is set to NO) when inserting features in a newly create table (5460)
* add UNLOGGED=YES/NO layer creation option to create unlogged tables (improved version of patch by Javier Santana, 4708)
* implement deferred loading of table list, to optimize ExecuteSQL() (5450)
* implement optimization for spatial table listing for PostGIS 2.x
* implement deferred creation of tables to capture all attribute and geometry column creations into a single CREATE TABLE statement (5547)
* change "No field definitions found" from fatal error to debug
* when creating a table and filling it, avoid re-reading the table definition from PG system tables (5495)
* better handling of SRS authority name different than EPSG (authority code must still be integral)
* fix crash when writing a StringList with 0 element (5655)
* emit errors instead of debug messages when postgres issues an error (5679)
* fix to make ExecuteSQL('CREATE DATABASE foo') work
* fix regression that prevented to retrieve more than 500 features from a connection with tables= parameter and on a SQL result layer (5837)
* PG/PGDump: fix truncation of fields to work with multi-byte UTF-8 characters (5854)

PGDump driver:
* switch to DROP_TABLE=IF_EXISTS by default (5627)
* fix crash when writing a StringList with 0 element (5655)

PGeo driver:
* try alternate DSN template for 64bit ODBC

REC driver:

Shapefile driver:
* add SPATIAL_INDEX layer creation option (5562)
* support .prj files with UTF-8 BOM
* 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)
* fix reading of shapefiles whose .shx is non conformant (5608)
* fix writing values up to 2^53 in OFTReal fields with 0 decimal places (5625)
* delete implicit FID field as soon as we CreateField a real one
* GetExtent(): don't trust extent in header if it contains Not-A-Number values (5702)
* make REPACK compact .shp if SetFeature() is called and changes one geometry size (5706)
* add check not to cut unicode character while cut the string lengnt for field max length during SetFeature
* avoid reading whole .shx at open time for /vsicurl/
* 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)
* Make ENCODING layer creation option proprietary over SHAPE_ENCODING config. option

SOSI driver:
* remove error noise (5710)

S57 driver:
* various compliance fixes in ISO8211 and S57 writer (5798)
* make it possible to set LNAM_REFS=OFF as advertized in the doc

SQLite/Spatialite driver:
* SQLite/Spatialite: add support for multiple geometry column tables, accordingly with RFC 41 (5494)
* SQLite SQL dialect: Add hstore_get_value(hstore, key) function
* remove 'T' suffix when formatting the content of a Date field (5672)
* optimize CreateFeature() when fields can be null or not null from one feature to another one
* Spatialite: improve insertion performance by disabling triggers and doing the job ourselves
* Fix segmentation fault when executing OGR2SQLITE_Register() when compiling against sqlite 3.8.7 (5725)
* make GetFIDColumn() work when run as first method call (5781)
* emit warning when reading text values in a integer/real field (possible since SQLite has no strong typing)
* support reading date/datetime from Julian day floating point representation
* SQLite dialect: fix insertion in geometry_columns of table names that are not in upper-case (6483)

SUA driver:
* tweak detection logic to read beyond first 10KB bytes when needed (5975)

SXF driver:
* Fix SXF file version check (5456)
* Fix wrong Miller Cylindrical projection string
* Fix encoding issues (5647)
* Fix extract z value to OGRGeometry
* Fix case sensitivity of RSC file

VFK driver:
* recode also header values
* process DKATUZE from header properly
* handle also duplicated records
* check attribute 'parametry_spojeni'
* speed-up GetFeatureCount()
* fix reading properties. Escape characters for SQL
* change SRS from EPSG 2065 to 5514
* fix reading SBP datablock (fix mismatch when reading from file and db)

VRT driver:
* do not propagate ignoring of x and y cols of a PointFromColumns to the source layer (5777)
* 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)
* handle optional <OpenOptions><OOI key='key'>value</OOI></OpenOptions> to specify open options
* do not enable passthrough filtering if redefining <FID> (6480)

Tiger driver:
* Fix potential buffer underflow when providing /vsistdin/ to Tiger driver (5567)

WAsP driver:
* added options and changed output precision to match WAsP Map Editor
* improve TestCapability(ODsCCreateLayer)

WFS driver:
* automatically enable paging if WFS 2.0 capabilities report paging support
* evaluate SELECT with JOIN on server-side for a Join-capable WFS 2.0 server
* 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)
* add INVERT_AXIS_ORDER_IF_LAT_LONG, CONSIDER_EPSG_AS_URN and EXPOSE_GML_ID open options
* add capability to use spatial functions ST_xxxxx() as server-side filters
* add dataset and layer metadata
* allow SELECT with several ORDER BY columns
* report name of geometry column
* Add COOKIE option (5824)
* when parsing a layer schema without geometry from the GML .xsd, do not expose a geometry field at the WFS layer level (5834)

XLSX driver:
* fix column numbering when there are more than 26 columns (5774)

XPlane driver:
* add support for Taxi Location 1300 record found in V1000

SWIG Language Bindings

All bindings:
* bind GDALGetBandDataset() as Band.GetDataset()
* add Feature.GetFieldAsBinary()

Java bindings:
* Pass eRWFlag to allow both reading or writing. Write was broken in DatasetRasterIO().
* updates to generate maven artifacts

Perl bindings:
* The breaking changes are described in more detail in swig/perl/Changes-in-the-API-in-2.0.
* More comprehensive use of strings as constants (such as capabilities); they are also taken from bindings, which added new ones, and not hard-coded.
* New classes (e.g., VSIF, GeoTransform, GeomFieldDefn) and new methods (e.g., constant lists, Dataset::SpatialReference).
* Much improved documentation and switch to Doxygen::Filter::Perl.
* New test codes.
* Errors are confessed with stack trace and often caught earlier with better messages.
* Use of attributes is deprecated and methods have been added to replace them.
* Multiple geometry fields have necessitated some changes in schema and field related methods.
* More support for named parameters (i.e., hashes as arguments).
* NoDataValue: set max float if undef is given.
* Unit: set '' if undef is given.
* Also other changes that will also remove some "use of uninitialized value in subroutine entry" warnings.
* Automatic handling of SQL result layers.
* Fix issue with index attribute for field meta data (schema) (5662)
* Warn if attempt to create non-integer column for colors.
* Remove prefix GCP from GCP swig made attributes.

Python bindings:
* add optional buf_xsize, buf_ysize and buf_type parameters to Dataset.ReadAsArray() and Dataset.LoadFile(), and use dataset RasterIO for better efficiency
* avoid generating Python exception when PyString_FromStringAndSize() fails and GDAL errors as Python exceptions are disabled
* Band.ReadRaster() and Dataset.ReadRaster(): clear the buffer in case there are holes in it due to odd spacings specified by the user
* Fix hang of Python in case of repeated call to gdal/ogr.UseExceptions() and CE_Warning emitted (5704)
* for Python 2, accept unicode string as argument of Feature.SetField(idx_or_name, value) (4608)
* for Python 2, accept Unicode strings to be passed as key and/or value of the dictionary passed to SetMetadata() (5833)
* fix processing error of ogr_python.i with SWIG 3 (5795)
* NUMPY driver: avoid returning CE_None in GetGeoTransform() when there's no geotransform set (5801)
* Make GetFieldAsBinary() work with OFTString fields
* For Python3 compat, make Feature.GetField() use GetFieldAsBinary() if GetFieldAsString() fails (5811)

GDAL/OGR 1.11.0 Release Notes

In a nutshell...

* New GDAL drivers:
- KRO: read/write support for KRO KOKOR Raw format
* New OGR drivers:
- CartoDB : read/write support
- GME (Google Map Engine) : read/write support
- GPKG (GeoPackage): read-write support (vector part of the spec.)
- OpenFileGDB: read-only support (no external dependency)
- SXF driver: read-only support
- WALK : read-only support
- WasP : read-write support
* Significantly improved drivers: GML, LIBKML
* RFC 40: enhanced RAT support (5129)
* RFC 41: multiple geometry fields support
* RFC 42: OGR Layer laundered field lookup
* RFC 43: add GDALMajorObject::GetMetadataDomainList() (5275)
* RFC 45: GDAL datasets and raster bands as virtual memory mapping
* Upgrade to EPSG 8.2 database

New installed files
* bin/ogrlineref
* lib/pkgconfig/gdal.pc
* gdalcompare.py
* data/gml_registry.xml
* data/inspire_cp_CadastralParcel.gfs
* data/inspire_cp_BasicPropertyUnit.gfs
* data/inspire_cp_CadastralBoundary.gfs
* data/inspire_cp_CadastralZoning.gfs
* data/ruian_vf_ob_v1.gfs
* data/ruian_vf_st_v1.gfs
* data/ogrvrt.xsd

Backward compatibility issues

GDAL/OGR 1.11.0 - General Changes

Build(Unix):
* add Unix configure support for SOSI
* remove pointers to old ver of ingres library files
* add --with-libjson-c configure option to build against external libjson-c (>= 0.11) (4676)
* compilation fixes for iOS (5197, 5198)
* update to autoconf 2.69
* add pkg-config gdal.pc (3470)
* configure for FileGDB: add explicit linking to libfgdbunixrtl (requires FileGDB SDK >= 1.2) (5215); also try .dylib extension (5221)
* fix so that Java installs are found on the MAC to enable the MDB driver (5267)
* fix compilation with recent MySQL versions (5.6 for example) (5284)
* support --with-jp2mrsid with standalone Kakadu with MRSID v8 or later
* Fix parallel build in Python bindings (5346)
* PCIDSK: don't link against libjpeg if configured --without-jpeg
* Update configure script to pick up ECW JP2 SDK 5.1 (5390)
* add a 'make install' target for the Java bindings (5424)
* add Vagrant configuration

Build(Windows):
* add option to generate VC project for x64 on makegdal_gen.bat
* nmake.opt: add WITH_PDB=1 option to optionally generate .pdb file on Release builds (5420)
* add support for building the OGR SOSI driver as a plugin (3638)
* add support for building the HDF4 driver as plugin (5294)
* add support for MrSID v9
* Remove makegdalXX.bat generated files

1.11.0

Not secure
Port:
* vsisubfile: fix Eof() behavior to be POSIX compliant, so that the shapefile reader can read the last feature when using /vsitar (5093)
* vsicache: fix for 32bit binaries when file size is over 2GB (5170)
* vsicache: add optional nChunkSize and nCacheSize parameters to VSICreateCachedFile()
* 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)
* vsitar: avoid infinite loop in case of invalid .tar structure
* vsizip: fix path separator in CPLFormFilename
* vsizip: allow additional extensions listed in CPL_VSIL_ZIP_ALLOWED_EXTENSIONS config option.
* vsizip: improve UTF-8 support of filenames inside ZIP file (5361)
* vsizip: fix ZIP64 support
* vsigzip: reset EOF flag when doing a Seek() to be POSIX compliant
* curl: add .netrc support
* Windows CPLGetSymbol(): avoid dialog boxes to pop up when a DLL or one of its dependencies does not exist (5211)
* Add CPLOPrintf() and CPLOvPrintf() functions for easy CPLString formatting
* CPLBase64DecodeInPlace() : fix to be robust to malformed base64 strings
* CPLQuadTree: add CPLQuadTreeInsertWithBounds() where the pfnGetBounds is not needed.
* CPLQuadTree: fix potential infinite recursion when inserting several points with identical coordinates in the mode with limited bucket size
* Protect concurrent calls to setlocale() by a mutex (5366)

Core:
* RFC 45: GDAL datasets and raster bands as virtual memory mapping
* GDALRasterBand::GetHistogram(): ignore nodata values (4750, 5289)
* allow auto loading of drivers to be disabled via config option
* PAM .aux.xml and VRT: serialize Z component of a GCP as 'Z' attribute,
for consistency, instead of GCPZ that could not be read back previously.
In reading code, try reading 'Z' and if not found try 'GCPZ' (5326)
* JPEG2000: Add GDALGeorefPamDataset and GDALJP2AbstractDataset classes and use
them in JP2KAK, JP2ECW, JP2OpenJPEG, JPEG2000 and MrSID drivers so that PAM
georeferencing consistently overrides internal georeferencing
* GDALDataset::IRasterIO(): don't use BlockBasedRasterIO() when INTERLEAVE=PIXEL if the request band count is just 1
* CopyWholeRaster(): make default GDAL_SWATH_SIZE to 1/4 of GDAL_CACHEMAX instead of hard-coded value of 10 MB
* don't report empty RAT on GDALGetDefaultRAT() (5232)
* modify GDALGCPsToGeotransform() to do the regression in normalized coordinates to make the math more stable.
* expose new GDALComposeGeoTransforms() function.
* GDALDefaultOverviews::HaveMaskFile(): avoid fetching .ovr file
* JPEG2000: Fix reading georeferencing from some JPEG2000 files with duplicated GeoTIFF JP2Box (5249)
* Cleanup raster block mutex (5296)
* Driver registration: move JPEG2000 (Jasper based) after MrSID JPEG2000 support

Algorithms:
* warper: fix regression with lanczos resampling when yradius > xradius (5058)
* warper: Make GDALCreateGenImgProjTransformer2() and GDALCreateGenImgProjTransformer3() fail when the creation of the reprojection transformer fails
* warper: Fix warping when input pixel size is too close to 0 (5190)
* warper: revise formula of cubic resampling kernel, and a few optimizations (5209)
* warper: added DST_METHOD and support for GCP and TPS dest
* warper: add support for DST_METHOD=RPC
* warper: fix mode and near resampling corner computation (5311)
* 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
* warper: fix cutline blending (5343)
* warper: Average/mode kernels: make them less sensitive to numerical precision issues (5350)
* warper: Average/mode kernels: avoid 'holes' when the source coordinates are in a reversed order from the target coordinates (5433)
* warper: provide prototypes and work around strict compiler requirements on some opencl platforms (5400)
* RPC: fix for computation of adfGTFromLL (5395)
* TPS: optimization for GCC x86_64 that make computation about twice faster with huge number of GCPs
* TPS: when using Armadillo to solve the coefficients, use solve(A,B) instead of inv(A)xB to faster resolution
* TPS: compute direct and inverse transformations in parallel when warping option NUM_THREADS or GDAL_NUM_THREADS config. options are set to > 1
* Geoloc: fix wrong bilinear interpolation in GDALGeoLocTransform() (5305)
* Geoloc: fail transformation of coordinates that is located on a nodata place of the geoloc array
* rasterize: preliminary support for MERGE_ALG=ADD for heatmaps
* gdal_grid: Add AVX optimized version of GDALGridInverseDistanceToAPower2NoSmoothingNoSearch
* fill_nodata: GDALFillNodata(): Fix use of uninitialized memory and integer overflows (4010, 5203)
* rpc: Fix out-of-bounds read in RPC dem cubic interpolation

Utilities:
* gdalinfo: add -listmdd and -mdd all options (5275)
* gdal_translate: add a -exponent option to be used with -scale
* gdal_translate: fix output file naming scheme in gdal_translate -sds (5119)
* gdal_translate: fix logic in detection non-gray color table level (5245)
* gdal_translate: add a -norat option
* 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)
* 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)
* gdaltindex: remove annoying warning 'Warning 1: Field location of width 255 truncated to 254' (5121)
* 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
* gdalwarp: Fix segfault where metadata values were not being nullchecked properly during conflict resolution (5069)
* gdalwarp: honor -s_srs when using cutline (5081)
* gdalwarp: copy nodata values from source to dest if -dstnodata is not given ; add option to not set dest nodata with -dstnodata None (5087)
* gdalwarp: do not return a non-zero exit status for warnings
* gdalwarp: prevent from copying statistics metadata (5319)
* gdal_rasterize: set the progress bar to 100% even when there's nothing to do
* gdal_grid: add support for different types of geometries (5341)
* gdal_grid: add -z_increase and -z_multiply options
* gdaldem: check that value of -z, -s, -az and -alt is numeric
* gdalbuildvrt: validate values of -srcnodata and -vrtnodata arguments
* gdal2tiles.py: Corrected OpenLayers code to reflect fix to geodetic resolution factor
* gdal2tiles.py: add --tmscompatible flag so as to produce 2 tiles at zoom level 0 in geodetic profile
* rgb2pct.py: Use python tempfile logic to avoid permissions issues with cwd (5079)
* gdal_edit.py: add a -ro option for drivers refusing to use the dataset in update-mode.
* gdal_calc.py: add --allBands options (5388)
* 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
* 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)
* gdalcompare.py: move to scripts
* gdalcompare.py: ensure image dimensions match
* gdal_ls.py: Fix issue with UTF-8 characters

Multi driver changes:
* JPEG2000 drivers: take into account PixelIsPoint in GeoJP2 boxes, and expose AREA_OR_POINT=Point (5437)
* JP2KAK, JP2ECW, JP2OpenJPEG, JPEG2000 CreateCopy(): take into account AREA_OR_POINT=Point if present to write GeoJP2 box (5437)

AAIGRID:
* revert DECIMAL_PRECISION and add SIGNIFICANT_DIGITS to CreateCopy() (3732)

AIGRID:
* Turn off errors that can be triggered if the info has no VAT table related with this coverage (3031)

BAG driver:
* Recognise falseNorthing=10000000 as UTM South (5152)

DIMAP driver:
* fix memleak in error-code path

DTED driver:
* Speed optimization to be more friendly with CPU cache in GDAL_DTED_SINGLE_BLOCK=YES mode

ECW driver:
* fix crash in GDALDeregister_ECW() with ECW SDK 5 called from GDALDestroy() (5214)
* fix issue with ECW_CLEVER optimization when nPixelSpace != sizeof eBufDataType (5262)

Envisat driver:
* implement more reliable way of extracting GCPs from Meris tie-points (5423)
* add DEM corrections of TP-ADS products when present (5423)
* workaround dateline discontinuity in GCPs so they can be used with GDAL warping transformers (5423)

ERS driver:
* fix wrong interpretation of RegistrationCellX/RegistrationCellY (2612, 3056, 5075)

GeoRaster driver:
* fix RPC support (4038)
* fix read error when reading from pyramids (5076)
* make regular table and secure file a default for RDT (5127)
* fix error when reading NBIT pyramid levels (5199)
* show the VAT as RAT (5200)
* fix reading and writing of statistics metadata (5237)
* add generate pyramid create options (5288)
* fix incorrect geotransform interpretation when there is no SRS (5323)

GRASS driver:
* fix compilation issues for GRASS 7

GRIB driver:
* display temperature unit as deg Celsius in metadata (3606)

GTiff driver:
* when compiling against internal libtiff, in read-only mode, optimization to
avoid fetching the whole Strip/TileCounts and Strip/TileOffsets arrays
* add validation of source overview characteristics with COPY_SRC_OVERVIEWS (5059)
* convert invalid TIFFTAG_RESOLUTIONUNIT=0 to 1(Unknown) (5069)
* fix potential issues in gt_citation.cpp / CheckUTM()
* upgrade internal libtiff to latest CVS
* implement reading and writing of ICC profiles (5246)
* make SetColorInterpretation() round-trip with GetColorInterpretation();
read color interpretation from PAM if it exists (overrides internal tiff color interpretation);
set TIFFTAG_PHOTOMETRIC=PHOTOMETRIC_RGB if calling SetColorInterpretation() with R,G,B and no explicit PHOTOMETRIC creation option defined
* 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
* implement GetVirtualMemAuto() for some formulations of TIFF files (RFC 45)
* fix reading a single-strip TIFF file where the single strip is bigger than 2GB (32bit builds only) (5403)
* look for .tab file before .wld/.tfw

GTX driver:
* Add nodata support (4660)

HDF4 driver:
* Skip "SceneLineNumber" table if present in the list of geolocation fields of
ASTER L1A dataset.

HDF5 driver:
* add support for ODIM H5 georeferencing method (5032)
* set SRS GEOGCS in all cases (reverts r25801 and closes 4160)
* support HDF5 NATIVE_SCHAR type, subdatsets without PAM (5088)
* release all opened handles so the file is closed at dataset closing (5103)
* better deal with dimensions of CSK-L1A HDF5 subdatasets (4227)
* avoid segmentation fault when H5Sget_simple_extent_ndims() returns negative value (5291)

HFA driver:
* add minimally tested support for u2 and u4 data in basedata
* use direct binning for thematic layers and real instead of integer for values (5066)
* add a HFA_COMPRESS_OVR config option to select whether to create compressed overviews (4866)
* fix rewriting of statistics in existing HFA file where base data value is 8-bit (5175)
* implement re-writing existing histogram in HFA file, after raster editing (5176)
* avoid segfaults when creating a Imagine dataset with an invalid WKT (5258)
* expose color columns in RAT as Integer with values in range [0-255] instead of Real with values [0-1] (5362)
* report histogram column as GFU_PixelCount instead of GFU_Generic (5359)
* ensure histogram column written as float for HFA when using RAT API (5382)

Idrisi driver:
* Improve coordinate system handling and min/max statistics (4980)

IRIS driver:
* add height information on bands; rename dataset metadata item CAPPI_HEIGHT --> CAPPI_BOTTOM_HEIGHT (5104)
* IRIS: add support for two bytes data (5431)

JP2ECW driver:
* fix problem with JP2 write with SDK v5
* fix issue with ECW_CLEVER optimization when nPixelSpace != sizeof eBufDataType (5262)
* avoid writing dummy GeoJP2 box when source dataset has no georeferencing (5306)

JP2KAK driver:
* preliminary support for Kakadu V7.x
* fix creation of unsigned int16 with reversible compression (4050)
* on Windows, use VSI cache for I/O by default, instead Kakadu own I/O layer
* remove extension from 12bit to 16bit (5328)

JP2OpenJPEG driver:
* avoid 'Empty SOT marker detected: Psot=12.' warning to be repeated several times
* add support for encoding GCPs in a GeoJP2 box (5279)
* avoid writing dummy GeoJP2 box when source dataset has no georeferencing (5306)

JPEG driver:
* add autodetection of bitmasks that are msb ordered (5102)
* avoid memory leak when GDALOpen'ing() a JPEG through a http:// URL, and make it possible to access its overviews
* return YCbCrK raw data for YCbCrK JPEG in GDAL_JPEG_TO_RGB = NO mode (instead of CMYK as before) (5097)
* implement reading and writing of ICC profiles (5246)
* internal libjpeg: apply patch for CVE-2013-6629
* allow fallback to PAM to read GCPs
* give priority to PAM GeoTransform if it exists and other source of geotransform (.wld, .tab) also exists (5352)

KMLSuperOverlay driver:
* recognize an alternate structure for raster KMZ file made of a single doc.kml
and tiles whose name pattern is kml_image_L{level}_{j}_{i}.{png|jpg}
* fix horrible speed performance in Open() (5094)
* fix crash at dataset closing and inability to read some big PNG tiles (5154)
* fix to generate files validating against OGC KML 2.2 schema
* put Style into conformity with ATC 7
* remove Region in root KML (ATC 41)
* add NAME and DESCRIPTION creation options; read them back as metadata
* add ALTITUDE and ALTITUDEMODE creation options
* directly write into .kmz file (instead of in temporary location)
* correctly write directories entry in .kmz file
* add progress callback

L1B driver:
* report correct values for GCP (2403)
* report more GCPS than before
* implement geolocation array
* add fetching of record metadata in .csv file
* add subdatasets with solar zenith angles, cloud coverage
* recognize NOAA-9/14 datasets whose dataset name in TBM header is encoded in EBCDIC and not in ASCII (2848)
* support opening a few NOAA <= 9 datasets that have no dataset name in the TBM header

LCP driver:
* better handling of projections (3255)
* add CreateCopy() (5172)

MBTiles driver:
* add write support
* avoid failure when there's no tile at the center of the maximum zoom level (5278)
* add capability to open /vsicurl/https:// signed AWS S3 URLs

MEM driver:
* Create(): use calloc() instead of malloc()+memset() for faster creation of huge in-memory datasets

NetCDF driver:
* fix to read netcdf-4 files with UBYTE data (5053)
* fix reading large netcdf-4 files with chunking and DEFLATE compression
* fix netcdf chunking when creating file with > 2 dims ; add CHUNKING creation option (5082 )
* fix duplicate nodata metadata when using CreateCopy() (5084)
* fix copying large metadata in netcdf driver (5113)
* fix netcdf geotransform detection (5114)
* fix netcdf driver irregular grids management (5118 and 4513)
* only call nc_close on a valid netcdf id when closing dataset
* try and identify .grd (and .nc3) files in netcdf-4 format (5291), so they are identified before the hdf5 driver

NITF driver:
* fix to support reading horizontal and/or vertical mono-block uncompressed images, even when the number of columns is <= 8192 (3263)
* update NITF Series list with new entries from MIL-STD-2411_1_CHG-3.pdf (5353)
* allow JP2KAK to be used as the JPEG2000 compression engine in the CreateCopy() case (5386)

PDF driver:
* Avoid reporting a Poppler error as a GDAL error on some newer USGS GeoPDF files (5201)
* PDF writing: automatically adjust DPI in case the page dimension exceeds the 14400 maximum value (in user units) allowed by Acrobat (5412)

PDS driver:
* Parse correctly MISSING_CONSTANT = 16FF7FFFFB 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)

PNG driver:
* Implement reading and writing of ICC profiles (5246)

PostgisRaster driver:
* Speed-up dataset opening (5046).
* Multi-tile multi-band caching added.
* Smarter use of the information advertized in raster_columns view.
* Avoid full table scan in situations without PKID/GIST indices.
* Use of quadtree.

Rasdaman driver:
* caching of tiles for datasets with more than one band (5298)
* connections are now kept for a whole session (5298)
* fixing connection-string regex (5298)
* fixing possible memory leaks (5298)

Rasterlite driver:
* fix resolution check typo in rasterlite driver

Raw drivers:
* implement GetVirtualMemAuto() (RFC 45)
* 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
* 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)
* fix optimized RasterIO() when doing sub-sampling with non standard buffer pixel offset (5438)

RMF driver:
* fix decompression of 24-bit RMF DEM (5268)

RPFTOC driver:
* fix potential crash on some datasets when selecting the color palette (5345)

SAGA driver:
* add read/write support for .prj files (5316)

SRP driver:
* read TRANSH01.THF file to establish subdatasets (5297)

VRT driver:
* Implement non-linear scaling with a power function (addition of Exponent, SrcMin, SrcMax, DstMin, DstMax sub-elements in <ComplexSource>)
* Preserve 64bit integer image offsets (5086)
* Make sure that VRTSourcedRasterBand::AddMaskBandSource() takes into account specified window (5120)
* Make GDALAutoCreateWarpedVRT() return NULL when GDALSuggestedWarpOutput() fails
* VRTDataset::IRasterIO(): use source DatasetRasterIO even if band count is 1
* VRTWarped: avoid setting up relative paths for things that aren't file-like
* make relativeToVRT=1 work with NITF_IM:, NETCDF:, HDF5:, RASTERLITE:

WCS driver:
* ensure C locale is enforced before parsing floating point values

WMS driver:
* accept 'WMS:http://server/?SRS=EPSG:XXXX' syntax to select the preferred SRS in which to fetch layers
* CPLHTTPFetchMulti(): avoid doing a timeout-only select when there are no file descriptor to wait on (can happen when doing a file:// URL)
* allow cache location to be specified with GDAL_DEFAULT_WMS_CACHE_PATH configuration option if not provided in the XML (4540)
* Update to be able to understand slight changes in formatting of JSon output of ArcGIS mapserver protocol

XYZ driver:
* accept datasets that have missing values at beginning and/or end of lines, such as MNT250_L93_FRANCE.XYZ
* fix detection when there are only integral values with comma field separator
* reopen with 'rb' flags for Windows happyness

OGR 1.11.0 - Overview of Changes

Core:
* GEOS support: require GEOS >= 3.1.0 and use the _r API of GEOS to avoid issues with the global GEOS error handlers
* exportToWkb(): ISO WKB generation with wkbVariant option (5330)
* geocoding: when getting several answers from server for a query, report geometries on second, third, etc.. feature, and not only first one (5057)
* allow auto loading of drivers to be disabled via config option
* remove obsolete OGRGeometryFactory::getGEOSGeometryFactory()
* OGRGeometryFactory::organizePolygons() in DEFAULT method: fix a case with 2 outer rings that are touching by the first point of the smallest one
* OGRGeometryFactory::organizePolygons(): optimization in ONLY_CCW case
* OGRGeometryFactory::organizePolygons(): Add an experimental mode : CCW_INNER_JUST_AFTER_CW_OUTER
* OGRLineString::segmentize() : do not set 0 as z for interpolated points, but the z from the previous point
* OGRLineString::setNumPoints(): add an optional argument to avoid zeroing the arrays
* Add OGRLineString::setZ()
* Add OGRLineString::Project() and OGRLineString::getSubline()
* OGRPolygon: add stealExteriorRing() and stealInteriorRing(int iRing)
* OGRLinearRing::isClockwise(): optimizations and make it work in a degenerated case when a vertex is used several times in the vertex list (5342)
* OGRLinearRing::isPointOnRingBoundary() : optimizations and take into account bTestEnvelope
* Add OGR_G_SetPointCount and OGR_G_SetPoints functions to API C (5357)
* OGREnvelope3D::Contains(): fix incorrect test
* Layer algebra: fix handling of method field mapping to output fields when output fields are precreated (5089)
* Layer algebra: when an error condition is skipped, call CPLErrorReset() (5269)
* OGRLayer::GetFeature(): make sure that the behavior is not influenced by
attribute or spatial filters in the generic implementation;
upgrade OGDI, PG, MySQL, MSSQLSpatial, OCI, SDE, PGeo, ODBC, WALK, IDB, SQLite and Ingres driver (5309)
* introduce OGRLayer::FindFieldIndex() / OGR_L_FindFieldIndex() to lookup potentially laundered field names (RFC 42)
* OGR SQL: upgrade to support RFC 41 (multiple geometry fields)
* OGR SQL: more stricter checks
* OGR SQL: make parsing error report a useful hint where the syntax error occurred
* OGR SQL: fix thread-safety of swq_op_registrar::GetOperator() (5196)
* OGR SQL: support not explicitly specifying AS keyword for aliasing a column spec
* OGR SQL: don't call CONCAT(a_column ...) or SUBSTR(a_column ...) as a_column
* OGR SQL: validate that arguments of MAX, MIN, AVG, SUM, COUNT are columns and not any expression since this is not supported
* OGR SQL: make AVG field definition a OFTReal
* OGR SQL: implement MIN(), MAX() and AVG() on a date (5333)
* OGR SQL: fix SELECT * on a layer with a field that has a dot character (5379)
* SQL SQLITE dialect: Make it available to all OGR drivers that have a specialized ExecuteSQL() implementation

OGRSpatialReference:
* Upgrade to EPSG 8.2 database
* identify LCC_2SP instead of LCC_1SP if lat_0==lat_1 and lat_2 is present (5191)
* add a variety of linear units to proj4 parsing (5370)
* Fix crash in CleanupESRIDatumMappingTable() if it is called twice (5090)
* fix order of AXIS and UNIT nodes in a VERT_CS node (5105)
* ecw_cs.wkt: add missing TOWGS84[-168,-60,320,0,0,0,0] to NTF datum (5145)
* fix OGRSpatialReference::importFromProj4() to work with non-C locale (5147)
* morph central_latitude to latitude_of_origin in morphFromESRI() (3191)
* OGRProj4CT: avoid using proj when the 2 projections are actually identical (5188)
* add sanity checks in OGR_SRSNode::importFromWkt() (5193)
* 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
* OGRSpatialReference::Validate() : in addition to hand-validation, use WKT grammar from OGC 01-009 CT
* preserve authority when importing +init=auth_name:auth_code (e.g. +init=IGNF:LAMB93)

Utilities:
* ogrlineref: new utility to deal with linear geometries.
* ogrinfo: upgrade to support RFC 41 (multiple geometry fields)
* ogr2ogr: upgrade to support RFC 41 (multiple geometry fields)
* ogr2ogr: bump default value for -gt from 200 to 20000 (5391)
* 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
* ogr2ogr: Check that -t_srs is also specified when -s_srs is specified
* ogr2ogr: add an explicit error message to report FID of feature that couldn't be inserted when CreateFeature() fails
* ogr2ogr: make relaxed lookup optional and add a switch -relaxedFieldNameMatch to allow it (RFC 42)
* ogr2ogr: make sure that the progress bar reaches 100% when converting OSM
* ogr2ogr: make sure that target dataset is properly closed when a CreateFeature() fails (so that truncated shapefiles have their header file properly updated)
* ogr_dispatch.py: Sample Python script to dispatch features into layers according to the value of some fields or the geometry type
* ogrinfo.py: sync with ogrinfo (RFC 41)
* ogr2ogr.py: port -nlt PROMOTE_TO_MULTI option from ogr2ogr.cpp (5139)

CSV driver:
* avoid erroneously reset of file content when opening in update mode a file without header (5161)
* upgrade to support RFC 41 in read/write (multiple geometry fields)
* allow backslash doublequote to load (5318)

DGN driver:
* DGN writing: added polygon inner ring (holes) writing and MSLink writing (5381)

DXF driver:
* fix writing of 25D linestring where z is not constant (5210)
* fix writing of POLYLINE objects (5217, 5210)
* accept reading files starting with a TABLES section (5307)
* support reading 3DFACE and SOLID (5380) entities
* fix an error when processing clockwise circle arc (5182)
* avoid building an invalid polygon when edges cannot be reassembled: turn it into a multilinestring
* use CPLAtof() instead of atof() to avoid issues with locales
* fix linear approximation of circular and elliptic arc in HATCH boundaries (5182)

DWG driver:
* add support for reading AcDb3dPolyline (5260)
* fix linear approximation of circular and elliptic arc in HATCH boundaries (5182)

FileGDB driver:
* 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).
* when writing <Length> of an attribute, use size in bytes (5192)
* implement ref counting of the FileGDB SDK API' Geodatabase* object to avoid issues on Linux 64bit with interleaved opening and closing of databases (4270)
* honour update flag to determine which operations are allowed or not
* add a driver global mutex to protect all calls as the FileGDB API SDK is not thread-safe at all
* add a COLUMN_TYPES layer creation option to override default column types; support reading/writing XML column types
* optimize GetFeatureCount() and GetExtent() when there are filters set
* set the default width for string fields to 65536.
The width can be configured with the FGDB_STRING_WIDTH configuration option
* fix creation and writing of Binary fields; enable reading
* add a CREATE_MULTIPATCH creation option

FME driver:
* fix Linux compilation

GeoJSON driver:
* recognize alternate formats such as the ones of https://code.google.com/p/election-maps/
* add read support for TopoJSON
* upgrade internal libjson-c to json-c 0.11 (4676)
* report integer values that are int64 as strings
* add 3d support to esri geojson reader (5219)
* be less strict on looking for esri field type tag (5219)
* fix sometimes incorrect result (significant digit lost...) when using -lco COORDINATE_PRECISION=0
* fix handling of huge coordinates when writing (5377)

GeoRSS driver:
* advertise OLCCreateField capability

GFT driver:
* switch http to https for the oauth2 link to improve security

GML driver:
* add support for multiple geometry columns (RFC 41)
* add support for reading Finnish National Land Survey Topographic data (MTK GML)
* add support for support Finnish NLS cadastral data and Inspire cadastral data.
* add support for Czech RUIAN VFR format
* add data/gml_registry.xml file to associate feature types with schemas.
* extend .gfs syntax to be able to fetch OGR fields from XML attributes.
* extend .gfs syntax to support multiple geometry columns, and define a geometry property name
* autodiscover all XML attributes as OGR fields when creating .gfs file if GML_ATTRIBUTES_TO_OGR_FIELDS is set to YES (5418)
* allow the <ElementPath> in .gfs to have several components that give the full XML path
* fix writing of .xsd file to avoid fid/gml_id being written as regular fields (5142)
* fix writing of global srsName attribute on the global boundedBy.Envelope when all layers have same SRS (5143)
* support for writing .gml/.xsd with fields of type StringList, RealList, IntegerList and support for parsing such .xsd files
* when writing .xsd for a datasource that has fields of type StringList, RealList or IntegerList, advertise SF-1 profile in the .XSD schema
* recognize xsd:boolean in XSD parsing and map it to String (5384)
* add STRIP_PREFIX and WRITE_FEATURE_BOUNDED_BY dataset creation option to help minimizing the size of GML files
* don't write top <gml:boundedBy> in GML files with multiple layers of different SRS
* fix segfault when reading a GML file with huge coordinates (5148)
* avoid opening our own .xsd files as valid datasources (5149)
* make driver thread-safe with Xerces
* open successfully GML datasources with 0 layers (249, 5205)
* fix tweaking of DescribeFeatureType requests
* support reading WFS 2.0 GetFeature documents with wfs:FeatureCollection as a wfs:member of the top wfs:FeatureCollection
* fix for crash on certain xlink:href with GML_SKIP_RESOLVE_ELEMS=NONE (5417)
* GML geometry: fix duplicated points in GML_FACE_HOLE_NEGATIVE=YES mode (TopoSurface) (5230)
* GML geometry: accept CompositeSurface as a child of surfaceMembers (5369)
* GML geometry: join multilinestrings to linestrings in rings
* GML geometry: correctly deal with MultiSurface of Surface of PolygonPatch where a PolygonPatch has only interior ring(s) and no exterior ring (5421)
* GML geometry: accept formulations of 'MULTIPOINT EMPTY, MULTILINESTRING EMPTY, MULTIPOLYGON EMPTY and GEOMETRYCOLLECTION EMPTY that are valid GML 3 (and accepted by PostGIS)
* GML geometry: make use of cs, ts and decimal attributes of (deprecated) gml:coordinates element
* GML geometry: accept XML header and comments

GPX driver:
* advertise OLCCreateField capability

ILI driver:
* add support for multiple geometry columns (RFC 41)
* use IlisMeta model reader/writer instead of IOM
* add layers for surface and area geometries

KML driver:
* output KML that validates the ogckml22.xsd schema by placing <Schema> elements under the <Document> level (5068)
* in writing mode, avoid defining an extending schema for the name and description fields (related to 5208)

LIBKML driver:
* various checks, fixes and improvements related to OGC KML 2.2 Abstract Test Suite
* add support for reading <gx:Track> as a LINESTRING (5095)
* add support for writing and reading <snippet>
* add support for writing atom:author, atom:link, phonenumber, Region,
ScreenOverlay, 3D model, StyleMap
* add support for reading and generating Camera object
* add layer creation options to generate a LookAt element at layer level
* if UPDATE_TARGETHREF dataset creation option is defined, a NetworkLinkControl/Update document will be created
* add dataset creation options to generate a NetworkLinkControl element
* add dataset and layer creation options LISTSTYLE_ICON_HREF and LISTSTYLE_TYPE
* add support for writing a NetworkLink
* add support for creating PhotoOverlay objects
* add support for creating BalloonStyle elements
* offer LIBKML_USE_SIMPLEFIELD configuration option can be set to NO to use Data element instead of SimpleField
* add layer creation option FOLDER to optionally write layers as Folder instead of Document
* add dataset and layer creation options NAME, VISIBILITY, OPEN, SNIPPET and DESCRIPTION
* workaround bugs in pretty serializers
* when writing a .kmz file, put layers .kml docs into a layers/ subdirectory
* fix mem leaks, and use after free in kml2FeatureDef() (5240)
* create document with default namespace set to http://www.opengis.net/kml/2.2
* when writing, consider empty strings as unset (useful when converting from CSV)
* don't write empty <Style /> element if OGR_STYLE is empty string
* transform multigeometry with one single component into single geometry
* create libkml/ subdirectory entry in .kmz

MITAB driver:
* support reading MIF file with no associated MID file (when MIF file advertises 'Columns 0') (5141)

MSSQLSpatial driver:
* Fix MSSQL to be aware of removed tables (5071)
* Eliminate the per table server access when identifying the spatial reference (5072)
* Improve detection of geometry column with MSSQL select layer (4318)
* Fix for an issue with multicolumn primary keys (5155)
* Add support for handling non spatial data tables (5155)
* Fix creation of spatial_ref_sys and geometry_columns tables (5339)

MySQL:
* robustness for huge coordinates in spatial filter

NAS driver:
* also accept XML files that have NAS-Operationen_optional.xsd in header
* make driver thread-safe with Xerces
* warn when geometry cannot be saved

OCI driver:
* fix make plugin option

ODBC driver:

OSM driver:
* support relations with more than 2000 members in a OSM XML file (5055)
* make the driver work with PBF files produced by osmconvert.
* osmconf.ini: report the waterway attribute for the lines layer (5056)
* add an option in osmconf.ini to enable creating a 'all_tags' field, combining both fields specifically identified, and other tags
* always use quoting of key/values in other_tags field (5096)
* use alternative implementation of FindNode() that is a bit more efficient when process is CPU-bound
* fix issue with attribute filtering
* avoid GetNextFeature() to be blocked in certain conditions in non-interleaved mode (5404)

PG driver:
* upgrade to support RFC 41 in read/write (multiple geometry fields)
* use ST_Estimated_Extent() on table layers if GetExtent() is called with force = 0 (5427)
* add a OGR_TRUNCATE configuration option (5091)
* let postgres name the constraints to avoid long name truncation resulting in conflicts (5125)
* map PG 'numeric' to OFTReal instead of OFTInteger
* retrieve SRID from geometry value, if not found in geometry_columns (5131)
* fix ResolveSRID() when the current user has no select rights on geometry_columns table (5131)
* fix retrieval of SRID on a table without SRID constraint, and when the datasource is opened with ' tables=fake' (5131)
* robustness for huge coordinates in spatial filter
* fix delete layer bug on PG 2.0 (5349)
* fix to be able to detect version of EntrepriseDB (5375)
* Fix UTF-8 encoded string length

PGDump driver:
* upgrade to support RFC 41 (multiple geometry fields)
* fix error when inserting a string that has backslash in it with PostgreSQL >= 9.1 (5160)

REC driver:
* fix runtime compatibility for Windows

Shapefile driver:
* fix buffer overflow when creating a field of type Integer with a big width (5135)
* delete temporary .cpg file earlier in REPACK
* fix leak of file descriptor in error code paths
* speed optimizations when reading geometries from .shp (5272)
* add a 2GB_LIMIT=YES layer creation option (and SHAPE_2GB_LIMIT configuration option)
* .sbn support: increase allowed max depth from 15 to 24 (5383)

SOSI driver:
* fix memory leaks, and crashes
* advertise OLCCreateField capability

S57 driver:
* make the driver thread-safe
* remove use of MAX_CLASSES in favor of dynamic sizing (5227)
* fix GetFeature() on DSID layer

SQLite/Spatialite driver:
* Make SQLite SQL dialect compatible with multiple geometry fields (note: however, multiple geom fields is not yet supported by OGR SQLite table layers)
* implement SetAttributeFilter() on SQL result layers, to directly inject it as a WHERE clause when possible
* add the OGR_SQLITE_PRAGMA configuration option
* Spatialite: correctly set proj4text field of spatial_ref_sys when inserting a new SRS in the spatial_ref_sys table (5174)
* Spatialite: fix insertion in spatial_ref_sys to avoid issues with non-numeric authority codes (auth_srid)
* Spatialite: make creation of database much faster with spatialite 4.1 by using InitSpatialMetaData(1) (5270)
* Spatialite: use thread-safe initialization for spatialite >= 4.1.2
* avoid Spatialite views to emit (hidden) errors that cause troubles to MapServer OGR input driver (5060)
* attempt to make VirtualOGR (and thus sqlite dialect) work even with a libsqlite3 compiled with SQLITE_OMIT_LOAD_EXTENSION (on Unix only)
* add warning when calling CreateField() with a field name that is 'ROWID' since it can cause corrupted spatial index
* serialize StringList as non-truncated strings
* detection of DateTime/Date/Time column type on the result of a max() / min() function
* ensure fields of type DateTime/Date/Time are properly recognized if the table is empty (5426)

VFK driver:
* fix memory leak
* change VFK header check (first line starts with '&H')
* implement OGR_VFK_DB_DELETE configuration option
* read all data blocks by default
* fix GetFeatureCount()
* don't use existing internal db when it's older then original vfk file

VRT driver:
* add support for multiple geometry columns in OGRVRTLayer, OGRVRTUnionLayer and OGRVRTWarpedLayer (RFC 41)
* add validation of OGR VRT document against the schema (if libXML2 available);
can be disabled by setting GDAL_XML_VALIDATION configuration option to NO
* make relativeToVRT=1 work with CSV:filename or GPSBABEL:driver:filename (5419)

WFS driver:
* WFS 2.0: be a good citizen and send TYPENAMES (with a S) for GetFeature request (but still TYPENAME for DescribeFeatureType)
* accept TYPENAME(S) in URL with characters escaped by '%' (5354)

XLS driver:
* don't use sheetId attribute from workbook.xml to link a sheet name to its filename. The first sheet is sheet1.xml, etc...

XPlane driver:
* accept V1000 APT files

SWIG Language Bindings

All bindings:
* include constraints.i in gdal.i so that NONNULL constraints are really applied
* add Feature.SetFieldBinaryFromHexString()
* add SpatialReference.EPSGTreatsAsNorthingEasting (5385)
* map OGR_L_GetStyleTable(), OGR_L_SetStyleTable(), OGR_DS_GetStyleTable(), OGR_DS_SetStyleTable()
* Add OGR_STBL_AddStyle() and map all OGR_STBL_ C methods to SWIG

CSharp bindings:
* Fix handling UTF8 strings in GDAL C (4971)
* Add C typemaps for RFC-39 functions (5264)
* Fix typo in OGRLayerAlg.cs (5264)
* Add missing typemaps for C (5265)

Java bindings:
* run 'make ANDROID=yes' in swig/java to generate SWIG bindings that compile for Android (5107)
* fix linking issue that is encountered in non libtool builds with g++ 4.6
* add multireadtest utility
* respect JAVA_HOME set via configure

Perl bindings:
* ColorTable method of ColorTable class was documented but ColorEntries was
implemented. Implemented but deprecated ColorEntries.

Python bindings:
* fix ref-counting of callable passed to gdal.PushErrorHandler() that could cause segfaults (5186)
* make gdal_array.NumericTypeCodeToGDALTypeCode accept numpy dtype arguments (5223)
* add default xoff,yoff,xsize,ysize values to ReadRaster calls
* make ogr.CreateGeometryFromWkt() and SpatialReference.ImportFromWkt() properly validate their argument (5302)

GDAL/OGR 1.10.0 Release Notes (r23656 to r25905)

In a nutshell...

* New GDAL drivers:
- ARG: read/write support for ARG datasets (4591)
- CTable2: read/write support for CTable2 datum grid shift format
- DDS: write-only support for DirectDraw Surface format (5017)
- IRIS: read support for products generated by the IRIS weather radar software (4854)
- MAP: read OziExplorer .map files (3380)
- MBTiles: read-only support for MBTiles rasters (needs libsqlite3)
* New OGR drivers:
- ElasticSearch: write-only support to write into ElasticSearch databases (needs libcurl)
- ODS : read/write support for OpenOffice .ods (Open Document Spreadsheets) (needs libexpat)
- OSM : read-only support for .osm / .pbf OpenStreetMap files
- PDF: read/write support for vector/structured PDF files
- XLSX: read/write support for MS Excel 2007 and later Open Office XML .xlsx spreadsheets (needs libexpat)
* RFC 39: OGR Layer algebra methods : http://trac.osgeo.org/gdal/wiki/rfc39_ogr_layer_algebra
* Add a SQL SQLite dialect : http://gdal.org/ogr/ogr_sql_sqlite.html
* Make GDAL loadable as a SQLite3 extension (named VirtualOGR) (4782)
* /vsicurl_streaming/: new virtual file system handler designed to read in streaming mode dynamically generated files
* GDAL API_PROXY mechanism to run GDAL drivers in a separate process: http://gdal.org/gdal_api_proxy.html
* Significantly improved drivers : PDF, SQLite, JP2OpenJPEG
* Add a geocoding client : http://gdal.org/ogr/ogr__geocoding_8h.html
* Upgrade to EPSG 8.0 database

New installed files

* data/ozi_datum.csv
* data/ozi_ellips.csv
* data/osmconf.ini
* include/cpl_progress.h
* include/cpl_spawn.h
* bin/gdalserver[.exe]

Backward compatibility issues

Due to the 2-digit number '10' in GDAL 1.10, the GDAL_VERSION_NUM macro has been changed.
The new advised way of testing the GDAL version number (for GDAL 1.10 or later) at compilation time is :

ifdef GDAL_COMPUTE_VERSION /* only available in GDAL 1.10 or later */
if GDAL_VERSION_NUM >= GDAL_COMPUTE_VERSION(1,10,0)
///
endif
endif

Testing of previous versions is of course unchanged.

GDAL/OGR 1.10.0 - General Changes

Build(Unix):
* New optional dependencies : libpcre (for regular expressions support in SQLite), libxml2 (validation of GML files)
* --with-python: make it work with python3, and also accept path to python binary as argument of --with-python (4725)
* Use nc-config to detect netcdf compilation and linking parameters (4424)
* Add frmts/vrt to CONFIG_CFLAGS for development version of gdal-config (needed for postgis 2.0 compilation)
* Fix compilation failure with iconv on FreeBSD (4525)
* Make FileGDBAPI detection work with FileGDBAPI v1.1 and v1.2 (4570)
* Fix build on Gentoo with its custom zlib 1.2.6 with the OF macro removed
* Mark man target as phony (4629)
* Add guess for the directory where to find openjdk on Ubuntu 12.04 (4643)
* Look for geotiff headers in /usr/include/libgeotiff too (4706)
* For install target, create gdalplugins subdirectory in $(DESTDIR)$(INST_LIB)/ (Unix, except MacOSX)
* Better detection of OpenCL headers and library (4665)
* Changed libdap test to use dap-config to detect version when possible

Build(Windows):
* (Preliminary) support to build INGRES
* Make CPLGetErrorHandlerUserData() exported
* Make OGDI include path overridable (to match OSGeo4W's default location)
* Build and install plugins

1.10.0

Not secure
Port:
* CPL Thread API: add condition API, modeled on POSIX pthread_cond_ API
* Add CPLGetNumCPUs()
* Deserialize various forms of textual representation for positive/negative infinity
* Add routine to validate a XML file against its XSD schema (needs libxml2); 'optimize' it for GML files
* CPLRecodeStub(): for Windows, provide an implementation of UTF8 <--> CPxxx conversions using Windows API
* Make VSIFileManager::Get() thread-safe
* Fix thread-safety of CPLOpenShared() (4848)
* Add CPLZLibDeflate() and CPLZLibInflate()
* Add API for OAuth2 authentication protocol.
* Curl: allows setting the CURLOPT_PROXYAUTH setting through GDAL_PROXY_AUTH=BASIC/NTLM/DIGEST/ANY,
allow setting CURLOPT_HTTPAUTH through GDAL_HTTP_AUTH=BASIC/NTLM/GSSNEGOTIATE/ANY (4998)
* /vsicurl/ and /vsicurl_streaming/ : make it possible to cache the files in RAM with VSI_CACHE = TRUE
* /vsizip/: fix handling of Eof() that could cause missed last feature(s) of zipped shapefiles (4748)

Core:
* Add a DMD_SUBDATASETS driver metadata, and advertise it in relevant drivers (4902)
* Fix statistics computation when nodata value is +/- infinity (4506)
* GDALNoDataMaskBand: implement IRasterIO() for an optimization in common use case (4488)
* GDALVersionInfo(): add BUILD_INFO version string
* GMLJP2: Fix bad interpretation when Lat/Long (4657)
* Set nodata value when creating external overviews so that AVERAGE algorithm works as expected (4679)
* EXIFExtractMetadata() moved to gcore/gdalexif.cpp to make it usable for other drivers
* Fix infinite recursion in GDALOpen() (4835)
* GDALRasterBand::IRasterIO() : optimize downsampling/upsampling code path
* C API: make GDALSetDefaultRAT() accept a NULL RAT. All drivers are ready for that now.
* GDALRasterBand::GetDefaultHistogram(): change how min and max bounds are computed in the non GDT_Byte case
* GDALDataset::BlockBasedFlushCache(): fix crash when band has sub-blocking

Algorithms:
* GSOC Image Correlator work (preliminary state)
* Warp: divide Lanczos resampling time by at least a factor of 4.
* Warp: add NUM_THREADS warping option to set the number of threads to use to parallelize the computation part of the warping
* Warp: do not stop collecting chunks to operate on just because some subchunks fail (4795)
* Warp: add mode and average resampling methods (5049)
* 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)
* OpenCL warper: fix segmentation fault related to source/destination validity masks (4840)
* Geoloc: do not trust pabSuccess in geolocation transformer (4794)
* Geoloc: add bilinear interpolation of coordinates from backmap (4907)
* Geoloc: add GDALTransformGeolocations() and SWIG binding
* Add nearest neighbor and cubic interpolation of DEM in GDALRPCTransform (3634).
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.
* gdal_rasterize: fix problem identifying some connected-8 polygons (4647)
* gdal_grid: speed-up dramatically nearest neighbour search (with radius1 == radius2) by using a search quad tree
* gdal_grid: parallelize processing by specifying the GDAL_NUM_THREADS configuration option (default to ALL_CPUS)
* 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

Utilities:
* General: make usage message more self-explanatory in case of bad option (4973)
* gdalmove.py: New application for "warping" an image by just updating its SRS and geotransform.
* gdal_edit.py: promote it as an 'official' tool (4963)
* gdalwarp: add "-r average" and "-r mode" resampling methods (5049)
* gdalwarp: copy metadata and band information from first source dataset and detect for conflicting values, new options -nomd and -cvmd (3898)
* gdalwarp: optimization when (-tr and -te) or (-ts and -te) are specified (4804)
* gdalwarp: assign color interpretation of source bands to target dataset, in the case of target VRT (4462)
* gdalwarp: add -setci option to set the color interpretation of the bands of the target dataset from the source dataset
* 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.
* gdallocationinfo: add a -overview overview_level option to specify an overview level, instead of the base band
* gdalsrsinfo: try to open with GDAL and OGR even if argument is not a file (4493)
* gdaldem: add a -combined option to the hillshade mode to compute combined hillshading (4753)
* 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)
* gdaltindex: add -t_srs option, to transform all input source bounds to same SRS (4773)
* gdalbuildvrt: add -a_srs option
* gdalbuildvrt: add -sd option to select subdataset by its number
* gdalbuildvrt: add a -b flag (4992)
* gdalgrid: increase working buffer of gdal_grid binary to 16 MB
* gdal_retile.py: Don't pass creation options to the MEM driver used for generating temporary datasets (4532)
* gdal_edit.py: make -a_srs option work properly by expanding the user input to WKT; support -a_srs ''
* gdal_edit.py: add support for -gcp option
* gdal2tiles.py: make KML output conformant with KML 2.2 (4536)
* gdal2tiles.py: OL 2.12 support (4742)
* gdal_polygonize.py: add -8 option to select 8 connectedness (4655)
* gdal_merge.py, gdalident.py: remove using of glob() API
* gdal2xyz.py: fix output of -csv mode with multi-band raster
* gdal_contour / gdal_rasterize / gdal_translate: accept numeric values in scientific format.
* crs2crs2grid.py: New sample Python script
* gdalcompare.py: New sample Python scrip to compare GDAL datasets
* gdal_calc.py: add --co creation option flag (4964)
* gdaladdo: add a -b flag
* pct2rgb.py: deal with color tables with more than 256 entries (4905)

Multi driver changes:
* Add support for reading .j2w, .jp2w and .wld files for JP2ECW, JP2MrSID, JP2OPENJPEG and JPEG2000 drivers (4651)

AAIGrid:
* Change float format string for AAIGrid to prevent pointless padding/decimals (3732)

ACE2 driver:
* Fix typo that prevented dataset to be opened with explicit /vsigzip/ (4460)

ADRG driver:
* Various fixes when opening ill-formed datasets.

BAG driver:
* Fix serious problems with tiled images, particularly when not multiples of tile size (4548)
* Added capture of dateTime attribute
* Support WKT (with Esri style VERTCS) spatial reference
* Allow WGS84 spatial reference
* Include compression method in metadata.

BT driver:
* Fixes for huge files (>2GB) support (4765)

CEOS2 driver:
* Add various radarsat-1 related metadata fields (4996)

DIMAP driver:
* Check signature in METADATA.DIM, not just file existence
* Fixed DIMAP2 driver to get the proper absolute path in a specific case

DTED driver:
* Write the updated value of the partial cell indicator to the file (4687)
* 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)

ECW driver:
* Add support for ECW SDK 5.0
* Improve picking performance on large datasets (4790)
* Use ECW SDK to do super-sampling for SDK >= 4.X
* Expose 256x256 block dimension instead of scanline
* 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)
* Add heuristics to detect successive band reading pattern (such as done by QGIS). Beneficial for ECWP

ENVI driver:
* Add support for writing RPCs and GCPs
* Add ability to access all ENVI header fields to the ENVI reader (4735)
* Write in the ENVI header metadata found in the ENVI metadata domain (4957)
* Fix reading of .sta file on 64bit Linux
* Assume BSQ interleaving when 'interleave' keyword missing or unknown
* Fix category names writing
* Remove 'envi fft result' from the blacklist
* Report wavelength and wavelength_units as band metadata (3682)

ENVISAT driver:
* Ported to VSI*L

GeoRaster driver:
* Add spatialExtent and extentSRID create-options (4529)
* Fix JPEG quality not updated on metadata (4552)
* Search for RDT as regular table
* Add support for RPC (4038)

GIF driver:
* Add support for giflib 4.2.0 (4675) and giflib 5.0

GMT driver:
* Make GMT driver thread-safe by adding a global mutex (since the netcdf library isn't thread-safe)

GTiff driver:
* Internal libtiff and libgeotiff refreshed from upstream
* Use EXTRASAMPLE_UNASSALPHA by default (behavior change w.r.t. previous GDAL versions) (4733)
* Add support for reading GeoEye *.pvl metadata files (4465)
* Lossless CreateCopy'ing() from a JPEG dataset
* Read EXIF metadata in the EXIF metadata domain
* Ensure that rowsperstrip is never larger than ysize (4468)
* Fix writing of RGBA pixel-interleaved JPEG-compressed TIFF (4732)
* Set color interpretation to GCI_PaletteIndex after calling SetColorTable() (4547)
* Conversion for 8-bit unpacked CMYK (PHOTOMETRIC_SEPARATED) to RGBA.
* Maximize EPSG compatibility where PCS is defined (4607)
* Ensure that unusual units with an authority node are saved nicely (like EPSG:2066)
* Add CT_HotineObliqueMercatorAzimuthCenter support
* Fix PolarStereographic / 9829 support
* Make sure that GetMetadata() initializes the value of GDALMD_AREA_OR_POINT item, if not already done (4691)
* When building overviews, if the image has already an internal mask, then build internal overviews for the mask implicitly
* Better handling of SetMetadata(a_string) (4816)
* Use GTIFAllocDefn/GTIFFreeDefn with libgeotiff 1.4.1+
* Add support for GEO_NORMALIZE_DISABLE_TOWGS84 (3309)
* Improve handling of description and offset/scale without reverting to .aux.xml
* Workaround defects in libtiff 3.X when generating several overview levels at the same time
* Special case where the EGM96 Vertical Datum code is misused as a Vertical CS code (4922)
* Support unsetting geotiff tags when calling SetGeoTransform([0,1,0,0,0,1]) and SetProjection('')
* Rework how CSV files are searched w.r.t libgeotiff (4994)

GRIB driver:
* Report nodata value (4433)
* Fix fgetc signed/unsigned problem for Grib format VSI*L reader (4603)
* Avoid caching more than 100 MB in case of dataset with many bands (4682)
* uses meshLat as the latitude_of_origin parameter of LCC projection (4807)

GSAG driver:
* Fix hangs when reading truncated dataset (4889)

GS7BG driver:
* Implement Create() and CreateCopy() (4707)

GTX driver:
* Support reading old GTX files where datatype was Float64

GXF driver:
* Avoid having big buffer on stack (4852)
* Avoid locale floating point parsing problems (similar to r24367).
* Implement continued lines mechanism (4873)
* Fix various vulnerabilities / DoS

HDF4 driver:
* Add ability to increase the maximum number of opened HDF4 files
* Unix build: avoid issue with system hdfeos library
* Ensure we do not try to use the grid tile api for non-tilesized chunks (4672)
* Preserve more Float32 attribute precision
* Import HDF USGS GCTP angular parameters as radians
* Restore conventional add_offset interpretation (4891)
* Be more careful about missing dimensions (4900)
* Make HDF4 driver thread-safe by adding a global mutex (since the HDF4 library isn't thread-safe)
* Search for "coremetadata" attribute name instead of "coremetadata."

HDF5 driver:
* Add support for COSMO-SkyMed metadata (4160)

HFA driver:
* Added BASEDATA support for EPT_u1 (4537)
* Fix crash on dataset closing when .ige file header is corrupted (4596)
* .aux overviews: avoid destroying existing overviews when asking twice in a row to build overviews for exactly the same overview levels (4831)
* Fix sizing of RAT string column maxwidth to include null char (4867)
* Fix segfault in HFAAuxBuildOverviews with selected bands (4976)

INGR driver:
* do not reduce tile size to image size (4856)
* Fix value inversion when reading type 9 (bitonal RLE) untiled files (5030)
* fix slowness and incorrect random reading with RLE datasets (4965)
* Enable reading bitonal rle files wider than 22784 (0x5900) pixels (5030)
* Add RESOLUTION metadata/option to read/write DPI (5030)
* Add write support for .rle (bitonal rle files) to test the above (5030)

ISIS3 driver:
* Ensure scaleFactor defaults to 1 (4499)

JP2ECW driver:
* Workaround conflict between ECW SDK deinitialization and GDAL deinitialization, as shown by gdaljp2ecw tests of imageio-ext (5024)
* 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)

JP2KAK driver:
* Capture Corder in metadata for user convenience
* Fix writing of resolution box where the xresolution value was written instead of the yresolution one
* Skip bands that have different data type when reading multiple bands in IReadBlock() (4638)
* Default to less than 250000 lines per tile (5034)

JP2OpenJPEG driver:
* Require OpenJPEG 2.0.0 now
* Use several decoding threads when processing multi-tiles IRasterIO() requests
* Add support for writing georeferencing
* Read and write JP2 Res box and translate it from/to TIFFTAG_XRESOLUTION, TIFFTAG_YRESOLUTION and TIFFTAG_RESOLUTIONUNIT metadata items
* 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)

JPEG driver:
* When there are no external overviews built, take advantage of the nature of JPEG compression to expose overviews of level 2, 4 and 8
* Don't return junk content when requesting xml:XMP but no XMP metadata is present (4593)
* add a INTERNAL_MASK creation option to be able to disable appending the ZLib mask if not needed
* add support for creating a JPEG loss-less file starting with the recent IJG libjpeg v9
(with -co ARITHMETIC=yes -co BLOCK=1 -co COLOR_TRANSFORM=RGB1)

JPEG2000 driver:
* do not accept by default source bands of type different from Byte, Int16 or UInt16 since they seem to cause crashes in libjasper.
This can be overridden, at your own risk, by setting JPEG2000_FORCE_CREATION configuration option to YES (5002)

KMLSuperOverlay driver:
* Add read support
* Remove bogus code that limited generation to one zoom level (4527)
* Set minLodPixels to 1 for zoom level 0 (4721)
* Fix bad placing of tiles with raster of the extent of a country or more (4834)
* Add FIX_ANTIMERIDIAN creation option (4528)

L1B driver:
* Add support for NOAA19, METOP-B and guess for METOP-C (2352)

MG4Lidar driver:
* Add UTF-8 filename support under Windows (4612)

NetCDF driver:
* Fix for gdal_rasterize (4432)
* Enable PAM for band histogram and statistics (4244)
* Add longitude_of_prime_meridian value to PRIMEM
* Fix SetNoDataValue() - do not update when already set to new value (4484)
* Convert longitude values in [180,360] interval to [-180,180] (4512) - override with config option GDAL_NETCDF_CENTERLONG_180=0
* Support 2D GEOLOCATION arrays when a projected variable has coordinates attribute and supporting long/lat arrays (4513)
* 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
* Better support for Gaussian grids - store original latitude values in special Y_VALUES geolocation metadata item and use it for netcdf export (4514)
* Write multi-dimensional variables to a single variable (not one for each unrolled band) in CreateCopy() (2581)
* Fix handling of km units in netcdf driver and importFromProj4() (4769)
* Fix detection of 1 and 2 pixel width/height netcdf datasets (4874)
* Fix subdataset data type info (4932)
* Make netCDF driver thread-safe by adding a global mutex (since the netcdf library isn't thread-safe)

NITF driver:
* nitf_spec.xml: add definition of ACFTB and AIMIDB TREs
* Don't escape DESDATA for sizes >10mb (4803)
* Fix NITF creation when both BLOCKA and TRE are passed in (4958)
* Allow reading JPEG-in-NITF where JPEG stream dimensions are larger than NITF dimensions (5001)
* Support for cases with 2 LUTs

Northwood driver:
* Fixes for huge files (>2GB) support (4565, 4645)
* NWT_GRD: don't advertise scale/offset as they are transparently applied in IReadBlock() (5839).

PDF driver:
* Add CreateCopy() support
* Add update support for georeferencing and metadata
* Add support for selective layer rendering (only with poppler backend)
* 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
* Fix parsing of some georeferencing (r24022)
* Recognized ISO georeferencing set at the image level (and not at the page level); expose such images as subdatasets (4695)
* Support Poppler 0.20 (and for current Poppler development version 0.23/0.24)
* UTF-16 support
* Report registration points as GCPs (OGC Best Practice)
* Allow building driver with both Poppler and Podofo (testing purposes mostly)
* Fix crashes on some PDF files with poppler >= 0.17.0 (4520)
* Improve rounding of raster dimensions (4775)
* With podofo, avoid launching the 'pdftoppm' process in a visible console on Windows (4864)
* Select neatline whose description is 'Map Layers' when it is found, to keep the best neatline for USGS PDF Topo
and add GDAL_PDF_NEATLINE config. option to override that default value.
* Improve detection of DPI for USGS Topo PDF to get the maximum raster quality (will increase
reported dataset height and width)
* Extract USGS Topo PDF embedded metadata in the EMBEDDED_METADATA domain

PNG driver:
* Internal libpng upgraded to 1.2.50

PostgisRaster driver:
* Implement CreateCopy and Delete (4530)
* Supports reading of tiled raster with irregular blocking and irregular pixel size
* Cache postgres db connection.
* Use PG environment variables as fallback when settings are not provided in the connection string. (4533).
* Do not report nodata value when there is none (4414)
* Removed dependency on the 'rid' column.
* Fix to make SQL queries with un-rounded floating point string representations. (4736)
* Fix overview support

Rasterlite driver:
* Support all resampling methods for internal overviews (4740)
* Fix overview support with multi-table datasets (4568, 4737)
* Add RASTERLITE_OVR_OPTIONS configuration option to specify options for the tiles of the internal overviews

RMF driver:
* Fix incorrect zone number detection for Transverse Mercator (4766)

RPFTOC driver:
* Relax SanityCheckOK() to avoid rejecting valid CIB datasets (4791)
* Avoid selecting a color table that is full black
* Add missing NITF series code 'TF' for 'TFC' (and fix typo in some other long descriptions) (4776)

RS2 driver:
* added various metadata fields (4997)

SDTS driver:
* Various fixes when opening ill-formed datasets.

SRP driver:
* Various fixes when opening ill-formed datasets.

TIL driver:
* Fix TIL driver using overview (3482)
* Add set projection and geotransformation for TILDataset

TSX driver:
* Fix crashes in Identify() with certain filenames, and the file is empty or doesn't exist (4622)

VRT driver:
* VRTWarpedDataset: add INIT_DEST=0 if no INIT_DEST specified (4571)
* VRTFilteredSource: fix RasterIO() to take into account source and dest windows (4616)
* avoid crashes due to int overflow when dealing with requests filling a buffer larger than 2 GB (4815)
* VRTSourcedRasterBand: override ComputeRasterMinMax(), ComputeStatistics() and GetHistogram() to make them run on sources, only when there's one VRTSimpleSource covering the whole VRTSourcedRasterBand
* solve issue when the VRT is a symlink and that the sources filenames are RelativeToVRT (4999)
* Fix relariveToVRT option in VRTRawRasterBand (5033)

WCS driver:
* Support version 1.1.2

WebP driver:
* Allow reading/writing alpha channel (libwebp >= 0.1.4)
* Add support for reading XMP metadata in the xml:XMP metadata domain

WMS driver:
* Implement GetMetadataItem(Pixel_iCol_iLine, LocationInfo) to retrieve pixel attributes
* Retrieve nodata, min and max values, defined per band or per dataset in the config file (4613)
* Add GetColorTable(), used by the TiledWMS mini driver (4613)
* Update TiledWMS mini-driver to support new variable substitution mechanism, min/max/nodata settings, color table support (4613)
* Add a <UserPwd> element in the XML service description file

XYZ driver:
* avoid rescanning output file at end of CreateCopy()

OGR 1.10.0 - Overview of Changes

Core:
* Add OGRLayerDecorator class (decorator base class for OGRLayer),
* Add OGRWarpedLayer class (on-the-fly reprojection of a base layer)
* Add OGRUnionLayer class (on-the-fly concatenation of several base layers)
* Add OGRFieldDefn::IsSame() and OGRFeatureDefn::IsSame()
* Add OGRAbstractProxiedLayer, OGRProxiedLayer and OGRLayerPool classes
* OGRGeometry: set SRS of geometries created via GEOS functions from the source geometry (idem for geometries returned by OGR_G_ForceXXXX() methods) (4572)
* OGRFeature: Add OGR_SETFIELD_NUMERIC_WARNING option to issue a warning when not fully
numeric values are assigned to numeric fields. If the field type is Integer,
then also warn if the long value doesn't fit on a int.
* Add OGR_G_PointOnSurface() and add it to SWIG bindings
* Add OGR_G_ForceToLineString / OGRGeometryFactory::forceToLineString to join
connected segments in line strings.
* Better implementation of getDimension() for OGRMultiPoint, OGRMultiLineString, OGRMultiPolygon and OGRGeometryCollection
* Fix incorrect rounding in OGRFormatDouble that affected geometry WKT output (4614)
* OGRSQL: support UNION ALL of several SELECTs
* OGRSQL: defer ORDER BY evaluation until necessary, so that a spatial filter can be taken into account after layer creation
* OGRSQL: allow using indexes when OR or AND expressions are found in the WHERE clause
* OGRSQL: fix incorrect result with more than 2 JOINs and SELECT with expressions with field names (4521)
* OGRSQL: fix 'SELECT MAX(OGR_GEOM_AREA) FROM XXXX' (4633)
* OGRSQL: fix invalid conversion from float to integer (4634)
* OGRSQL: fix behavior of binary operations when one operand is a NULL value
* OGRDataSource::CopyLayer(): take into account field renaming by output driver (e.g. Shapefile driver that might truncated field names) (4667)
* OGRLayer::FilterGeometry() : speed-up improvement in some cases and use GEOSPreparedIntersects() when available (r23953, r25268)
* OGRLayer::SetNextByIndex(): return OGRERR_FAILURE if index < 0
* OGRLineString::setPoint( int iPoint, OGRPoint * poPoint ) : avoid promoting the line to 25D if the point is only 2D (4688)
* OGRGeometry::Centroid(): make it work properly on POINT EMPTY with latest SVN geos version
* Add reversePoints() method on linestring

OGRSpatialReference:
* Add support for OGC URLs (4752)
* add dumpReadable() method on OGRSpatialReference
* Differentiation between Hotine Oblique Mercator (aka Variant A) and Oblique Mercator (aka Variant B) (104, 2745)
* EPSG: Map methods 1028 and 1029 to normal equidistant cylindrical (4589)
* EPSG: add support for EPSG:5514 (Krovak East North)
* 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)
* Ozi datum support: support all Ozi datums (3929), support UTM projection
* USGS: support USGS angular parameters in radians
* MorphFromESRI() fix WKT : compare SPHEROID and PRIMEM parameters instead of names (4673)
* MorphToESRI(): Add common New Zealand GEOGCS values (4849)
* OSR ESRI: add GCS mapping name for ETRS89
* ogr_srs_esri: Make InitDatumMappingTable() thread-safe
* ecw_cs.wkt: Add entry for European Terrestrial Reference System 1989.
* pci_datum.txt: Add entry for D894
* accept "+proj=XXXX [...] +wktext" as a valid PROJ.4 string, even if projection is unhandled by OGR
* 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)

Utilities:
* ogr2ogr: add a -dim option to force the coordinate dimension to 2 or 3
* ogr2ogr: accept -nlt PROMOTE_TO_MULTI to ease conversion from shapefiles to PostGIS, by auto-promoting polygons to multipolygons and linestrings to multilinestrings
* ogr2ogr: add -gcp, -order n and -tps options to georeference ungeoreferenced vectors (4604)
* ogr2ogr: fix -select with shapefile output when specified field name case doesn't match source field name case (4502)
* ogr2ogr: correctly deal with filenames that begin with 'polygon' or 'multipolygon' as arguments of -clipsrc (4590)
* ogr2ogr: return non-zero exit code if the -sql triggers an error (4870)
* ogr2ogr: make -t_srs work when there's no per layer source SRS, but there's per feature SRS
* ogr2ogr: add a -datelineoffset option to provide users with capability to set different offsets than 170 to -170 (4098)
* ogr2ogr: add a -fieldmap option (5021)
* ogr2ogr: automatically rename duplicated field names of source layer so that the target layer has unique field names
* ogrupdate.py: new sample script to update an OGR datasource from another one, by trying to identify matches between the 2 datasources
* ogr_layer_algebra.py: new sample script to use OGR layer algebra operations

Multi driver changes:
* Fix bad AND priority when spatial and attribute filter are combined in PG, MySQL, SQLite MSSQLSpatial and VRT drivers (4507)

AVCE00 driver:
* Fix GetFeatureCount() when an attribute or spatial filter is set

AVCBin driver:
* Fix EOF test (3031)

CSV driver:
* Allow creating /vsimem/foo.csv
* Detect and remove UTF-8 BOM marker if found (4623)
* Fix handling of empty column names in header (4654)
* Allow creating a new .csv file in a directory where there are invalid .csv
files (4824)
* Use a trick so that the CSV driver creates valid single column files (4824)
* Add WRITE_BOM option to CSV driver to write UTF8 BOM for improved Excel/unicode compatibility (4844)
* Don't turn \r\n into \n in CSV field output, regardless of LINEFORMAT settings (4452)
* Don't left-pad numbers in CSV output when a width is set (4469)
* Add support for opening .tsv files, in particular the specific Eurostat .tsv files

DGN driver:
* Add support to read and write font name in the style (3392)

DXF driver:
* Write HATCH (Polygon) compatible with other DXF viewers
* Write layer geometry extent in file header (4618)
* Ignore Spline frame control points for VERTEX of POLYLINE (4683)
* Add color to POINT, INSERT and HATCH
* Take into account extrusion vector to transform from OCS to WCS for MTEXT, TEXT, POINT, LINE, CIRCLE, ELLIPSE, ARC, SPLINE and HATCH (4842)

FileGDB driver:
* Add the FGDB_BULK_LOAD configuration option (4420)
* Do compulsory field name laundering. (4458)
* Add special SQL commands 'GetLayerDefinition a_layer_name' and 'GetLayerMetadata a_layer_name'
* Implement SetFeature(), DeleteFeature() and DeleteField()
* Fix inserting features in a layer of geometry type wkbNone
* Define CLSID/EXTCLSID to fix Feature Class alias being ignored in ArcMap (4477)
* Use more sensible default values for tolerance and scale parameters (4455)
* Use ESRI SRS DB to find the WKT definition to use when creating a layer (4838)
* Fix the way empty geometries are written
* Add read support for fields of type GlobalID or GUID (4882)
* Add XML_DEFINITION layer creation option
* Support setting fields of type SmallInteger, Float and GUID

Geoconcept driver:
* Partial support of relaxed GXT export syntax and fix when line is incomplete (4983)

GeoJSON driver:
* Fix HTTP HEADERS field send to server (4546)
* GeoJSON: write crs object as a FeatureCollection attribute in generated GeoJSON files (4995); on read, strip AXIS nodes

Geomedia driver:
* Fix loading of 'boundary' geometries when they are 2.5D or contain more than one inner rings (4734)

GFT driver:
* Use OAuth2 authentication (was ClientLogin in previous versions).

GML driver:
* Add PREFIX and TARGET_NAMESPACE dataset creation options
* Fix typo when writing geometry type name of MultiLineString in GML3 .xsd (4674)
* CreateFeature(): assign spatial ref when it is unset in source feature, even for GML2 case (fixes non-compliance with missing srsName on multi-geometries)
* Make filtering of features based on OGR_GEOMETRY work (4428)
* Avoid point duplication concatenating GML curve segments (4451)
* Add special SQL command 'SELECT ValidateSchema()'
* Allow reading srsDimension attribute when set on LineString element, and not on posList (4663)
* Partial support for reading GML 3.3 compat encoding profile, limited to <gmlce:SimplePolygon>, <gmlce:SimpleRectangle>, <gmlce:SimpleTriangle>, <gmlce:SimpleMultiPoint> elements
* Support WFS GetFeature response document to be piped and opened with /vsistdin/
* Support specifying connection string as 'filename.gml,xsd=some_filename.xsd' to explicitly provide a XSD
* Improve detection of extent and srs for WFS 2.0
* Allow ISO-8859-15 encoded files to be used by Expat parser (4829)
* Handle CompositeCurve like MultiCurve (for NAS)
* Remove duplicate points in rings
* Add OGR_ARC_MINLENGTH to limit the number of segments in interpolated arcs
* When there are several geometries per feature, use geometry inside <XX:geometry> element for Inspire compatibility
* Return per-feature SRS if there's no global SRS for a layer
* Parse correctly <gml:outerBoundaryIs> when there are attributes in the element (4934)
* Recognize <gml:GeodesicString>
* Recognize <gml:Envelope> elements (4941)
* Fix crash when reading CityGML attribute with empty string (4975)

ILI driver:
* Support for format codes (3972)
* ILI1: Use Topic name from model in itf output
* ILI1: Recode ISO 8859-1 strings
* ILI1: Various fixes related to enumerations
* ILI2: Fix reading with models

Ingres driver:
* Add effuser and dbpwd connection parameters.
* Enhance EPSG search bath on WKT AUTH ids.
* Use system defined sequence for fid instead of global (4567)
* Fix a name mixup when creating the table (4567)

KML driver:
* Report empty layers when there is only empty layers; don't error out on empty document (4511)
* Recognize file whose root element is <Document> and not <kml>

Idrisi driver:
* Add support for reading attributes from .AVL / .ADC files
* Ignore nodata value when computing min/max of CreateCopy()'ed dataset
* Avoid setting unset values of mean and stddev to PAM (4878)

LIBKML driver:
* Add stylemap support
* Add support for GroundOverlay reading (4738)
* Fix memory leak in OGRLIBKMLDataSource::FindSchema() when a schema is referenced by name and not by id (4862)
* Correct use of temporary variable for schema field names (4883)
* Update the layer class internal feature count when a new feature is added

MITAB driver:
* Fix unwanted changes in data types while converting a datasource to MIF (3853)
* Fix incorrect handling of Mollweide projection (4628)
* Fix double free in OGRTABDataSource::Create() when exiting with error (4730)
* Add datum mapping between EPSG/authority codes and the MapInfo definitions. Falls back to old behavior of name/string matching. (481)
* Avoid negative zeros in TOWGS84 read from TAB file (4931)

MSSQLSpatial driver:
* Report DeleteFeature/DeleteLayer capabilities
* Fix the parser to swap coordinates with geography data type (4642)
* Fix to read multipoint geometries correctly (4781)
* Fix to read 3D geometries correctly (4806, 4626)
* Use MSSQL catalog if geometry_columns doesn't exist (4967)
* Utilize OGRFieldDefn::IsIgnored() (4534)
* Remove requirement for identity fid column in MSSQL tables (4438)

MySQL:
* Enable auto reconnect to MySQL (4819)
* Reset field width and precision when converting from an unhandled field type to TEXT (4951)

NAS driver:
* Better support for wfsext:Replace (4555)
* Skip elements "zeigtAufExternes" and "objektkoordinaten" (fixes PostNAS 3 and 15)
* Issue a warning when geometry is overwritten, invalid geometry is found or featureless geometry appears
* Issue a debug message when a existing attribute is overwritten (to catch array)
* Use forceToLineString() on line strings (fixes PostNAS 18)
* Handle MultiCurve and CompositeCurve
* Merge multilinestrings
* Accept XML files that have AAA-Fachschema.xsd in header (and remove trailing whitespace)
* Add EPSG:25833

NULL driver:
* No-op output driver for debugging/benchmarking purpose (Not included in build process)

OCI driver:
* Fix for index creation when layers are created (4497)

ODBC driver:
* Allow opening directly *non-spatial* MS Access .MDB databases (on Windows only)
* Make SetAttributeFilter(NULL) work (4821)
* Add optimized GetFeatureCount() implementation

NTF driver:
* Various fixes when opening ill-formed datasets.

OCI driver:
* Fix issue with pre-existing tables with laundered names not being recognized (4966)
* Make sure the FID counter is correctly initialized when data is appended (4966)
* Better quoting of identifiers (4966)

PGeo driver:
* PGeo / Geomedia : remove heuristics that tried to identify if a MDB file belonged to the PGeo or Geomedia driver (4498)

PG driver:
* Add a 'COLUMN_TYPES' layer creation option (4788)
* Fix insertion of features with FID set in COPY mode (4495)
* Honour datasource read-only mode in CreateField(), CreateFeature(), SetFeature() and DeleteFeature() (4620)
* Avoid fatal error when the public schema is absent (4611)
* Differ SRS evaluation on SQL layers (4644)
* Optimize SRID fetching on SQL result layer; compatibility with PostGIS 2.0 by using ST_SRID (4699, 4700)
* Always fetch the SRS to attach it to feature geometry of result SQL layers.

PGDump driver:
* Add a 'COLUMN_TYPES' layer creation option (4788)

REC driver:
* Add robustness checks against corrupted files

SDE driver:
* Add support for CLOB and NCLOB data type (4801)

Shapefile driver:
* Add support for reading ESRI .sbn spatial index (4719)
* Add deferred layer loading
* Implement auto-growing of string and integer columns
* 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
* Recode field name from UTF-8 to DBF encoding in CreateField()
* In creation, limit fields of type OFTString to a width of 254 characters (5052)
* Spatial index optimization (4472)
* Fix GetFeatureCount() when spatial filter set, especially on big-endian hosts (4491)
* Fixed wrong return value of OLCStringsAsUTF8 in OGRShapeLayer::TestCapability if GDAL was compiled without iconv support (4650)
* Support properly creating layers that include dot character
* Avoid assert() if SetFeature() is called on a feature with invalid FID (4727)
* Correctly deal with .cpg files containing 8859xx string (4743)
* Make TestCapability(OLCFastFeatureCount) return TRUE when an attribute filter is set only if attribute indices can be used
* Shapelib: Fix memory leaks in error code path of DBFCreateLL() (4860)
* 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)
* Delete temporary _packed.cpg file generated during REPACK of a layer whose .dbf has an accompanying .cpg file
* In DeleteDataSource(), delete .cpg file if existing

S57 driver:
* Various fixes when opening ill-formed datasets.
* Preliminary support for FFPT/FFPC update records (5028)
* 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)

SQLite/Spatialite driver:
* Add support for tables with multiple geometry columns (4768)
* Add (preliminary) support for SpatiaLite 4.0 database changes (4784)
* Make GDAL loadable as a SQLite3 extension (named VirtualOGR) (4782)
* Add support for OFTDateTime/OFTDate/OFTTime field types
* Add a SRID layer creation option
* Make REGEXP function available by using libpcre (4823)
* Add a COMPRESS_COLUMNS layer creation option to make string columns ZLib compressed
* Implement minimal set of spatial functions if SpatiaLite isn't available
* SpatiaLite: make use of spatial filter on result layers when the SQL expression is simple enough (no join, etc...) (4508)
* SpatiaLite: spatial index can be used even when linking against regular SQLite (4632)
* SpatiaLite: to improve performance, defer spatial index creation at layer closing or when a spatial request is done
* SpatiaLite: use SpatiaLite 'layer_statistics' and 'spatialite_history' to cache the row count and extent of (spatial) layers
* Spatialite: add support for reading Spatialite 4.0 statistics (filling them on the fly still not implemented)
* SpatiaLite: for SpatiaLite 4.0, translate INIT_WITH_EPSG=NO into InitSpatialMetaData('NONE') to avoid filling the spatial_ref_sys table
* On SQL result layers, report the SRS of the geometry of the first feature as the layer SRS
* Deferred layer definition building for table and view layers
* Speed-up opening of a result layer that has an ORDER BY
* Cache GetExtent() result
* Allow inserting empty feature
* Return empty layer when SELECT returns 0 rows (4684)
* Add compatibility for newer SQLite versions when using the VFS layer (4783)
* Add missing column name quoting

TIGER driver:
* Fix opening TIGER datasource by full file name (4443)
* Updated to use VSI*L

VFK driver:
* SQLite is now a compulsory dependency for VFK
* Store VFK data in SQLite (in-memory) database
* Don't read whole file into buffer, but only on request
* id property of data records in VFK file exceed int limit -> use GUIntBig for id values
* Fix reading multi-line data records
* Recode string feature properties - convert from cp-1250 to utf-8
* Skip invalid VFK features

VRT driver:
* Add <OGRVRTWarpedLayer> (on-the-fly reprojection of a base layer)
* Add <OGRVRTUnionLayer> (on-the-fly concatenation of several base layers)
* Add <FeatureCount>, <ExtentXMin>, <ExtentYMin>, <ExtentXMax>, <ExtentYMax> to <OGRVRTLayer>
* Add an optional 'dialect' attribute on the <SrcSQL> element
* Fix OGR VRT sensitive to whitespace and <?xml> nodes (4582)
* Optimizations to avoid feature translation when possible
* Implement GetFIDColumn() (4637)
* Implement StartTransaction(), CommitTransaction() and RollbackTransaction() by forwarding to the source layer
* Auto enable bAttrFilterPassThrough when possible

WFS driver:
* WFS paging: change default base start index to 0 (was 1 before), as now clarified by OGC (4504)
* Accept several type names if the TYPENAME parameter is specified
* Forward SQL ORDER BY clause as a WFS SORTBY for WFS >= 1.1.0
* Fix spatial filter with WFS 2.0 GeoServer
* Check that left-side of a binary operator in an attribute filter is a property name before submitting it to server-side
* Major overhaul of URL-escaping
* Fix issues when querying the WFSLayerMetadata and that one of the field contains double-quote characters (4796)
* 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
* Automagically convert MAXFEATURES= to COUNT= if people still (wrongly) used it for WFS 2.0
* Honour paging when running GetFeatureCount() and that RESULTTYPE=HITS isn't available (e.g. WFS 1.0.0) (4953)
* Optimize WFS 1.0 (or WFS 1.1.0 where RESULTTYPE=HITS isn't available) so that in some circumstances the GML stream
downloaded is used to compute GetFeatureCount() and GetExtent() together
* Fix segfault on non-GML output when there's SRS axis swapping but the feature has no geometry (5031)

XLS driver:
* 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)
* Non-ascii path support for Windows (4927)

SWIG Language Bindings

All bindings:
* Add VSIReadDirRecursive() (4658)
* Add a osr.CreateCoordinateTransformation(src, dst) method (and for Java, a static method CoordinateTransformation.CreateCoordinateTransformation(src, dst) (4836)
* Add ogr.ForceToLineString()
* Clear error before OGR_Dr_Open() (4955)
* Add a SetErrorHandler(handler_name) method

CSharp bindings:
* Add C signature for FileFromMemBuffer that accepts byte array (4701)

Java bindings:
* Fix compilation issue with SWIG 2.0.6 on Java bindings (4669)
* New test application: ogrtindex.java
* Fix values of gdalconst.DCAP_* and gdalconst.DMD_* constants (4828)
* Fix check for opaque colors in getIndexColorModel()

Perl bindings:
* Specify module files to install
* Return values have to be mortal, this was not the case in many instances.
* New method Driver::Name aka GetName
* doc target in GNUmakefile to call doxygen
* Default to first band in GetRasterBand.
* New method Geo::OGR::Layer::DataSource
* New method Geo::OGR::Layer::HasField
* Geometry method accepts geometries in Perl structures
* Fixed a bug in FeatureDefn::create which changed the fields.
* New experimental methods ForFeatures and ForGeometries.
* InsertFeature, Tuple and Row methods use the Tuple and Row methods from Feature.
* Do not use pattern my var = value if ...; as it seemingly may cause unexpected things.
target_key is optional argument.
* Allow setting geometry type with schema argument.
* Fix incorrect behavior of Geo::OGR::Geometry method Points in the case of a Point (4833)
* Preserve the coordinate dimension in Move method

Python bindings:
* setup.py: Changes to run without setuptools (4693)
* setup.py: Automatically run 2to3 for Python3
* Define __nonzero__ on Layer object to avoid GetFeatureCount() being called behind our back when doing 'if a_layer:' (4758)
* Fix performance problem when instantiating Feature, especially with Python 3
* Add RasterBand.ReadBlock(), mostly for driver testing
* Reject strings when array of strings are expected
* make gdal.PushErrorHandler() also accept a Python error handler function as an argument (4993)
* Fix Feature.ExportToJSon() to write the id attribute when it is 0 (the undefined value is NullFID -1)

GDAL/OGR 1.9.0 Release Notes

In a nutshell...

* New GDAL drivers: ACE2, CTG, E00GRID, ECRGTOC, GRASSASCIIGrid, GTA, NGSGEOID, SNODAS, WebP, ZMap
* New OGR drivers: ARCGEN, CouchDB, DWG, EDIGEO, FileGDB, Geomedia, GFT, IDRISI, MDB, SEGUKOOA, SEGY, SVG, XLS
* Significantly improved drivers: NetCDF
* Encoding support for shapefile/dbf (882)
* RFC 35: Delete, reorder and alter field definitions of OGR layers
* RFC 37: Add mechanism to provide user data to CPLErrorHandler (4295)
* gdalsrsinfo: new supported utility to report SRS in various form (supersedes testepsg)

New installed files

* data/nitf_spec.xml and data/nitf_spec.xsd

Backward compatibility issues

* GTiff: ensure false easting/northing in geotiff geokeys are treated as being in geosys units (3901)
* GRIB: Fix grid vs cell-center convention (2637)
* OGR SQL: with DISTINCT, consider null values are such, and not as empty string (4353)

GDAL/OGR 1.9.0 - General Changes

Build(Unix):
* Add --with-rename-internal-libtiff-symbols and --with-rename-internal-libgeotiff-symbols
flags in order to safely link against an external libtiff (3.X) and a GDAL built with
internal libtiff (4.0) support (4144)
* Add --with-mdb --with-java,--with-jvm-lib, --with-jvm-lib-add-rpath options
* Add --with-podofo, --with-podofo-lib, --with-podofo-extra-lib-for-test options
* Add --with-armadillo
* Update to libtool 2.4
* Fix linking against static libkml (3909)
* Fix Xerces detection by using LIBS instead of LDFLAGS (4195)
* Check for .dylib too, when configuring MrSID SDK paths (3910)
* Fix wrong include order in GNUmakefile of GPX and GeoRSS drivers (3948)
* cpl_strtod.cpp: Enable android support (3952).
* ensure swig-modules depends on lib-target so make -j works with swig bindings
* Change how we check for GEOS >= 3.1 (3990)
* Define SDE64 on at least x86_64 platforms (4051)
* Make ./configure --with-rasdaman=yes work (4349)
* MinGW cross compilation: clear GEOS_CFLAGS and XERCES_CFLAGS
if headers found in /usr/include, do not use Unix 64 bit IO
* MinGW build: define __MSVCRT_VERSION__ to 0x0601 if not already set

Build(Windows):
* Move MSVC warning disabling to nmake.opt, add SOFTWARNFLAGS for external code
* Use nmake.local (3959)
* cpl_config.h.vc: fix up so it also works with mingw (3960)
* Build testepsg utility by default when OGR is enabled (2554)

1.9.0

Not secure
Port:
* /vsigzip/ : Avoid reading beyond file size in case of uncompressed/stored files in zip (3908)
* /vsicurl/ : Better support for escaped and UTF-8 characters
* /vsicurl/ : speed-up with a per-thread Curl connection cache
* /vsicurl/ : read https directory listing
* /vsicurl/ : look for GDAL_DISABLE_READDIR_ON_OPEN configuration option in
Open() and Stat() to avoid trying fetching the directory file list
* /vsicurl/ : fix performance problem when parsing large directory listings (4164)
* /vsicurl/ : recognize listing of Apache 1.3
* /vsicurl/ : fix ReadDir() after reading a file on the same server
* /vsicurl/ : fetch more info (size, date) when listing FTP or HTTP directories and save it in cache; use those info for ReadDir() and Stat()
* /vsicurl/: accept 225 as a valid response code for FTP downloads (4365)
* /vsicurl/ : add CPL_VSIL_CURL_ALLOWED_EXTENSIONS configuration option that can be used to restrict files whose existence is going to be tested.
* /vsitar/ : Recognize additional .tar files with slightly header differences
* /vsizip/ : wrap the returned file handle in a BufferedReader
* /vsizip/ : fix 1900 year offset for year returned by VSIStatL()
* /vsizip and /vsitar: remove leading './' pattern at the beginning of filenames contained in the archive
* /vsistdout_redirect/ : New virtual file system driver that has the same
behavior as /vsistdout/ (write-only FS) except it can redirect the output to
any VSIVirtualFile instead of only stdout (useful for debugging purposes)
* Implement VSI*L read caching - useful for crappy io environments like Amazon
* VSI*L: Add Truncate() virtual method and implement it for unix, win32 and /vsimem file systems
* VSI*L: Add ReadMultiRange() virtual method to read several ranges of data in single call; add an optimized implementation for /vsicurl/
* VSIFEofL(): make it more POSIX compliant.
* Fine tune CPLCorrespondingPaths() for different basenames when paths involved.
* VSIWin32FilesystemHandler::Open() : implement append mode. Needed by ISIS2 driver with attached label (3944)
* CPLString: add case insensitive find operator (ifind)
* RFC23: Add the iconv() based implementation of the CPLRecode() function (3950)
* Preliminary support for wchar_t with iconv recode (4135)
* Avoid calling setlocale if we are already in the C locale, or GDAL_DISABLE_CPLLOCALEC is TRUE (3979)
* CPLMiniXML: emit warnings when encountering non-conformant XML that is however accepted by the parser
* add CPLBase64Encode(); move cpl_base64.h contents to cpl_string.h
* Use CRITICAL_SECTION instead of Mutex on win32
* CPLHTTPFetch(): Add a CLOSE_PERSISTENT option to close the persistent sessions
* CPLHTTPFetch(): Add support for "NEGOTIATE" http auth mechanism
* CPLHTTPFetch(): Add a CUSTOMREQUEST option
* VSIBufferedReaderHandle: fix Eof()
* Add CPLStringList class
* Add CPLEmergencyError() - to call when services are too screwed up for normal error services to work (4175)
* CPLEscapeString(,,CPLES_URL) : don't escape dot character; fix escaping of characters whose code >= 128

Core:
* Provide for ABI specific plugin subdirectories on all platforms
* Force cleanup of datasets when destroying the dataset manager
* Add a GDALDataset::CloseDependentDatasets() that can be used by GDALDriverManager::~GDALDriverManager() to safely close remaining opened datasets (3954)
* Add GDALRasterBand::ReportError() and GDALDataset::ReportError() to prepend dataset name (and band) before error message (4242)
* Fix performance problem when serializing huge color tables, metadata, CategoryNames and GCPs to VRT/PAM (3961)
* Be careful about Nan complex values getting histogram, avoid locale issues with statistics metadata
* GDALRasterBand::IRasterIO() default implementation : don't try to use full-res band if I/O failed on the appropriate overview band (for WMS errors)
* RasterIO: Return earlier when a write error occurred while flushing dirty block
* 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
* Use sibling file list to look for .aux.xml, .aux, .ovr, world files, tab files
* Add GDALFindAssociatedFile() (4008)
* PAM: Make sure GCPs loaded from a .aux.xml override any existing ones from other sources, like an .aux file
* PAM: Add cloning of CategoryNames
* PAM : PamFindMatchingHistogram() - fix floating-point comparison
* GMLJP2: Use http://www.opengis.net/gml as the schemaLocation
* GMLJP2: Support for capturing and writing page resolution in a TIFF compatible way (3847)
* GDALJP2Box::SetType() : remove byte-swapping so that SetType()/GetType() correctly round-trips. Do appropriate changes in JP2KAK and ECW drivers. (4239)
* GDALReplicateWord(): fix off-by-one error initialization (4090)

Algorithms:
* polygonize: Added GDALFPolygonize() as an alternative version of GDALPolygonize() using 32b float buffers instead of int32 ones. (4005)
* gdalwarp: take into account memory needed by DstDensity float mask (4042)
* rasterfill: create working file as a bigtiff if at all needed (4088)
* gdalrasterize: use double instead of float to avoid precision issues (4292)

Utilities:
* gdalsrsinfo: new supported utility to report SRS in various form (supersedes testepsg)
* gdalinfo: add '-nofl' option to only display the first file of the file list
* gdalinfo: add '-sd num' option to report subdataset with the specified number.
* gdalinfo: add '-proj4' option to gdalinfo, to report a PROJ.4 string for the CRS
* gdal_translate: propagate INTERLEAVE metadata to intermediate VRT dataset
* gdal_translate: force quiet mode when writing to /vsistdout/
* gdalwarp: Disable CENTER_LONG rewrapping for cutline (3932)
* gdalwarp: add -refine_gcps option to discard outliers GCPs before warping (4143)
* gdalwarp: add warning if user specifies several of -order, -tps, -rpc or -geoloc options
* gdalwarp: speed-up when using -tps with large number of GCPs
* gdalwarp: add support for optional use of libarmadillo to speed-up matrix inversion in -tps mode
* gdalwarp: detect situations where the user will override the source file
* gdallocationinfo: do not let one off-db pixel cause all the rest to be suppressed (4181)
* 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)
* gdal_rasterize: when source datasource has a single layer, use it implicitly if none of -l or -sql is specified
* nearblack: add -color option (4085)
* nearblack: improve detection of collar
* nearblack: remove useless restrictions on number of bands for -setmask and -setalpha options (4124)
* gcps2vec.py: Fix command line parsing; Add SRS definition to created vector layer; Use Point geometry when dumping pixel/line coordinates.
* gdal_merge.py: add support for -separate with multiband inputs (4059)
* gdal_merge.py: add a -a_nodata option (3981)
* gdal_proximity.py: -co option existed, but was unused...
* gdal_fillnodata.py: add -co option
* Add gdal_ls.py and gdal_cp.py as Python samples
* Add new sample utility, gdal_edit.py, to edit in place various information of an existing GDAL dataset (projection, geotransform, nodata, metadata) (4220)
* gdalcopyproj.py: make it copy GCPs too
* Add warning if a target filename extension isn't consistent with the output driver
* Add --pause for convenient debugging, document it and --locale

Multi-driver topics:
* 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)
* 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
* Port DOQ1, DOQ2, ELAS, Idrisi, L1B, NDF, NWT_GRD, NWT_GRC, USGSDEM to VSI virtual file API
* PAM-enable BT and BLX drivers
* Implement Identify() for AAIGrid, ACE2, DTED, NWT_GRD, NWT_GRC, WMS, WCS, JDEM and BSB drivers
* Make GIF, JPEG and PNG drivers return a non NULL dataset when writing to /vsistdout/
* HFA and GTiff: add explicit error message when trying to add external overviews when there are already internal overviews (4044)
* 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

AAIGrid:
* Make opening from /vsicurl/ work even when the server returns an empty file list

ACE2 driver:
* New for GDAL/OGR 1.9.0
* Read ACE2 DEM

AIG driver:
* Support uncompressed integer files, new in ArcGIS 10 it seems (4035)
* Use color table from PAM if no native one (4021)
* Fallback to PAM mechanism for RAT (4021)

BSB driver:
* Parse the GD keyword in BSB_KNP to recognize European 1950 datum (4247)
* fix compilation issues with -DBSB_CREATE

CEOS2 driver:
* avoid potential crash reading past end of string. (4065)

CTG driver:
* New for GDAL/OGR 1.9.0
* Read USGS LULC Composite Theme Grid files

DIMAP driver:
* Add support for DIMAP2
* Check underlying raster for SRS. There are cases where HORIZONTAL_CS_CODE is empty and the underlying raster is georeferenced

E00GRID driver:
* New for GDAL/OGR 1.9.0
* Read Arc/Info Export E00 GRID

ECRGTOC driver:
* New for GDAL/OGR 1.9.0
* Read TOC.xml file of ECRG products

ECW driver:
* Use a long refresh time for ecwp:// connections to ensure we get full resolution data, make configurable
* Re-enable writing non8bit data in jpeg2000
* Add implementation of an Async reader (4.x SDK)
* Improve to support all /vsi stuff (2344)
* Ensure ECW_ENCODE_ values are applied for direct Create as well as CreateCopy
* force adfGeoTransform[5] sign to negative. (393)
* Mark GDAL_DCAP_VIRTUALIO=YES when the driver is configured in read-only mode
* Ensure we fallback to native geotransform if no pam override
* Try to read projection info embedded in ECW file before reading the worldfile (4046)
* Add support for updating geotransform and projection info of a ECW file (4220)
* Fix ECW_CACHE_MAXMEM that was without effect and ECW_AUTOGEN_J2I that set an unrelated ECW parameter (4308)
* Allow to open a ECW file with invalid EPSG code from SWIG bindings (4187)

EHdr driver:
* Improve floating point detection (3933)
* Recognize MIN_VALUE and MAX_VALUE as found in ETOPO1 header
* Try opening the .sch file for GTOPO30 or SRTM30 source file
* Ignore bogus .stx file where min == nodata

EIR driver:
* Add support for DATA_TYPE keyword

ENVI driver:
* Add support for ESRI style coordinate system string (3312)
* Try to guess interleave mode from file extension, if interleave keyword is missing
* Refuse to open unsupported types, but attempt to open everything else.

ENVISAT driver:
* Correct dfGCPLine values for stripline products (3160, 3709)
* Fix checking of tie points per column for MERIS GCPs (4086)
* Report metadata from the ASAR ADS and GADS in the RECORDS metadata domain (4105)
* Read MERIS metadata (4105)
* Read data from ERS products in ENVISAT format (4105)
* Improved MERIS Level 2 bands detection (4141 and 4142)

EPSILON driver:
* Now require libepsilon 0.9.1 to build (now dual LGPL/GPL) (4084)

ERS driver:
* Use case insensitive find so case does not matter (3974)
* Handle case of 1 m pixel resolution when CellInfo is missing (4067)
* Implement ERSRasterBand::SetNoDataValue() (4207)
* Add support for DATUM, PROJ and UNITS creation option; report the values read from the .ers file in the ERS metadata domain (4229)

GeoRaster driver:
* Set nodata causes invalid XML metadata (3893)
* Fix SetStatistics() failure (4072)
* Fix default interleaving (4071)
* modelCoordinateLocation=CENTER default (3266)
* Cache block/level error in update (4089)
* Fix sequence.nextval not supported (Oracle 10g) (4132)
* change BLOCKING option to OPTIMALPADDING
* fix 'cannot specify columns on insert create option' (4206)
* Fix ULTCoordinate Rows/Columns swapping (3718)
* Fix loading of small images, FlushCache issue (4363)

GIF driver:
* Make CreateCopy() more friendly with writing in /vsistdout/

GRIB driver:
* Fix grid vs cell-center convention (2637)
* use /vsi for all jpeg2000 files now
* Fix to allow GFS data to show up properly (2550)
* Added a ConfigOption in GRIB driver to not normalize units to metric when reading the data
* Fixed grib1 & grib2 : pixel size precision introduces error for corner coordinates (4287)

GTA driver:
* New for GDAL/OGR 1.9.0
* Read/write support for Generic Tagged Arrays

GTiff driver:
* 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)
* Add support for a special tag to keep track of properly written linear units (3901)
* Implement deferred directory chain scanning to accelerate simple opens
* Make GTiff COPY_SRC_OVERVIEWS to deal with unusual source overview sizes (3905)
* Fix bug when using -co COPY_SRC_OVERVIEWS=YES on a multiband source with external overviews (3938)
* Add logic to fill out partial tiles on write in for jpeg images (4096)
* Updated to libtiff 4.0.0 final
* Refresh with libgeotiff 1.4.0, to support for GeogTOWGS84GeoKey
* Add support for Geocentric SRS
* libtiff: Enable DEFER_STRILE_LOAD
* Turn warning 'ASCII value for tag xx into more silent CPLDebug message
* Overviews: Improve error reporting for >16bit images to JPEG compression
* Use CPLAtof() for geotiff and epsg .csv file handling (3886, 3979)
* 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.
* 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).
* Migrate in some ESRI only logic for 1bit color tables, AdjustLinearUnits and default for 1bit data
* Add a GTIFF_IGNORE_READ_ERRORS configuration option (3994)
* Lazy loading of RPC/RPB/IMD files (3996)
* Add mutex protection in GTiffOneTimeInit() to avoid occasional segfaults
* Stop interpreting 4th band as alpha when not defined
* Also list nSubType == FILETYPE_PAGE as subdatasets
* CreateCopy(): copies category names from the source bands
* Add capability of writing TIFFTAG_MINSAMPLEVALUE and TIFFTAG_MAXSAMPLEVALUE
* Don't prevent from loading GTiff driver even if libtiff version mismatch detected (4101)
* Use GTIFF_ESRI_CITATION flag to disable writing special meaning ESRI citations
* Optimize GTiffRGBABand implementation (3476)
* Add GTIFF_DIRECT_IO config. option that can be set to YES so that IRasterIO() reads directly bytes from the file using ReadMultiRange().
* Use VSI_TIFFOpen() in GTIFFBuildOverviews() to make it work on virtual file systems
* Treat _UNASSALPHA as alpha

GRASSASCIIGrid driver:
* New for GDAL/OGR 1.9.0
* Read GRASS ASCII grids (similar to ArcInfo ASCII grids)

GRIB driver:
* Check for memory allocation failures

HDF4 driver:
* Use larger object name buffer
* Handle SWopen failures

HDF5 driver:
* Fix HDF5/BAG handle/memory leaks (3953)
* Better error checking
* Do not return NULL from getprojectionref() (4076)
* Identify datasets whose header starts with some XML content (4196)
* Fixed HDF5 variable length string attributes reading (4228)

HFA driver:
* Add support for writing RATs (999)
* Add support for reading 2bit compressed .img files (3956)
* Update EPRJ_ list based on input from Erdas, round trip Krovak and Mercator Variant A (3958)
* Major push to move projections from 1.6-esri into trunk in HFA driver (3958)
* Reinitialize RRDNamesList and ExternalRasterDMS (3897)
* Ensure the whole entry is reinitialized when writing proparams and datum (3969)
* Ensure PEString cleared if we aren't writing it (3969)
* 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.
* atof() changed to CPLAtofM() to avoid locale issues.
* Altered Edsc_BinFunction column "Value" to "BinValues" and changed type.
* Equirectangular StdParallel1 changed to LatitudeOfOrigin.
* Logic to preserve psMapInfo->proName as the PROJCS name for UTM/StatePlane.
* Special state plane zone handling.
* Special wisconsin handling for some LCC and TM SRSes.
* 1-bit null blocks to default to 1 in ESRI_BUILDs
* Add support for GDA94 (4025)

Idrisi driver:
* Fix segfaults when fields are missing in .ref or .rdc files (4100)
* Fix problem with inverse flattening when reading a SRS of a sphere (3757)

INGR driver:
* Set NBITS for 1 bit bands

ISIS2/ISIS3 driver:
* Various improvements to PDS related drivers (3944)

JaxaPalsar driver:
* Fixed datatype of ALOS PALSAR products Level 1.5 (4136)
* Fixed detection of unsupported PALSAR Level 1.0 products (2234)

JPIPKAK driver:
* Add try to in GetNextUpdatedRegion() to protect against kakadu exceptions (3967)
* Fixed a serious bug in the computation of fsiz and region. (3967)

KMLSUPEROVERLAY driver :
* 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)

LAN driver:
* Preliminary support for writing gis/lan files

MEM driver:
* Add support for remembered histograms and PIXELTYPE

MG4Lidar driver:
* Clamp nOverviewCount, some LiDAR files end up with -1 overviews

MrSID driver:
* Initialize overview manager to enable RFC 15 mask band support (3968)
* Mark GDAL_DCAP_VIRTUALIO=YES when the driver is configured in read-only mode
* Handle LTI_COLORSPACE_RGBA

NetCDF driver:
* Set cylindrical equal area representation to the proper cf-1.x notation (3425)
* Fix precision issue in geotransform (4200) and metadata
* Add support for netcdf filetypes nc2(64-bit) and nc4 to netCDFDataset (3890, 2379)
* Add function Identify and IdentifyFileType() (3890, 2379)
* Temporarily disabling PAM for netcdf driver (4244)
* Make creation of geographic grid CF compliant (2129)
* Fixes for netcdf metadata export: duplication, Band metadata, int/float/double vs. char* and add_offset/scale_factor (4211, 4204), double precision ( 4200)
* Fix netcdf metadata import (float and double precision) (4211)
* Improve import of CF projection
* Add netcdf history metadata (4297)
* CF-1.5 compatible export of projected grids (optional long/lat export)
* Fix LCC-1SP import and export (3324)
* Fix handling of UNITS import and export (4402 and 3324)
* Fix upside-down export and import of grids without projection and geotransform (2129, 4284)
* Support import of polar stereographic variant without standard parallel (2893)
* New driver options
* Add simple progress indicator
* Add support for netcdf-4, HDF4 and HDF5 (4294 and 3166)
* Add support for deflate compression
* Add format support information and CreateOptionList to driver metadata
* Add support for valid_range/valid_min/valid_max
* Proper handling of signed/unsigned byte data
* Add support for Create() function and significantly refactor code for export (4221)
* Improvements to CF projection support (see wiki:NetCDF_ProjectionTestingStatus)

NGSGEOID driver:
* New for GDAL/OGR 1.9.0
* Read NOAA NGS Geoid Height Grids

NITF driver:
* Add a generic way of decoding TREs from a XML description file located in data/nitf_spec.xml
* Add a new metadata domain xml:TRE to report as XML content the decoded TREs
* Add NITF_OPEN_UNDERLYING_DS configuration option that can be set to FALSE to avoid opening the underlying image with the J2K/JPEG drivers
* Support JP2KAK driver for jpeg2000 output, use /vsisubfile/ in all cases
* NITFCreate(): deal with cases where image_height = block_height > 8192 or image_width = block_width > 8192 (3922)
* Add IREPBAND and ISUBCAT creation option (4343)
* Make sure scanline access is used only on single block image (3926)
* 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)
* Correctly assign hemisphere for a ICORDS='U' NITF file with accompanying .nfw and .hdr files (3931)
* Make PAM available at band level for JPEG/JPEG2000 compressed datasets (3985)
* Read IMRFCA TRE for RPC info. Read CSEXRA TRE.
* Read CSDIDA and PIAIMC TREs as metadata
* Optional support for densifying GCPs and applying RPCs to them
* Add GetFileList() that captures associated files with some NITF products.
* Added ESRI only ExtractEsriMD() function. Add raw header capture in NITF_METADATA domain in base64 encoded form.
* Fetch NITF_DESDATA in segment data; decode specialized fields of XML_DATA_CONTENT and CSATTA DES
* Truncate TRE name to 6 character (4324)
* Take into account the presence of comments when patching COMRAT for JPEG/JPEG2000 NITF (4371)

NWT_GRD driver:
* Fix interpolation of color when the maximum z value is below a threshold of the color scheme (4395)

OPENJPEG driver:
* Optimize decoding of big images made of a single block
* Fallback to PAM to get projection and geotransform

PCIDSK driver:
* Refresh PCIDSK SDK from upstream
* Fix support for band description setting, add BANDDESCn creation option
* Implement GetCategoryNames(), and color table from metadata for PCIDSK
* Fix exception on files with bitmaps as bands in GetFileList()
* Avoid closing and reopening file so we don't fracture the SysBMData with a metadata write
* In read-only, if .pix is raster (resp. vector) only, then make sure that OGR (resp. GDAL) cannot open it

PDF driver:
* Support linking against podofo library (LGPL) instead of poppler --> however
pdftoppm binary from poppler distribution is needed for rasterization

PDS driver:
* Add support for MISSING and MISSING_CONSTANT keywords for nodata values (3939)
* Add support for uncompressed images in the UNCOMPRESSED_FILE subdomain (3943)
* Add support for PDS_Sample/LineProjectOffset_Shift/Mult (3940)
* Preliminary qube write support (3944)
* Fix band offset computation in BSQ (4368)

PNG driver:
* Add compatibility with libpng >= 1.5.0 (3914)
* Upgrade internal libpng to 1.2.46

PNM driver:
* Make it compatible with VSI virtual files

PostgisRaster driver:
* Speed of PostGIS Raster driver improved. (3228, 3233)

Rasterlite driver:
* Robustness against buggy databases
* Enable QUALITY creation option for WEBP tiles

RS2 driver:
* Setup to properly support subdataset oriented metadata and overviews (4006)
* Allow opening subdatasets by passing in the folder (4387)

SAGA driver:
* Fix reading & writing .sdat files bigger than 2GB (4104)
* Use nodata value from source dataset in CreateCopy() (4152)

SDE driver:
* Break assumption that LONG==long (4051)

SNODAS driver:
* New for GDAL/OGR 1.9.0
* Read Snow Data Assimilation System datasets

SRP driver:
* Set Azimuthal Equidistant projection/geotransform info for ASRP north/south polar zones (3946)
* ASRP/USRP: fix skipping of padding characters on some datasets (4254)

SRTMHGT driver:
* Fix segfault in CreateCopy() if we cannot create the output file

Terralib driver:
* Removed driver: was unfinished and is unmaintained (3288)

TIL driver:
* Implement GetFileList() (4008)

TSX driver:
* Add support for selecting a directory
* Make Terrasar-X driver also open TanDEM-X data (4390)
* Fix memleaks

USGSDEM driver:
* Ensure blocks read in C locale (3886)

VRT driver:
* Implement VRTDataset::IRasterIO() that can delegate to source Dataset::RasterIO() in particular cases
* Implement GetMinimum() and GetMaximum()
* GetFileList(): for /vsicurl/ resources, don't actually test their existence as it can be excruciating slow
* VRTComplexSource: correctly deal with complex data type (3977)
* Fix 2 segfaults related to using '<VRTDataset', but with invalid XML, as the target filename of VRTDataset::Create()
* Fix 'VRTDerivedRasterBand with ComplexSource and nodata value yields potentially uninitialized buffer' (4045)
* VRTDerivedRasterBand: Recognize PixelFunctionType and SourceTransferType options in AddBand() for (3925)
* Copy GEOLOCATION metadata in CreateCopy().
* VRTDerivedRasterBand: register pixel functions in a map for faster access (3924)
* VRT warped dataset: limit block size to dataset dimensions (4137)

WCS driver:
* Add time support (3449)
* Honour dimensionLimit restrictions on WCS request size.
* Fetch projection from returned image file chunks if they have them (i.e. GeoTIFF).
* Honour Resample option for WCS 1.0.
* Include service url in GetFileList if ESRI_BUILD defined
* Check validity of 'OverviewCount' parameter
* Add support for getting the coverage offering details from the xml:CoverageOffering domain
* Try to preserve the servers name for a CRS (WCS 1.0.0) (3449).

WebP driver:
* New for GDAL/OGR 1.9.0
* Read/write GDAL driver for WebP image format

WMS driver:
* Implementation of the OnEarth Tiled WMS minidriver (3493)
* Implementation of a VirtualEarth minidriver
* Improve handling of .aux.xml files, ensure colorinterp support works for tiled wms server
* 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
* 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
* Parse WMS-C TileSet info in VendorSpecificCapabilities of GetCapabilities
* Implement CreateCopy() when source is a WMS dataset to serialize to disk the definition of a WMS dataset
* WMS dataset : report INTERLEAVE=PIXEL
* Make autodetection of TMS work with http://maps.qualitystreetmap.org/tilecache
* Add capability to set Referer http header
* Add a TMS-specific hack for some servers that require tile numbers to have exactly 3 characters (3997)
* Fix to make file:// URL to work
* Add hack for OSGEO:41001
* Fix GDALWMSRasterBand::IReadBlock() to avoid the ReadBlocks() optimization to become an anti-optimization in some use cases
* Add service=WMS parameter if not already provided in <ServerUrl> (4080)
* Add options, ZeroBlockHttpCodes and ZeroBlockOnServerException, to control which http error codes should be considered as meaning blank tile (4169)

ZMap driver:
* New for GDAL/OGR 1.9.0
* Read/write GDAL driver for ZMap Plus Grid format

OGR 1.9.0 - Overview of Changes

Core:
* RFC35: Add OGRLayer::DeleteField(), ReorderField(), ReorderFields() and AlterFieldDefn()
* Avoid OGRLineString::addPoint( OGRPoint * poPoint ) to always force the geometry to be 3D (3907)
* Add a OGREnvelope3D object and getEnvelope( OGREnvelope3D * psEnvelope ) / OGR_G_GetEnvelope3D() method
* Add OGR_G_SimplifyPreserveTopology() / OGRGeometry::SimplifyPreserveTopology()
* OGR SQL: recognize optional ESCAPE escape_char clause
* OGR SQL: allow NULL to be used as a value, so that 'SELECT *, NULL FROM foo works'
* OGR SQL: Accept doublequoting of column_name in 'SELECT DISTINCT "column_name" FROM table_name' (3966)
* 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)
* OGR SQL: Avoid error emission on requests such as 'SELECT MIN(EAS_ID), COUNT(*) FROM POLY'
* OGR SQL: Avoid setting width/precision for AVG column
* OGR SQL: Add a mechanism to delete a layer (DROP TABLE x)
* OGR SQL: fix segfault when evaluating a 'IS NULL' on a float column (4091)
* 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'
* OGR SQL: Add implicit conversion from string to numeric (4259)
* OGR SQL: Correctly parse big SQL statements (4262)
* OGR SQL: fix joining a float column with a string column (4321)
* OGR SQL: with DISTINCT, consider null values are such, and not as empty string (4353)
* OGR SQL: fix offset conversion for SUBSTR() (4348)
* Add OGR_G_GetPoints()
* Fix parsing of WKT geometries mixing 2D and 3D parts
* OGR_Dr_CopyDataSource() and OGRSFDriver::CopyDataSource() : make sure that the driver is attached to the created datasource (4350)
* OGRFeature::SetFrom() supports more conversions between field types.

OGRSpatialReference:
* Update to EPSG 7.9 database
* Add Geocentric SRS Support
* Add support for Interrupted Goode Homolosine projection (4060)
* Add SRS vertical unit support
* Add SetVertCS(), OSRSetVertCS(), SetCompound(), IsCompound() and target oriented set/get linear units functions
* ESRI : Improve spheroid remapping (3904)
* ESRI: Compare whole names in RemapNameBasedOnKeyName() (3965).
* ESRI: addition of ImportFromESRIStatePlaneWKT and ImportfromESRIWisconsinWKT methods
* ESRI: importFromESRI() : support POLYCONIC projection from old style files (3983)
* ESRI: importFromESRI() : support LAMBERT_AZIMUTHAL projection from old style files (4302)
* ESRI: fix EPSG:32161 mapping
* ESRI: fix Stereo/Oblique_Stereo/Double_Stereo (bugs 1428 and 4267)
* ESRI: fix projection parameter mapping for Orthographic projection (4249)
* ESRI: add optional fixing of TOWGS84, DATUM and GEOGCS with GDAL_FIX_ESRI_WKT config. option (4345 and 4378)
* ESRI: fix add Krassowsky/Krasovsky 1940 spheroid mapping
* Add EPSG:102113 in the data/esri_extra.wkt file
* Add Germany zone 1-5 in range 31491-31495 in the data/esri_extra.wkt file
* fix NAD_1983_Oregon_Statewide_Lambert_Feet_Intl code
* added/updated coordinates systems provided by IGNF (3868)
* ERM: add support for EPSG:n based coordinate systems (3955)
* ImportFromEPSG(): Add default support for various degree units without supporting .csv file.
* ImportFromEPSG(): Add support for spherical LAEA (3828)
* ImportFromEPSG(): use CoLatConeAxis parameter to build Krovak azimuth parameter (4223)
* importFromURN(): support compound SRS
* importFromURN(): accept 'urn:opengis:crs:' syntax found in some TOP10NL GML files
* Add CRS: support and for importing two part ESRI PE SRS with VERTCS
* SetFromUserInput() : recognize 'IGNF:xxx'
* Ensure that the result of importFromEPSGA() always has keyword ordering fixed up (4178)
* exportToERM() : deal with GDA94 datum and its UTM projections (4208)
* Fix ESRI_DATUM_NAME for D_MOLDREF99 and D_Philippine_Reference_System_1992 (4378)

Utilities:
* ogr2ogr: Make 'ogr2ogr someDirThatDoesNotExist.shp dataSourceWithMultipleLayer' create a directory
* ogr2ogr: make -overwrite/-append work with non-spatial tables created by GDAL 1.8.0;
* 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)
* 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
* ogr2ogr: add -simplify option to simplify geometries
* 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
* ogrinfo/ogr2ogr: exit when SetAttributeFilter() fails, instead of silently going on (4261)

Multi driver topics:
* RFC35 : implementation in Shapefile, Memory and PG drivers (2671)
* DXF, EDIGEO, KML, LIBKML, Shapefile, SDE, SOSI: Mark as supporting UTF-8
* 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)

ARCGEN driver:
* New for GDAL/OGR 1.9.0
* Read-only OGR driver for Arc/Info Generate files

CouchDB driver:
* New for GDAL/OGR 1.9.0
* Read/write OGR driver for CouchDB / GeoCouch

CSV driver:
* Add special recognition and handling for USGS GNIS (Geographic Names Information System) files
* Directly recognize the structure of the allCountries file from GeoNames.org
* Implement GetFeatureCount() to be a little bit faster
* Accept /dev/stdout as a filename for CreateDataSource()
* Fix handling of non-numeric values in numeric columns (NULL instead of 0)
* Fix handling of column names with numbers
* Recognize numeric fieldnames inside quotes
* Accept real numbers with ',' as decimal separator when ';' is the field separator (CSV export in French locale)

DXF driver:
* Add support for DXF_ENCODING config var and DWGCODEPAGE header field (4008)
* Added DXF_MERGE_BLOCK_GEOMETRIES
* Treat ATTDEFs the same as TEXT entities
* Implement hatch polyline and elliptical arc support, hatch fill, do not polygonize closed smoothed lines
* Add handling of hidden/frozen/off layers.

DWG driver:
* New for GDAL/OGR 1.9.0
* Read DWG files through the use of Open Design Alliance Teigha Libraries

EDIGEO driver:
* New for GDAL/OGR 1.9.0
* Read files of French EDIGEO exchange format

FileGDB driver:
* New for GDAL/OGR 1.9.0
* Read/write support based on FileGDB API SDK

GeoJSON driver:
* Support writing 3D lines and polygons
* Add a bbox attribute with the geometry bounding box if WRITE_BBOX layer creation option is set (2392)
* Write bbox of FeatureCollection before features when file is seekable
* Remove unsetting of FID that caused FID not at the last position of properties to be lost
* Properly deal with null field values in reading and writing
* Handle OFTIntegerList, OFTRealList and OFTStringList fields
* Recognize other arrays as OFTString field
* Fix assertion on unhandled ESRI json (4056)
* Fix segfault on feature where 'properties' member exists but isn't an object (4057)
* Better detection of OGR type for numeric JSON fields (4082)
* 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)
* Add OGR_G_ExportToJsonEx() to accept a list of options
* Add ability to detect geojson files without an extension (4314)

Geomedia driver:
* New for GDAL/OGR 1.9.0
* Read-only driver to read Geomedia .MDB databases

GeoRSS driver:
* Parse RSS documents without <channel> element

GFT driver:
* New for GDAL/OGR 1.9.0
* Read/write driver for Google Fusion Tables

GML driver:
* Major performance improvement when reading large multi-layer GML files. See usage of new GML_READ_MODE configuration option
* Support gml:xlink resolving for huge GML files through GML_SKIP_RESOLVE_ELEMS=HUGE (requires SQLite)
* Add GML_GFS_TEMPLATE config option to specify a template .gfs file that can be used for several GML files with similar structure (4380)
* 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
* 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.
* Improve handling of .gml and .xsd produced by FME (in particular for CanVec GML)
* Be able to open .gz file directly (like OS Mastermap ones), and read/write the .gfs file next to the .gz file
* Fix segfault when encountering an invalid (or unhandled by OGR) geometry and when the axis order is lat/long (3935)
* GML3: use a new method to interpret Face objects (which requires GEOS support);
old method available if GML_FACE_HOLE_NEGATIVE config. option set to YES (3937)
* GML3: support Curve as a valid child for curveProperty inside directEdge parsing (3934)
* GML3: don't force the linestring to be 3D when inverting its orientation during parsing of directedEdge (3936)
* GML3: accept <pointProperty> element in <gml:LineString> or <gml:LineStringSegment>
* OGR_G_CreateFromGML(): accept <gml:coordinates> with coordinate tuples separated by comma and coordinate components separated by space
* Recognized schemas with <complexType> inside <element>, such as the one returned by http://deegree3-demo.deegree.org:80/deegree-utah-demo/services
* Write the Z component of bounding box for 25D geometries
* Force layer geometry type to 3D when there's only a .xsd file and we detect a hint that the bounding box is 3D
* Handle layers of type wkbNone appropriately (4154)
* 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)
* 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.
* 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)
* Fix bug in OGRAtof() that caused wrong parsing of coordinates in GML files written in scientific notation (4399)

GMT driver:
* Fix GetExtent() result that swallowed the first char of the minx bound (4260)

IDRISI driver:
* New for GDAL/OGR 1.9.0
* Read Idrisi .VCT vector files

ILI1 driver:
* Fix for missing geometry in ILI1

LIBKML driver:
* Set the OGRStylePen unit type to pixel when reading <LineStyle>
* Avoid ingesting zip files that are not valid kmz (4003)
* Do not use displayname to set the field name
* Recognize <Data> elements of <ExtendedData> in case <ExtendedData> doesn't use a <SchemaData>
* Fix mapping of the type attribute of <SimpleType> elements inside <Schema> to OGR field type (4171)
* Parse correctly kml docs containing only one placemark
* Properly set the feature style string from a placemarks style
* Improve OGRStyleLabel <-> KmlLabelStyle mapping
* Combine styles from the style table and features styles when LIBKML_RESOLVE_STYLE=YES (4231)
* Check that string values put in fields are valid UTF-8 (4300)

MDB driver:
* New for GDAL/OGR 1.9.0
* Read-only driver to read PGeo and Geomedia .MDB databases
* Relies on using the Java Jackcess library (LGPL) through JNI.

MITAB driver:
* Add support for reading google mercator from mapinfo (4115)
* Fixed problem of the null datetime values (4150)
* Fix problem with tab delimiter used in MIF files (4257)

MSSQLSpatial driver:
* Removing 'Initial Catalog' which is not supported in the ODBC SQL driver connection strings.
* Allow to specify 'Driver' in MSSQL connection strings (4393)
* Fix for the IDENTITY INSERT problem with MSSQL Spatial (3992)
* Add more verbose warnings to the geometry validator
* Fix for the schema handling problem with MSSQL Spatial (3951)
* Fix for the corrupt geometry report when using the ogr2ogr -sql option (4149)

MySQL driver:
* Recognize columns with types POINT, LINESTRING, etc. as geometry columns

NAS driver:
* Add support for treating wfs:Delete as a special Delete feature with typeName and FeatureId properties
* Handle empty files gracefully (3809)
* Preliminary support for SRS in NAS files, including 3GKn SRS
* Implement special treatment for <lage> to be zero passed and string (NAS 9)
* Add special handling of punktkennung (NAS 12)
* Add special handling for artDerFlurstuecksgrenze (4255)
* Add support for wfsext:Replace operations (PostNAS 11)
* Correct NASHandler::dataHandler() to avoid trimming non-leading white space

NTF driver:
* Create and manage height field as floating point since some DTM products have floating point elevations.

OCI driver:
* Added TRUNCATE layer creation option (4000)
* Clear errors after speculative dimension calls (4001)
* Fix multithreading related problems (4039)
* Ensure that AllocAndBindForWrite does not mess up if there are no general attributes (4063)
* Implement DeleteLayer(int) method
* Ensure extents updated by SyncToDisk(), and that new features are merged into existing extents (4079)

OGDI driver:
* Fix GetFeature() that did not like switching between layers

PG driver:
* Write geometries as EWKB by default to avoid precision loss (4138)
* Return the table columns in the order they are in the database (4194)
* 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)
* 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
* Add FID layer creation option to specify the name of the FID column
* ogr2ogr: make sure that for a PG datasource, -nln public.XXX can also be used with -append
* Fix CreateFeatureViaInsert() to emit 'INSERT INTO xx DEFAULT VALUES'
* Fix handling of Nan with fields with non-zero width (2112)
* Use wrapper for PQexec() to use PQexecParams() instead in most cases
* Add proper escaping of table and column names
* OGR SQL: add proper column name escaping and quoting for PostgreSQL datasources
* Launder single quote character in table name
* Better reporting of error in case of failed ExecuteSQL()
* Create field of type OFTString and width > 0, as VARCHAR(width) (4202)
* Add more compat with Postgis 2.0SVN (geometry_columns- 4217, unknown SRID handling)
* 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()

PGDump driver:
* fix handling of Nan with fields with non-zero width (2112)
* Add CREATE_SCHEMA and DROP_TABLE layer creation option (4033)
* Fix crash when inserting a feature with a geometry in a layer with a geom type of wkbNone;
* 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)
* Add NONE_AS_UNKNOWN, FID, EXTRACT_SCHEMA_FROM_LAYER_NAME layer creation options
* Better escaping of column and table names
* Create field of type OFTString and width > 0, as VARCHAR(width) (4202)

PGeo driver:
* Move CreateFromShapeBin() method to an upper level
* Only try to open .mdb files that have the GDB_GeomColumns string
* Decode Z coordinate for a POINTZM shape
* Aad support for decoding multipoint/multipointz geometries
* Fix setting of the layer geometry type
* Add support for zlib compressed streams
* Implement MultiPatch decoding

SDE driver:
* Add support for decoding NSTRING fields (4053)
* Add support in CreateLayer() to clean up partially registered tables that aren't full spatial layers
* Add logic to force envelope for geographic coordsys objects (4054)
* Add USE_STRING layer creation and configuration options information
* Set SE_MULTIPART_TYPE_MASK for multipolygon layers (4061).
* Change how offset and precision are set for geographic coordinate systems to more closely match SDE

SEGUKOOA driver:
* New for GDAL/OGR 1.9.0
* Read files in SEG-P1 and UKOOA P1/90 formats

SEGY driver:
* New for GDAL/OGR 1.9.0
* Read files in SEG-Y format

Shapefile driver:
* Encoding support for shapefile/dbf (882)
* Allow managing datasources with several hundreds of layers (4306)
* Lazy loading of SRS and lazy initialization of attribute index support
* Use VSI*L API to access .qix spatial index files
* Add special SQL command 'RECOMPUTE EXTENT ON layer_name' to force recomputation of the layer extent (4027)
* Faster implementation of GetFeatureCount() in some circumstances.
* Fix crash in CreateField() if there is no DBF file
* Fix add field record flushing fix (4073)
* Fix decoding of triangle fan in a multipatch made of several parts (4081)
* Refuse to open a .shp in update mode if the matching .dbf exists but cannot be opened in update mode too (4095)
* Recognize blank values for Date fields as null values (4265)
* Recognize 'NULL' as a valid value for SHPT creation option as documented
* Check that we are not trying to add too many fields.
* Support reading measure values as Z coordinate.

SQLite/Spatialite driver:
* Spatialite: major write support improvements (creation/update of Spatialite DB now limited to GDAL builds with libspatialite linking)
* Spatialite: add support for 3D geometries (4092)
* Spatialite: speed-up spatial filter on table layers by using spatial index table (4212)
* Spatialite: add support for reading Spatialite views registered in the views_geometry_columns
* Spatialite: better support for building against amalgamated or not
* Spatialite: when it exists, use srs_wkt column in spatial_ref_sys when retrieving/inserting SRS
* Spatialite: add COMPRESS_GEOM=YES layer creation option to generate Spatialite compressed geometries
* Spatialite: add support for VirtualXLS layers.
* 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
* Implement RFC35 (DeleteField, AlterFieldDefn, ReorderFields)
* Implement DeleteDataSource()
* Implement DeleteFeature()
* Implement SetFeature() by using UPDATE instead of DELETE / INSERT
* Add capability to use VSI Virtual File API when needed (if SQLite >= 3.6.0)
* Make CreateDataSource(':memory:') work
* Enforce opening update/read-only mode to allow/forbid create/delete layers, create/update features (4215)
* Launder single quote character in table name; properly escape table name if no laundering (1834)
* 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
* 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
* Map 'DECIMAL' columns to OGR real type (4346)
* Add OGR_SQLITE_CACHE configuration option for performance enhancements
* Try to reuse INSERT statement to speed up bulk loading.

SVG driver:
* New for GDAL/OGR 1.9.0
* Read only driver for Cloudmade Vector Stream files

S57 driver:
* Add support for Dutch inland ENCs (3881)
* Allow up to 65536 attributes, use GUInt16 for iAttr (3881)
* Be cautious of case where end point of a line segment has an invalid RCID
* Correct handling of update that need to existing SG2D into an existing feature without it (4332)

VRT driver:
* Do not try to read too big files
* Lazy initialization of OGRVRTLayer
* Don't set feature field when source feature field is unset

WFS driver:
* Add preliminary support for WFS 2.0.0, but for now don't request it by default.
* Increase performance of layer definition building by issuing a DescribeFeatureType request for several layers at the same time
* Better server error reporting
* Use the layer bounding box for EPSG:4326 layers (restricted to GEOSERVER for now) (4041)
* Add capability of opening a on-disk Capabilities document
* Add special (hidden) layer 'WFSLayerMetadata' to store layer metadata
* Add special (hidden) layer 'WFSGetCapabilities' to get the raw XML result of the GetCapabilities request
* CreateFeature()/SetFeature(): use GML3 geometries in WFS 1.1.0 (make TinyOWS happy when it validates against the schema)
* Make spatial filtering work with strict Deegree 3 servers
* Fix reading when layer names only differ by their prefix

XLS driver:
* New for GDAL/OGR 1.9.0
* Read only driver for MS XLS files and relies on FreeXL library.

XPlane driver:
* Port to VSI*L API

XYZ driver:
* Ignore comment lines at the beginning of files

SWIG Language Bindings

General :
* RFC 30: Correct the signature of Datasource.CreateDataSource() and DeleteDataSource(), gdal.Unlink() to accept UTF-8 filenames (3766)
* Add Band.GetCategoryNames() and Band.SetCategoryNames()
* Add Geometry.GetPoints() (only for Python and Java) (4016)
* Add Geometry.GetEnvelope3D()
* Add Geometry.SimplifyPreserveTopology()
* Extend SWIG Geometry.ExportToJson() to accept a list of options (4108)
* Add (OGR)DataSource.SyncToDisk()
* Add SpatialReference.SetVertCS(), IsSameVertCS(), IsVertical(), SetCompound(), IsCompound()
* Add SpatialReference.SetIGH() (4060)
* RFC 35: Add OGRLayer.DeleteField(), ReorderField(), ReorderFields(), AlterFieldDefn()
* Add gdal.VSIFTruncateL()

CSharp bindings:
* Implement the typemap for utf8_path in C (3766)
* Correcting the signature of OGRDataSource.Open to make the utf8 typemap to work (3766)

Java bindings:
* Turn the gdalJNI, gdalconstJNI and osrJNI into package private classes
* Make Layer.GetExtent() return null when OGR_L_GetExtent() fails.

Perl bindings:
* 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.
* Fixed UTF-8 support in decoding names (datasource, layer, field etc.).
* Assume all GDAL strings are UTF-8, handle all changes in typemaps.
* Additions to Perl bindings due to new developments etc: Layer capabilities, GeometryType method for Layer, improved create, new Export and Set methods for SpatialReference.
* 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
* 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
* Typemaps for VSIF{Write|Read}L, tests and docs for some VSI* functions.
* 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)

Python bindings:
* Improvements for ogr.Feature field get/set
* Add hack to bring Python 3.2 compatibility
* First argument of VSIFWriteL() should accept buffers for Python3 compat
* Fix reference leak in 'typemap(in) char **dict'
* Add gdal.VSIStatL()
* swig/python/setup.py : fix for virtualenv setups (4285)
* Layer.GetExtent() : add optional parameter can_return_null that can be set to allow returning None when OGR_L_GetExtent() fails
* Make gdal.VSIFSeekL(), gdal.VSIFTellL() and gdal.VSIFTruncateL() use GIntBig instead of long for compat with 32bit platforms
* Add script to build the python extensions with Python 2.7 and a mingw32 cross-compiler under Linux/Unix

Ruby bindings:
* Build SWIG Ruby Bindings against modern Ruby versions (1.8.7 and 1.9.2) (3999)

GDAL/OGR 1.8.0 release notes

(Note: Most changes/bugfixes between 1.7.0 and 1.8.0 that have already gone
to the 1.7.X maintenance releases are not mentioned hereafter.)

In a nutshell...

* New GDAL drivers : GTX, HF2, JPEGLS, JP2OpenJPEG, JPIPKAK, KMLSUPEROVERLAY,
LOS/LAS, MG4Lidar, NTv2, OZI, PDF, RASDAMAN, XYZ
* New OGR drivers : AeronavFAA, ArcObjects, GPSBabel, HTF, LIBKML, MSSQLSpatial, NAS,
OpenAir, PDS, PGDump, SOSI, SUA, WFS
* Significantly improved OGR drivers : DXF, GML
* New implemented RFCs : RFC 7, RFC 24, RFC 28, RFC 29, RFC 30, RFC 33
* New utility : gdallocationinfo

Backward compatibility issues

* MITAB driver: use "," for the OGR Feature Style id: parameter delimiter,
not "." as per the spec. Known impacted application :
MapServer (http://trac.osgeo.org/mapserver/ticket/3556)
* RFC 33 changes the way PixelIsPoint is handled for GeoTIFF (3838,3837)
* GML driver: write valid <gml:MultiGeometry> element instead of the non-conformant
<gml:GeometryCollection>. For backward compatibility, recognize both syntax for
the reading part (3683)

GDAL/OGR 1.8.0 - General Changes

Build(All):
* Make sure that 'import gdal' can work in a --without-ogr build

Build(Unix):
* Fix compilation on RHEL/Centos 64bit for expat and sqlite3 (3411)
* Update to autoconf 2.67 and libtool 2.2.6
* During the external libtiff autodetection check whether library version is 4.0
or newer, fallback to internal code otherwise. It is still possible to link
with older libtiff using the explicit configure option (3695)
* Make --with-threads=yes the default
* Allow using --with-spatialite=yes
* Check /usr/lib64/hdf for RedHat 64bit

Build(Windows):
* Change the default MSVC version to VS2008.

Page 5 of 9

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.