Project

General

Profile

« Previous | Next » 

Revision 13815

schemas/util.sql: added lat_long_in_new_world()

View differences:

trunk/schemas/util.sql
2226 2226

  
2227 2227

  
2228 2228
--
2229
-- Name: lat_long_in_new_world(double precision, double precision); Type: FUNCTION; Schema: util; Owner: -
2230
--
2231

  
2232
CREATE FUNCTION lat_long_in_new_world(latitude_deg double precision, longitude_deg double precision) RETURNS boolean
2233
    LANGUAGE sql IMMUTABLE
2234
    SET search_path TO util, postgis
2235
    AS $_$
2236
SELECT util.point($1, $2) @ util.new_world()
2237
$_$;
2238

  
2239

  
2240
--
2229 2241
-- Name: limit2row_num(integer, integer, integer); Type: FUNCTION; Schema: util; Owner: -
2230 2242
--
2231 2243

  

Also available in: Unified diff