Find a file
2011-06-26 18:18:23 +00:00
doc change ST_AsX3d from using methodsynopsis back to funcsynopsis. This was an attempt before to stylize default args which didn't work out. 2011-06-26 18:18:23 +00:00
extras #1051 - fix rating logic (typo in direction weight) causing - select (g.addy).*, astext(g.geomout), g.* from geocode('150 2nd Ave S, Minneapolis, MN 55401') as g To return north instead of south. Also change functions to use named args 2011-06-25 08:13:16 +00:00
java - removed a few compile errors from the javadoc build 2009-04-28 17:04:30 +00:00
liblwgeom ST_IsValidDetail and ST_IsValidReason POLYGON CRASH (#712) 2011-06-26 17:31:30 +00:00
loader Fix libiconv linker flags 2011-06-14 08:20:16 +00:00
macros Now for sure. 2010-12-02 00:51:51 +00:00
postgis ST_IsValidDetail and ST_IsValidReason POLYGON CRASH (#712) 2011-06-26 17:31:30 +00:00
raster Modified ST_Transform to permit specification of projected raster's scale. This is due to the scale change that occurs when a raster is being reprojected. 2011-06-25 19:20:23 +00:00
regress Re-base circular bbox regressions 2011-06-23 15:36:54 +00:00
topology Add missing SQL/MM functions in the status section (TODO) 2011-06-20 11:37:40 +00:00
utils Renaming of 3D functions, #817 2011-03-27 17:50:58 +00:00
.gitignore another generated file git-ignored 2011-05-05 08:32:36 +00:00
astyle.sh Check astyle version prior to do anything. 'blessed' version is 1.23. Related to #433 and postgis-devel discussions 2010-02-23 15:21:45 +00:00
authors.svn Add Bborie Park to development team lists. Assume Paul, you've given him SVN edit rights already. 2011-05-13 19:27:04 +00:00
autogen.sh Can't put backslash-commands in 'echo' parameter in a standard way 2009-09-30 14:10:25 +00:00
ChangeLog Some function renaming: lwgeom_typename => lwtype_name. The internal float/up/down functions get slightly better names. Make collection types re-sizable: added maxgeoms to all collections, and created lwcollection_add_lwgeom() function. Remove all *_add functions. Revized homogenize function to use the new _add_lwgeom and variants. 2010-03-16 03:13:33 +00:00
config.rpath Add config rpath 2010-12-09 16:10:01 +00:00
configure.ac Check for new GDALFPolygonize function. If it isn't present, the old GDALPolygonize is called. Related ticket #650. 2011-06-03 15:19:40 +00:00
COPYING Initial revision 2001-06-22 17:39:29 +00:00
CREDITS clean up credits a bit 2011-06-23 13:53:49 +00:00
GNUmakefile.in Have 'svnrebase' rule use an authors file rather than command. Lets older git do it (old git on the machine currently mirroring the codebase to github). 2011-04-13 08:08:46 +00:00
HOWTO_RELEASE Grammar fix. 2010-03-11 14:34:19 +00:00
install-sh Newer script (2009 rather than 2006). Hoping others' won't have it updated (my ./autogen.sh runs always update it) 2010-12-01 16:15:13 +00:00
LICENSE.TXT fix typo 2011-04-28 17:57:42 +00:00
make_dist.sh Add comment about postgis_comments.sql handling in 'clean' target of docs 2010-01-12 01:01:36 +00:00
Makefile Add rules to avoid the infinite loop took before ./configure is run 2010-12-22 18:24:27 +00:00
NEWS update release notes 2011-06-25 20:32:49 +00:00
postgis_config.h.in Clean out scruft from my G_ phase and start attempting to separate _internal from external liblwgeom functions. 2010-10-31 02:31:34 +00:00
README.postgis README files updated with the new raster extension information. 2010-09-26 21:41:50 +00:00
README.raster Fixes on PostGIS Raster debug system. The raster core uses 2010-10-26 17:40:32 +00:00
spatial_ref_sys.sql Update NZ projections for grid transformation support (#631) 2011-06-10 16:16:31 +00:00
STYLE forgot to save last change 2009-07-06 07:37:47 +00:00
TODO remove ST_Maxdistance from TODO and note that C-version is still TODO for ST_DumpPoints 2010-01-23 23:29:07 +00:00
Version.config Push version numbers on trunk forward to next release. 2010-02-04 17:43:47 +00:00

PostGIS WKT Raster - Seamless operations between vector and raster layers
-------------------------------------------------------------------------
http://www.postgis.org/support/wiki/index.php?WKTRasterHomePage


PostGIS Raster's goal is to implement the RASTER type as much as possible
like the GEOMETRY type is implemented in PostGIS and to offer a single
set of overlay SQL functions (like ST_Intersects) operating seamlessly
on vector and raster coverages.

raster/rt_core/ contains the primitives to deal with rasters in memory,
the function to serialize/deserialize both in-memory and on-disk
rasters, the functions to parse and output (hex)wkb.
You can see raster/rt_core/testapi.c and raster/rt_core/testwkb.c for 
example usage.

raster/rt_pg/ contains postgresql-specific wrappers, and SQL code to define
the RASTER type.

raster/doc/ contains technical references and RFC documents.

REQUIREMENTS
------------

PostGIS Raster core lib depends on liblwgeom, as found in postgis
source package as of SVN 2009-01 (latest 1.3.5 release won't work).

Some PostGIS Raster functions depends on GDAL library version 1.6.0 or
higher

PostGIS Raster loader dependes on Python GDAL bindings.

PostgreSQL interface depends on PostgreSQL version 8.3.5.


BUILD
-----

To build PostGIS with raster support:

    $ ./configure --with-raster
    $ make

Note that the 'configure' script isn't there if you fetched
the code from the SVN repository. In that case running ./autogen.sh
should create it for you.

Under MinGW you might have to add "--with-pgconfig=/usr/local/pgsql/bin/pg_config" if 
configure can't find your pgsql path.


PRE-INSTALL TEST
----------------

After a successful build, you can run:

    $ make raster-check

It won't test postgresql interface, as that would require more setup
then a simple make check. See POST-INSTALL TESTING for more info on how
to test that part.

INSTALL
-------

You need to install the library to the postgresql library
directory. You do it by running:

    $ sudo make install

POST-INSTALL TEST
-----------------

You can run the post install tests against it:

    $ make raster-post-install-check

USE
---

In order to enable your databases to use the raster
functionalities you have to feed them the enabler script:

    $ psql -f raster/rt_pg/rtpostgis.sql $MYDB

Note that you must have loaded PostGIS in the database
in order for that to work (see PostGIS documentation
for how to do that).