Find a file
Sandro Santilli 615bdce18a Implement lwgeom_same for CURVEPOLYGON types (#1475)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8830 b70326c6-7e19-0410-871a-916f4a2858ee
2012-01-16 10:21:09 +00:00
doc put in spaces in ST_InterpolatePoint See Also references 2012-01-15 09:25:51 +00:00
extensions Try an older bash syntax for robe? 2012-01-11 02:27:41 +00:00
extras #1392: Can't geocode intersecting highways or areas where no zip available 2012-01-09 14:56:09 +00:00
java Update Java components to support SRID<=0 as unknown SRID (#1221) 2012-01-09 11:01:44 +00:00
liblwgeom Implement lwgeom_same for CURVEPOLYGON types (#1475) 2012-01-16 10:21:09 +00:00
libpgcommon Virtualize ``make'' calls (#1464) 2012-01-13 16:23:18 +00:00
loader Display "Creating Index..." text within the progress dialog rather than within the shp2pgsql-gui log window. 2012-01-14 13:10:27 +00:00
macros Now for sure. 2010-12-02 00:51:51 +00:00
postgis #1401 Goodbye getSRID() 2012-01-15 03:18:16 +00:00
raster Use normal autoconf convention of using #define to determine whether or not GDALFPOLYGONIZE is present, rather than always having it present and setting its value to either 0 or 1. 2012-01-14 00:49:29 +00:00
regress Implement lwgeom_same for CURVEPOLYGON types (#1475) 2012-01-16 10:21:09 +00:00
topology Use a CTE for queries involving largs WKB input. 2012-01-16 08:25:08 +00:00
utils Add all signature in the current repository 2012-01-13 13:31:43 +00:00
.gitignore Other generated files 2012-01-10 08:32:53 +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 Use normal autoconf convention of using #define to determine whether or not GDALFPOLYGONIZE is present, rather than always having it present and setting its value to either 0 or 1. 2012-01-14 00:49:29 +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 xsl to generate postgis cheatsheet, add make cheatsheet to gnumake, better outptuting of functions with different protos. 2011-11-01 03:06:55 +00:00
HOWTO_RELEASE update instructions to reflect changes that need to be made to extensions before tagged release. Hopefully we can automate this part in the future -- but have no clue how. 2012-01-07 19:02:50 +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 update license to provide detail about documentation license and copyright of data etc. 2011-12-07 03:41:57 +00:00
make_dist.sh Distribute comments in tarball. Stop distributing pdf or html (#626) 2012-01-09 15:27:33 +00:00
Makefile Add rules to avoid the infinite loop took before ./configure is run 2010-12-22 18:24:27 +00:00
MIGRATION more column width cleanup 2011-07-03 01:58:48 +00:00
NEWS Drop ST_AsBinary(text) wrapper, removed in previous commits 2012-01-11 15:51:27 +00:00
postgis_config.h.in Switch NLS build to use the in-built ENABLE_NLS define rather than USE_NLS. 2012-01-14 00:49:14 +00:00
README.postgis Update HARD UPGRADE section, mention --with-topology 2012-01-11 08:26:36 +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 Change parameter order in 900913 (magic!) 2011-06-29 23:14:27 +00:00
STYLE forgot to save last change 2009-07-06 07:37:47 +00:00
TODO ST_Split was implemented - a lot more to remove from TODO 2012-01-03 21:30:23 +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).