Project

General

Profile

« Previous | Next » 

Revision 13814

schemas/util.sql: added operator @(postgis.geography, postgis.geography). can't use && for this because it only compares 2D bounding boxes (which are geometry objects that do not support geocoordinate wraparound).

View differences:

util.sql
4681 4681

  
4682 4682

  
4683 4683
--
4684
-- Name: @; Type: OPERATOR; Schema: util; Owner: -
4685
--
4686

  
4687
CREATE OPERATOR @ (
4688
    PROCEDURE = postgis.st_coveredby,
4689
    LEFTARG = postgis.geography,
4690
    RIGHTARG = postgis.geography
4691
);
4692

  
4693

  
4694
--
4695
-- Name: OPERATOR @ (postgis.geography, postgis.geography); Type: COMMENT; Schema: util; Owner: -
4696
--
4697

  
4698
COMMENT ON OPERATOR @ (postgis.geography, postgis.geography) IS '
4699
can''t use && because it only compares 2D bounding boxes (which are geometry
4700
objects that do not support geocoordinate wraparound)
4701
';
4702

  
4703

  
4704
--
4684 4705
-- Name: ||%; Type: OPERATOR; Schema: util; Owner: -
4685 4706
--
4686 4707

  

Also available in: Unified diff