]> granicus.if.org Git - postgis/commitdiff
Changes in preparation for 1.0.0RC1
authorPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 17 Dec 2004 06:53:09 +0000 (06:53 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 17 Dec 2004 06:53:09 +0000 (06:53 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1157 b70326c6-7e19-0410-871a-916f4a2858ee

CHANGES
CREDITS
README.postgis
TODO

diff --git a/CHANGES b/CHANGES
index a995d1418ea12b92d8ca7e444847676cf4a65adb..e7a3c94b7ebc175714aee207e72449cbb30365df 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,20 @@
+PostGIS 1.0.0
+2004/12/16
+
+- New Things
+  - Objects are all now "lightweight" with a smaller disk
+    and index representation. Large databases should see a moderate
+    to large performance increase.
+  - Some new functions (AsGML())
+  - Objects now have a hexidecimal canonical representation.
+    To see a "user friendly" version of the objects use the
+    AsText() function.
+  - The loader and dumper use the hexidecimal canonical representation,
+    so coordinate drift due to floating point string parsing is now
+    eliminated.
+- Bug Fixes
+  - Numerous small fixes.
+
 PostGIS 0.9.0
 2004/09/10
 
diff --git a/CREDITS b/CREDITS
index a8ff797cb5540edb61b1acdb40c56bf133311378..eb7f574d48b162545aa5284689bb9668be3af4b3 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -8,10 +8,10 @@ core team.
 
 VERSION SPECIFIC CREDITS:
 
-Version 0.1 of PostGIS was developed by Refractions Research Inc, of Victora, 
-British Columbia, Canada (http://www.refractions.net), as a research project 
-into using PostgreSQL as a geospatial data-store. The following staff 
-participated in the project:
+PostGIS is developed by Refractions Research Inc, of Victora, 
+British Columbia, Canada (http://www.refractions.net), as an ongoing project 
+in using PostgreSQL as a geospatial data-store. The following contributors 
+have participated in the project:
 
   Sandro Santilli - Maintenance and core programming (the new stuff)
   Dave Blasby - Core server objects and indexing (original contributions)
index e09bc6c66887ad1cf31b6c680eadcccac2bad26e..cd170e59c40a7cf3b99ca06c7e89cc4e0ac54acc 100644 (file)
@@ -1,7 +1,7 @@
 PostGIS - Geographic Information Systems Extensions to PostgreSQL
 ~~~~~~~   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-VERSION: 0.9.0 (2004/09/10)
+VERSION: 1.0.0 (2004/12/16)
 
 MORE INFORMATION: http://postgis.refractions.net
 
@@ -19,19 +19,23 @@ Directory structure:
   ./doc       Documentation on the code, objects and functions 
               provided. 
   ./loader    A program to convert ESRI Shape files into SQL text
-              suitable for uploading into a PostGIS/PostgreSQL database.
+              suitable for uploading into a PostGIS/PostgreSQL database
+              and a program for converting PostGIS spatial tables into
+              Shape files..
   ./examples  Small programs which demonstrate ways of accessing 
               GIS data.
                
 
 INSTALLATION:
 
-PostGIS is compatible with PostgreSQL 7.1 and above.
+PostGIS is compatible with PostgreSQL 7.2 and above.
 
 To install the module, move this directory to the "contrib" directory of your
 PostgreSQL source installation. Alternately, point PGSQL_SRC at your
-PostgreSQL source tree either in the environment or editing Makefile.config.
-You must have a PostgreSQL source tree, and you must have succesfully
+PostgreSQL source tree either in an environment variable or editing 
+Makefile.config.
+
+You *must* have a PostgreSQL source tree, and you *must* have succesfully
 built and installed it for this to work. 
 
 SEE THE NOTE ON GEOS SUPPORT BELOW FOR SPECIAL COMPILATION INSTRUCTIONS
@@ -55,7 +59,7 @@ SEE THE NOTE ON GEOS SUPPORT BELOW FOR SPECIAL COMPILATION INSTRUCTIONS
 
     http://geos.refractions.net
 
-  In order to use the GEOS support, you may need to specially compile 
+  In order to use the GEOS support, you *may* need to specially compile 
   your version of PostgreSQL to link the C++ runtime library.
   To do this, invoke the PgSQL configuration script this way:
  
diff --git a/TODO b/TODO
index 37a1f2f7cafec71ebf16bf381bd251eb37a697c1..a21b645c5c203b3aa87a409f49dc3c2efa1fa7c3 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,9 +1,10 @@
-2004/09/10
+2004/12/16
 
 - Clean up mapserver connectivity
 - Submit to OpenGIS Consortium for testing
-- More connectivity to commercial GIS software.
-- Update PgSQL GiST to support row level (recangle level?) locking.
+- Update PgSQL GiST to support row level (rectangle level?) locking.
 - Network creation and network operations 
   (upstream, downstream, least cost path)
+- Standardized handling for topology and coverages with 
+  support functions.