Skip to content

Commit 52f0653

Browse files
committed
fixed broken links to latest to point to 2.3
1 parent 7c1f11c commit 52f0653

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

docs/source/chapters/advanced.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ will affect the next shortest path search, and there is no need to rebuild your
240240
network.
241241

242242
.. literalinclude:: solutions/advanced_problems.sql
243-
:language: sql
244243
:start-after: ad-10.txt
245244
:end-before: tmp.txt
246245

docs/source/chapters/function.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ What the function does internally:
4343
.. _exercise-19:
4444

4545
.. literalinclude:: solutions/fromAtoB.sql
46-
:language: sql
4746
:start-after: atob-2.txt
4847
:end-before: atob-3.txt
4948

@@ -58,7 +57,6 @@ What the function does not do:
5857
.. rubric:: Example query
5958

6059
.. literalinclude:: solutions/fromAtoB.sql
61-
:language: sql
6260
:start-after: atob-3.txt
6361
:end-before: ROLLBACK
6462

docs/source/chapters/shortest_path.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ You can specify when to consider the graph as `directed
6161
OR EMPTY SET
6262
6363
Description of the parameters can be found in `pgr_dijkstra
64-
<http://docs.pgrouting.org/latest/en/src/dijkstra/doc/pgr_dijkstra.html#description-of-the-signatures>`_.
64+
<http://docs.pgrouting.org/2.3/en/src/dijkstra/doc/pgr_dijkstra.html#description-of-the-signatures>`_.
6565

6666
.. note::
6767
* Many pgRouting functions have ``sql::text`` as one of their arguments. While
@@ -200,7 +200,7 @@ compact result.
200200
OR EMPTY SET
201201
202202
Description of the parameters can be found in `pgr_dijkstraCost
203-
<http://docs.pgrouting.org/latest/en/src/dijkstra/doc/pgr_dijkstraCost.html#description-of-the-signatures>`_
203+
<http://docs.pgrouting.org/2.3/en/src/dijkstra/doc/pgr_dijkstraCost.html#description-of-the-signatures>`_
204204

205205
.. _exercise-5:
206206
.. rubric:: Exercise 5 - "Many Pedestrians going to different destinations returning aggregate costs."
@@ -236,7 +236,7 @@ search.
236236
Returns a set of ``pgr_costResult`` (seq, id1, id2, cost) rows, that make up a path.
237237

238238
Description of the parameters can be found in `pgr_astar
239-
<http://docs.pgrouting.org/latest/en/src/astar/doc/pgr_astar.html#description>`_.
239+
<http://docs.pgrouting.org/2.3/en/src/astar/doc/pgr_astar.html#description>`_.
240240

241241
.. _exercise-6:
242242
.. rubric:: Exercise 6 - "Single Pedestrian Routing with Astar."

docs/source/chapters/topology.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ This function:
114114
pgr_createTopology('<table>', <tolerance>, '<geometry column>', '<gid>')
115115
116116
For additional information see `pgr_createTopology
117-
<http://docs.pgrouting.org/latest/en/src/topology/doc/pgr_createTopology.html>`_.
117+
<http://docs.pgrouting.org/2.3/en/src/topology/doc/pgr_createTopology.html>`_.
118118

119119
First add source and target column, then run the ``pgr_createTopology`` function
120120
... and wait.
@@ -154,13 +154,13 @@ Verify the Routing Network Topology
154154

155155
To verify that there is a basic `Routing Network Topology`:
156156

157-
.. code-block:: sql
157+
::
158158

159159
\d planet_osm_roads
160160

161161
Also a new table containing the vertices information was created:
162162

163-
.. code-block:: sql
163+
::
164164

165165
\d planet_osm_roads_vertices_pgr
166166

docs/source/chapters/wrapper.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,6 @@ shortest path Dijkstra function.
247247
* the cost in seconds (travel time)
248248

249249
.. literalinclude:: solutions/wrapper_problems.sql
250-
:language: sql
251250
:start-after: w-17.txt
252251
:end-before: w-18.txt
253252

@@ -260,7 +259,6 @@ shortest path Dijkstra function.
260259
* Additionally provide information for orientation (heading).
261260

262261
.. literalinclude:: solutions/wrapper_problems.sql
263-
:language: sql
264262
:start-after: w-18.txt
265263
:end-before: w-19.txt
266264

0 commit comments

Comments
 (0)