From jsanz at osgeo.org Tue Nov 14 00:44:27 2023 From: jsanz at osgeo.org (Jorge Sanz) Date: Tue, 14 Nov 2023 09:44:27 +0100 Subject: [OSGeo-Announce] GDAL 3.8.0 is released In-Reply-To: <444e1613-5121-4d6f-a871-ffae6cdc87f0@osgeo.org> References: <444e1613-5121-4d6f-a871-ffae6cdc87f0@osgeo.org> Message-ID: https://www.osgeo.org/foundation-news/gdal-3-8-0-is-released/ Hi, On behalf of the GDAL/OGR development team and community, I am pleased to announce the release of GDAL/OGR 3.8.0. GDAL/OGR is a C++ geospatial data access library for raster and vector file formats, databases and web services. It includes bindings for several languages, and a variety of command line tools. http://gdal.org/ The 3.8.0 release is a new feature release with the following highlights: * Add [JSONFG](https://gdal.org/drivers/vector/jsonfg.html) read/write vector driver for OGC Features and Geometries JSON. * Add [PMTiles](https://gdal.org/drivers/vector/pmtiles.html) read/write vector driver for PMTiles v3 datasets containing MVT PBF tiles * Add [S102](https://gdal.org/drivers/raster/s102.html) raster read-only driver for S-102 bathymetric products (depends on libhdf5) * Add [gdal_footprint](https://gdal.org/programs/gdal_footprint.html) utility: compute the footprint of a raster file, taking into account nodata/mask band, and generating polygons/multipolygons corresponding to areas where pixels are valid (#6264) * Python bindings: various enhancements to reduce the number of "gotchas" related to inter-object ownership relationships, and a few syntaxic sugar enhancements * Arrow interface: improve spatial and attribute filtering on read side; add write side with OGRLayer::WriteArrowBatch() * GeoPackage: much faster spatial index creation (~ 3-4 times faster) * ARG driver deprecated: will be removed in 3.9.0 * Bump of shared lib major version More complete information on the new features and fixes in the 3.8.0 release can be found at: https://github.com/OSGeo/gdal/blob/v3.8.0/NEWS.md The release can be downloaded from: ? * https://download.osgeo.org/gdal/3.8.0/gdal380.zip - source as a zip ? * https://download.osgeo.org/gdal/3.8.0/gdal-3.8.0.tar.gz - source as .tar.gz ? * https://download.osgeo.org/gdal/3.8.0/gdal-3.8.0.tar.xz - source as .tar.xz ? * https://download.osgeo.org/gdal/3.8.0/gdalautotest-3.8.0.tar.gz - test suite ? * https://download.osgeo.org/gdal/3.8.0/gdal380doc.zip - documentation / website Best regards, Even Rouault -- http://www.spatialys.com My software is free, but my time generally not. From jsanz at osgeo.org Fri Nov 24 04:25:23 2023 From: jsanz at osgeo.org (Jorge Sanz) Date: Fri, 24 Nov 2023 13:25:23 +0100 Subject: [OSGeo-Announce] pgRouting version 3.6.0 release In-Reply-To: References: Message-ID: <76ff7249-c4e1-469a-819d-7f45af86ba35@osgeo.org> https://www.osgeo.org/foundation-news/pgrouting-version-3-6-0-release/ Hello?pgRouting?community, The?pgRouting?Team is pleased to announce the?release?of?pgRouting?version 3.6.0 The latest?release?is available at [1] For discussions on the release, go to [2] To see all issues & pull requests closed by this?release?see the Git closed milestone for 3.6.0 on Github. [3] *Official functions changes* * #2516 Standarize output pgr_aStar o Standarizing output columns to (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) + pgr_aStar (One to One) added start_vid and end_vid columns. + pgr_aStar (One to Many) added end_vid column. + pgr_aStar (Many to One) added start_vid column. * #2523 Standarize output pgr_bdAstar o Standarizing output columns to (seq, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) + pgr_bdAstar (One to One) added start_vid and end_vid columns. + pgr_bdAstar (One to Many) added end_vid column. + pgr_bdAstar (Many to One) added start_vid column. * #2547 Standarize output and modifying signature pgr_KSP o Result columns standarized to: (seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) o pgr_ksp (One to One) + Added start_vid and end_vid result columns. o New overload functions: + pgr_ksp (One to Many) + pgr_ksp (Many to One) + pgr_ksp (Many to Many) + pgr_ksp (Combinations) * #2548 Standarize output pgr_drivingdistance o Standarizing output columns to (seq, depth, start_vid, pred, node, edge, cost, agg_cost) + pgr_drivingdistance (Single vertex) # Added depth and start_vid result columns. + pgr_drivingdistance (Multiple vertices) # Result column name change: from_v to start_vid. # Added depth and pred result columns. *Proposed functions changes* * #2544 Standarize output and modifying signature pgr_withPointsDD o Signature change: driving_side parameter changed from named optional to unnamed compulsory driving side. + pgr_withPointsDD (Single vertex) + pgr_withPointsDD (Multiple vertices) o Standarizing output columns to (seq, depth, start_vid, pred, node, edge, cost, agg_cost) + pgr_withPointsDD (Single vertex) # Added depth, pred and start_vid column. + pgr_withPointsDD (Multiple vertices) # Added depth, pred columns. o When details is false: + Only points that are visited are removed, that is, points reached within the distance are included o Deprecated signatures + pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean) + pgr_withpointsdd(text,text,anyarray,double precision,boolean,character,boolean,boolean) * #2546 Standarize output and modifying signature pgr_withPointsKSP o Standarizing output columns to (seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost) o pgr_withPointsKSP (One to One) + Signature change: driving_side parameter changed from named optional to unnamed compulsory driving side. + Added start_vid and end_vid result columns. o New overload functions + pgr_withPointsKSP (One to Many) + pgr_withPointsKSP (Many to One) + pgr_withPointsKSP (Many to Many) + pgr_withPointsKSP (Combinations) o Deprecated signature + pgr_withpointsksp(text,text,bigint,bigint,integer,boolean,boolean,char,boolean) *C/C++ code enhancements* * #2504 To C++ pg data get, fetch and check. o Stopping support for compilation with MSVC. * #2505 Using namespace. * #2512 [Dijkstra] Removing duplicate code on Dijkstra. * #2517 Astar code simplification. * #2521 Dijkstra code simplification. * #2522 bdAstar code simplification. *Documentation* * #2490 Automatic page history links. *SQL standarization* * #2555 standarize deprecated messages * On new internal function: do not use named parameters and default parameters. *To update your database* Download the packaged version from your operating system, and use this command in the database: ALTER EXTENSION?pgrouting?UPDATE TO "3.6.0"; [1]. https://github.com/pgRouting/pgrouting/releases/latest [2]. https://github.com/pgRouting/pgrouting/discussions/2587 [3]. https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.6.0%22 -- Regards, pgRouting Team. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jsanz at osgeo.org Wed Nov 29 06:21:35 2023 From: jsanz at osgeo.org (Jorge Sanz) Date: Wed, 29 Nov 2023 15:21:35 +0100 Subject: [OSGeo-Announce] pgRouting version 3.6.1 release In-Reply-To: References: Message-ID: https://www.osgeo.org/foundation-news/pgrouting-version-3-6-1-release/ Hello?pgRouting?community, The?pgRouting?Team is pleased to announce the?release?of?pgRouting?version 3.6.1 The latest?release?is available at [1] For discussions on the release, go to [2] To see all issues & pull requests closed by this?release?see the Git closed milestone for 3.6.1 on Github. [3] *### Issue fixes* * #2588 pgrouting 3.6.0 fails to build on OSX * * *### To update your database* Download the packaged version from your operating system, and use this command in the database: ALTER EXTENSION?pgrouting?UPDATE TO "3.6.1"; [1]. https://github.com/pgRouting/pgrouting/releases/latest [2]. https://github.com/pgRouting/pgrouting/discussions/2594 [3]. https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.6.1%22 -- Regards, pgRouting Team.