8
8
msgstr ""
9
9
"Project-Id-Version : pgRouting v3.8\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2025-04-08 12:57 +0000\n "
11
+ "POT-Creation-Date : 2025-04-08 17:43 +0000\n "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
14
14
"
Language-Team :
LANGUAGE <[email protected] >\n "
@@ -3969,6 +3969,11 @@ msgid ""
3969
3969
"pgr_analyzeGraph"
3970
3970
msgstr ""
3971
3971
3972
+ msgid ""
3973
+ "`#2750 <https://github.com/pgRouting/pgrouting/issues/2750>`__: "
3974
+ "pgr_createTopology"
3975
+ msgstr ""
3976
+
3972
3977
msgid ""
3973
3978
"`#2826 <https://github.com/pgRouting/pgrouting/issues/2826>`__: "
3974
3979
"pgr_createVerticesTable"
@@ -4052,7 +4057,7 @@ msgstr ""
4052
4057
msgid "All deprecated functions will be removed on next major version 4.0.0"
4053
4058
msgstr ""
4054
4059
4055
- msgid "Migration of ``pgr_createVerticesTable ``"
4060
+ msgid "Migration of ``pgr_createTopology ``"
4056
4061
msgstr ""
4057
4062
4058
4063
msgid ""
@@ -4066,6 +4071,59 @@ msgstr ""
4066
4071
msgid "A table with `<edges>_vertices_pgr` was created."
4067
4072
msgstr ""
4068
4073
4074
+ msgid ""
4075
+ "**After Deprecation:** The user is responsible to create the complete "
4076
+ "topology."
4077
+ msgstr ""
4078
+
4079
+ msgid "Build a routing topology"
4080
+ msgstr ""
4081
+
4082
+ msgid ""
4083
+ "The basic information to use the majority of the pgRouting functions "
4084
+ "``id, source, target, cost, [reverse_cost]`` is what in pgRouting is "
4085
+ "called the routing topology."
4086
+ msgstr ""
4087
+
4088
+ msgid ""
4089
+ "``reverse_cost`` is optional but strongly recommended to have in order to"
4090
+ " reduce the size of the database due to the size of the geometry columns."
4091
+ " Having said that, in this documentation ``reverse_cost`` is used in this"
4092
+ " documentation."
4093
+ msgstr ""
4094
+
4095
+ msgid ""
4096
+ "When the data comes with geometries and there is no routing topology, "
4097
+ "then this step is needed."
4098
+ msgstr ""
4099
+
4100
+ msgid ""
4101
+ "All the start and end vertices of the geometries need an identifier that "
4102
+ "is to be stored in a ``source`` and ``target`` columns of the table of "
4103
+ "the data. Likewise, ``cost`` and ``reverse_cost`` need to have the value "
4104
+ "of traversing the edge in both directions."
4105
+ msgstr ""
4106
+
4107
+ msgid ""
4108
+ "If the columns do not exist they need to be added to the table in "
4109
+ "question. (see `ALTER TABLE <https://www.postgresql.org/docs/current/sql-"
4110
+ "altertable.html>`__)"
4111
+ msgstr ""
4112
+
4113
+ msgid ""
4114
+ "The function :doc:`pgr_extractVertices` is used to create a vertices "
4115
+ "table based on the edge identifier and the geometry of the edge of the "
4116
+ "graph."
4117
+ msgstr ""
4118
+
4119
+ msgid ""
4120
+ "Finally using the data stored on the vertices tables the ``source`` and "
4121
+ "``target`` are filled up."
4122
+ msgstr ""
4123
+
4124
+ msgid "Migration of ``pgr_createVerticesTable``"
4125
+ msgstr ""
4126
+
4069
4127
msgid ""
4070
4128
"**After Deprecation:** The user is responsible to create the vertices "
4071
4129
"table, indexes, etc. They may use :doc:`pgr_extractVertices` for that "
@@ -5550,54 +5608,6 @@ msgid ""
5550
5608
"documentation and the `PostGIS <https://postgis.net/>`__ documentation."
5551
5609
msgstr ""
5552
5610
5553
- msgid "Build a routing topology"
5554
- msgstr ""
5555
-
5556
- msgid ""
5557
- "The basic information to use the majority of the pgRouting functions "
5558
- "``id, source, target, cost, [reverse_cost]`` is what in pgRouting is "
5559
- "called the routing topology."
5560
- msgstr ""
5561
-
5562
- msgid ""
5563
- "``reverse_cost`` is optional but strongly recommended to have in order to"
5564
- " reduce the size of the database due to the size of the geometry columns."
5565
- " Having said that, in this documentation ``reverse_cost`` is used in this"
5566
- " documentation."
5567
- msgstr ""
5568
-
5569
- msgid ""
5570
- "When the data comes with geometries and there is no routing topology, "
5571
- "then this step is needed."
5572
- msgstr ""
5573
-
5574
- msgid ""
5575
- "All the start and end vertices of the geometries need an identifier that "
5576
- "is to be stored in a ``source`` and ``target`` columns of the table of "
5577
- "the data. Likewise, ``cost`` and ``reverse_cost`` need to have the value "
5578
- "of traversing the edge in both directions."
5579
- msgstr ""
5580
-
5581
- msgid ""
5582
- "If the columns do not exist they need to be added to the table in "
5583
- "question. (see `ALTER TABLE <https://www.postgresql.org/docs/current/sql-"
5584
- "altertable.html>`__)"
5585
- msgstr ""
5586
-
5587
- msgid ""
5588
- "The function :doc:`pgr_extractVertices` is used to create a vertices "
5589
- "table based on the edge identifier and the geometry of the edge of the "
5590
- "graph."
5591
- msgstr ""
5592
-
5593
- msgid ""
5594
- "Finally using the data stored on the vertices tables the ``source`` and "
5595
- "``target`` are filled up."
5596
- msgstr ""
5597
-
5598
- msgid "See :doc:`sampledata` for an example for building a topology."
5599
- msgstr ""
5600
-
5601
5611
msgid ""
5602
5612
"Data coming from OSM and using `osm2pgrouting "
5603
5613
"<https://github.com/pgRouting/osm2pgrouting>`__ as an import tool, comes "
@@ -7952,11 +7962,6 @@ msgid ""
7952
7962
"vertices information."
7953
7963
msgstr ""
7954
7964
7955
- msgid ""
7956
- "Use :doc:`pgr_createTopology` to create the topology and the vertices "
7957
- "table."
7958
- msgstr ""
7959
-
7960
7965
msgid "The analyze graph function accepts the following parameters:"
7961
7966
msgstr ""
7962
7967
@@ -8043,11 +8048,6 @@ msgstr ""
8043
8048
msgid "The Vertices Table"
8044
8049
msgstr ""
8045
8050
8046
- msgid ""
8047
- "The vertices table can be created with :doc:`pgr_createTopology "
8048
- "<pgr_createTopology>`"
8049
- msgstr ""
8050
-
8051
8051
msgid "The structure of the vertices table is:"
8052
8052
msgstr ""
8053
8053
@@ -8276,11 +8276,6 @@ msgid ""
8276
8276
"value is ``true``."
8277
8277
msgstr ""
8278
8278
8279
- msgid ""
8280
- "It is strongly recommended to use the named notation. See "
8281
- ":doc:`pgr_createTopology` for examples."
8282
- msgstr ""
8283
-
8284
8279
msgid "Fills completely the ``ein`` and ``eout`` columns of the vertices table."
8285
8280
msgstr ""
8286
8281
@@ -8293,9 +8288,6 @@ msgid ""
8293
8288
"**in** or **out** condition."
8294
8289
msgstr ""
8295
8290
8296
- msgid "The vertices table can be created with :doc:`pgr_createTopology`"
8297
- msgstr ""
8298
-
8299
8291
msgid "``pgr_articulationPoints``"
8300
8292
msgstr ""
8301
8293
@@ -9657,9 +9649,6 @@ msgstr ""
9657
9649
msgid "Node :math:`3` is a dead end node after node :math:`1` is contracted."
9658
9650
msgstr ""
9659
9651
9660
- msgid "``forbidden_vertices``"
9661
- msgstr ""
9662
-
9663
9652
msgid "``ARRAY[`` |ANY-INTEGER| ``]``"
9664
9653
msgstr ""
9665
9654
@@ -9960,7 +9949,7 @@ msgstr ""
9960
9949
msgid "Create the contracted graph."
9961
9950
msgstr ""
9962
9951
9963
- msgid "``pgr_createTopology``"
9952
+ msgid "``pgr_createTopology`` - Deprecated since v3.8.0 "
9964
9953
msgstr ""
9965
9954
9966
9955
msgid ""
@@ -10276,11 +10265,6 @@ msgid ""
10276
10265
"algorithms."
10277
10266
msgstr ""
10278
10267
10279
- msgid ""
10280
- ":doc:`pgr_createTopology` <pgr_create_topology>` to create a topology "
10281
- "based on the geometry."
10282
- msgstr ""
10283
-
10284
10268
msgid "``pgr_cuthillMckeeOrdering`` - Experimental"
10285
10269
msgstr ""
10286
10270
@@ -13194,9 +13178,6 @@ msgid ""
13194
13178
"returned."
13195
13179
msgstr ""
13196
13180
13197
- msgid "There is no flow when source has the same vaule as target."
13198
- msgstr ""
13199
-
13200
13181
msgid "Uses the :doc:`pgr_pushRelabel <pgr_pushRelabel>` algorithm."
13201
13182
msgstr ""
13202
13183
@@ -13401,14 +13382,10 @@ msgstr ""
13401
13382
msgid "``integer`` Segment number of the original edge"
13402
13383
msgstr ""
13403
13384
13404
- msgid ""
13405
- "``integer`` Empty source column to be used with :doc:`pgr_createTopology`"
13406
- " function"
13385
+ msgid "``integer`` Empty source column"
13407
13386
msgstr ""
13408
13387
13409
- msgid ""
13410
- "``integer`` Empty target column to be used with :doc:`pgr_createTopology`"
13411
- " function"
13388
+ msgid "``integer`` Empty target column"
13412
13389
msgstr ""
13413
13390
13414
13391
msgid "the geom"
@@ -13475,12 +13452,6 @@ msgid ""
13475
13452
"segmented."
13476
13453
msgstr ""
13477
13454
13478
- msgid ""
13479
- ":doc:`topology-functions` for an overview of a topology for routing "
13480
- "algorithms. :doc:`pgr_createTopology` to create a topology based on the "
13481
- "geometry."
13482
- msgstr ""
13483
-
13484
13455
msgid "``pgr_pickDeliver`` - Experimental"
13485
13456
msgstr ""
13486
13457
0 commit comments