Changes between Initial Version and Version 1 of Ticket #4555


Ignore:
Timestamp:
Mar 8, 2012, 8:46:39 AM (12 years ago)
Author:
jef
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4555 – Description

    initial v1  
    22
    33The patch assumes extends the virtual "delete" feature class with following fields:
    4 * context - that contains the context of the delete ('delete' or 'replace')
    5 * replacedBy - gml:id of the feature the phased out feature is replaced with
    6 * safeToIgnore - value of the corresponding wfsext::Replace  attribute
     4 * context - that contains the context of the delete ('delete' or 'replace')
     5 * replacedBy - gml:id of the feature the phased out feature is replaced with
     6 * safeToIgnore - value of the corresponding wfsext::Replace  attribute
    77
    88The fields are collected when processing the "delete" layer.  The patch also arranges that "delete" is always the last layer and therefore also is processed last by ogr2ogr.
     
    1111
    1212The postnas patch:
    13 * all feature classes get a 'endet' with the end date of deleted or replaced feature
    14 * the delete_feature function is now a trigger that is run on INSERT. It updates the "endet" field of phased out features (either with the current timestamp on 'delete' or with the 'beginnt' timestamp of the replacing feature) and also relies on the "identifier" field.
    15 * the manual updates to geometry_columns were replaces with calls to AddGeometryColumn() (for PostGIS 2.0; columns that contain more than one geometry type are now GEOMETRY)
    16 * the gml_id indices now also include "beginnt".
    17 * s/character varying/varchar/
    18 * "ax_punktortau" is now a 3D point (possibly other tables need to be updated, too)
     13 * all feature classes get a 'endet' with the end date of deleted or replaced feature
     14 * the delete_feature function is now a trigger that is run on INSERT. It updates the "endet" field of phased out features (either with the current timestamp on 'delete' or with the 'beginnt' timestamp of the replacing feature) and also relies on the "identifier" field.
     15 * the manual updates to geometry_columns were replaces with calls to AddGeometryColumn() (for PostGIS 2.0; columns that contain more than one geometry type are now GEOMETRY)
     16 * the gml_id indices now also include "beginnt".
     17 * s/character varying/varchar/
     18 * "ax_punktortau" is now a 3D point (possibly other tables need to be updated, too)
    1919
    2020ogr2ogr should now work without -skipfailures, if the data is correct.