Re: Run external script with Django cron

2010-04-27 Thread Alexis Selves


On 27 dub, 22:26, Shawn Milochik  wrote:
> I don't understand what the problem is. What error message are you getting?
>
> Are you confusing PATH and PYTHONPATH?
>
> Shawn
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group 
> athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Run external script with Django cron

2010-04-27 Thread Alexis Selves
problem is, that I cannot import file db.py to another python script
pokus.py when i try to execute my pokus.py I got this:
home/
petarda/pokus.py does not point to a directory

Is it clear now?

And what is difference between PATH and PYTHONPATH?
Thanks for help.

On 27 dub, 22:26, Shawn Milochik  wrote:
> I don't understand what the problem is. What error message are you getting?
>
> Are you confusing PATH and PYTHONPATH?
>
> Shawn
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group 
> athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Run external script with Django cron

2010-04-27 Thread Alexis Selves
Hi there,
I have problem with django cron and calling external script.  I am
trying this first in another file  pokus.py:

sys.path.append('/home/petarda/Django/gheat-0.2/__/')
from bin import db

bin is child directory of '__' which contains __init__.py and db.py
which include method that I need to execute but I got this error:/home/
petarda/pokus.py does not point to a directory


Can anyone help me? Thanks in advance.

Alex

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Installing django

2010-04-14 Thread Alexis Selves
try to insall package python-django using apt-get install

On 14 dub, 20:47, "Tom X. Tobin"  wrote:
> On Wed, Apr 14, 2010 at 1:17 PM, Shawn Milochik  wrote:
> > The instructions on the site are incorrect. You only use django-admin.py to 
> > create the project. After that you use manage.py for everything else -- 
> > including syncdb.
>
> You *can* use django-admin.py as long as you make sure
> DJANGO_SETTINGS_MODULE is defined in your environment to poing to your
> settings module (e.g., "some_project.settings") -- which is exactly
> what Jagdeep's traceback was complaining about.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Dajaxice with Jquery issue

2010-04-14 Thread Alexis Selves
Hi everyone,
I am trying to use dajax with jquery. I am dynamicaly making forms
with Jquery and  each contains button with dajax reference.
$(".routelist").append("
with this i get syntax error.
I am trying this:
$(".routelist").append("
no ' ' in Dajaxice.maps.reservation(reservation_callBack). This works,
but I can't add any variables to send to server.

Please help me.

Thanks everyone for reading.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



InternalError: current transaction is aborted, commands ignored until end of transaction block PROBLEM

2010-03-07 Thread Alexis Selves
Hello,
When I try to use raw SQL commands to simple selects from db I get
this:
InternalError: current transaction is aborted, commands ignored until
end of transaction block
I tried many hints from another forums, but nothing..
Please help me..

Using django with postgre

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Selecting rows from 4 in one to many relationship, please help

2010-03-07 Thread Alexis Selves
Yes, sure, raw sql is not problem for me.
But if  I want to perform simple query like SELECT * FROM cars; It
give this:
InternalError: current transaction is aborted, commands ignored until
end of transaction block
I am using postgres and karmic coala..

On 6 bře, 19:44, Matthew Warren <matt.j.war...@gmail.com> wrote:
> From what you've written, my best guess would be something like,
>
> select car.id where car.id in (Select CarOperation.id_car where
> CarOperation.status='exact') and car.id not in (select CarReservation.id_car
> where GIVEN_DATE > CarReservation.ariv_date and GIVEN_DATE <
> CarReservation.dep_date)
>
> That is likely wrong, but something like that is where I would start to try
> and figure it out. Also, I'm not sure all DB's support sub-selects in their
> queries.
>
> Hope it (kinda) helps!
>
> Matt.
>
> On 6 March 2010 19:13, Alexis Selves <petr.pej...@gmail.com> wrote:
>
>
>
> > Hello!
> > I have four tables:
>
> > Car(id, manufacturer, kind)
> > CarReservation(id, id_car, dep_date,ariv_date)
> > CarOperation(id, id_car, id_parking, status...)
> > Parking(id, street, gps)
>
> > Now I need to select cars, which are on exact parking and are not
> > reserved for given date..
> > I am totally hopelles..
>
> > Please help me.
>
> > Thanks in advance.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-us...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com<django-users%2bunsubscr...@google 
> > groups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Selecting rows from 4 in one to many relationship, please help

2010-03-06 Thread Alexis Selves
Hello!
I have four tables:

Car(id, manufacturer, kind)
CarReservation(id, id_car, dep_date,ariv_date)
CarOperation(id, id_car, id_parking, status...)
Parking(id, street, gps)


Now I need to select cars, which are on exact parking and are not
reserved for given date..
I am totally hopelles..

Please help me.

Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Admin widgets in my page

2010-03-06 Thread Alexis Selves
Hello everyone,
I am trying to use datetime picker from django.contrib.admin
I am succesful, but my picker has no style. I see only numbers, but no
border, background..

html(shortened)

Find parking
{% block stylesheet_extra %}{% endblock %}








   {{ form.media }}


{% for f in form %}



{{ f.label }}



{{ f }}


{% if f.errors %}
 
 {{ f.errors }}
 
 {% endif %}
{% endfor %}



Forms.py
class DateForm(forms.Form):
departure_date =
forms.DateTimeField(widget=adminwidgets.AdminSplitDateTime, required =
'True')


Can anyone give me some advice?
Thanks so much.
Alex

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Django with Jquery

2010-02-28 Thread Alexis Selves
Hello,
I am totally helpless. I am trying to use JQuery in my django
templates, but I always get in firebug this: $ not defined.

In my template I am linking jquery :


And then

$(document).ready(function() {
alert("Hello from jQuery");
});


But  I always get nothing..
using ubuntu 9.10. Thanks for your help in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Please help me, retrieving data from Django to JS

2010-02-19 Thread Alexis Selves
Hello everybody,
I am using Dajaxice to get my data from DB to my template.

function getParking_callBack(data){
if(data!='DAJAXICE_EXCEPTION'){
return data;
}
else{

alert("error") ;
}
}


def getParking(request):
list = []
data = Parking.objects.all()
for d in data:
odpoved = {}
odpoved['name'] = d.name
odpoved['x'] = d.gps.x
odpoved['y'] = d.gps.y
list.append(odpoved)


return simplejson.dumps({'data': list})

This is OK it returns what I want, but here is problem: I have this on
console of firebux: getParking_callBack({"data": [{"y":
49.830522574995236, "x": 18.264255523681641, "name": "ostrava
centrum"}, {"y": 49.830522574995236, "x": 18.264255523681641, "name":
"Ostrava Centrum"}]})

This is nice, but I don't know how to parse object from that variable.
Please help me. Thanks so much for your help.

Alex

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Using dajaxice to get my data to javascript

2010-02-16 Thread Alexis Selves
Hello there,
Is possible to get my data from Django using Dajaxice? I need get
information to create markers on google maps.
Thanks for your advices.

Alex.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Dajaxice and geodjango problem

2010-02-03 Thread Alexis Selves
I am using django-dajaxice-0.1.0
Console is clear.
How can print out logging info?
Where should I put this:
import logging logging.basicConfig(level=logging.DEBUG)


On 3 ún, 20:47, Jorge Bastida <neo2...@gmail.com> wrote:
> What version of dajaxice are you using?
> The server console hasn't got any output?
>
> Try to print out the logging info:
> import logging logging.basicConfig(level=logging.DEBUG)
>
> 2010/2/3 Alexis Selves <petr.pej...@gmail.com>
>
>
>
> > Hello DAJAXICE_DEBUG = True
> > in my settings.py is set already..
>
> > On 3 ún, 20:22, Jorge Bastida <neo2...@gmail.com> wrote:
> > > Hello Alexis,
> > > Dajaxice returns DAJAXICE_EXCEPTION if your ajax function
> > > (maps.ajax.sendRoute) raises any Exception.
> > > Try to set DAJAXICE_DEBUG=True and see the server console or try:except:
> > the
> > > code inside your ajax function to see what Exception was raised
>
> > > Hope it helps you.
>
> > > 2010/2/3 Alexis Selves <petr.pej...@gmail.com>
>
> > > > Hey there,
> > > >  I have problem with dajaxice. I am trying to save vertex from google
> > > > route to my db.
> > > > Call of JS function:
> > > > Dajaxice.maps.sendRoute('sendRoute_callBack',{'data':array});
>
> > > > function sendRoute_callBack(data){
> > > >                        if(data!='DAJAXICE_EXCEPTION'){
> > > >                                alert(data.message);
> > > >                        }
> > > >                        else{
>
> > > >                                alert('Error');
> > > >                        }
> > > >                }
>
> > > > Problem is that I always get Error.
>
> > > > Admin.py:
> > > > from django.utils import simplejson
> > > > from django.contrib.gis.geos import Point,Multipoint
> > > > from maps.models import Route
>
> > > > def sendRoute(request, data, name):
> > > >    mp=MultiPoint()
> > > >    counter = 0
> > > >    for coord in data:
> > > >        if counter == 0:
> > > >            lng=coord
> > > >        elif counter == 1:
> > > >            lat=coord
> > > >            p = Point(lng,lat)
> > > >            mp.append(p)
> > > >            counter=0
> > > >    route = Route()
> > > >    route.name=name
> > > >    route.coordinates=mp;
> > > >    route.save()
>
> > > > return simplejson.dumps({'message':'Data stored' })
>
> > > > I don't know what to do.. Can anyone help me...
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "Django users" group.
> > > > To post to this group, send email to django-us...@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > django-users+unsubscr...@googlegroups.com<django-users%2bunsubscr...@googlegroups.com>
> > <django-users%2bunsubscr...@googlegroups.com<django-users%252bunsubscr...@googlegroups.com>
>
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/django-users?hl=en.
>
> > > --
> > > Benito Jorge Bastida
> > > jo...@thecodefarm.com
>
> > > thecodefarm SL
> > > Av. Gasteiz 21, 1º Derecha
> > > 01008 Vitoria-Gasteizhttp://thecodefarm.com
> > > Tel: (+34) 945 06 55 09
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-us...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com<django-users%2bunsubscr...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/django-users?hl=en.
>
> --
> Benito Jorge Bastida
> jo...@thecodefarm.com
>
> thecodefarm SL
> Av. Gasteiz 21, 1º Derecha
> 01008 Vitoria-Gasteizhttp://thecodefarm.com
> Tel: (+34) 945 06 55 09

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Dajaxice and geodjango problem

2010-02-03 Thread Alexis Selves
Hello DAJAXICE_DEBUG = True
in my settings.py is set already..

On 3 ún, 20:22, Jorge Bastida <neo2...@gmail.com> wrote:
> Hello Alexis,
> Dajaxice returns DAJAXICE_EXCEPTION if your ajax function
> (maps.ajax.sendRoute) raises any Exception.
> Try to set DAJAXICE_DEBUG=True and see the server console or try:except: the
> code inside your ajax function to see what Exception was raised
>
> Hope it helps you.
>
> 2010/2/3 Alexis Selves <petr.pej...@gmail.com>
>
>
>
> > Hey there,
> >  I have problem with dajaxice. I am trying to save vertex from google
> > route to my db.
> > Call of JS function:
> > Dajaxice.maps.sendRoute('sendRoute_callBack',{'data':array});
>
> > function sendRoute_callBack(data){
> >                        if(data!='DAJAXICE_EXCEPTION'){
> >                                alert(data.message);
> >                        }
> >                        else{
>
> >                                alert('Error');
> >                        }
> >                }
>
> > Problem is that I always get Error.
>
> > Admin.py:
> > from django.utils import simplejson
> > from django.contrib.gis.geos import Point,Multipoint
> > from maps.models import Route
>
> > def sendRoute(request, data, name):
> >    mp=MultiPoint()
> >    counter = 0
> >    for coord in data:
> >        if counter == 0:
> >            lng=coord
> >        elif counter == 1:
> >            lat=coord
> >            p = Point(lng,lat)
> >            mp.append(p)
> >            counter=0
> >    route = Route()
> >    route.name=name
> >    route.coordinates=mp;
> >    route.save()
>
> > return simplejson.dumps({'message':'Data stored' })
>
> > I don't know what to do.. Can anyone help me...
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To post to this group, send email to django-us...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com<django-users%2bunsubscr...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/django-users?hl=en.
>
> --
> Benito Jorge Bastida
> jo...@thecodefarm.com
>
> thecodefarm SL
> Av. Gasteiz 21, 1º Derecha
> 01008 Vitoria-Gasteizhttp://thecodefarm.com
> Tel: (+34) 945 06 55 09

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Dajaxice and geodjango problem

2010-02-03 Thread Alexis Selves
Edit: Ajax.py not Admin.py

On 3 ún, 20:09, Alexis Selves <petr.pej...@gmail.com> wrote:
> Hey there,
>  I have problem with dajaxice. I am trying to save vertex from google
> route to my db.
> Call of JS function:
> Dajaxice.maps.sendRoute('sendRoute_callBack',{'data':array});
>
> function sendRoute_callBack(data){
>                         if(data!='DAJAXICE_EXCEPTION'){
>                                 alert(data.message);
>                         }
>                         else{
>
>                                 alert('Error');
>                         }
>                 }
>
> Problem is that I always get Error.
>
> Ajax.py:
> from django.utils import simplejson
> from django.contrib.gis.geos import Point,Multipoint
> from maps.models import Route
>
> def sendRoute(request, data, name):
>     mp=MultiPoint()
>     counter = 0
>     for coord in data:
>         if counter == 0:
>             lng=coord
>         elif counter == 1:
>             lat=coord
>             p = Point(lng,lat)
>             mp.append(p)
>             counter=0
>     route = Route()
>     route.name=name
>     route.coordinates=mp;
>     route.save()
>
> return simplejson.dumps({'message':'Data stored' })
>
> I don't know what to do.. Can anyone help me...

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Dajaxice and geodjango problem

2010-02-03 Thread Alexis Selves
Hey there,
 I have problem with dajaxice. I am trying to save vertex from google
route to my db.
Call of JS function:
Dajaxice.maps.sendRoute('sendRoute_callBack',{'data':array});

function sendRoute_callBack(data){
if(data!='DAJAXICE_EXCEPTION'){
alert(data.message);
}
else{

alert('Error');
}
}

Problem is that I always get Error.

Admin.py:
from django.utils import simplejson
from django.contrib.gis.geos import Point,Multipoint
from maps.models import Route

def sendRoute(request, data, name):
mp=MultiPoint()
counter = 0
for coord in data:
if counter == 0:
lng=coord
elif counter == 1:
lat=coord
p = Point(lng,lat)
mp.append(p)
counter=0
route = Route()
route.name=name
route.coordinates=mp;
route.save()

return simplejson.dumps({'message':'Data stored' })


I don't know what to do.. Can anyone help me...

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-27 Thread Alexis Selves
Hello again,
I have another problem...
When I want to install PostGIS using this 
http://geodjango.org/docs/install.html#postgis
I receive this:
 make -C liblwgeom
make[1]: Entering directory `/home/petr/Skola/postgis-1.4.0/liblwgeom'
gcc -g -O2  -fno-common -DPIC  -Wall -Wmissing-prototypes  -c -o
measures.o measures.c
In file included from measures.c:16:
liblwgeom.h:18:31: error: ../postgis_config.h: No such file or
directory
make[1]: *** [measures.o] Error 1
make[1]: Leaving directory `/home/petr/Skola/postgis-1.4.0/liblwgeom'
make: *** [liblwgeom] Error 2
I am hopeless or I don't know.. Everything I do is following the hints
on official pages..
I use ubuntu 9.10.. by the way..


On 26 led, 18:56, Alessandro Pasotti <apaso...@gmail.com> wrote:
> 2010/1/26 Alexis Selves <petr.pej...@gmail.com>
>
>
>
> > Thanks for hints.
>
> > But here is another problem, how can I store my data do geodb with
> > javascript?
> > I was searching several hours, but nothing...
>
> > On 25 led, 15:40, Alessandro Pasotti <apaso...@gmail.com> wrote:
> > > 2010/1/25 Alexis Selves <petr.pej...@gmail.com>
>
> > > > Hi there,
> > > > I am new here by the way.
> > > > I have only simple question, how can I extract route from google map
> > > > and save it into geodb as multipoint or etc..
> > > > Thanks for answers.
>
> > > According to the GMap api docs, you can request driving directions from
> > the
> > > client with or without geometric data for the routing polyline:
>
> > >http://code.google.com/intl/it-IT/apis/maps/documentation/services.ht...
>
> > > Once you have pulled the polyline from Gmap server, you can send them
> > back
> > > to your server and store them in your geodb.
>
> > > You probably will want to decode the polyline from google's encoding
> > format
> > > before storinghttp://
> > facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/
>
> > > Hope this helps
> > > --
> > > Alessandro Pasotti
> > > w3:  www.itopen.it
>
> You need some kind of Ajax XHR call from the client and a server-side piece
> of software that gets the data coming from the client and put them into the
> DB.
>
> --
> Alessandro Pasotti
> w3:  www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-26 Thread Alexis Selves
Thanks for hints.

But here is another problem, how can I store my data do geodb with
javascript?
I was searching several hours, but nothing...

On 25 led, 15:40, Alessandro Pasotti <apaso...@gmail.com> wrote:
> 2010/1/25 Alexis Selves <petr.pej...@gmail.com>
>
> > Hi there,
> > I am new here by the way.
> > I have only simple question, how can I extract route from google map
> > and save it into geodb as multipoint or etc..
> > Thanks for answers.
>
> According to the GMap api docs, you can request driving directions from the
> client with or without geometric data for the routing polyline:
>
> http://code.google.com/intl/it-IT/apis/maps/documentation/services.ht...
>
> Once you have pulled the polyline from Gmap server, you can send them back
> to your server and store them in your geodb.
>
> You probably will want to decode the polyline from google's encoding format
> before storinghttp://facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/
>
> Hope this helps
> --
> Alessandro Pasotti
> w3:  www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Google maps routes in geodjango

2010-01-25 Thread Alexis Selves
Hi there,
I am new here by the way.
I have only simple question, how can I extract route from google map
and save it into geodb as multipoint or etc..
Thanks for answers.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.