]> granicus.if.org Git - postgis/log
postgis
15 years agoadd note about GEOS 3.2
Regina Obe [Fri, 15 Jan 2010 18:49:06 +0000 (18:49 +0000)]
add note about GEOS 3.2

git-svn-id: http://svn.osgeo.org/postgis/trunk@5134 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoShort circuit on distance tests: only do full spheroidal calculation where the distan...
Paul Ramsey [Fri, 15 Jan 2010 18:41:41 +0000 (18:41 +0000)]
Short circuit on distance tests: only do full spheroidal calculation where the distance is near or greater than the tolerance. This will make large st_dwithin() radius searches much faster since points that are well within the radius will not have their full geodetic calculation run, only those that are close to the radius boundary.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5133 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoPrepare for 1.5.0b2
Paul Ramsey [Fri, 15 Jan 2010 18:06:38 +0000 (18:06 +0000)]
Prepare for 1.5.0b2

git-svn-id: http://svn.osgeo.org/postgis/trunk@5130 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMake GEOS 3.1 the mandatory minimum (#385)
Paul Ramsey [Fri, 15 Jan 2010 17:54:52 +0000 (17:54 +0000)]
Make GEOS 3.1 the mandatory minimum (#385)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5129 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoIgnore all PNG files.
Paul Ramsey [Fri, 15 Jan 2010 17:47:24 +0000 (17:47 +0000)]
Ignore all PNG files.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5128 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRound decimal part in #58 ticket unit test. As the previous result was not cross...
Olivier Courtin [Fri, 15 Jan 2010 08:13:19 +0000 (08:13 +0000)]
Round decimal part in #58 ticket unit test. As the previous result was not cross platform compliant

git-svn-id: http://svn.osgeo.org/postgis/trunk@5127 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix undefined vars in LWDEBUGF (#383)
Olivier Courtin [Thu, 14 Jan 2010 14:45:06 +0000 (14:45 +0000)]
Fix undefined vars in LWDEBUGF (#383)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5124 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoUpdate TODO. remove ST_GeomFromKML entry
Olivier Courtin [Thu, 14 Jan 2010 08:34:48 +0000 (08:34 +0000)]
Update TODO. remove ST_GeomFromKML entry

git-svn-id: http://svn.osgeo.org/postgis/trunk@5123 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd missing MODULE_big section for #311 which was preventing the main PostGIS library...
Mark Cave-Ayland [Tue, 12 Jan 2010 10:33:49 +0000 (10:33 +0000)]
Add missing MODULE_big section for #311 which was preventing the main PostGIS library from being installed on older versions of PostgreSQL.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5121 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoslight typo correction
Regina Obe [Tue, 12 Jan 2010 08:23:18 +0000 (08:23 +0000)]
slight typo correction

git-svn-id: http://svn.osgeo.org/postgis/trunk@5120 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd ST_DFullyWithin and add analysis as descriptor to functions
Regina Obe [Tue, 12 Jan 2010 08:18:54 +0000 (08:18 +0000)]
Add ST_DFullyWithin and add analysis as descriptor to functions

git-svn-id: http://svn.osgeo.org/postgis/trunk@5119 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoChange ST_Equals to use && instead of ~= (#378)
Paul Ramsey [Tue, 12 Jan 2010 04:28:00 +0000 (04:28 +0000)]
Change ST_Equals to use && instead of ~= (#378)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5118 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoShorten trac URL.
Paul Ramsey [Tue, 12 Jan 2010 04:24:33 +0000 (04:24 +0000)]
Shorten trac URL.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5117 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd comment about postgis_comments.sql handling in 'clean' target of docs
Paul Ramsey [Tue, 12 Jan 2010 01:01:36 +0000 (01:01 +0000)]
Add comment about postgis_comments.sql handling in 'clean' target of docs

git-svn-id: http://svn.osgeo.org/postgis/trunk@5116 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoDon't remove postgis_comments.sql when doing a 'make clean' in doc, that way they...
Paul Ramsey [Tue, 12 Jan 2010 01:00:56 +0000 (01:00 +0000)]
Don't remove postgis_comments.sql when doing a 'make clean' in doc, that way they can survive into the tarball build for final release.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5115 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoPerformance tweak to distance calculations with tolerance. If distance is much less...
Paul Ramsey [Tue, 12 Jan 2010 00:25:24 +0000 (00:25 +0000)]
Performance tweak to distance calculations with tolerance. If distance is much less than tolerance, don't bother with geodetic calculation. If distance is close to or greater than tolerance, do the geodetic calculation. Should make st_dwithin faster, avoiding geodetic calculations for points that are clearly within tolerance.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5114 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoadded missing liblwgeom target needed to build the documentation images
Kevin Neufeld [Mon, 11 Jan 2010 17:31:49 +0000 (17:31 +0000)]
added missing liblwgeom target needed to build the documentation images

git-svn-id: http://svn.osgeo.org/postgis/trunk@5113 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agofix typo
Regina Obe [Sat, 9 Jan 2010 03:05:49 +0000 (03:05 +0000)]
fix typo

git-svn-id: http://svn.osgeo.org/postgis/trunk@5112 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFill in missing spots in News
Regina Obe [Sat, 9 Jan 2010 03:05:25 +0000 (03:05 +0000)]
Fill in missing spots in News

git-svn-id: http://svn.osgeo.org/postgis/trunk@5111 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoUse macro define to determine default geometry column name in gui
Paul Ramsey [Sat, 9 Jan 2010 00:10:48 +0000 (00:10 +0000)]
Use macro define to determine default geometry column name in gui

git-svn-id: http://svn.osgeo.org/postgis/trunk@5110 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoUpdate the NEW file
Paul Ramsey [Fri, 8 Jan 2010 23:39:41 +0000 (23:39 +0000)]
Update the NEW file

git-svn-id: http://svn.osgeo.org/postgis/trunk@5107 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdded in one removed function (st_max_distance, replaced by st_maxdistance) to the...
Paul Ramsey [Fri, 8 Jan 2010 23:16:43 +0000 (23:16 +0000)]
Added in one removed function (st_max_distance, replaced by st_maxdistance) to the drop script  (#330)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5106 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoOverride pgxs defaults for install, from mcayland (#311)
Paul Ramsey [Fri, 8 Jan 2010 22:48:29 +0000 (22:48 +0000)]
Override pgxs defaults for install, from mcayland (#311)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5105 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoApply a modified version of Guillaume Lelarge's patch to allow compilation under...
Mark Cave-Ayland [Thu, 7 Jan 2010 16:04:22 +0000 (16:04 +0000)]
Apply a modified version of Guillaume Lelarge's patch to allow compilation under current PostgreSQL 8.5 CVS.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5104 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoInitailize config value from simple_geometries
Paul Ramsey [Mon, 4 Jan 2010 23:25:15 +0000 (23:25 +0000)]
Initailize config value from simple_geometries

git-svn-id: http://svn.osgeo.org/postgis/trunk@5101 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoBracked and reformat comparison to be more explicit
Paul Ramsey [Mon, 4 Jan 2010 19:52:06 +0000 (19:52 +0000)]
Bracked and reformat comparison to be more explicit

git-svn-id: http://svn.osgeo.org/postgis/trunk@5100 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFixed up de-serialization routines to avoid *geoms = malloc(0) cases which were causi...
Paul Ramsey [Mon, 4 Jan 2010 17:55:14 +0000 (17:55 +0000)]
Fixed up de-serialization routines to avoid *geoms = malloc(0) cases which were causing free to fail later on down the line (#370)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5099 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRemove the ifdef/endif blocks for HAVE_ICONV (#367)
Paul Ramsey [Mon, 4 Jan 2010 05:47:04 +0000 (05:47 +0000)]
Remove the ifdef/endif blocks for HAVE_ICONV (#367)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5098 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMake configure error out when iconv is unavailable. (#367)
Paul Ramsey [Mon, 4 Jan 2010 05:42:06 +0000 (05:42 +0000)]
Make configure error out when iconv is unavailable. (#367)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5097 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMinor change to about dialog build.
Paul Ramsey [Mon, 4 Jan 2010 05:21:45 +0000 (05:21 +0000)]
Minor change to about dialog build.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5096 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRe-fix connection password hiding (#356)
Paul Ramsey [Mon, 4 Jan 2010 04:52:33 +0000 (04:52 +0000)]
Re-fix connection password hiding (#356)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5095 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix the RCSID to actually substitute
Paul Ramsey [Mon, 4 Jan 2010 00:34:19 +0000 (00:34 +0000)]
Fix the RCSID to actually substitute

git-svn-id: http://svn.osgeo.org/postgis/trunk@5094 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd an About dialogue that contains the revision string (hopefully)
Paul Ramsey [Mon, 4 Jan 2010 00:32:15 +0000 (00:32 +0000)]
Add an About dialogue that contains the revision string (hopefully)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5093 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMake lwcollection_extract slightly more empty-intelligent
Paul Ramsey [Mon, 4 Jan 2010 00:31:52 +0000 (00:31 +0000)]
Make lwcollection_extract slightly more empty-intelligent

git-svn-id: http://svn.osgeo.org/postgis/trunk@5092 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoSeparate the options config persistence from the main persistence routine to allow...
Paul Ramsey [Sun, 3 Jan 2010 23:05:42 +0000 (23:05 +0000)]
Separate the options config persistence from the main persistence routine to allow the "geocolumn" magic to work more reliably (#369)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5091 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd initialization to fix one Win32 segfault.
Paul Ramsey [Sat, 2 Jan 2010 08:17:42 +0000 (08:17 +0000)]
Add initialization to fix one Win32 segfault.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5090 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd getopt.o into the modules used by shp2pgsql-gui.exe
Paul Ramsey [Sat, 2 Jan 2010 07:01:49 +0000 (07:01 +0000)]
Add getopt.o into the modules used by shp2pgsql-gui.exe

git-svn-id: http://svn.osgeo.org/postgis/trunk@5089 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFlip back to pgis_getopt
Paul Ramsey [Sat, 2 Jan 2010 06:57:08 +0000 (06:57 +0000)]
Flip back to pgis_getopt

git-svn-id: http://svn.osgeo.org/postgis/trunk@5088 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoChange log entry to reflect actual iconv target encoding (UTF-8, not UTF8)
Paul Ramsey [Fri, 1 Jan 2010 20:28:37 +0000 (20:28 +0000)]
Change log entry to reflect actual iconv target encoding (UTF-8, not UTF8)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5087 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoamend upgrade instructions to include description postgis_upgrade*.sql
Regina Obe [Fri, 1 Jan 2010 19:44:15 +0000 (19:44 +0000)]
amend upgrade instructions to include description postgis_upgrade*.sql

git-svn-id: http://svn.osgeo.org/postgis/trunk@5086 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoput in ?, -n and -N missing from loader list
Regina Obe [Fri, 1 Jan 2010 19:30:48 +0000 (19:30 +0000)]
put in ?, -n and -N missing from loader list

git-svn-id: http://svn.osgeo.org/postgis/trunk@5085 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agominor change
Regina Obe [Thu, 31 Dec 2009 12:41:38 +0000 (12:41 +0000)]
minor change

git-svn-id: http://svn.osgeo.org/postgis/trunk@5084 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoamend shp2pgsql section to mention gui loader and also -G geography switch
Regina Obe [Thu, 31 Dec 2009 11:56:56 +0000 (11:56 +0000)]
amend shp2pgsql section to mention gui loader and also -G geography switch

git-svn-id: http://svn.osgeo.org/postgis/trunk@5083 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agochange wording in what is new titles to reflect they show both new and changed/enhanc...
Regina Obe [Wed, 30 Dec 2009 15:31:27 +0000 (15:31 +0000)]
change wording in what is new titles to reflect they show both new and changed/enhanced functions

git-svn-id: http://svn.osgeo.org/postgis/trunk@5082 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix ST_Extent/ST_Expand docs to reflect change in behavior of outputting double preci...
Regina Obe [Wed, 30 Dec 2009 15:12:49 +0000 (15:12 +0000)]
Fix ST_Extent/ST_Expand docs to reflect change in behavior of outputting double precision coords instead of float4.  Still need to fix up examples.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5081 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix ST_Envelope() and ST_Expand() so that they use double precision arithmetic rather...
Mark Cave-Ayland [Wed, 30 Dec 2009 14:52:52 +0000 (14:52 +0000)]
Fix ST_Envelope() and ST_Expand() so that they use double precision arithmetic rather than single precision arithmetic for their calculations. The internal BOX2DFLOAT4s should *never* be used for calculation purposes.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5080 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoST_Box back to Box link ref
Regina Obe [Wed, 30 Dec 2009 13:08:38 +0000 (13:08 +0000)]
ST_Box back to Box link ref

git-svn-id: http://svn.osgeo.org/postgis/trunk@5079 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agooops revert change I guess ST_Box .. is the one that's deprecated. How confusing...
Regina Obe [Wed, 30 Dec 2009 12:53:55 +0000 (12:53 +0000)]
oops revert change I guess ST_Box .. is the one that's deprecated.  How confusing :)  PRobably should remove from docs at some point.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5077 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoamend faqs and change Box2D,Box3D to ST_Box...
Regina Obe [Wed, 30 Dec 2009 12:48:17 +0000 (12:48 +0000)]
amend faqs and change Box2D,Box3D to ST_Box...

git-svn-id: http://svn.osgeo.org/postgis/trunk@5076 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agocorrect example
Regina Obe [Wed, 30 Dec 2009 09:15:51 +0000 (09:15 +0000)]
correct example

git-svn-id: http://svn.osgeo.org/postgis/trunk@5074 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agomore clarity on the float4/float8 for ST_Envelope
Regina Obe [Wed, 30 Dec 2009 07:20:22 +0000 (07:20 +0000)]
more clarity on the float4/float8 for ST_Envelope

git-svn-id: http://svn.osgeo.org/postgis/trunk@5073 b70326c6-7e19-0410-871a-916f4a2858ee

15 years ago#531 ST_Envelope has wrong return type changed from boolean to geometry
Regina Obe [Wed, 30 Dec 2009 06:53:26 +0000 (06:53 +0000)]
#531 ST_Envelope has wrong return type changed from boolean to geometry

git-svn-id: http://svn.osgeo.org/postgis/trunk@5071 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoslight wording change
Regina Obe [Wed, 30 Dec 2009 06:45:43 +0000 (06:45 +0000)]
slight wording change

git-svn-id: http://svn.osgeo.org/postgis/trunk@5069 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agofill in mising geography = operator
Regina Obe [Wed, 30 Dec 2009 06:44:45 +0000 (06:44 +0000)]
fill in mising geography = operator

git-svn-id: http://svn.osgeo.org/postgis/trunk@5068 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agofix typo
Regina Obe [Wed, 30 Dec 2009 06:38:29 +0000 (06:38 +0000)]
fix typo

git-svn-id: http://svn.osgeo.org/postgis/trunk@5067 b70326c6-7e19-0410-871a-916f4a2858ee

15 years ago#365 document ST_GeogFromWKB and ST_GeogFromText
Regina Obe [Wed, 30 Dec 2009 06:12:07 +0000 (06:12 +0000)]
#365 document ST_GeogFromWKB and ST_GeogFromText

git-svn-id: http://svn.osgeo.org/postgis/trunk@5066 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRename ST_GeographyFromBinary to ST_GeogFromWKB. Add ST_GeogFromText to ape the ISO...
Paul Ramsey [Wed, 30 Dec 2009 01:25:17 +0000 (01:25 +0000)]
Rename ST_GeographyFromBinary to ST_GeogFromWKB. Add ST_GeogFromText to ape the ISO geometry spec more closely. (#360)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5065 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRemove the NULL policy line from the GUI options (#363)
Paul Ramsey [Wed, 30 Dec 2009 01:20:00 +0000 (01:20 +0000)]
Remove the NULL policy line from the GUI options (#363)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5064 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMake a few things more explicit in the handling of encoding.
Paul Ramsey [Wed, 30 Dec 2009 01:12:14 +0000 (01:12 +0000)]
Make a few things more explicit in the handling of encoding.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5063 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRemove a couple compiler warnings following last change.
Paul Ramsey [Tue, 29 Dec 2009 20:23:50 +0000 (20:23 +0000)]
Remove a couple compiler warnings following last change.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5062 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoChange options dialogue into actual GTK dialog and move to creating/destroying it...
Paul Ramsey [Tue, 29 Dec 2009 20:16:48 +0000 (20:16 +0000)]
Change options dialogue into actual GTK dialog and move to creating/destroying it on each appearance. (#363)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5061 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoTry and get around the expanding window problem
Paul Ramsey [Tue, 29 Dec 2009 19:23:41 +0000 (19:23 +0000)]
Try and get around the expanding window problem

git-svn-id: http://svn.osgeo.org/postgis/trunk@5060 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd a filter name to the shapefile file selector; this is just a cosmetic fix.
Mark Cave-Ayland [Tue, 29 Dec 2009 08:52:47 +0000 (08:52 +0000)]
Add a filter name to the shapefile file selector; this is just a cosmetic fix.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5059 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRestrict SQL to only 255 characters when displaying erroneus SQL in the log window...
Mark Cave-Ayland [Tue, 29 Dec 2009 08:35:47 +0000 (08:35 +0000)]
Restrict SQL to only 255 characters when displaying erroneus SQL in the log window. This prevents GTK from crashing when really long lines are added to the log window.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5058 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoInclude GUI as conditional install target
Paul Ramsey [Mon, 28 Dec 2009 18:48:49 +0000 (18:48 +0000)]
Include GUI as conditional install target

git-svn-id: http://svn.osgeo.org/postgis/trunk@5057 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd some more missing defaults to the shapefile loader configuration.
Mark Cave-Ayland [Mon, 28 Dec 2009 13:32:33 +0000 (13:32 +0000)]
Add some more missing defaults to the shapefile loader configuration.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5056 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix shp2pgsql-gui not picking up the correct default settings, which was causing...
Mark Cave-Ayland [Sun, 27 Dec 2009 17:16:19 +0000 (17:16 +0000)]
Fix shp2pgsql-gui not picking up the correct default settings, which was causing some shapefiles to abort in the GUI but when using the CLI.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5055 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix up another password leaking into the log (#356)
Paul Ramsey [Fri, 25 Dec 2009 04:41:45 +0000 (04:41 +0000)]
Fix up another password leaking into the log (#356)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5054 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoHandle case where there is no password to sanitize
Paul Ramsey [Thu, 24 Dec 2009 00:57:15 +0000 (00:57 +0000)]
Handle case where there is no password to sanitize

git-svn-id: http://svn.osgeo.org/postgis/trunk@5053 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoSanitize the connection string displayed in the GUI log (#356)
Paul Ramsey [Wed, 23 Dec 2009 19:49:37 +0000 (19:49 +0000)]
Sanitize the connection string displayed in the GUI log (#356)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5052 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd support for dumping geography tables. (#251)
Paul Ramsey [Wed, 23 Dec 2009 19:34:24 +0000 (19:34 +0000)]
Add support for dumping geography tables. (#251)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5051 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd http://www.epsg.org/6.11.2/4326 srsName pattern support (related to CITE WFS...
Olivier Courtin [Wed, 23 Dec 2009 15:48:18 +0000 (15:48 +0000)]
Add http://www.epsg.org/6.11.2/4326 srsName pattern support (related to CITE WFS 1.1 GetFeature-tc17.2. Add related unit tests

git-svn-id: http://svn.osgeo.org/postgis/trunk@5050 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRemove hack PGAdmin GUI target (#355)
Paul Ramsey [Wed, 23 Dec 2009 05:01:16 +0000 (05:01 +0000)]
Remove hack PGAdmin GUI target (#355)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5049 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd message to GUI when creating spatial index.
Paul Ramsey [Tue, 22 Dec 2009 20:50:58 +0000 (20:50 +0000)]
Add message to GUI when creating spatial index.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5047 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd shp2pgsql-pgadmin build target for exe without special win32 options.
Paul Ramsey [Tue, 22 Dec 2009 19:38:56 +0000 (19:38 +0000)]
Add shp2pgsql-pgadmin build target for exe without special win32 options.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5046 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix bug in geography support when creating indexes.
Mark Cave-Ayland [Tue, 22 Dec 2009 12:38:39 +0000 (12:38 +0000)]
Fix bug in geography support when creating indexes.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5045 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMore improvements to the shapefile loader:
Mark Cave-Ayland [Tue, 22 Dec 2009 12:28:35 +0000 (12:28 +0000)]
More improvements to the shapefile loader:
 - Fix COPY support for shapefiles containing more than 1 record
 - Fix cancellation on mid-import
 - Remove progress logging on import, and replace with flashly progress bar

git-svn-id: http://svn.osgeo.org/postgis/trunk@5044 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoHandle index building when loading geography
Paul Ramsey [Tue, 22 Dec 2009 00:35:24 +0000 (00:35 +0000)]
Handle index building when loading geography

git-svn-id: http://svn.osgeo.org/postgis/trunk@5043 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd support for GEOGRAPHY type to loader GUI. (#251)
Paul Ramsey [Tue, 22 Dec 2009 00:27:21 +0000 (00:27 +0000)]
Add support for GEOGRAPHY type to loader GUI. (#251)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5042 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd support for geography type to command-line loader (#251)
Paul Ramsey [Mon, 21 Dec 2009 23:22:21 +0000 (23:22 +0000)]
Add support for geography type to command-line loader (#251)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5040 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoCFLAGS=-pedantic pass over the codebase and warnings reduced
Paul Ramsey [Sun, 20 Dec 2009 17:42:44 +0000 (17:42 +0000)]
CFLAGS=-pedantic pass over the codebase and warnings reduced

git-svn-id: http://svn.osgeo.org/postgis/trunk@5039 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoDisable unused static function.
Paul Ramsey [Sun, 20 Dec 2009 17:23:48 +0000 (17:23 +0000)]
Disable unused static function.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5038 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMinor changes to header inclusions.
Paul Ramsey [Sun, 20 Dec 2009 04:42:53 +0000 (04:42 +0000)]
Minor changes to header inclusions.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5037 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix bracket issue in commandline opt handline
Paul Ramsey [Sun, 20 Dec 2009 04:31:06 +0000 (04:31 +0000)]
Fix bracket issue in commandline opt handline

git-svn-id: http://svn.osgeo.org/postgis/trunk@5036 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoRadically simpler getopt implementation from AT&T UNIX.
Paul Ramsey [Sat, 19 Dec 2009 03:56:06 +0000 (03:56 +0000)]
Radically simpler getopt implementation from AT&T UNIX.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5035 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd some logging during the load so we can see what's going on.
Paul Ramsey [Fri, 18 Dec 2009 20:51:43 +0000 (20:51 +0000)]
Add some logging during the load so we can see what's going on.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5034 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoremove the #273 test, as it already the same than point_1
Olivier Courtin [Fri, 18 Dec 2009 19:28:40 +0000 (19:28 +0000)]
remove the #273 test, as it already the same than point_1

git-svn-id: http://svn.osgeo.org/postgis/trunk@5033 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoLibxml become mandatory. Cf #344. Modify configure step, remove all HAVE_LIBXML2...
Olivier Courtin [Fri, 18 Dec 2009 19:08:20 +0000 (19:08 +0000)]
Libxml become mandatory. Cf #344. Modify configure step, remove all HAVE_LIBXML2 from code, sql and unit tests. Update documentation

git-svn-id: http://svn.osgeo.org/postgis/trunk@5032 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMoved size of int8 down to 19 chars (#326)
Paul Ramsey [Fri, 18 Dec 2009 18:38:45 +0000 (18:38 +0000)]
Moved size of int8 down to 19 chars (#326)

git-svn-id: http://svn.osgeo.org/postgis/trunk@5031 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agofix some typos, cosmetic changes, throw some more geography around
Regina Obe [Fri, 18 Dec 2009 18:26:32 +0000 (18:26 +0000)]
fix some typos, cosmetic changes, throw some more geography around

git-svn-id: http://svn.osgeo.org/postgis/trunk@5030 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFind a home for Paul's examples and Advanced FAQ and back reference from main FAQ...
Regina Obe [Fri, 18 Dec 2009 17:43:41 +0000 (17:43 +0000)]
Find a home for Paul's examples and Advanced FAQ and back reference from main FAQ section

git-svn-id: http://svn.osgeo.org/postgis/trunk@5029 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoWe all new this day would come when we'd have to devote a whole section to this new...
Regina Obe [Fri, 18 Dec 2009 17:16:09 +0000 (17:16 +0000)]
We all new this day would come when we'd have to devote a whole section to this new kid called "geography".  Think we still need to shuffle things around as the next section seems like a disconnect from the geography section

git-svn-id: http://svn.osgeo.org/postgis/trunk@5028 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoReverting the change of r5007, removal of the getopt hack, to get windows builds...
Mark Leslie [Fri, 18 Dec 2009 07:46:24 +0000 (07:46 +0000)]
Reverting the change of r5007, removal of the getopt hack, to get windows builds working again.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5025 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd in icon and resource information for Win32 GUI
Paul Ramsey [Fri, 18 Dec 2009 06:39:48 +0000 (06:39 +0000)]
Add in icon and resource information for Win32 GUI

git-svn-id: http://svn.osgeo.org/postgis/trunk@5024 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoMake GUI open w/o console under Win32
Paul Ramsey [Fri, 18 Dec 2009 05:55:45 +0000 (05:55 +0000)]
Make GUI open w/o console under Win32

git-svn-id: http://svn.osgeo.org/postgis/trunk@5023 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoImplement proper cleanup if an import fails, and also disable the "Import" button...
Mark Cave-Ayland [Thu, 17 Dec 2009 12:54:04 +0000 (12:54 +0000)]
Implement proper cleanup if an import fails, and also disable the "Import" button during the import to ensure that multiple import threads can't be launched.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5020 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoAdd GUI option to allow the use of COPY rather than INSERT to load geometries into...
Mark Cave-Ayland [Thu, 17 Dec 2009 11:16:20 +0000 (11:16 +0000)]
Add GUI option to allow the use of COPY rather than INSERT to load geometries into the database. Currently the default is still to use INSERT.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5019 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoFix memory scope error (resulting in segfault) accidentally introduced by the command...
Mark Cave-Ayland [Thu, 17 Dec 2009 11:11:46 +0000 (11:11 +0000)]
Fix memory scope error (resulting in segfault) accidentally introduced by the command line changes.

git-svn-id: http://svn.osgeo.org/postgis/trunk@5018 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoTemporarily de-regress the loader while talking to -devel
Paul Ramsey [Wed, 16 Dec 2009 17:13:54 +0000 (17:13 +0000)]
Temporarily de-regress the loader while talking to -devel

git-svn-id: http://svn.osgeo.org/postgis/trunk@5013 b70326c6-7e19-0410-871a-916f4a2858ee

15 years agoQuiet solaris warnings
Paul Ramsey [Wed, 16 Dec 2009 17:00:26 +0000 (17:00 +0000)]
Quiet solaris warnings

git-svn-id: http://svn.osgeo.org/postgis/trunk@5012 b70326c6-7e19-0410-871a-916f4a2858ee