diff --git a/NEWS b/NEWS index 38316e4bbe..89f0ee99c1 100644 --- a/NEWS +++ b/NEWS @@ -80,6 +80,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. + + **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,