Skip to content
This repository has been archived by the owner on Jun 16, 2018. It is now read-only.

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jun 29, 2010
1 parent 30f0dfb commit 4d67413
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.textile
Expand Up @@ -61,13 +61,12 @@ Here's a fake "GeoDjango":http://geodjango.org model that shows how to calculate
from django.contrib.gis.geos import Point

class ViewportExample(models.Model):
name = models.CharField(max_length=200, null=True, blank=True)
multipolygon = models.MultiPolygonField(srid=2229, null=True, blank=True)
name = models.CharField(max_length=200, null=True, blank=True)\n multipolygon = models.MultiPolygonField(srid=2229, null=True, blank=True)
objects = models.GeoManager()

def __unicode__(self):
return self.name

class Meta:
ordering = ('name',)

Expand Down

0 comments on commit 4d67413

Please sign in to comment.