88msgstr ""
99"Project-Id-Version : pgRouting v3.8\n "
1010"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 "
1212"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
1313"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
1414"Language-Team : LANGUAGE <LL@li.org>\n "
@@ -3969,6 +3969,11 @@ msgid ""
39693969"pgr_analyzeGraph"
39703970msgstr ""
39713971
3972+ msgid ""
3973+ "`#2750 <https://github.com/pgRouting/pgrouting/issues/2750>`__: "
3974+ "pgr_createTopology"
3975+ msgstr ""
3976+
39723977msgid ""
39733978"`#2826 <https://github.com/pgRouting/pgrouting/issues/2826>`__: "
39743979"pgr_createVerticesTable"
@@ -4052,7 +4057,7 @@ msgstr ""
40524057msgid "All deprecated functions will be removed on next major version 4.0.0"
40534058msgstr ""
40544059
4055- msgid "Migration of ``pgr_createVerticesTable ``"
4060+ msgid "Migration of ``pgr_createTopology ``"
40564061msgstr ""
40574062
40584063msgid ""
@@ -4066,6 +4071,59 @@ msgstr ""
40664071msgid "A table with `<edges>_vertices_pgr` was created."
40674072msgstr ""
40684073
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+
40694127msgid ""
40704128"**After Deprecation:** The user is responsible to create the vertices "
40714129"table, indexes, etc. They may use :doc:`pgr_extractVertices` for that "
@@ -5550,54 +5608,6 @@ msgid ""
55505608"documentation and the `PostGIS <https://postgis.net/>`__ documentation."
55515609msgstr ""
55525610
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-
56015611msgid ""
56025612"Data coming from OSM and using `osm2pgrouting "
56035613"<https://github.com/pgRouting/osm2pgrouting>`__ as an import tool, comes "
@@ -7952,11 +7962,6 @@ msgid ""
79527962"vertices information."
79537963msgstr ""
79547964
7955- msgid ""
7956- "Use :doc:`pgr_createTopology` to create the topology and the vertices "
7957- "table."
7958- msgstr ""
7959-
79607965msgid "The analyze graph function accepts the following parameters:"
79617966msgstr ""
79627967
@@ -8043,11 +8048,6 @@ msgstr ""
80438048msgid "The Vertices Table"
80448049msgstr ""
80458050
8046- msgid ""
8047- "The vertices table can be created with :doc:`pgr_createTopology "
8048- "<pgr_createTopology>`"
8049- msgstr ""
8050-
80518051msgid "The structure of the vertices table is:"
80528052msgstr ""
80538053
@@ -8276,11 +8276,6 @@ msgid ""
82768276"value is ``true``."
82778277msgstr ""
82788278
8279- msgid ""
8280- "It is strongly recommended to use the named notation. See "
8281- ":doc:`pgr_createTopology` for examples."
8282- msgstr ""
8283-
82848279msgid "Fills completely the ``ein`` and ``eout`` columns of the vertices table."
82858280msgstr ""
82868281
@@ -8293,9 +8288,6 @@ msgid ""
82938288"**in** or **out** condition."
82948289msgstr ""
82958290
8296- msgid "The vertices table can be created with :doc:`pgr_createTopology`"
8297- msgstr ""
8298-
82998291msgid "``pgr_articulationPoints``"
83008292msgstr ""
83018293
@@ -9657,9 +9649,6 @@ msgstr ""
96579649msgid "Node :math:`3` is a dead end node after node :math:`1` is contracted."
96589650msgstr ""
96599651
9660- msgid "``forbidden_vertices``"
9661- msgstr ""
9662-
96639652msgid "``ARRAY[`` |ANY-INTEGER| ``]``"
96649653msgstr ""
96659654
@@ -9960,7 +9949,7 @@ msgstr ""
99609949msgid "Create the contracted graph."
99619950msgstr ""
99629951
9963- msgid "``pgr_createTopology``"
9952+ msgid "``pgr_createTopology`` - Deprecated since v3.8.0 "
99649953msgstr ""
99659954
99669955msgid ""
@@ -10276,11 +10265,6 @@ msgid ""
1027610265"algorithms."
1027710266msgstr ""
1027810267
10279- msgid ""
10280- ":doc:`pgr_createTopology` <pgr_create_topology>` to create a topology "
10281- "based on the geometry."
10282- msgstr ""
10283-
1028410268msgid "``pgr_cuthillMckeeOrdering`` - Experimental"
1028510269msgstr ""
1028610270
@@ -13194,9 +13178,6 @@ msgid ""
1319413178"returned."
1319513179msgstr ""
1319613180
13197- msgid "There is no flow when source has the same vaule as target."
13198- msgstr ""
13199-
1320013181msgid "Uses the :doc:`pgr_pushRelabel <pgr_pushRelabel>` algorithm."
1320113182msgstr ""
1320213183
@@ -13401,14 +13382,10 @@ msgstr ""
1340113382msgid "``integer`` Segment number of the original edge"
1340213383msgstr ""
1340313384
13404- msgid ""
13405- "``integer`` Empty source column to be used with :doc:`pgr_createTopology`"
13406- " function"
13385+ msgid "``integer`` Empty source column"
1340713386msgstr ""
1340813387
13409- msgid ""
13410- "``integer`` Empty target column to be used with :doc:`pgr_createTopology`"
13411- " function"
13388+ msgid "``integer`` Empty target column"
1341213389msgstr ""
1341313390
1341413391msgid "the geom"
@@ -13475,12 +13452,6 @@ msgid ""
1347513452"segmented."
1347613453msgstr ""
1347713454
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-
1348413455msgid "``pgr_pickDeliver`` - Experimental"
1348513456msgstr ""
1348613457
0 commit comments