Hi,

I have a problem with Zoom To Full Extent
with the new PostGIS reader!
Using PostgreSQL 9.2.1 with PostGIS 2.0.

I created two tables with SQL.

This table (t_line) works fine:

drop table if exists t_line;
CREATE TABLE t_line ( lnr integer, geom geometry ( LINESTRING, 0 ) );
INSERT INTO t_line VALUES
  ( 1, ST_GeometryFromText ( 'LINESTRING ( 200.0 200.0, 250.0 230.0, 
210.0 250.0 )', 0 ) );
INSERT INTO t_line VALUES
  ( 2, ST_GeometryFromText ( 'LINESTRING ( 100.0 100.0, 150.0 130.0, 
110.0 150.0 )', 0 ) );

SELECT * FROM t_line;


This table (t_line_invis) is invisible after Zoom To Full Extent:

drop table if exists t_line_invis;
CREATE TABLE t_line_invis ( lnr integer, geom geometry ( LINESTRING, 0 ) );
INSERT INTO t_line_invis VALUES
  ( 1, ST_GeometryFromText ( 'LINESTRING ( 2000.0 2000.0, 2500.0 2300.0, 
2100.0 2500.0 )', 0 ) );
INSERT INTO t_line_invis VALUES
  ( 2, ST_GeometryFromText ( 'LINESTRING ( 1000.0 1000.0, 1500.0 1300.0, 
1100.0 1500.0 )', 0 ) );

SELECT * FROM t_line_invis;


Uwe




------------------------------------------------------------------------------
Own the Future-Intel® Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest.
Compete for recognition, cash, and the chance to get your game 
on Steam. $5K grand prize plus 10 genre and skill prizes. 
Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to