-
Notifications
You must be signed in to change notification settings - Fork 14
/
pgs_circle.sql.in
443 lines (332 loc) · 9.98 KB
/
pgs_circle.sql.in
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
-- ****************************
--
-- spherical circle functions
--
-- ****************************
CREATE FUNCTION area(scircle)
RETURNS FLOAT8
AS 'MODULE_PATHNAME', 'spherecircle_area'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION area(scircle) IS
'area of spherical circle';
CREATE FUNCTION radius(scircle)
RETURNS FLOAT8
AS 'MODULE_PATHNAME', 'spherecircle_radius'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION radius(scircle) IS
'radius of spherical circle';
CREATE FUNCTION scircle(spoint, float8)
RETURNS scircle
AS 'MODULE_PATHNAME' , 'spherecircle_by_center'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle(spoint, float8) IS
'spherical circle with spherical point as center and float8 as radius in radians';
CREATE FUNCTION scircle_deg(spoint, float8)
RETURNS scircle
AS 'MODULE_PATHNAME' , 'spherecircle_by_center_deg'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_deg(spoint, float8) IS
'spherical circle with spherical point as center and float8 as radius in degrees';
--
-- Casting point as circle
--
CREATE FUNCTION scircle(spoint)
RETURNS scircle
AS 'MODULE_PATHNAME' , 'spherepoint_to_circle'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle(spoint) IS
'spherical circle with radius 0 and spherical point as center';
CREATE CAST (spoint AS scircle)
WITH FUNCTION scircle(spoint)
AS IMPLICIT;
-- **************************
--
-- spherical circle operators
--
-- **************************
--
-- equal
--
CREATE FUNCTION scircle_equal(scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_equal'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_equal(scircle, scircle) IS
'returns true, if spherical circles are equal';
CREATE OPERATOR = (
LEFTARG = scircle,
RIGHTARG = scircle,
COMMUTATOR = = ,
NEGATOR = <>,
PROCEDURE = scircle_equal,
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR = (scircle, scircle) IS
'true, if spherical circles are equal';
--
-- not equal
--
CREATE FUNCTION scircle_equal_neg(scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_equal_neg'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_equal_neg(scircle, scircle) IS
'returns true, if spherical circles are not equal';
CREATE OPERATOR <> (
LEFTARG = scircle,
RIGHTARG = scircle,
COMMUTATOR = <>,
NEGATOR = = ,
PROCEDURE = scircle_equal_neg,
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR <> (scircle, scircle) IS
'true, if spherical circles are not equal';
--
-- overlap
--
CREATE FUNCTION scircle_overlap(scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_overlap'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_overlap(scircle, scircle) IS
'true if spherical circles overlap';
CREATE OPERATOR && (
LEFTARG = scircle,
RIGHTARG = scircle,
PROCEDURE = scircle_overlap,
COMMUTATOR = '&&',
NEGATOR = '!&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR && (scircle, scircle) IS
'true if spherical circles overlap';
--
-- not overlap
--
CREATE FUNCTION scircle_overlap_neg(scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_overlap_neg'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_overlap_neg(scircle, scircle) IS
'true if spherical circles do not overlap';
CREATE OPERATOR !&& (
LEFTARG = scircle,
RIGHTARG = scircle,
PROCEDURE = scircle_overlap_neg,
COMMUTATOR = '!&&',
NEGATOR = '&&',
RESTRICT = contsel,
JOIN = contjoinsel
);
COMMENT ON OPERATOR !&& (scircle, scircle) IS
'true if spherical circles do not overlap';
--
-- center of circle
--
CREATE FUNCTION center(scircle)
RETURNS spoint
AS 'MODULE_PATHNAME' , 'spherecircle_center'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION center(scircle) IS
'center of spherical circle';
CREATE OPERATOR @@ (
RIGHTARG = scircle,
PROCEDURE = center
);
COMMENT ON OPERATOR @@ (NONE , scircle) IS
'center of spherical circle';
--
-- circumference
--
CREATE FUNCTION circum(scircle)
RETURNS FLOAT8
AS 'MODULE_PATHNAME', 'spherecircle_circ'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION circum(scircle) IS
'circumference of spherical circle';
CREATE OPERATOR @-@ (
RIGHTARG = scircle,
PROCEDURE = circum
);
COMMENT ON OPERATOR @-@ (NONE , scircle) IS
'circumference of spherical circle';
--
-- circle is contained by circle
--
CREATE FUNCTION scircle_contained_by_circle(scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_in_circle'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_contained_by_circle(scircle, scircle) IS
'true if spherical circle is contained by spherical circle';
--
-- circle is not contained by circle
--
CREATE FUNCTION scircle_contained_by_circle_neg (scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_in_circle_neg'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_contained_by_circle_neg (scircle, scircle) IS
'true if spherical circle is not contained by spherical circle';
--
-- circle contains circle
--
CREATE FUNCTION scircle_contains_circle (scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_in_circle_com'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_contains_circle (scircle, scircle) IS
'true if spherical circle contains spherical circle';
--
-- circle does not contain circle
--
CREATE FUNCTION scircle_contains_circle_neg (scircle, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherecircle_in_circle_com_neg'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION scircle_contains_circle_neg (scircle, scircle) IS
'true if spherical circle does not contain spherical circle';
--
-- point is contained by circle
--
CREATE FUNCTION spoint_contained_by_circle(spoint, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherepoint_in_circle'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION spoint_contained_by_circle(spoint, scircle) IS
'true if spherical point is contained by spherical circle';
--
-- point is not contained by circle
--
CREATE FUNCTION spoint_contained_by_circle_neg(spoint, scircle)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherepoint_in_circle_neg'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION spoint_contained_by_circle_neg (spoint, scircle) IS
'true if spherical point is not contained by spherical circle ';
--
-- circle contains point
--
CREATE FUNCTION spoint_contained_by_circle_com(scircle, spoint)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherepoint_in_circle_com'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION spoint_contained_by_circle_com (scircle, spoint) IS
'true if spherical circle contains spherical point ';
--
-- circle does not contain point
--
CREATE FUNCTION spoint_contained_by_circle_com_neg(scircle, spoint)
RETURNS BOOL
AS 'MODULE_PATHNAME' , 'spherepoint_in_circle_com_neg'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION spoint_contained_by_circle_com_neg (scircle, spoint) IS
'true if spherical circle does not contain spherical point ';
--
-- distance between circles
--
CREATE FUNCTION dist(scircle, scircle)
RETURNS FLOAT8
AS 'MODULE_PATHNAME', 'spherecircle_distance'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION dist(scircle, scircle) IS
'distance between two spherical circles';
CREATE OPERATOR <-> (
LEFTARG = scircle,
RIGHTARG = scircle,
COMMUTATOR = '<->',
PROCEDURE = dist
);
COMMENT ON OPERATOR <-> (scircle, scircle) IS
'distance between two spherical circles';
--
-- distance between circle and point
--
CREATE FUNCTION dist(scircle, spoint)
RETURNS FLOAT8
AS 'MODULE_PATHNAME', 'spherecircle_point_distance'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION dist(scircle, spoint) IS
'distance between spherical circle and spherical point';
CREATE OPERATOR <-> (
LEFTARG = scircle,
RIGHTARG = spoint,
COMMUTATOR = '<->',
PROCEDURE = dist
);
COMMENT ON OPERATOR <-> (scircle, spoint) IS
'distance between spherical circle and spherical point';
--
-- distance between point and circle
--
CREATE FUNCTION dist(spoint, scircle)
RETURNS FLOAT8
AS 'MODULE_PATHNAME', 'spherecircle_point_distance_com'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION dist(spoint, scircle) IS
'distance between spherical circle and spherical point';
CREATE OPERATOR <-> (
LEFTARG = spoint,
RIGHTARG = scircle,
COMMUTATOR = '<->',
PROCEDURE = dist
);
COMMENT ON OPERATOR <-> (spoint, scircle) IS
'distance between spherical circle and spherical point';
--
-- Transformation of circle
--
CREATE FUNCTION strans_circle(scircle, strans)
RETURNS scircle
AS 'MODULE_PATHNAME' , 'spheretrans_circle'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION strans_circle (scircle, strans) IS
'returns a transformated spherical circle';
CREATE OPERATOR + (
LEFTARG = scircle,
RIGHTARG = strans,
PROCEDURE = strans_circle
);
COMMENT ON OPERATOR + (scircle, strans) IS
'transforms a spherical circle ';
CREATE FUNCTION strans_circle_inverse(scircle, strans)
RETURNS scircle
AS 'MODULE_PATHNAME' , 'spheretrans_circle_inverse'
LANGUAGE 'c'
IMMUTABLE STRICT PARALLEL SAFE;
COMMENT ON FUNCTION strans_circle_inverse (scircle, strans) IS
'returns a inverse transformated spherical circle';
CREATE OPERATOR - (
LEFTARG = scircle,
RIGHTARG = strans,
PROCEDURE = strans_circle_inverse
);
COMMENT ON OPERATOR - (scircle, strans) IS
'transforms inverse a spherical circle ';