forked from dr-jts/pg_svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpg-svg-lib.sql
494 lines (449 loc) · 10.6 KB
/
pg-svg-lib.sql
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
--======================================
-- PostGIS SVg functions
-- Martin Davis 2019
-- INSTALLATION
-- psql < pg-svg-lib.sql
--======================================
----------------------------------------
-- Function: svgDoc
----------------------------------------
CREATE OR REPLACE FUNCTION svgDoc(
content text[],
viewbox text DEFAULT '0 0 100 100',
def text DEFAULT '',
width integer DEFAULT -1,
height integer DEFAULT -1,
style text DEFAULT ''
)
RETURNS text AS
$$
DECLARE
viewBoxAttr text;
styleAttr text;
widthAttr text;
heightAttr text;
svg text;
xSize real;
ySize real;
BEGIN
viewBoxAttr := ' viewBox="' || viewbox || '" ';
styleAttr := '';
IF style <> '' THEN
styleAttr := ' style="' || style || '" ';
END IF;
widthAttr := '';
IF width >= 0 THEN
widthAttr := ' width="' || width || '" ';
END IF;
heightAttr := '';
IF height >= 0 THEN
heightAttr := ' height="' || height || '" ';
END IF;
svg := '<svg xmlns="http://www.w3.org/2000/svg"'
|| widthAttr || heightAttr
|| viewBoxAttr || styleAttr || E'> \n';
IF def <> '' THEN
svg := svg || '<defs>' || E'\n';
svg := svg || def || E'\n';
svg := svg || '</defs>' || E'\n';
END IF;
FOR i IN 1..array_length( content, 1) LOOP
svg := svg || content[i] || E'\n';
END LOOP;
svg := svg || '</svg>';
RETURN svg;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE;
----------------------------------------
-- Function: svgViewbox
-- Determines the SVG viewbox attribute value
-- from a geometry giving the extent of a set of geometries.
-- Parameters:
-- extent : extent geometry
----------------------------------------
CREATE OR REPLACE FUNCTION svgViewbox(
extent geometry
)
RETURNS text AS
$$
DECLARE
w float8;
h float8;
vbData text;
BEGIN
w = ST_XMax(extent) - ST_XMin(extent);
h = ST_YMax(extent) - ST_YMin(extent);
vbData := ST_XMin(extent) || ' ' || -ST_YMax(extent) || ' ' || w || ' ' || h;
RETURN vbData;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgShape
----------------------------------------
CREATE OR REPLACE FUNCTION svgShape(
geom geometry,
class text DEFAULT '',
id text DEFAULT '',
style text DEFAULT '',
attr text DEFAULT '',
title text DEFAULT '',
radius float DEFAULT 1
)
RETURNS text AS
$$
DECLARE
svg_geom text;
svg_pts text;
fillrule text;
classAttr text;
idAttr text;
styleAttr text;
attrs text;
pathAttrs text;
radiusAttr text;
tag text;
geom_elem geometry[];
isGrp boolean;
gelem geometry;
outstr text;
BEGIN
attrs := _svgAttr( class, id, style, attr);
geom_elem := ARRAY( SELECT (ST_Dump( geom )).geom );
IF cardinality( geom_elem ) = 0 THEN
RETURN '';
END IF;
isGrp := array_length( geom_elem,1 ) > 1;
IF isGrp THEN
outstr := '<g ' || attrs || '>' || E'\n';
pathAttrs := '';
ELSE
outstr := '';
pathAttrs := attrs;
END IF;
FOR i IN 1..array_length( geom_elem, 1 ) LOOP
gelem := geom_elem[i];
svg_pts := ST_AsSVG( gelem );
tag := 'path';
radiusAttr := '';
-- points already have attribute names
IF ST_Dimension( gelem ) > 0 THEN
svg_pts := ' d="' || svg_pts || '" ';
ELSE
tag := 'circle';
radiusAttr := ' r="' || radius || '" ';
END IF;
CASE ST_Dimension( gelem )
WHEN 1 THEN fillrule := ' fill="none" ';
WHEN 2 THEN fillrule := ' fill-rule="evenodd" ';
ELSE fillrule := '';
END CASE;
IF i > 1 THEN
outstr := outstr || E'\n';
END IF;
svg_geom := '<' || tag || ' ' || pathAttrs || fillrule
|| radiusAttr
|| ' ' || svg_pts;
outstr := outstr || svg_geom;
IF title <> '' AND NOT isGrp THEN
outstr := outstr || '><title>' || title || '</title>';
outstr := outstr || '</' || tag || '>';
ELSE
outstr := outstr || ' />';
END IF;
END LOOP;
IF isGrp THEN
outstr := outstr || E'\n';
IF title <> '' THEN
outstr := outstr || '<title>' || title || '</title>';
END IF;
outstr := outstr || '</g>';
END IF;
RETURN outstr;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgPolygon
-- Parameters:
-- pts : array of X Y numbers. Closing point is not needed
----------------------------------------
CREATE OR REPLACE FUNCTION svgPolygon(
pts float8[],
class text DEFAULT '',
id text DEFAULT '',
style text DEFAULT '',
attr text DEFAULT '',
title text DEFAULT ''
)
RETURNS text AS
$$
DECLARE
svg_poly text;
svg_pts text;
sep text;
BEGIN
svg_pts := '';
FOR i IN 1..array_length( pts, 1 ) LOOP
sep := CASE i % 2 WHEN 0 THEN ' ' ELSE ',' END;
svg_pts := svg_pts || pts[i] || sep;
END LOOP;
svg_poly := '<polygon '
|| _svgAttr( class, id, style, attr)
|| ' points="' || svg_pts || '" />';
IF title <> '' THEN
svg_poly := '<g>' || svg_poly;
svg_poly := svg_poly || '<title>' || title || '</title></g>';
END IF;
RETURN svg_poly;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgRect
-- Parameters:
--
----------------------------------------
CREATE OR REPLACE FUNCTION svgRect(
x float8,
y float8,
width float8,
height float8,
class text DEFAULT '',
id text DEFAULT '',
style text DEFAULT '',
attr text DEFAULT '',
title text DEFAULT ''
)
RETURNS text AS
$$
DECLARE
svg text;
BEGIN
svg := '<rect '
|| _svgAttr( class, id, style, attr)
|| ' x="' || x || '" y="' || y
|| '" width="' || width || '" height="' || height
|| '" />';
IF title <> '' THEN
svg := '<g>' || svg;
svg := svg || '<title>' || title || '</title></g>';
END IF;
RETURN svg;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgText
----------------------------------------
CREATE OR REPLACE FUNCTION svgText(
loc geometry,
--TODO: add dx, dy offsets
content text,
class text DEFAULT '',
id text DEFAULT '',
style text DEFAULT '',
attr text DEFAULT ''
)
RETURNS text AS
$$
DECLARE
x float8;
y float8;
BEGIN
-- TODO: generalize for all geom types (centroid?)
x := ST_XMin(loc);
y := -ST_YMin(loc);
RETURN '<text'
|| ' x="' || x || '" y="' || y || '" '
|| _svgAttr( class, id, style, attr)
|| '>' || content || '</text>';
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: _svgAttr
----------------------------------------
CREATE OR REPLACE FUNCTION _svgAttr(
class text DEFAULT '',
id text DEFAULT '',
style text DEFAULT '',
attr text DEFAULT ''
)
RETURNS text AS
$$
DECLARE
classAttr text;
idAttr text;
styleAttr text;
attrs text;
BEGIN
classAttr := '';
IF class <> '' THEN
classAttr := ' class="' || class || '"';
END IF;
idAttr := '';
IF id <> '' THEN
idAttr := ' id="' || id || '"';
END IF;
styleAttr := '';
IF style <> '' THEN
styleAttr := ' style="' || style || '"';
END IF;
attrs := classAttr || idAttr || styleAttr || attr;
RETURN attrs;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgStyle
-- Encodes CSS name:values from list of parameters
----------------------------------------
CREATE OR REPLACE FUNCTION svgStyle(
VARIADIC arr text[]
)
RETURNS TEXT AS
$$
DECLARE
style text;
BEGIN
style := '';
FOR i IN 1..array_length( arr, 1)/2 LOOP
style := style || arr[2*i-1] || ':' || arr[2*i] || '; ';
END LOOP;
RETURN style;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgStyleProp
-- Encodes named parameters as CSS name-values
----------------------------------------
CREATE OR REPLACE FUNCTION svgStyleProp(
stroke text DEFAULT '',
strokewidth text DEFAULT '',
fill text DEFAULT '',
fillopacity text DEFAULT '',
css text[] DEFAULT ARRAY[]::text[]
)
RETURNS text AS
$$
DECLARE
style text;
BEGIN
style := '';
IF stroke <> '' THEN
style := ' stroke: ' || stroke || ';';
END IF;
IF strokewidth <> '' THEN
style := style || ' stroke-width: ' || strokewidth || ';';
END IF;
IF fill <> '' THEN
style := style || ' fill: ' || fill || ';';
END IF;
IF fillopacity <> '' THEN
style := style || ' fill-opacity: ' || fillopacity || ';';
END IF;
FOR i IN 1..array_length( css, 1)/2 LOOP
style := style || ' ' || css[2*i-1] || ': ' || css[2*i] || ';';
END LOOP;
RETURN style;
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgLinearGradient
----------------------------------------
CREATE OR REPLACE FUNCTION svgLinearGradient(
id text,
color1 text,
color2 text
)
RETURNS text AS
$$
BEGIN
RETURN '<linearGradient id="' || id || '" x1="0%" y1="0%" x2="100%" y2="0%">'
|| '<stop offset="0%" style="stop-color:' || color1 || ';stop-opacity:1" />'
|| '<stop offset="100%" style="stop-color:' || color2 || ';stop-opacity:1" />'
|| '</linearGradient>';
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgHSL
-- Encodes HSL function call
-- Parameters:
-- hue : value from 0 to 360
-- saturation : percentage value (default 100)
-- lightness : percentage (default 50)
----------------------------------------
CREATE OR REPLACE FUNCTION svgHSL(
hue float8,
saturation float8 DEFAULT 100,
lightness float8 DEFAULT 50
)
RETURNS text AS
$$
BEGIN
RETURN 'hsl(' || hue || ',' || saturation || '%,' || lightness || '%)';
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgRGB
-- Encodes RGB function call
-- Parameters:
-- red : red value in 0..255
-- green : green value in 0..255
-- blue : blue value in 0..255
----------------------------------------
CREATE OR REPLACE FUNCTION svgRGB(
red integer,
green integer,
blue integer
)
RETURNS text AS
$$
BEGIN
RETURN 'rgb(' || red || ',' || green || ',' || blue || ')';
END;
$$
LANGUAGE 'plpgsql' IMMUTABLE STRICT;
----------------------------------------
-- Function: svgRandInt
-- Returns a random integer in a range
-- Parameters:
-- lo : low value in range (inclusive)
-- hi : highest value in range (inclusive)
----------------------------------------
CREATE OR REPLACE FUNCTION svgRandInt(
lo integer,
hi integer
)
RETURNS integer AS
$$
BEGIN
RETURN floor(random() * (hi - lo + 1) ) + lo;
END;
$$
LANGUAGE 'plpgsql' VOLATILE STRICT;
----------------------------------------
-- Function: svgRandPick
-- Returns a random value from an array of ints
-- Parameters:
-- pick[] : array of values
----------------------------------------
CREATE OR REPLACE FUNCTION svgRandPick(
VARIADIC pick integer[]
)
RETURNS integer AS
$$
DECLARE
i integer;
BEGIN
i := floor(random() * array_length( pick, 1) ) + 1;
RETURN pick[i];
END;
$$
LANGUAGE 'plpgsql' VOLATILE STRICT;