vector .map Germany weekly; regions daily

Started by sebbo, March 23, 2012, 10:28:52

0 Members and 2 Guests are viewing this topic.

sebbo

#30
:(
on the 30GB of Ram server it says out of memory when creating a poly from alps.osm...
gonna try it with 55GB now
  •  

Menion

#31
nonsence sebbo ... I'm generating whole world on 8GB!!, change type from RAM to HD if ram cause errors
- Official help (ideas, questions, problems): help.locusmap.eu
- Advanced topics, sharing of knowledges: you're here!
- LM 4 Beta download, LM 4 Release download
  •  

sebbo

#32
grml... not working

perl __osm2poly.pl alps.osm > alps.polygives me:
cannot process tag 'highway' at __osm2poly.pl line 43, <> line 97857556.
:(
  •  

sebbo

#33
woops. my mistake. i took the alps.osm.bz2 from geofabrik, extracted it and used that to create the poly with the per script...

but creating the osm xml file with josm seems to have worked outed now...

generating the alps atm ;-)
  •  

sebbo

#34
alps finally done!
  •  

gynta

#35
Quote from: "sebbo"alps finally done!
GREAT! nice work!
now i have my "all in one" map.
thank you very much!

gynta

#36
addendum:

sebbo - this map is perfect for me(!) - but those are not the whole alps.
you cut the french/italian alps ;)

for the next update:
Is it possible for you to create an irregular polygon? (light blue line)
The file size would be about 30% percent smaller.
16.41937616621625,48.5313749678073
16.71225306026338,47.56683451481947
15.88463107797332,46.86253463823533
16.09266645945049,45.96597427642283
15.55324848323148,45.68194516857887
13.66403490424418,45.51870913986308
12.40603552753515,45.04589212092135
8.444561533151781,45.39100442163858
7.656416889557351,44.85510797660638
8.662783039859786,44.3930690318375
8.614538218909777,43.94344149722311
7.886797028973744,43.51713086416973
6.481713614555201,43.34529744689402
5.0561865484714,43.44090388337344
4.555796889656387,44.0418110728835
4.458123328881197,44.80255153601465
7.095115023798324,47.1451410030832
11.14542735218659,48.22419609582962
and back to
16.41937616621625,48.5313749678073


or If you can only process a rectangle with four corners:
top left: 4.58708893269876,48.37187658009991
top right: 16.594518371296,48.37187658009991
bottom rigth: 16.594518371296,43.4146901466986
bottom left: 4.58708893269876,43.4146901466986

ppiter

#37
I just downloaded alps.map. ABSOLUTELY PERFECT! Thank you very much.

This map is perfect for me and for other people doing transalp crossing by bike or by foot. This map is also perfect for people riding bike or do hiking in border regions in the alps and in "Voralpengebiet". The map gynta proposed would included the frensh alps as well, but there are no transalp trails in this region. My friends and I think this size and region is ideal.
  •  

gynta

#38
As I wrote:
It is also perfect for me.
...but thats not "the Alps" :-)

sebbo

#39
now it includes the french/italian alps
  •  

gynta

#40
Quote from: "sebbo"now it includes the french/italian alps
Thanks!
The whole Alps! ..with a nice filesize 437 MB (458.567.680 Bytes)
-> http://gps.sebbosweb.com/
great job sebbo

Henk van der Spek

#41
Great work Sebbo; even stretches of the GR5 on it. And our beloved Gran Paradiso!  :D
Motorola G82 5G 6/128 Android 13 and Motorola Moto G73 5G 8/256 Android 13
  •  

sebbo

#42
if anybody wants to create maps on his own.
here is my step by step howto to do it an a fresh ubuntu server installation

###login as user
sudo passwd root
###type your password and then the new password for user root twice
logout
###login as root
apt-get update
apt-get upgrade
reboot
###login as root
apt-get dist-upgrade
reboot
###login as root
wget http://bretth.dev.openstreetmap.org/osmosis-build/osmosis-latest.zip
apt-get install unzip
unzip osmosis-latest.zip
mkdir .openstreetmap
mkdir .openstreetmap/osmosis
mkdir .openstreetmap/osmosis/plugins
cd .openstreetmap/osmosis/plugins
wget http://mapsforge.googlecode.com/files/mapsforge-map-writer-0.3.0-jar-with-dependencies.jar ### source: http://code.google.com/p/mapsforge/downloads/list
cd /root
mkdir planet
cd planet
wget http://download.geofabrik.de/osm/europe/germany/bremen.osm.pbf
mkdir /root/osm
cd /root/osmosis-0.40.1/bin
chmod 777 osmosis
apt-get install openjdk-6-jdk openjdk-6-source openjdk-6-demo openjdk-6-doc openjdk-6-jre-headless openjdk-6-jre-lib
./osmosis --rb file=/root/planet/bremen.osm.pbf --mapfile-writer file=/root/osm/bremen.map type=hd
  •