Re: Geometry vs Geography Data Type for PostGIS PostgreSQL database

2012-10-21 Thread Maarten Japink
I would use geography. You never know from where the user is coming, so you don't know the limitations of the projection. If you need extra functionality you can always transform to the most appropriate projection. 2012/10/21 JJ Zolper > Hello, > > So I've been researching the pros and cons fo

Re: model can return a count but no data

2012-03-18 Thread Maarten Japink
Great! this works. Thank you so much Kevin. 2012/3/18 Kevin Wetzels > > On Sunday, March 18, 2012 12:55:31 PM UTC+1, Maarten Japink wrote: >> >> I 'm working on a taxonomie. >> These are my models: >> >> class Classificatie(models.Model): >

model can return a count but no data

2012-03-18 Thread Maarten Japink
I 'm working on a taxonomie. These are my models: class Classificatie(models.Model): name=models.CharField(max_length=60) def __unicode__(self): return self.name class Taxonomie(models.Model): name=models.CharField(max_length=60) level=models.ForeignKey(Classificatie)