-
Notifications
You must be signed in to change notification settings - Fork 15
Home
fordfrog edited this page Jul 26, 2012
·
10 revisions
- ruian2pgsql does not work on RÚIAN updates (with geometries) since 20120723 when using Postgis 2.0.1 (not sure about other versions) because GML polygon XML definitions crash Postgis (see bug).
- Postgis (2.0.1 and probably even older versions) do not support <gml:MultiPoint><gml:pointMembers>...</gml:pointMembers></gml:MultiPoint>, silently ignores the points and stores empty multipoint in database instead of correct geometry. Bug report can be found at Postgis Trac. Workaround is planned that will rewrite all <gml:pointMembers> elements to separate <gml:pointMember> elements.
- Rewrite <gml:MultiPoint><gml:pointMembers>...</gml:pointMembers></gml:MultiPoint> to <gml:MultiPoint><gml:pointMember>...</gml:pointMember></gml:MultiPoint> to override the error in Postgis. Add autodetection of the issue and activate the workaround if the database is affected.
- Add command line switch --reset-transaction-ids which will reset all transaction ids which will enable full update of all already imported data (update is performed only if new transaction id is greater than the one stored in database).