forked from akorotkov/pgsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.c
412 lines (356 loc) · 8.5 KB
/
circle.c
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
#include "circle.h"
/* Circle functions */
PG_FUNCTION_INFO_V1(spherecircle_in);
PG_FUNCTION_INFO_V1(spherecircle_equal);
PG_FUNCTION_INFO_V1(spherecircle_equal_neg);
PG_FUNCTION_INFO_V1(spherecircle_distance);
PG_FUNCTION_INFO_V1(spherecircle_point_distance);
PG_FUNCTION_INFO_V1(spherecircle_point_distance_com);
PG_FUNCTION_INFO_V1(spherepoint_in_circle);
PG_FUNCTION_INFO_V1(spherepoint_in_circle_neg);
PG_FUNCTION_INFO_V1(spherepoint_in_circle_com);
PG_FUNCTION_INFO_V1(spherepoint_in_circle_com_neg);
PG_FUNCTION_INFO_V1(spherecircle_in_circle);
PG_FUNCTION_INFO_V1(spherecircle_in_circle_neg);
PG_FUNCTION_INFO_V1(spherecircle_in_circle_com);
PG_FUNCTION_INFO_V1(spherecircle_in_circle_com_neg);
PG_FUNCTION_INFO_V1(spherecircle_overlap);
PG_FUNCTION_INFO_V1(spherecircle_overlap_neg);
PG_FUNCTION_INFO_V1(spherecircle_center);
PG_FUNCTION_INFO_V1(spherecircle_radius);
PG_FUNCTION_INFO_V1(spherepoint_to_circle);
PG_FUNCTION_INFO_V1(spherecircle_by_center);
PG_FUNCTION_INFO_V1(spherecircle_area);
PG_FUNCTION_INFO_V1(spherecircle_circ);
PG_FUNCTION_INFO_V1(spheretrans_circle);
PG_FUNCTION_INFO_V1(spheretrans_circle_inverse);
bool
scircle_eq(const SCIRCLE *c1, const SCIRCLE *c2)
{
return (spoint_eq(&c1->center, &c2->center) &&
FPeq(c1->radius, c2->radius));
}
bool
spoint_in_circle(const SPoint *p, const SCIRCLE *c)
{
float8 dist = spoint_dist(p, &c->center);
if (FPle(dist, c->radius))
{
return true;
}
return false;
}
void
euler_scircle_trans(SCIRCLE *out, const SCIRCLE *in, const SEuler *se)
{
euler_spoint_trans(&out->center, &in->center, se);
out->radius = in->radius;
}
Datum
spherecircle_in(PG_FUNCTION_ARGS)
{
SCIRCLE *c = (SCIRCLE *) palloc(sizeof(SCIRCLE));
char *s = PG_GETARG_CSTRING(0);
double lng,
lat,
radius;
init_buffer(s);
sphere_yyparse();
if (get_circle(&lng, &lat, &radius))
{
c->center.lng = lng;
c->center.lat = lat;
c->radius = radius;
reset_buffer();
/*
* It's important to allow circles with radius 90 degrees!
*/
if (FPgt(c->radius, PIH))
{
pfree(c);
c = NULL;
elog(ERROR, "spherecircle_in: radius must be not greater than 90 degrees");
}
else if (FPeq(c->radius, PIH))
{
/* set "exact" 90 degrees */
c->radius = PIH;
}
spoint_check(&c->center);
}
else
{
reset_buffer();
pfree(c);
c = NULL;
elog(ERROR, "spherecircle_in: parse error");
}
PG_RETURN_POINTER(c);
}
Datum
spherecircle_equal(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(0);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(1);
PG_RETURN_BOOL(scircle_eq(c1, c2));
}
Datum
spherecircle_equal_neg(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(0);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(1);
PG_RETURN_BOOL(!scircle_eq(c1, c2));
}
Datum
spherecircle_distance(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(0);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(1);
float8 dist = spoint_dist(&c1->center, &c2->center);
dist -= (c1->radius + c2->radius);
if (dist < 0.0)
{
dist = 0.0;
}
PG_RETURN_FLOAT8(dist);
}
Datum
spherecircle_point_distance(PG_FUNCTION_ARGS)
{
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(0);
SPoint *p = (SPoint *) PG_GETARG_POINTER(1);
float8 dist = spoint_dist(&c->center, p);
dist = dist - c->radius;
if (dist < 0.0)
{
dist = 0.0;
}
PG_RETURN_FLOAT8(dist);
}
Datum
spherecircle_point_distance_com(PG_FUNCTION_ARGS)
{
SPoint *p = (SPoint *) PG_GETARG_POINTER(0);
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(1);
float8 dist = spoint_dist(&c->center, p);
dist = dist - c->radius;
if (dist < 0.0)
{
dist = 0.0;
}
PG_RETURN_FLOAT8(dist);
}
Datum
spherepoint_in_circle(PG_FUNCTION_ARGS)
{
SPoint *p = (SPoint *) PG_GETARG_POINTER(0);
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(1);
PG_RETURN_BOOL(spoint_in_circle(p, c));
}
Datum
spherepoint_in_circle_neg(PG_FUNCTION_ARGS)
{
SPoint *p = (SPoint *) PG_GETARG_POINTER(0);
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(1);
PG_RETURN_BOOL(!spoint_in_circle(p, c));
}
Datum
spherepoint_in_circle_com(PG_FUNCTION_ARGS)
{
SPoint *p = (SPoint *) PG_GETARG_POINTER(1);
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(0);
PG_RETURN_BOOL(spoint_in_circle(p, c));
}
Datum
spherepoint_in_circle_com_neg(PG_FUNCTION_ARGS)
{
SPoint *p = (SPoint *) PG_GETARG_POINTER(1);
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(0);
PG_RETURN_BOOL(!spoint_in_circle(p, c));
}
Datum
spherecircle_in_circle(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(0);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(1);
float8 dist = spoint_dist(&c1->center, &c2->center);
if (scircle_eq(c1, c2))
{
PG_RETURN_BOOL(true);
}
else if (FPle((dist + c1->radius), c2->radius))
{
PG_RETURN_BOOL(true);
}
else
{
PG_RETURN_BOOL(false);
}
}
Datum
spherecircle_in_circle_neg(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(0);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(1);
float8 dist = spoint_dist(&c1->center, &c2->center);
if (scircle_eq(c1, c2))
{
PG_RETURN_BOOL(false);
}
else if (FPgt((dist + c1->radius), c2->radius))
{
PG_RETURN_BOOL(true);
}
else
{
PG_RETURN_BOOL(false);
}
}
Datum
spherecircle_in_circle_com(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(1);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(0);
float8 dist = spoint_dist(&c1->center, &c2->center);
if (scircle_eq(c1, c2))
{
PG_RETURN_BOOL(true);
}
else if (FPle((dist + c1->radius), c2->radius))
{
PG_RETURN_BOOL(true);
}
else
{
PG_RETURN_BOOL(false);
}
}
Datum
spherecircle_in_circle_com_neg(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(1);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(0);
float8 dist = spoint_dist(&c1->center, &c2->center);
if (scircle_eq(c1, c2))
{
PG_RETURN_BOOL(false);
}
else if (FPgt((dist + c1->radius), c2->radius))
{
PG_RETURN_BOOL(true);
}
else
{
PG_RETURN_BOOL(false);
}
}
Datum
spherecircle_overlap(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(0);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(1);
float8 dist = spoint_dist(&c1->center, &c2->center);
if (scircle_eq(c1, c2))
{
PG_RETURN_BOOL(true);
}
else if (FPlt((c1->radius + c2->radius), dist))
{
PG_RETURN_BOOL(false);
}
else
{
PG_RETURN_BOOL(true);
}
}
Datum
spherecircle_overlap_neg(PG_FUNCTION_ARGS)
{
SCIRCLE *c1 = (SCIRCLE *) PG_GETARG_POINTER(0);
SCIRCLE *c2 = (SCIRCLE *) PG_GETARG_POINTER(1);
float8 dist = spoint_dist(&c1->center, &c2->center);
if (scircle_eq(c1, c2))
{
PG_RETURN_BOOL(false);
}
else if (FPge((c1->radius + c2->radius), dist))
{
PG_RETURN_BOOL(false);
}
else
{
PG_RETURN_BOOL(true);
}
}
Datum
spherecircle_center(PG_FUNCTION_ARGS)
{
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(0);
SPoint *p = (SPoint *) palloc(sizeof(SPoint));
memcpy((void *) p, (void *) &c->center, sizeof(SPoint));
PG_RETURN_POINTER(p);
}
Datum
spherecircle_radius(PG_FUNCTION_ARGS)
{
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(0);
PG_RETURN_FLOAT8(c->radius);
}
Datum
spherepoint_to_circle(PG_FUNCTION_ARGS)
{
SPoint *p = (SPoint *) PG_GETARG_POINTER(0);
SCIRCLE *c = (SCIRCLE *) palloc(sizeof(SCIRCLE));
memcpy((void *) &c->center, (void *) p, sizeof(SPoint));
c->radius = 0;
PG_RETURN_POINTER(c);
}
Datum
spherecircle_by_center(PG_FUNCTION_ARGS)
{
SPoint *p = (SPoint *) PG_GETARG_POINTER(0);
float8 rad = PG_GETARG_FLOAT8(1);
SCIRCLE *c;
if (FPgt(rad, PIH) || FPlt(rad, 0.0))
{
elog(ERROR, "radius must be not greater than 90 degrees or less than 0");
PG_RETURN_NULL();
}
c = (SCIRCLE *) palloc(sizeof(SCIRCLE));
memcpy((void *) &c->center, (void *) p, sizeof(SPoint));
c->radius = rad;
PG_RETURN_POINTER(c);
}
Datum
spherecircle_area(PG_FUNCTION_ARGS)
{
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(0);
PG_RETURN_FLOAT8(PID * (1 - cos(c->radius)));
}
Datum
spherecircle_circ(PG_FUNCTION_ARGS)
{
SCIRCLE *c = (SCIRCLE *) PG_GETARG_POINTER(0);
PG_RETURN_FLOAT8(PID * (sin(c->radius)));
}
Datum
spheretrans_circle(PG_FUNCTION_ARGS)
{
SCIRCLE *sc = (SCIRCLE *) PG_GETARG_POINTER(0);
SEuler *se = (SEuler *) PG_GETARG_POINTER(1);
SCIRCLE *out = (SCIRCLE *) palloc(sizeof(SCIRCLE));
euler_scircle_trans(out, sc, se);
PG_RETURN_POINTER(out);
}
Datum
spheretrans_circle_inverse(PG_FUNCTION_ARGS)
{
Datum sc = PG_GETARG_DATUM(0);
SEuler *se = (SEuler *) PG_GETARG_POINTER(1);
SEuler tmp;
Datum ret;
spheretrans_inverse(&tmp, se);
ret = DirectFunctionCall2(spheretrans_circle,
sc, PointerGetDatum(&tmp));
PG_RETURN_DATUM(ret);
}