Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ milestone for 4.0.0
pgr_analyzeOneWay
* [#2827](https://github.com/pgRouting/pgrouting/issues/2827):
pgr_createVerticesTable
* [#2886](https://github.com/pgRouting/pgrouting/issues/2886):
pgr_nodeNetwork

**Removal of SQL deprecated internal functions**

Expand Down
1 change: 0 additions & 1 deletion configuration.conf
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,4 @@ categories | N | N | Y
#----------------------
# SQL only directories
#----------------------
topology | N | Y | Y
utilities | N | Y | Y
44 changes: 23 additions & 21 deletions doc/_static/page_history.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,29 +207,10 @@ var filesArr = [
{ v: '2.1', n: 'src/apsp_johnson/doc/index'},
{ v: '2.3', n: 'src/allpairs/doc/pgr_johnson'}
]),
new createInfo('pgr_nodeNetwork', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/node_network'},
{ v: '2.3', n: 'src/topology/doc/pgr_nodeNetwork'},
]),
new createInfo('topology-functions', '2.0', [
new createInfo('utilities-family', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/index'},
{ v: '2.3', n: 'src/topology/doc/topology'},
]),
new createInfo('pgr_createVerticesTable', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/create_vert_table'},
{ v: '2.3', n: 'src/topology/doc/pgr_createVerticesTable'}, 3.8
]),
new createInfo('pgr_createTopology', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/create_topology'},
{ v: '2.3', n: 'src/topology/doc/pgr_createTopology'}, 3.8
]),
new createInfo('pgr_analyzeOneWay', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/analyze_oneway'},
{ v: '2.3', n: 'src/topology/doc/pgr_analyzeOneWay'}, 3.8
]),
new createInfo('pgr_analyzeGraph', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/analyze_graph'},
{ v: '2.3', n: 'src/topology/doc/pgr_analyzeGraph'},
{ v: '3.8', n: 'topology-functions'},
]),
new createInfo('pgRouting-concepts', '2.0', [
{ v: '2.3', n: 'doc/src/tutorial/tutorial'},
Expand Down Expand Up @@ -260,6 +241,27 @@ var filesArr = [
{ v: '2.1', n: 'src/driving_distance/doc/dd_driving_distance_v3'},
{ v: '2.3', n: 'src/driving_distance/doc/pgr_drivingDistance'}
]),

new createInfo('pgr_nodeNetwork', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/node_network'},
{ v: '2.3', n: 'src/topology/doc/pgr_nodeNetwork'}, 3.8
]),
new createInfo('pgr_createVerticesTable', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/create_vert_table'},
{ v: '2.3', n: 'src/topology/doc/pgr_createVerticesTable'}, 3.8
]),
new createInfo('pgr_createTopology', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/create_topology'},
{ v: '2.3', n: 'src/topology/doc/pgr_createTopology'}, 3.8
]),
new createInfo('pgr_analyzeOneWay', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/analyze_oneway'},
{ v: '2.3', n: 'src/topology/doc/pgr_analyzeOneWay'}, 3.8
]),
new createInfo('pgr_analyzeGraph', '2.0', [
{ v: '2.1', n: 'src/common/doc/functions/analyze_graph'},
{ v: '2.3', n: 'src/topology/doc/pgr_analyzeGraph'}, 3.8
]),
new createInfo('pgr_alphaShape', '2.0', [
{ v: '2.1', n: 'src/driving_distance/doc/dd_alphashape'},
{ v: '2.3', n: 'src/alpha_shape/doc/pgr_alphaShape'}, 3.8
Expand Down
2 changes: 1 addition & 1 deletion doc/metrics/pgr_degree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ If there is a vertices table already built using the ``pgr_extractVertices``
See Also
-------------------------------------------------------------------------------

* :doc:`topology-functions`
* :doc:`utilities-family`
* :doc:`pgr_extractVertices`

.. rubric:: Indices and tables
Expand Down
41 changes: 23 additions & 18 deletions doc/src/migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Results can be different because of the changes.
Migration of ``pgr_alphaShape``
-------------------------------------------------------------------------------

Deprecated in `v3.8.0 <https://docs.pgrouting.org/3.8/en/migration.html>`__
Removed from the repostory in `v3.8.0 <https://docs.pgrouting.org/3.8/en/migration.html>`__
:Deprecated: `v3.8.0 <https://docs.pgrouting.org/3.8>`__
:Removed: `v4.0.0 <https://docs.pgrouting.org/4.0>`__

**Before Deprecation:** The following was calculated:

Expand All @@ -51,10 +51,24 @@ Other PostGIS options are
* `ST_ConvexHull <https://postgis.net/docs/ST_ConvexHull.html>`__
* `ST_ConcaveHull <https://postgis.net/docs/ST_ConcaveHull.html>`__

Migration of ``pgr_nodeNetwork``
-------------------------------------------------------------------------------

:Deprecated: `v3.8.0 <https://docs.pgrouting.org/3.8>`__
:Removed: `v4.0.0 <https://docs.pgrouting.org/4.0>`__

**Before Deprecation:** A table with `<edges>_nodded` was created. with split
edges.

**Migration**

Use :doc:`pgr_separateTouching` and/or use :doc:`pgr_separateCrossing`

Migration of ``pgr_createTopology``
-------------------------------------------------------------------------------

Starting from `v3.8.0 <https://docs.pgrouting.org/3.8/en/migration.html>`__
:Deprecated: `v3.8.0 <https://docs.pgrouting.org/3.8>`__
:Removed: `v4.0.0 <https://docs.pgrouting.org/4.0>`__

**Before Deprecation:** The following was calculated:

Expand All @@ -66,12 +80,11 @@ Starting from `v3.8.0 <https://docs.pgrouting.org/3.8/en/migration.html>`__
:start-after: createTopology_start
:end-before: createTopology_end

.. migrate_pgr_createVerticesTable_start

Migration of ``pgr_createVerticesTable``
-------------------------------------------------------------------------------

Starting from `v3.8.0 <https://docs.pgrouting.org/3.8/en/migration.html>`__
:Deprecated: `v3.8.0 <https://docs.pgrouting.org/3.8>`__
:Removed: `v4.0.0 <https://docs.pgrouting.org/4.0>`__

**Before Deprecation:** The following was calculated:

Expand All @@ -84,14 +97,11 @@ indexes, etc. They may use :doc:`pgr_extractVertices` for that purpose.
:start-after: -- q1
:end-before: -- q1-1

.. migrate_pgr_createVerticesTable_end

.. migrate_pgr_analyzeOneWay_start

Migration of ``pgr_analyzeOneWay``
-------------------------------------------------------------------------------

Starting from `v3.8.0 <https://docs.pgrouting.org/3.8/en/migration.html>`__
:Deprecated: `v3.8.0 <https://docs.pgrouting.org/3.8>`__
:Removed: `v4.0.0 <https://docs.pgrouting.org/4.0>`__

**Before Deprecation:** The following was calculated:

Expand Down Expand Up @@ -127,14 +137,11 @@ To determine if the bridges are or not one way.
:start-after: --OneWay2
:end-before: --OneWay3

.. migrate_pgr_analyzeOneWay_end

.. migrate_pgr_analyzeGraph_start

Migration of ``pgr_analyzeGraph``
-------------------------------------------------------------------------------

Starting from `v3.8.0 <https://docs.pgrouting.org/3.8/en/migration.html>`__
:Deprecated: `v3.8.0 <https://docs.pgrouting.org/3.8>`__
:Removed: `v4.0.0 <https://docs.pgrouting.org/4.0>`__

**Before Deprecation:** The following was calculated:

Expand Down Expand Up @@ -209,8 +216,6 @@ For example:
:start-after: --analysis4
:end-before: --analysis5

.. migrate_pgr_analyzeGraph_end

Migration of ``pgr_aStar``
-------------------------------------------------------------------------------

Expand Down
11 changes: 0 additions & 11 deletions doc/src/proposed.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,6 @@ Proposed Functions
:start-after: proposed-start
:end-before: proposed-end

:doc:`TRSP-family`

.. include:: TRSP-family.rst
:start-after: proposed-start
:end-before: proposed-end

.. toctree::
:hidden:

TRSP-family

:doc:`transformation-family`

.. include:: transformation-family.rst
Expand Down
4 changes: 2 additions & 2 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ milestone for 4.0.0
pgr_analyzeOneWay
* `#2827 <https://github.com/pgRouting/pgrouting/issues/2827>`__:
pgr_createVerticesTable
* `#2886 <https://github.com/pgRouting/pgrouting/issues/2886>`__:
pgr_nodeNetwork

.. rubric:: Removal of SQL deprecated internal functions

Expand Down Expand Up @@ -176,8 +178,6 @@ pgRouting 3.8
:local:
:depth: 1

.. current

pgRouting 3.8.0 Release Notes
-------------------------------------------------------------------------------

Expand Down
13 changes: 6 additions & 7 deletions doc/src/routingFunctions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ Function Families
:start-after: official-start
:end-before: official-end

:doc:`topology-functions`
:doc:`TRSP-family`

.. include:: topology-functions.rst
.. include:: TRSP-family.rst
:start-after: official-start
:end-before: official-end

Expand All @@ -101,11 +101,9 @@ Function Families
:start-after: official-start
:end-before: official-end

:doc:`pgr_trsp` - Turn Restriction Shortest Path (TRSP)
:doc:`utilities-family`

.. rubric:: Utilities

.. include:: topology-functions.rst
.. include:: utilities-family.rst
:start-after: utility_official-start
:end-before: utility_official-end

Expand Down Expand Up @@ -172,8 +170,9 @@ Functions by categories
metrics-family
prim-family
reference
topology-functions
TRSP-family
TSP-family
utilities-family

.. toctree::
:hidden:
Expand Down
13 changes: 0 additions & 13 deletions doc/topology/CMakeLists.txt

This file was deleted.

Loading
Loading