Re: tangogps : updating tiles ?

2009-08-03 Thread Helge Hafting
Rask Ingemann Lambertsen wrote: On Tue, Jul 28, 2009 at 06:06:55PM +0200, Helge Hafting wrote: Go to their website - read their policy. tile.openstreetmap.org is not to be used for bulk downloads. URL? http://wiki.openstreetmap.org/index.php/Tile_usage_policy I can understand this,

Re: tangogps : updating tiles ?

2009-07-29 Thread Rask Ingemann Lambertsen
On Tue, Jul 28, 2009 at 06:06:55PM +0200, Helge Hafting wrote: Go to their website - read their policy. tile.openstreetmap.org is not to be used for bulk downloads. URL? I can understand this, they probably have a bandwith problem. Although you'd think that if they were trying to

Re: tangogps : updating tiles ?

2009-07-28 Thread Helge Hafting
William Kenworthy wrote: Is there any advantage (to the server) of using curl? - is there a reason why openstreetmap would ban one and not the other (or is it just someone(s) using wget beating up their server? Go to their website - read their policy. tile.openstreetmap.org is not to be used

Re: tangogps : updating tiles ?

2009-07-24 Thread Robin Paulson
2009/7/24 William Kenworthy bi...@iinet.net.au: Is there any advantage (to the server) of using curl? - is there a reason why openstreetmap would ban one and not the other (or is it just someone(s) using wget beating up their server? why do you think wget has been banned? and what good would

Re: tangogps : updating tiles ?

2009-07-24 Thread Robin Paulson
2009/7/21 Ed Kapitein e...@kapitein.org: for TILE in `find /path/to/tiles -type f`; do  echo ${TILE}  FILE=`basename ${TILE}`  L1=`dirname ${TILE} | gawk -F/ '{ print $NF}'`  L2=`dirname ${TILE} | gawk -F/ '{ print $(NF-1)}'`  curl --output ${TILE}

Re: tangogps : updating tiles ?

2009-07-24 Thread Ed Kapitein
On Fri, 2009-07-24 at 22:25 +1200, Robin Paulson wrote: 2009/7/21 Ed Kapitein e...@kapitein.org: for TILE in `find /path/to/tiles -type f`; do echo ${TILE} FILE=`basename ${TILE}` L1=`dirname ${TILE} | gawk -F/ '{ print $NF}'` L2=`dirname ${TILE} | gawk -F/ '{ print $(NF-1)}'`

Re: tangogps : updating tiles ?

2009-07-24 Thread Rask Ingemann Lambertsen
On Tue, Jul 21, 2009 at 12:07:58PM +0200, Ed Kapitein wrote: On Tue, 2009-07-21 at 11:20 +0200, Xavier Cremaschi wrote: Does anyone know how I can update my tiles to get the most up-to-date openstreetmap info ? I will recommend using Yaouh! or the other one that I've forgotten the name

Re: tangogps : updating tiles ?

2009-07-24 Thread Rask Ingemann Lambertsen
On Fri, Jul 24, 2009 at 09:31:59PM +1200, Robin Paulson wrote: why do you think wget has been banned? Because it says so: $ wget http://tile.openstreetmap.org/2/2/2.png --2009-07-24 12:10:17-- http://tile.openstreetmap.org/2/2/2.png Løser tile.openstreetmap.org...91.198.174.8 Connecting to

Re: tangogps : updating tiles ?

2009-07-24 Thread David Ford
Perhaps a handful of tile mirrors could be set up. I can offer some space for this. -david ___ Openmoko community mailing list community@lists.openmoko.org http://lists.openmoko.org/mailman/listinfo/community

Re: tangogps : updating tiles ?

2009-07-23 Thread Xavier Cremaschi
Yaouh is nice, but the whole process is slow so I left my FR up all the night to update tiles (95k tiles updated/173k total). It seems fine now :) ___ Openmoko community mailing list community@lists.openmoko.org

Re: tangogps : updating tiles ?

2009-07-23 Thread jeremy jozwik
On Thu, Jul 23, 2009 at 12:41 AM, Xavier Cremaschiomega.xav...@gmail.com wrote: Yaouh is nice, but the whole process is slow so I left my FR up all the night to update tiles (95k tiles updated/173k total). It seems fine now :) it is impressively slow. so rather then being tethered for a day

Re: tangogps : updating tiles ?

2009-07-23 Thread Alejandro Sáiz
It might be as easy as this: for TILE in `find /path/to/tiles -type f`; do echo ${TILE} FILE=`basename ${TILE}` L1=`dirname ${TILE} | gawk -F/ '{ print $NF}'` L2=`dirname ${TILE} | gawk -F/ '{ print $(NF-1)}'` curl --output ${TILE} http://tile.openstreetmap.org/${L2}/${L1}/${FILE};

Re: tangogps : updating tiles ?

2009-07-23 Thread William Kenworthy
Is there any advantage (to the server) of using curl? - is there a reason why openstreetmap would ban one and not the other (or is it just someone(s) using wget beating up their server? BillK On Fri, 2009-07-24 at 12:25 +0700, Alejandro Sáiz wrote: It might be as easy as this:

tangogps : updating tiles ?

2009-07-21 Thread Xavier Cremaschi
Hi folks, I have been using tangogps since the beginning of my Openmoko life (july 08), and now I've got lots of openstreetmap tiles stored on my microSD which cover useful areas for me. Does anyone know how I can update my tiles to get the most up-to-date openstreetmap info ? I don't care to

Re: tangogps : updating tiles ?

2009-07-21 Thread Risto H. Kurppa
On Tue, Jul 21, 2009 at 12:20 PM, Xavier Cremaschiomega.xav...@gmail.com wrote: Hi folks, I have been using tangogps since the beginning of my Openmoko life (july 08), and now I've got lots of openstreetmap tiles stored on my microSD which cover useful areas for me. check opkg.org for yaouh

Re: tangogps : updating tiles ?

2009-07-21 Thread Christ van Willegen
Xavier, On Tue, Jul 21, 2009 at 11:20 AM, Xavier Cremaschiomega.xav...@gmail.com wrote: Does anyone know how I can update my tiles to get the most up-to-date openstreetmap info ? Check out Yaouh. See http://wiki.openmoko.org/wiki/Yaouh! HTH! Christ van Willegen -- 09 F9 11 02 9D 74 E3 5B D8

Re: tangogps : updating tiles ?

2009-07-21 Thread Xavier Cremaschi
Thanks ___ Openmoko community mailing list community@lists.openmoko.org http://lists.openmoko.org/mailman/listinfo/community

Re: tangogps : updating tiles ?

2009-07-21 Thread Ed Kapitein
On Tue, 2009-07-21 at 11:20 +0200, Xavier Cremaschi wrote: Hi folks, I have been using tangogps since the beginning of my Openmoko life (july 08), and now I've got lots of openstreetmap tiles stored on my microSD which cover useful areas for me. Does anyone know how I can update my tiles