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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*PGR-GNU*****************************************************************
Copyright (c) 2022 Celia Virginia Vergara Castillo
Mail: vicky at georepublic dot de
------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
********************************************************************PGR-GNU*/
--v3.4
CREATE FUNCTION pgr_findCloseEdges(
TEXT,
geometry,
FLOAT,
cap INTEGER DEFAULT 1,
partial BOOLEAN DEFAULT true,
dryrun BOOLEAN DEFAULT false,
OUT edge_id BIGINT,
OUT fraction FLOAT,
OUT side CHAR,
OUT distance FLOAT,
OUT geom geometry,
OUT edge geometry)
returns SETOF RECORD AS
$BODY$
DECLARE
edges_SQL TEXT;
has_id BOOLEAN;
has_geom BOOLEAN;
ret_query TEXT;
ret_query_end TEXT;
BEGIN
IF ($3 < 0) THEN
RAISE EXCEPTION 'Invalid value for tolerance';
END IF;
IF (cap <= 0) THEN
RAISE EXCEPTION 'Invalid value for cap';
END IF;
edges_sql := _pgr_checkQuery($1);
has_id := _pgr_checkColumn(edges_sql, 'id', 'ANY-INTEGER', false, dryrun => dryrun);
has_geom := _pgr_checkColumn(edges_sql, 'geom', 'geometry', false, dryrun => dryrun);
ret_query = format(
$q$
WITH
edges_sql AS (%1$s),
point_sql AS (SELECT %2$L::geometry AS point)
SELECT
id::BIGINT AS edge_id,
ST_LineLocatePoint(geom, point) AS fraction,
CASE WHEN ST_Intersects(ST_Buffer(geom, %3$s, 'side=right endcap=flat'), point)
THEN 'r'
ELSE 'l' END::CHAR AS side,
$q$, edges_sql, $2, $3);
ret_query_end = format(
$q$
FROM edges_sql, point_sql
WHERE ST_DWithin(geom, point, %1$s)
ORDER BY geom <-> point LIMIT %2$s
$q$, $3, cap);
IF partial AND cap = 1 AND NOT dryrun THEN
/* one answer and partialimal columns */
ret_query =
ret_query
|| $q$
NULL::FLOAT,
NULL::geometry,
NULL::geometry
$q$
|| ret_query_end;
ELSIF partial AND NOT dryrun THEN
/* more than one answer and partialimal columns
* needs distance info for further sorting by use
*/
ret_query =
ret_query
|| $q$
geom <-> point AS distance,
NULL::geometry,
NULL::geometry
$q$
|| ret_query_end;
ELSE
/* More than one answer and all columns, or dryrun*/
ret_query =
ret_query
|| $q$
geom <-> point AS distance,
ST_ClosestPoint(geom, point) AS new_point,
ST_MakeLine(point, ST_ClosestPoint(geom, point)) AS new_line
$q$
|| ret_query_end;
END IF;
IF dryrun THEN
RAISE NOTICE '%', ret_query;
RETURN;
END IF;
RETURN query EXECUTE ret_query;
END;
$BODY$
LANGUAGE PLPGSQL VOLATILE STRICT
COST 5;
--v3.4
CREATE FUNCTION pgr_findCloseEdges(
TEXT,
geometry[],
FLOAT,
cap INTEGER DEFAULT 1,
partial BOOLEAN DEFAULT true,
dryrun BOOLEAN DEFAULT false,
OUT edge_id BIGINT,
OUT fraction FLOAT,
OUT side CHAR,
OUT distance FLOAT,
OUT geom geometry,
OUT edge geometry)
returns SETOF RECORD AS
$BODY$
DECLARE
edges_SQL TEXT;
has_id BOOLEAN;
has_geom BOOLEAN;
ret_query TEXT;
ret_query_end TEXT;
BEGIN
IF ($3 < 0) THEN
RAISE EXCEPTION 'Invalid value for tolerance';
END IF;
edges_sql := _pgr_checkQuery($1);
has_id := _pgr_checkColumn(edges_sql, 'id', 'ANY-INTEGER', false, dryrun => dryrun);
has_geom := _pgr_checkColumn(edges_sql, 'geom', 'geometry', false, dryrun => dryrun);
ret_query = format(
$q$
WITH
edges_sql AS (%1$s),
point_sql AS (SELECT unnest(%2$L::geometry[]) AS point),
results AS (
SELECT
id::BIGINT AS edge_id,
ST_LineLocatePoint(geom, point) AS fraction,
CASE WHEN ST_Intersects(ST_Buffer(geom, %3$s, 'side=right endcap=flat'), point)
THEN 'r'
ELSE 'l' END::CHAR AS side,
geom <-> point AS distance,
point,
$q$, edges_sql, $2, $3);
ret_query_end = format(
$q$
FROM edges_sql, point_sql
WHERE ST_DWithin(geom, point, %1$s)
ORDER BY geom <-> point),
prepare_cap AS (
SELECT row_number() OVER (PARTITION BY point ORDER BY point, distance) AS rn, *
FROM results)
SELECT edge_id, fraction, side, distance, point, new_line
FROM prepare_cap
WHERE rn <= %2$s
$q$, $3, cap);
IF partial AND NOT dryrun THEN
ret_query = ret_query
|| $q$NULL::geometry AS new_line$q$
|| ret_query_end;
ELSE
ret_query = ret_query
|| $q$ST_MakeLine(point, ST_ClosestPoint(geom, point)) AS new_line $q$
|| ret_query_end;
END IF;
IF dryrun THEN
RAISE NOTICE '%', ret_query;
RETURN;
END IF;
RETURN query EXECUTE ret_query;
END;
$BODY$
LANGUAGE PLPGSQL VOLATILE STRICT
COST 5;
-- COMMENTS
COMMENT ON FUNCTION pgr_findCloseEdges(TEXT, GEOMETRY, FLOAT, INTEGER, BOOLEAN, BOOLEAN)
IS 'pgr_findCloseEdges(One Point)
- Parameters:
- Edges SQL with columns: id, geom
- POINT geometry
- Maximum separation between geometries
- Optional Parameters
- cap => 1: at most one answer
- partial => true: do minimal calculations
- dryrun => false: do not output code
- Documentation:
- ${PROJECT_DOC_LINK}/pgr_findCloseEdges.html
';
COMMENT ON FUNCTION pgr_findCloseEdges(TEXT, GEOMETRY, FLOAT, INTEGER, BOOLEAN, BOOLEAN)
IS 'pgr_findCloseEdges(Many Points)
- Parameters:
- Edges SQL with columns: id, geom
- Array of POINT geometries
- Maximum separation between geometries
- Optional Parameters
- cap => 1: at most one answer
- partial => true: do minimal calculations
- dryrun => false: do not output code
- Documentation:
- ${PROJECT_DOC_LINK}/pgr_findCloseEdges.html
';
|