5/19/2011

ST_Simplify(provided by PostGIS) and GeoDjango

ST_Simplify function is provided by PostGIS.
It is used to simplify the geometry(eg. LINESTRING or POLYGON).
It use `simplify` method of GEOSGeometry class.
Django version is 1.3.
  1. >>> line_string.simplify?  
  2. Type:           instancemethod  
  3. Base Class:     <type 'instancemethod'>  
  4. String Form:    <bound method LineString.simplify of <LineString object at 0xa4ed5f0>>  
  5. Namespace:      Interactive  
  6. File:           /usr/local/lib/python2.6/dist-packages/Django-1.3-py2.6.egg/django/contrib/gis/geos/geometry.py  
  7. Definition:     line_string.simplify(self, tolerance=0.0, preserve_topology=False)  
  8. ...  
  9. >>> line_string  
  10. <LineString object at 0xa4ed5f0>  
  11. >>> len(line_string)  
  12. 4367  
  13. >>> line_string[:3]  
  14. [(138.6765430000000135.492500999999997944.62300000000005), (138.67654535.4925944.62300000000005), (138.67654635.492499000000002944.63)]  
  15. >>> simplified = line_string.simplify(0.001)  
  16. >>> len(simplified)  
  17. 90  
  18. >>> simplified2 = line_string.simplify(0.001True)  
  19. >>> len(simplified2)  
  20. 2458  

No comments:

Post a Comment