]> granicus.if.org Git - postgis/log
postgis
17 years agoRemove templategis from make, install, clean targets.
Paul Ramsey [Tue, 10 Jul 2007 21:12:42 +0000 (21:12 +0000)]
Remove templategis from make, install, clean targets.

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

17 years ago- Remove debugging NOTICE
Stephen Frost [Mon, 9 Jul 2007 03:11:25 +0000 (03:11 +0000)]
- Remove debugging NOTICE

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

17 years ago- Added print-print function for norm_addy type (norm_addy -> varchar)
Stephen Frost [Mon, 9 Jul 2007 02:20:00 +0000 (02:20 +0000)]
- Added print-print function for norm_addy type (norm_addy -> varchar)
- Restructured geocode(), accept address in parsed norm_addy form
  as well as unparsed varchar form.  Return norm_addy type instead of
  varchar (use pprint_addy() if you want a varchar result instead)

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

17 years ago- City names are 90 characters (this matters more than you might
Stephen Frost [Sun, 8 Jul 2007 21:56:47 +0000 (21:56 +0000)]
- City names are 90 characters (this matters more than you might
  think because it affects the types returned from the various
  calls and if they don't match subsequent geocode() queries in
  the same session may complain about the planned record type not
  matching across calls)

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

17 years agoST_Dwithin reference entry
Paul Ramsey [Fri, 6 Jul 2007 16:45:59 +0000 (16:45 +0000)]
ST_Dwithin reference entry

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

17 years agoAdded ST_DWithin SQL function
Paul Ramsey [Fri, 6 Jul 2007 16:44:21 +0000 (16:44 +0000)]
Added ST_DWithin SQL function

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

17 years agoApplied the patch from Michael Fuhr to fix the definition of ST_PointN
Mark Leslie [Wed, 4 Jul 2007 17:12:05 +0000 (17:12 +0000)]
Applied the patch from Michael Fuhr to fix the definition of ST_PointN

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

17 years ago- Change to generic database name
Stephen Frost [Tue, 3 Jul 2007 21:36:28 +0000 (21:36 +0000)]
- Change to generic database name

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

17 years ago- Update install instructions
Stephen Frost [Tue, 3 Jul 2007 21:36:02 +0000 (21:36 +0000)]
- Update install instructions

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

17 years agoAdd in initial import scripts for importing the TIGER/Line
Stephen Frost [Tue, 3 Jul 2007 21:32:50 +0000 (21:32 +0000)]
Add in initial import scripts for importing the TIGER/Line
data into a PostGIS system.  Could probably be improved to
accept more arguments/etc and require less direct script
modification to make it work.  Also, not sure the polygons
are done perfectly yet. :/

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

17 years agoAdd in broken out/updated normalize/geocode functions
Stephen Frost [Tue, 3 Jul 2007 21:30:34 +0000 (21:30 +0000)]
Add in broken out/updated normalize/geocode functions
- create_geocode.sql:
  Main creation script for pulling in all the other
  .sql files to create all the functions and whatnot
- normalize/
  Normalization routines, includes mapping 'North' -> 'N',
  'Virginia' -> 'VA', etc, etc.
- geocode/
  Actual geocoding routines to find the point geometry of the
  address.  Includes interpolation across the linestring found
  for the location (perhaps not the best), and fallbacks to
  zip-code and city, state matches using the associated lookup
  tables for those.  Also currently returns a set rather than
  a cursor, that's up for some debate but the cursor makes it
  difficult to do things like fallback, imv.  Especially since
  references to it from another pl/pgsql function require it to
  be a specific record type across multiple calls.  That's
  currently a problem. :/

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

17 years agoInitial import of utility functions, seperated into individual files
Stephen Frost [Tue, 3 Jul 2007 21:22:29 +0000 (21:22 +0000)]
Initial import of utility functions, seperated into individual files
for sanity.

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

17 years agotables/- New scripts for roads_local/tiger_geocode_roads, clean up lookup_tables
Stephen Frost [Tue, 3 Jul 2007 21:19:54 +0000 (21:19 +0000)]
tables/- New scripts for roads_local/tiger_geocode_roads, clean up lookup_tables
- roads_local.sql:
  Script to create the road_local table from the completechain
  table which is created by ogr2ogr.  Mainly handles type
  conversions.  Also creates the tlid, cfcc, and geometry
  indexes.

- tiger_geocode_roads.sql:
  Script to create the tiger_geocode_roads table which breaks
  down the roads_local to just the street name, etc, much
  smaller than roads_local but has the pointers to get back
  to the full roads_local for address number matching, etc.
  Also creates the appropriate indexes using soundex().

- lookup_tables.sql:
  - Add 'drop if exists' to make script easily re-runnable
  - Add primary keys, good thing to have, and creates indexes
  - Add st_code (TIGER/Line state code) to state_lookup
  - Remove dup in street_type_lookup
  - Add in building of:
    place_lookup
    county_lookup
    countysub_lookup
    zip_lookup_all
    zip_lookup

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

17 years ago- Minor reorg, add in other parts of the initial load
Stephen Frost [Tue, 3 Jul 2007 21:05:03 +0000 (21:05 +0000)]
- Minor reorg, add in other parts of the initial load

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

17 years ago- Original tiger geocoder
Stephen Frost [Tue, 3 Jul 2007 20:51:31 +0000 (20:51 +0000)]
- Original tiger geocoder

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

17 years agoAdded a home for the tiger geocoder.
Mark Leslie [Tue, 3 Jul 2007 20:03:38 +0000 (20:03 +0000)]
Added a home for the tiger geocoder.

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

17 years agoAdded ST_Covers and ST_CoveredBy functions, as discussed at http://lin-ear-th-inking...
Mark Leslie [Thu, 28 Jun 2007 22:46:08 +0000 (22:46 +0000)]
Added ST_Covers and ST_CoveredBy functions, as discussed at http://lin-ear-th-inking.blogspot.com.  Added regression tests and documention for the new functions.

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

17 years agoAdded a 1D rtree for polygon segment indexing, and tied the index into the point...
Mark Leslie [Thu, 28 Jun 2007 20:21:32 +0000 (20:21 +0000)]
Added a 1D rtree for polygon segment indexing, and tied the index into the point in polygon short-circuit of the contains, within, intersects and disjoint methods.  Added an index cache to the comparitor methods to save index build times.

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

17 years agoAdded or updated debugging statements.
Mark Leslie [Thu, 28 Jun 2007 20:16:13 +0000 (20:16 +0000)]
Added or updated debugging statements.

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

17 years agoAltered the macro tests for pg_alloc, pg_realloc to only print debugging information...
Mark Leslie [Thu, 28 Jun 2007 20:14:13 +0000 (20:14 +0000)]
Altered the macro tests for pg_alloc, pg_realloc to only print debugging information when alloc debugging is enabled.

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

18 years agoUpdated the regression test suite to allow variable results depending on jts/geos...
Mark Leslie [Fri, 15 Jun 2007 19:06:11 +0000 (19:06 +0000)]
Updated the regression test suite to allow variable results depending on jts/geos availability.

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

18 years agoAdded curvey geometry recognition to the jts connector.
Mark Leslie [Fri, 15 Jun 2007 19:04:37 +0000 (19:04 +0000)]
Added curvey geometry recognition to the jts connector.

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

18 years agoTypo corrections from Michael Fuhr.
Paul Ramsey [Tue, 12 Jun 2007 14:46:30 +0000 (14:46 +0000)]
Typo corrections from Michael Fuhr.

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

18 years agoApplied Michael Fuhr's patch to use explicit text casts where required. Required...
Mark Cave-Ayland [Fri, 8 Jun 2007 10:28:52 +0000 (10:28 +0000)]
Applied Michael Fuhr's patch to use explicit text casts where required. Required for PostgreSQL 8.3 where many of the implicit casts to text have been removed.

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

18 years agoAdded relational function definitions that inline index operators for automagic index...
Mark Leslie [Thu, 7 Jun 2007 16:16:41 +0000 (16:16 +0000)]
Added relational function definitions that inline index operators for automagic index utilization.

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

18 years agoHibernate Spatial Criteria Queries and Dialect
Norman Barker [Wed, 6 Jun 2007 19:19:14 +0000 (19:19 +0000)]
Hibernate Spatial Criteria Queries and Dialect

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

18 years agoUpdated the docs to reflect the function name transition.
Mark Leslie [Tue, 5 Jun 2007 20:46:05 +0000 (20:46 +0000)]
Updated the docs to reflect the function name transition.

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

18 years agoReorganized the sqlmm function declarations to prevent duplication and confusion.
Mark Leslie [Tue, 5 Jun 2007 20:45:46 +0000 (20:45 +0000)]
Reorganized the sqlmm function declarations to prevent duplication and confusion.

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

18 years agoAdded versions of functions with standard ST (Spatial Type) prefixes to any functions...
Mark Leslie [Mon, 4 Jun 2007 23:06:28 +0000 (23:06 +0000)]
Added versions of functions with standard ST (Spatial Type) prefixes to any functions that were lacking them.  Updated the regression tests to include the new functions.

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

18 years agoOngoing PIP trauma. Addressed the issue of points in line with a boundary segment...
Mark Leslie [Fri, 1 Jun 2007 20:56:58 +0000 (20:56 +0000)]
Ongoing PIP trauma.  Addressed the issue of points in line with a boundary segment, but not actually on it.  Added appropriate unit tests.

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

18 years agoReduce 'LWGEOM_gist_joinsel called with arguments that are not column references...
Mark Cave-Ayland [Fri, 1 Jun 2007 12:44:53 +0000 (12:44 +0000)]
Reduce 'LWGEOM_gist_joinsel called with arguments that are not column references' warning to DEBUG1; it's not really a problem, and in cases where people a lot of these types of queries, the logs get flooded with these NOTICEs. Per email from Flavio Perri.

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

18 years agoFixed bug #145 - RemovePoint Failure in the bugtracker. It was an off-by-one error...
Mark Cave-Ayland [Fri, 1 Jun 2007 09:54:00 +0000 (09:54 +0000)]
Fixed bug #145 - RemovePoint Failure in the bugtracker. It was an off-by-one error in ptarray.c which caused the penultimate point to not be copied to the new geometry.

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

18 years agoFix broken docbook stylesheet search. AC_ARG_WITH only calls its contents when a...
Mark Cave-Ayland [Fri, 1 Jun 2007 07:01:22 +0000 (07:01 +0000)]
Fix broken docbook stylesheet search. AC_ARG_WITH only calls its contents when a --with-* option is specified, so the search would never be invoked in its current position. Moved the search into the second macro argument, so it is now invoked if no --with-xsl argument is specified, which I believe was the intended behaviour.

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

18 years agoAdd support for the upcoming release of PostgreSQL 8.3. From PostgreSQL 8.3, the...
Mark Cave-Ayland [Thu, 31 May 2007 13:18:04 +0000 (13:18 +0000)]
Add support for the upcoming release of PostgreSQL 8.3. From PostgreSQL 8.3, the internal structure of varlena datatypes has changed and so any references to the size of the varlena and its address must use the VARSIZE and SET_VARSIZE macros. Includes a #define in pgsql_compat.h so that SET_VARSIZE still works with the older PostgreSQL versions. Passes all regression tests under PostgreSQL 8.2 and PostgreSQL 8.3. Thanks to David Techer and Michael Fuhr for additional testing.

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

18 years agoAdded curve handling to getType, numGeometries, geometryN, dimension, exteriorRing...
Mark Leslie [Mon, 28 May 2007 15:34:04 +0000 (15:34 +0000)]
Added curve handling to getType, numGeometries, geometryN, dimension, exteriorRing, numInteriorRings, interiorRingN, closed (lwgeom_ogc.c) lwgeom_clone (lwgeom.c) and area.  Added function ST_CurveToLine and ST_LineToCurve.  Added regression tests for sql-mm geometries and related functions.

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

18 years agoAdded short-circuit calls for the point-in-polygon cases of disjoint and intersect...
Mark Leslie [Tue, 22 May 2007 22:10:33 +0000 (22:10 +0000)]
Added short-circuit calls for the point-in-polygon cases of disjoint and intersect calls.  Added regression tests for the new short-circuits.

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

18 years agoBump SVN code version to 1.2.2SVN
Mark Cave-Ayland [Mon, 14 May 2007 18:04:25 +0000 (18:04 +0000)]
Bump SVN code version to 1.2.2SVN

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

18 years agoFix broken regress_proj expected results by removing the extra DELETE at the end...
Mark Cave-Ayland [Mon, 14 May 2007 17:55:58 +0000 (17:55 +0000)]
Fix broken regress_proj expected results by removing the extra DELETE at the end of the file.

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

18 years agoRemove GEOS C++ API support from PostGIS HEAD; it's been broken since 1.2.0 and so...
Mark Cave-Ayland [Mon, 14 May 2007 17:51:32 +0000 (17:51 +0000)]
Remove GEOS C++ API support from PostGIS HEAD; it's been broken since 1.2.0 and so we require a minimum of GEOS 2.2.0 to compile and run PostGIS. Includes alterations to autoconf to display an error message during configure if the GEOS version is incorrect. Passes all regression tests with GEOS 2.2.3 and GEOS 3.0.0rc4 using GEOS CAPI.

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

18 years agoSpelling fix
Paul Ramsey [Tue, 8 May 2007 16:37:09 +0000 (16:37 +0000)]
Spelling fix

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

18 years agoSmall doco fix
Paul Ramsey [Mon, 2 Apr 2007 21:17:33 +0000 (21:17 +0000)]
Small doco fix

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

18 years agoaded PostGIS Dialect for Hibernate from Norman Barker
Markus Schaber [Thu, 15 Mar 2007 09:22:20 +0000 (09:22 +0000)]
aded PostGIS Dialect for Hibernate from Norman Barker

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

18 years agoBug 143 is once again dealt with, this time for good.
Mark Leslie [Fri, 9 Mar 2007 19:34:51 +0000 (19:34 +0000)]
Bug 143 is once again dealt with, this time for good.

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

18 years agoRolling back a cure that killed the patient.
Mark Leslie [Fri, 9 Mar 2007 18:30:20 +0000 (18:30 +0000)]
Rolling back a cure that killed the patient.

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

18 years agoBug 143 code fix and regression case.
Mark Leslie [Fri, 9 Mar 2007 00:33:58 +0000 (00:33 +0000)]
Bug 143 code fix and regression case.

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

18 years ago * extras/template_gis/Makefile:
Sandro Santilli [Thu, 1 Mar 2007 08:31:44 +0000 (08:31 +0000)]
    * extras/template_gis/Makefile:
          Install 'defaults' file to $(DATADIR)$(prefix)

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

18 years agoRemove minor typo
Paul Ramsey [Wed, 28 Feb 2007 17:39:31 +0000 (17:39 +0000)]
Remove minor typo

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

18 years ago * regress/run_test: discard CONTEXT and DELETE
Sandro Santilli [Mon, 26 Feb 2007 09:03:52 +0000 (09:03 +0000)]
    * regress/run_test: discard CONTEXT and DELETE
          lines from test outputs.

Patch by Eduin Carrillo, sliglty modified to take precision
into account:

        * regress/: Makefile, kml.sql, kml_expected:
          Regression test for asKML().

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

18 years agoEdits from Bruce Rindahl
Paul Ramsey [Tue, 6 Feb 2007 17:38:38 +0000 (17:38 +0000)]
Edits from Bruce Rindahl

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

18 years agoRefine previous patch to use a different delimiter than : (!) for sed. This simplifie...
Mark Cave-Ayland [Fri, 26 Jan 2007 15:11:30 +0000 (15:11 +0000)]
Refine previous patch to use a different delimiter than : (!) for sed. This simplifies the Makefile and protects all the $*dir arguments from escaping issues under Win32.

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

18 years ago * extras/template_gis/Makefile: escape $bindir
Sandro Santilli [Fri, 19 Jan 2007 09:44:51 +0000 (09:44 +0000)]
    * extras/template_gis/Makefile: escape $bindir
          to allow for colons in it's value (win32 issue).

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

18 years agofinally really fixed javadoc build on Windows. Yes, that hack is ugly. Kudos to Marc...
Markus Schaber [Thu, 18 Jan 2007 18:51:15 +0000 (18:51 +0000)]
finally really fixed javadoc build on Windows. Yes, that hack is ugly. Kudos to Marc Cave-Ayland.

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

18 years agofurther fix for javadoc build
Markus Schaber [Thu, 18 Jan 2007 18:33:48 +0000 (18:33 +0000)]
further fix for javadoc build

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

18 years agofixed jdbc javadoc build
Markus Schaber [Thu, 18 Jan 2007 17:56:10 +0000 (17:56 +0000)]
fixed jdbc javadoc build

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

18 years agoPatch by Michael Fuhr: * extras/template_gis/Makefile: quote grep argument for Solari...
Sandro Santilli [Mon, 15 Jan 2007 10:48:08 +0000 (10:48 +0000)]
Patch by Michael Fuhr: * extras/template_gis/Makefile: quote grep argument for Solaris to work.

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

18 years agoChange 'Postgis' to 'PostGIS'
Paul Ramsey [Fri, 12 Jan 2007 20:28:46 +0000 (20:28 +0000)]
Change 'Postgis' to 'PostGIS'

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

18 years agoPatch by Gerald Fenoy <djay@gentoo.org>:
Sandro Santilli [Fri, 12 Jan 2007 18:07:38 +0000 (18:07 +0000)]
Patch by Gerald Fenoy <djay@gentoo.org>:

        * configure.in: add --with-xsl switch.

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

18 years ago1.2.1 release prep
Paul Ramsey [Fri, 12 Jan 2007 01:50:31 +0000 (01:50 +0000)]
1.2.1 release prep

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

18 years agoAdded a length check to prevent the point in polygon shortcut from finding points...
Mark Leslie [Thu, 11 Jan 2007 01:40:56 +0000 (01:40 +0000)]
Added a length check to prevent the point in polygon shortcut from finding points contained within a zero length segment.

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

18 years agoFixed the COMPOUNDCURVE example to properly should the contained CIRCULARSTRING.
Mark Leslie [Thu, 11 Jan 2007 01:39:18 +0000 (01:39 +0000)]
Fixed the COMPOUNDCURVE example to properly should the contained CIRCULARSTRING.

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

18 years agofixed 8.2 compatibility
Markus Schaber [Mon, 8 Jan 2007 10:48:31 +0000 (10:48 +0000)]
fixed 8.2 compatibility

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

18 years agohopefully fixed GCJ build
Markus Schaber [Mon, 8 Jan 2007 10:12:01 +0000 (10:12 +0000)]
hopefully fixed GCJ build

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

18 years ago * GNUmakefile: bring in extra/template_gis for all rules.
Sandro Santilli [Fri, 5 Jan 2007 00:52:57 +0000 (00:52 +0000)]
    * GNUmakefile: bring in extra/template_gis for all rules.
        * extras/template_gis/Makefile: have 'install' also install manuals.

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

18 years agoinitial load
Kevin Neufeld [Wed, 3 Jan 2007 17:28:03 +0000 (17:28 +0000)]
initial load

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

18 years ago * configure.in: fixed GEOS_LDFLAGS detection
Sandro Santilli [Fri, 29 Dec 2006 00:31:33 +0000 (00:31 +0000)]
    * configure.in: fixed GEOS_LDFLAGS detection
          for older GEOS versions.

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

18 years ago cleaned up Hard Upgrade manual section (was unreadable).
Sandro Santilli [Fri, 29 Dec 2006 00:26:10 +0000 (00:26 +0000)]
 cleaned up Hard Upgrade manual section (was unreadable).

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

18 years agoUpdate spec file to 1.2.0 and fix many issues.
Devrim GÜNDÜZ [Wed, 27 Dec 2006 04:58:41 +0000 (04:58 +0000)]
Update spec file to 1.2.0 and fix many issues.
Update RPM patches.

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

18 years agoAdded generation of JDBC javadoc zip file
Markus Schaber [Fri, 22 Dec 2006 11:28:59 +0000 (11:28 +0000)]
Added generation of JDBC javadoc zip file

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

18 years agoUpdated to 1.2.0
Paul Ramsey [Thu, 21 Dec 2006 00:19:23 +0000 (00:19 +0000)]
Updated to 1.2.0

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

18 years ago* regress/README: wrote info about adding regression tests
Sandro Santilli [Wed, 20 Dec 2006 20:43:05 +0000 (20:43 +0000)]
* regress/README: wrote info about adding regression tests
(plus some ChangeLog formatting)

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

18 years agoAdded fix to permit gist indexes to have more than 459 null geometries in a table
Kevin Neufeld [Wed, 20 Dec 2006 18:47:27 +0000 (18:47 +0000)]
Added fix to permit gist indexes to have more than 459 null geometries in a table

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

18 years agoAdded test to fix that permitted gist indexes to have more than 459 null geometries...
Kevin Neufeld [Wed, 20 Dec 2006 18:44:55 +0000 (18:44 +0000)]
Added test to fix that permitted gist indexes to have more than 459 null geometries in a table

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

18 years agoAdded fix to permit gist indexes to have more than 459 null geometries in a table
Kevin Neufeld [Wed, 20 Dec 2006 18:43:52 +0000 (18:43 +0000)]
Added fix to permit gist indexes to have more than 459 null geometries in a table

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

18 years agoImproved SRID handling in regression tests and added CoordinateArraySequence tests.
Markus Schaber [Mon, 18 Dec 2006 14:12:20 +0000 (14:12 +0000)]
Improved SRID handling in regression tests and added CoordinateArraySequence tests.

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

18 years agoAdded ChangeLog/News entries for recent commits
Markus Schaber [Mon, 18 Dec 2006 13:04:16 +0000 (13:04 +0000)]
Added ChangeLog/News entries for recent commits

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

18 years agoFix multi-dimension handling in JtsBinaryWriter, thanks to Thomas Marti for the hints
Markus Schaber [Mon, 18 Dec 2006 12:58:49 +0000 (12:58 +0000)]
Fix multi-dimension handling in JtsBinaryWriter, thanks to Thomas Marti for the hints

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

18 years agoFixed Makefile for jts tests, commented debug options better
Markus Schaber [Mon, 18 Dec 2006 12:55:42 +0000 (12:55 +0000)]
Fixed Makefile for jts tests, commented debug options better

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

18 years agoPatch by Eduin Carrillo: short circuit transform when source and target SRID are...
Sandro Santilli [Fri, 15 Dec 2006 11:00:50 +0000 (11:00 +0000)]
Patch by Eduin Carrillo: short circuit transform when source and target SRID are the same.

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

18 years agoAdded additional step for adding release marks in ChangeLog
Sandro Santilli [Fri, 15 Dec 2006 10:54:56 +0000 (10:54 +0000)]
Added additional step for adding release marks in ChangeLog

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

18 years agomarked 1.2.0 release
Sandro Santilli [Fri, 15 Dec 2006 10:51:59 +0000 (10:51 +0000)]
marked 1.2.0 release

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

18 years agoPatch by Eduin Carrillo <yecarrillo@yahoo.com>:
Sandro Santilli [Fri, 15 Dec 2006 10:48:56 +0000 (10:48 +0000)]
Patch by Eduin Carrillo <yecarrillo@yahoo.com>:

        * lwgeom/: Makefile, lwgeom_kml.c, lwpostgis.sql.in:
          New AsKML() function
        * doc/postgis.xml: document new AsKML function.

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

18 years agofixed 'hard upgrade' instructions in readme.postgis
Markus Schaber [Wed, 13 Dec 2006 17:50:15 +0000 (17:50 +0000)]
fixed 'hard upgrade' instructions in readme.postgis

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

18 years agoUpdated vers. #
Paul Ramsey [Mon, 11 Dec 2006 17:41:55 +0000 (17:41 +0000)]
Updated vers. #

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

18 years agoUpdate version to corrent 1.2.0 version, and set news to correct version
Paul Ramsey [Sat, 9 Dec 2006 03:57:15 +0000 (03:57 +0000)]
Update version to corrent 1.2.0 version, and set news to correct version
and date.

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

18 years agoUpdated with curved geometry definitions.
Mark Leslie [Wed, 6 Dec 2006 02:00:26 +0000 (02:00 +0000)]
Updated with curved geometry definitions.

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

18 years agoAdded sections for SQL-MM and ArcSDE function ports.
Mark Leslie [Wed, 6 Dec 2006 00:30:33 +0000 (00:30 +0000)]
Added sections for SQL-MM and ArcSDE function ports.

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

18 years agoFixing some incomplete paths, and adding changes to the regress directory.
Mark Leslie [Tue, 5 Dec 2006 20:45:29 +0000 (20:45 +0000)]
Fixing some incomplete paths, and adding changes to the regress directory.

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

18 years agoAdded the previous changes for the curved geometry support.
Mark Leslie [Tue, 5 Dec 2006 20:41:20 +0000 (20:41 +0000)]
Added the previous changes for the curved geometry support.

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

18 years agoAdded SQL/MM wrappers to existing PostGIS functions
Kevin Neufeld [Tue, 5 Dec 2006 19:22:41 +0000 (19:22 +0000)]
Added SQL/MM wrappers to existing PostGIS functions

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

18 years agoadded a subset (only those implemented by ArcSDE) of the SQL/MM function prototypes...
Kevin Neufeld [Tue, 5 Dec 2006 19:07:00 +0000 (19:07 +0000)]
added a subset (only those implemented by ArcSDE) of the SQL/MM function prototypes and appended the file to lwpostgis.sql

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

18 years agoMoved common sql defines to their own header file.
Kevin Neufeld [Tue, 5 Dec 2006 19:05:25 +0000 (19:05 +0000)]
Moved common sql defines to their own header file.
ie. IF USE_VERSION>72 ...

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

18 years agoAdded JTS shape + missing News message
Markus Schaber [Tue, 5 Dec 2006 11:00:51 +0000 (11:00 +0000)]
Added JTS shape + missing News message

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

18 years agoUpdated the documentation to include an SQL-MM types section.
Mark Leslie [Tue, 5 Dec 2006 01:21:42 +0000 (01:21 +0000)]
Updated the documentation to include an SQL-MM types section.

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

18 years agoAdded typedefs and serialization/deserialization functionality for sql-mm defined...
Mark Leslie [Fri, 1 Dec 2006 22:16:44 +0000 (22:16 +0000)]
Added typedefs and serialization/deserialization functionality for sql-mm defined curved geometry types.  Added a point_in_polygon short-circuit for contains and within functions.

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

18 years agojava/ejb3/src/org/postgis/hibernate/GeometryType.java Added Nullpointer Fix by Norman...
Markus Schaber [Wed, 22 Nov 2006 10:42:17 +0000 (10:42 +0000)]
java/ejb3/src/org/postgis/hibernate/GeometryType.java Added Nullpointer Fix by Norman Barker

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

18 years ago * utils/postgis_restore.pl (canonicalize_typename):
Sandro Santilli [Mon, 20 Nov 2006 12:59:55 +0000 (12:59 +0000)]
    * utils/postgis_restore.pl (canonicalize_typename):
          canonicalize 'timezone .* time stamp' to 'timezone'
          (fixes bug #121)

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

18 years agoPatch by "Antoine Bajolet" <antoine.bajolet@tdf.fr>:
Sandro Santilli [Fri, 17 Nov 2006 17:12:11 +0000 (17:12 +0000)]
Patch by "Antoine Bajolet" <antoine.bajolet@tdf.fr>:

        * lwgeom/lwgeom_gist.c: fixed 'directives may not be used inside a
          macro argument' error raised by some compilers.

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

18 years ago* configure.in (geos detection): use $geos_prefix/lib when --ldflags is not supported...
Sandro Santilli [Fri, 10 Nov 2006 15:17:10 +0000 (15:17 +0000)]
* configure.in (geos detection): use $geos_prefix/lib when --ldflags is not supported by geos-config available.

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

18 years agoPatch by Havard Tveite <havard.tveite@nlh.no>:
Sandro Santilli [Fri, 10 Nov 2006 14:11:32 +0000 (14:11 +0000)]
Patch by Havard Tveite <havard.tveite@nlh.no>:

        * doc/postgix.xml (Hard Upgrade): add info about createdb params
        * utils/postgis_restore.pl: fix use of createdb params

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

18 years ago* doc/postgis.xml: list setSRID bug fix in 'Bug fixes' section.
Sandro Santilli [Thu, 2 Nov 2006 13:22:05 +0000 (13:22 +0000)]
* doc/postgis.xml: list setSRID bug fix in 'Bug fixes' section.

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