Re: geographical data in models

2007-05-16 Thread omat
This is great news for me! I had a look at this branch, and this is surely the right way to develop geographical applications. On 16 Mayıs, 14:51, "Ramiro Morales" <[EMAIL PROTECTED]> wrote: > On 5/16/07, omat <[EMAIL PROTECTED]> wrote: > > > > > > > Hi all, > > > I am developing an applicati

Re: geographical data in models

2007-05-16 Thread Margaret
django support GIS?? On 5/16/07, Ramiro Morales <[EMAIL PROTECTED]> wrote: > > On 5/16/07, omat <[EMAIL PROTECTED]> wrote: > > > > Hi all, > > > > I am developing an application with django that requires some > > geographical data, both some points and tracks. I have some questions > > regarding

Re: geographical data in models

2007-05-16 Thread Ramiro Morales
On 5/16/07, omat <[EMAIL PROTECTED]> wrote: > > Hi all, > > I am developing an application with django that requires some > geographical data, both some points and tracks. I have some questions > regarding the model design. > > I know Postgres and MySQL have geographic extensions. I have used > My

Re: geographical data in models

2007-05-16 Thread Sam
I didn't go with PostGIS because i only needed basic functionality and approximative data. In my models, i have : lat = models.FloatField(max_digits=7, decimal_places=4, blank=True, null=True) lng = models.FloatField(max_digits=7, decimal_places=4, blank=True, null=True) I'm using it together wi

geographical data in models

2007-05-16 Thread omat
Hi all, I am developing an application with django that requires some geographical data, both some points and tracks. I have some questions regarding the model design. I know Postgres and MySQL have geographic extensions. I have used MySQL's in the past but now I am mostly interested in Postgres