• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

data/H30-Oct-2019-1,6531,647

doc/H30-Oct-2019-3,3483,117

expected/H30-Oct-2019-12,78310,707

sql/H30-Oct-2019-2,8081,737

testsuite/H30-Oct-2019-4,6913,398

.gitignoreH A D30-Oct-201956 66

COPYRIGHT.pg_sphereH A D30-Oct-20191.5 KiB2823

MakefileH A D30-Oct-20191.9 KiB6851

README.pg_sphereH A D30-Oct-2019803 3219

box.cH A D30-Oct-201933.5 KiB1,5511,257

box.hH A D30-Oct-20199.4 KiB429105

circle.cH A D30-Oct-20198.5 KiB413351

circle.hH A D30-Oct-20193.3 KiB15636

ellipse.cH A D30-Oct-201929 KiB1,4331,182

ellipse.hH A D30-Oct-20197.2 KiB30573

euler.cH A D30-Oct-20199.5 KiB530449

euler.hH A D30-Oct-20193.8 KiB16238

gist.cH A D30-Oct-201945.1 KiB2,0051,585

gist.hH A D30-Oct-20193.6 KiB15338

gnomo.cH A D30-Oct-20191.7 KiB7046

gnomo.sql.inH A D30-Oct-2019513 1813

gq_cache.cH A D30-Oct-20193 KiB156125

key.cH A D30-Oct-20198.6 KiB518458

key.hH A D30-Oct-20194.2 KiB17357

line.cH A D03-May-202219.9 KiB1,054870

line.hH A D03-May-20227.2 KiB29466

output.cH A D30-Oct-201910.6 KiB534410

path.cH A D03-May-202220.6 KiB1,042794

path.hH A D30-Oct-20196.5 KiB30170

pg_sphere.controlH A D30-Oct-2019184 65

pg_sphere.hH A D30-Oct-20191.8 KiB6329

pgs_box.sql.inH A D30-Oct-201928.3 KiB1,304967

pgs_circle.sql.inH A D30-Oct-20199.4 KiB436325

pgs_contains_ops.sql.inH A D30-Oct-201938.8 KiB1,4711,212

pgs_contains_ops_compat.sql.inH A D30-Oct-201938.5 KiB1,4751,215

pgs_ellipse.sql.inH A D30-Oct-201918.3 KiB799586

pgs_euler.sql.inH A D30-Oct-20195.3 KiB223169

pgs_gist.sql.inH A D30-Oct-201913.6 KiB428367

pgs_line.sql.inH A D30-Oct-201912.5 KiB596440

pgs_path.sql.inH A D30-Oct-201920.6 KiB930697

pgs_point.sql.inH A D30-Oct-20193.5 KiB170131

pgs_polygon.sql.inH A D30-Oct-201921.7 KiB946706

pgs_types.sql.inH A D30-Oct-20193.2 KiB194130

point.cH A D30-Oct-20194.8 KiB266227

point.hH A D30-Oct-20191.8 KiB9425

polygon.cH A D03-May-202229 KiB1,4441,112

polygon.hH A D30-Oct-20198 KiB34682

sbuffer.cH A D30-Oct-20195.7 KiB387313

sbuffer.hH A D30-Oct-20195.1 KiB14939

sparse.cH A D30-Oct-201955.2 KiB1,8301,263

sparse.hH A D30-Oct-20192.7 KiB10760

sparse.yH A D30-Oct-20194.1 KiB184145

sscan.cH A D30-Oct-201944.4 KiB1,9121,208

sscan.lH A D30-Oct-20191.1 KiB5649

types.hH A D30-Oct-2019577 2111

vector3d.cH A D30-Oct-2019645 3729

vector3d.hH A D30-Oct-2019800 4114

README.pg_sphere

1This is an R-Tree implementation using GiST for spherical objects
2like spherical points and spherical circles with
3useful functions and operators.
4
5
6NOTICE:
7     This version will work only with postgresql version 9.1 and above.
8
9INSTALLATION:
10
11  -- build and install
12  gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config
13  gmake USE_PGXS=1 PG_CONFIG=/usr/bin/pg_config install
14  -- load extension
15  psql -c "CREATE EXTENSION pg_sphere;" <database>
16
17REGRESSION TEST (as the same user as the currently running postgresql server):
18
19  make USE_PGXS=1 installcheck
20
21LONG REGRESSION TEST:
22
23  make USE_PGXS=1 crushtest
24
25The 'make' program must be compatible with GNU make.
26
27For more information, have a look at http://pgsphere.projects.postgresql.org
28and https://github.com/akorotkov/pgsphere
29
30Have a lot of fun!
31
32