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  

1/27/2011

Django session key changes on every request?

Django version is 1.2.4.
views.py
  1. from django.http import HttpResponse  
  2. from random import choice  
  3.   
  4. def index(request):  
  5.     x = choice([012])  
  6.     if x == 0:  
  7.         request.session['a'] = 1  
  8.     elif x == 1:  
  9.         request.session.flush()  
  10.     return HttpResponse(request.session.session_key + ' ' + str(request.session.keys()) + ' ' + str(x), content_type='text/plain')  
  • session.clear() method doesn't change session key.
  • The session key was changed when call the session.flush() method. (eg. logout())
  • If session isn't used in request, session key was changed on every request.

ref:

1/26/2011

First entry

Syntax highlighting

  1. from django.http import HttpResponse  
  2.   
  3. def index(request):  
  4.     return HttpResponse('OK')  
  1. <pre class="python" name="code"></pre>