Skip to content

Commit

Permalink
Add files missed in last commit
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/postgis/trunk@16369 b70326c6-7e19-0410-871a-916f4a2858ee
  • Loading branch information
dbaston committed Feb 2, 2018
1 parent 2fec743 commit 89b082b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions regress/oriented_envelope.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
-- It's strict
SELECT 't1', ST_OrientedEnvelope(NULL::geometry) IS NULL;
-- Empty polygon on empty inputs
SELECT 't2', ST_Equals(ST_OrientedEnvelope('POINT EMPTY'), 'POLYGON EMPTY'::geometry);
-- SRID is preserved
SELECT 't3', ST_SRID(ST_OrientedEnvelope('SRID=32611;POINT(4021690.58034526 6040138.01373556)')) = 32611;
-- Can return Point or LineString on degenerate inputs
SELECT 't4', ST_Equals('LINESTRING (-1 -1, 2 2)', ST_OrientedEnvelope('MULTIPOINT ((0 0), (-1 -1), (2 2))'));
SELECT 't5', ST_Equals('POINT (0.9625 2)', ST_OrientedEnvelope('POINT (0.9625 2)'));
-- Also works for normal inputs
SELECT 't6', ST_Equals('POLYGON ((3 2, 2.88 2.16, -1.12 -0.84, -1 -1, 3 2))', ST_OrientedEnvelope('MULTIPOINT ((0 0), (-1 -1), (3 2))'));

6 changes: 6 additions & 0 deletions regress/oriented_envelope_expected
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
t1|t
t2|t
t3|t
t4|t
t5|t
t6|t

0 comments on commit 89b082b

Please sign in to comment.