This file is indexed.

/usr/share/doc/postgresql-9.5-pgrouting-doc/html/en/_sources/src/common/doc/utilities/end_point.txt is in postgresql-9.5-pgrouting-doc 2.1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.. 
   ****************************************************************************
    pgRouting Manual
    Copyright(c) pgRouting Contributors

    This documentation is licensed under a Creative Commons Attribution-Share  
    Alike 3.0 License: http://creativecommons.org/licenses/by-sa/3.0/
   ****************************************************************************

.. _pgr_end_point:

pgr_endPoint 
===============================================================================

.. index:: 
	single: pgr_endPoint(geometry) -- deprecated

Name
-------------------------------------------------------------------------------

``pgr_endPoint`` — Returns an end point of a (multi)linestring geometry.

.. note:: This function is intended for the developer's aid. 

.. warning:: This function is being deprecated on 2.1. 
             Use `_pgr_endPoint` instead

Synopsis
-------------------------------------------------------------------------------

Returns the geometry of the end point of the first LINESTRING of ``geom``. 

.. code-block:: sql

	text pgr_startPoint(geometry geom);


Description
-------------------------------------------------------------------------------

.. rubric:: Parameters

:geom: ``geometry`` Geometry of a MULTILINESTRING or LINESTRING.

Returns the geometry of the end point of the first LINESTRING of ``geom``. 



.. rubric:: History

* New in version 2.0.0



See Also
-------------------------------------------------------------------------------

* :ref:`developer` for the tree layout of the project.
* :ref:`pgr_start_point` to get the start point of a (multi)linestring.