Changes between Version 16 and Version 17 of Grass7/VectorLib/PostGISInterface
- Timestamp:
- 11/27/12 08:39:05 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Grass7/VectorLib/PostGISInterface
v16 v17 9 9 Note that GRASS-PostGIS data provider is compiled only when GRASS is configured with `--with-postgres` switch. 10 10 11 Overview of subroutines to '''read''' PostGIS data on ''level 1'' (without topology) and on ''level 2'' (with pseudo-topology/topology):11 Overview of subroutines to '''read''' PostGIS data: 12 12 13 13 ||'''Level'''||'''Sequantial access'''||'''Random access'''|| 14 14 ||1 (without topology)||[http://grass.osgeo.org/programming7/read__pg_8c.html#a654fbf094198b35199d2eac15b2e1b13 V1_read_next_line_pg()]||[http://grass.osgeo.org/programming7/read__pg_8c.html#a7c66b4bca09746dadb01d428285ad70a V1_read_line_pg()] 15 15 ||2 (with pseudo-topology/topology)||[http://grass.osgeo.org/programming7/read__pg_8c.html#a1cbb8c310ff27ace719f0d3b618b9705 V2_read_next_line_pg()]||[http://grass.osgeo.org/programming7/read__pg_8c.html#a52b5d48ac7fc14bc7482bfff6c992429 V2_read_line_pg()] 16 16 17 Overview of subroutines to '''write''' PostGIS data: 18 19 ||'''Level'''||'''Write new feature'''||'''Delete existing feature'''||'''Rewrite existing feature''' 20 ||1 (without topology)||[http://grass.osgeo.org/programming7/write__pg_8c.html#a8127019aaeb9c61409f5777a48cbf95f V1_write_line_pg()]||[http://grass.osgeo.org/programming7/write__pg_8c.html#a15daeb6c7a1baf659be970b5fa9f3fba V1_rewrite_line_pg()]||[http://grass.osgeo.org/programming7/write__pg_8c.html#ae16c44528a13f7343d08f073015e83f5 V1_delete_line_pg()] 21 ||2 (with pseudo-topology/topology)||[http://grass.osgeo.org/programming7/write__pg_8c.html#a73b18af6db4e309f57bdd13ed3e9ad9e V2_write_line_pg()]|||| 22 17 23 == Simple features access == 18 24