[postgis-commits] svn - r3859 - spike/wktraster/rt_pg
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Thu Mar 12 12:03:49 PDT 2009
Author: mloskot
Date: 2009-03-12 12:03:49 -0700 (Thu, 12 Mar 2009)
New Revision: 3859
Modified:
spike/wktraster/rt_pg/rtpostgis.sql.in.c
Log:
Updated rtpostgis.sql.in.c according to the latest version of RASTER_COLUMNS spec.
Modified: spike/wktraster/rt_pg/rtpostgis.sql.in.c
===================================================================
--- spike/wktraster/rt_pg/rtpostgis.sql.in.c 2009-03-12 18:35:00 UTC (rev 3858)
+++ spike/wktraster/rt_pg/rtpostgis.sql.in.c 2009-03-12 19:03:49 UTC (rev 3859)
@@ -336,13 +336,16 @@
r_table_name varchar(256) not null,
r_column varchar(256) not null,
srid integer not null,
- pixel_types integer[] not null, -- TODO: int or char see the spec.
- pixel_size double precision[] not null,
+ pixelsize_x double precision,
+ pixelsize_y double precision,
+ blocksize_x double precision,
+ blocksize_y double precision,
+ pixel_types varchar[] not null,
+ nodata_values double precision[] not null,
regular_blocking integer,
+ extent GEOMETRY,
out_db integer,
- -- TODO: See "What to put and not to put in it?"
-
CONSTRAINT raster_columns_pk primary key (
r_table_catalog,
r_table_schema,
More information about the postgis-commits
mailing list