~geospatial-addons-core-editors/geospatial-addons/7.0

« back to all changes in this revision

Viewing changes to base_geoengine/geo_polygon.py

  • Committer: nicolas.bessi at camptocamp
  • Date: 2012-03-06 09:20:07 UTC
  • Revision ID: nicolas.bessi@camptocamp.com-20120306092007-qx823bcnxe78041c
[TYPO] of doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
from . import geo_field
9
9
 
10
10
class GeoPolygon(geo_field.Geom):
11
 
    """This class add a new type of columns to ORM it enable POSTGIS geometry type support"""
 
11
    """This class adds a new type of columns to ORM. It enables POSTGIS geometry type support"""
12
12
    _type = 'geo_polygon'
13
13
 
14
14
    def __init__(self, string, dim=2, srid=900913 , gist_index=True, **args):