Changes between Version 1 and Version 2 of UsersWikiSimplifyWithTopologyExt
- Timestamp:
- 04/10/12 09:17:58 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiSimplifyWithTopologyExt
v1 v2 3 3 = Another example showing how to simplify (generalize) a multipolygon layer using PostGIS Topology = 4 4 5 This article is a kind of "follower" for this one: UsersWikiSimplifyPreserveTopology, showing another method to build generalized polygons keeping their spatial relationship .5 This article is a kind of "follower" for this one: UsersWikiSimplifyPreserveTopology, showing another method to build generalized polygons keeping their spatial relationship, based on spatial operators and SQL queries. 6 6 7 It uses the PostGIS Topology module ([http://postgis.org/documentation/manual-2.0/Topology.html]) and aims at producing 7 This example uses the PostGIS Topology module ([http://postgis.org/documentation/manual-2.0/Topology.html]) and aims at producing a simplified polygonal layer, with initial polygons' attributes correctly associated to simplified polygons 8 8 9 A big thank to Brent Wood for its Topology Example and to Sandro Santilli for the topology module9 (''A big thank to Brent Wood for its Topology Example and to Sandro Santilli for the topology module'') 10 10 11 11 == What we want == 12 12 13 13 || Simplifying this layer: || into this: || avoiding that: 14 || [[Image(wiki:UsersWikiSimplifyPreserveTopology:SPT_dept_ori. gif)]] || [[Image(SPT_dept_sim.png)]] || [[Image(SPT_no_topo.png)]] ||14 || [[Image(wiki:UsersWikiSimplifyPreserveTopology:SPT_dept_ori.png)]] || [[Image(wiki:UsersWikiSimplifyPreserveTopology:SPT_dept_sim.png)]] || [[Image(wiki:UsersWikiSimplifyPreserveTopology:SPT_no_topo.png)]] || 15 15 16 16 == The data == … … 91 91 == Results == 92 92 93 This method produces a clean result :93 This method produces a clean result, departement's codes are correcty re-associated: 94 94 95 95 [[Image(wiki:UsersWikiSimplifyPreserveTopology:SPT_dept_sim.png)]] 96 96 97 97 == Notes == 98 98 99 Find a way to associate faces to initial polygon using topology, not using spatial operations. 99 Find a way to associate faces to initial polygon using topology, not using spatial operations. see strk mail