From 9d5c21d30e3219f44ccd237f8d8f3498d13de3d0 Mon Sep 17 00:00:00 2001 From: Aryan Gupta Date: Thu, 24 Aug 2023 08:34:17 +0530 Subject: [PATCH] [drivingdistance]updating news --- NEWS | 17 +++++++++++++++++ doc/src/release_notes.rst | 19 +++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/NEWS b/NEWS index 38316e4bbe..f3d1fb8a1b 100644 --- a/NEWS +++ b/NEWS @@ -80,6 +80,23 @@ pgRouting 3.6.0 Release Notes * ``pgr_KSP`` (`One To One`) added ``start_vid`` and ``end_vid`` column. +* [#2548](https://github.com/pgRouting/pgrouting/pull/2548) Standarize output and modifying signature + pgr_drivingdistance + + * New proposed functions: + * ``pgr_drivingdistance`` (`Single vertex`) + * ``pgr_drivingdistance`` (`Multiple vertices`) + + * Deprecated signatures: + + * ``pgr_drivingdistance(text,anyarray,double precision,boolean,boolean)`` + * ``pgr_drivingdistance(text,bigint,double precision,boolean,boolean)`` + + * Standarizing output columns to |result-bfs| + + * ``pgr_drivingdistance`` (`Single vertex`) added ``depth`` and ``start_vid`` column. + * ``pgr_drivindistance`` (`Multiple vertices`) added ``depth`` column. + **C/C++ code enhancements** * [#2504](https://github.com/pgRouting/pgrouting/pull/2504) To C++ pg data get, diff --git a/doc/src/release_notes.rst b/doc/src/release_notes.rst index 788cfcf5f5..f2e0507ef1 100644 --- a/doc/src/release_notes.rst +++ b/doc/src/release_notes.rst @@ -101,6 +101,25 @@ pgRouting 3.6.0 Release Notes * ``pgr_KSP`` (`One To One`) added ``start_vid`` and ``end_vid`` column. + +* [#2548](https://github.com/pgRouting/pgrouting/pull/2548) Standarize output and modifying signature + pgr_drivingdistance + + * New proposed functions: + * ``pgr_drivingdistance`` (`Single vertex`) + * ``pgr_drivingdistance`` (`Multiple vertices`) + + * Deprecated signatures: + + * ``pgr_drivingdistance(text,anyarray,double precision,boolean,boolean)`` + * ``pgr_drivingdistance(text,bigint,double precision,boolean,boolean)`` + + * Standarizing output columns to |result-bfs| + + * ``pgr_drivingdistance`` (`Single vertex`) added ``depth`` and ``start_vid`` column. + * ``pgr_drivindistance`` (`Multiple vertices`) added ``depth`` column. + + .. rubric:: C/C++ code enhancements * `#2504 `__ To C++ pg data get,