Re: [mkgmap-dev] dasch map

2016-01-26 Thread Gerd Petermann
As you said: don't use keep-complete=false if you care about it


Gerd



Von: mkgmap-dev-boun...@lists.mkgmap.org.uk 
 im Auftrag von Steve Sgalowski 

Gesendet: Dienstag, 26. Januar 2016 05:54
An: Development list for mkgmap
Betreff: [mkgmap-dev] dasch map

with keep complete  false
i get this warning msg up


any ideas what i should look for

my compile string is this

start /low /b /wait java -enableassertions -Xmx2400m -jar 
..\bin\mkgmap.jar>mkgmap.log   --link-pois-to-ways  
--polygon-size-limits="23:15, 22:14, 21:13,20:12,19:11 18:10, 17:9, 16:8, 15:7, 
14:6, 13:5, 12:4 ,11:3  10:2, 9:1, 8:0 "   --process-exits  --keep-going 
--process-destination --merge-lines  --style=default 
--pois-to-areas-placement=tagelist  --tdbfile --transparent --make-poi-index 
--reduce-point-density=2.6 --reduce-point-density-polygon=4   --index 
--levels=0:24,1:23,2:22,3:21,4:20,5:19,6:18,7:16  --verbose --route 
--country-name="%country%" --family-id=%FID% --mapname=66%FID%001 
--overview-mapname=66%FID%000 --series-name="OSM-%country%" 
--family-name="OpenStreetMap: %country%" --style-file=..\bin\styles\ 
--style=%style% --description="%country%" -c ..\bin\template_basic.args -c 
template.args %TypFileToAdd%


  Stephen

___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

Re: [mkgmap-dev] dasch map

2016-01-26 Thread Gerd Petermann

Ahh, sorry, did not notice that mkgmap complains with a severe error.

Please send a link to the corresponding input file


Gerd


Von: mkgmap-dev-boun...@lists.mkgmap.org.uk 
 im Auftrag von Gerd Petermann 

Gesendet: Dienstag, 26. Januar 2016 09:21
An: Development list for mkgmap
Betreff: Re: [mkgmap-dev] dasch map


As you said: don't use keep-complete=false if you care about it


Gerd



Von: mkgmap-dev-boun...@lists.mkgmap.org.uk 
 im Auftrag von Steve Sgalowski 

Gesendet: Dienstag, 26. Januar 2016 05:54
An: Development list for mkgmap
Betreff: [mkgmap-dev] dasch map

with keep complete  false
i get this warning msg up


any ideas what i should look for

my compile string is this

start /low /b /wait java -enableassertions -Xmx2400m -jar 
..\bin\mkgmap.jar>mkgmap.log   --link-pois-to-ways  
--polygon-size-limits="23:15, 22:14, 21:13,20:12,19:11 18:10, 17:9, 16:8, 15:7, 
14:6, 13:5, 12:4 ,11:3  10:2, 9:1, 8:0 "   --process-exits  --keep-going 
--process-destination --merge-lines  --style=default 
--pois-to-areas-placement=tagelist  --tdbfile --transparent --make-poi-index 
--reduce-point-density=2.6 --reduce-point-density-polygon=4   --index 
--levels=0:24,1:23,2:22,3:21,4:20,5:19,6:18,7:16  --verbose --route 
--country-name="%country%" --family-id=%FID% --mapname=66%FID%001 
--overview-mapname=66%FID%000 --series-name="OSM-%country%" 
--family-name="OpenStreetMap: %country%" --style-file=..\bin\styles\ 
--style=%style% --description="%country%" -c ..\bin\template_basic.args -c 
template.args %TypFileToAdd%


  Stephen

___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

Re: [mkgmap-dev] dasch map

2016-01-26 Thread Steve Sgalowski
http://download.geofabrik.de/europe/dach-latest.osm.pbf



@echo off

rem --
rem --- CreateIMG.bat - By Marco Certelli - Beta07 ---
rem --

rem  Define your default country 

set country=dach-latest

rem *

rem Available styles: drivemap, kleineisel, masterstyle, default, marine,
noname, test
set style=mapst2

rem Available TYPfiles: DRIVEMAP.TYP, KLEINEISEL.TYP, MASTER.TYP,
TEDDY.TYP, DOM.TYP
set typfile=velowaus.typ

rem Put AddTypToIMG=yes to add TYPfile to gmapsupp.img (so it is active in
garmin too)
set AddTypToIMG=yes

rem MapSource Family-ID: must be a unique (in mapsource) 3 digit number
(000 to 999)
set FID=900

rem MSDir shall contain the "existing" directory where mapsource installs
maps
rem Next usually results in MSDir=C:\\Garmin
set MSDir=%systemdrive%\\Garmin

rem Next usually results in MSDir=C:\\Program Files\\Garmin
rem set MSDir=%ProgramFiles%
rem set MSDir=%MSDir:\=\\%
rem set MSDir=%MSDir%\\Garmin

rem Available continents: europe, africa, asia, north-america, south-america
set continent=

rem Just leave debug=no for production & to delete intermediate temporary
files.
set debug=no


echo.
echo **
echo * This script downloads (if needed) and compiles the *
echo * OSM map data to generate a Garmin IMG routable map *
echo **
echo.

rem Override default country if a name is given to the batch as parameter
if "%1" NEQ "" set country=%1

rem Ask user for a country name if no default and no parameter is set
if "%country%" NEQ "" goto :Search4Map
set /P country="Enter the country to build: "
echo.

:Search4Map

if NOT EXIST OSM-Data mkdir OSM-Data
cd OSM-Data

rem 1) search for xxx.osm file
 rem set osmfile=%country%.osm
 rem if EXIST %osmfile% echo File OSM-Data\%osmfile% found (no download
required)
rem  if EXIST %osmfile% GOTO :SplitMap

rem 2) search for xxx.osm.bz2 file
rem set osmfile=%country%.osm.bz2
rem if EXIST %osmfile% echo File OSM-Data\%osmfile% found: delete it for a
new download
rem if EXIST %osmfile% GOTO :SplitMap

rem 3) search for xxx.osm.pbf file
 set osmfile=%country%.osm.pbf
 if EXIST %osmfile% echo File OSM-Data\%osmfile% found: delete it for a new
download
 if EXIST %osmfile% GOTO :SplitMap

echo.
echo Downloading OSM data for %country%
echo.

..\bin\wget http://download.geofabrik.de/openstreetmap/%continent%/%osmfile%

if EXIST %osmfile% goto :SplitMap
echo.
echo *
echo *** SORRY: download of /%continent%/%osmfile% has FAILED!!!
echo *** Check at http://download.geofabrik.de/osm/%continent%/
echo *** and manually download %osmfile%
echo *
echo.
goto :END


:SplitMap

echo.
echo Start converting %country% OSM data into IMG Map...

if NOT EXIST ..\IMG-OSM-%country% mkdir ..\IMG-OSM-%country%
cd ..\IMG-OSM-%country%

if EXIST template.args goto :Compile

echo.
echo Splitting OSM-Data\%osmfile%. Please wait
echo.

rem start /low /b /wait java -enableassertions -Xmx1000m -jar
..\bin\splitter.jar --mapid=66%FID%001 --max-nodes=100
..\OSM-Data\%osmfile%

rem start /low /b /wait java -enableassertions -Xmx1250m -jar
..\bin\splitter.jar --mapid=66%FID%001 --output=xml ..\OSM-Data\%osmfile%
start /low /b /wait java -enableassertions -Xmx1200m -jar
..\bin\splitter.jar> splitter.log --mapid=66%FID%001 --search-limit=20
 ..\OSM-Data\%osmfile% --output=xml   --resolution=13 --max-nodes=20
--max-areas=50 --wanted-admin-level=5 --problem-report
 --keep-complete=false --status-freq=120

:Compile

echo.
echo Compiling OSM-Data\%osmfile% into IMG, FID=%FID%. Please wait
echo.

set TypFileToAdd=
if "%AddTypToIMG%" NEQ "yes" goto :NoTypToAdd
copy "..\bin\typ\%typfile%" style.typ 2>nul 1>nul
..\bin\TYPtool %FID% 1 style.typ >nul
set TypFileToAdd=style.typ

:NoTypToAdd

rem start /low /b /wait java -enableassertions -Xmx1000m -jar
..\bin\mkgmap.jar --country-name="%country%" --family-id=%FID%
--mapname=66%FID%001 --overview-mapname=66%FID%000
--series-name="OSM-%country%" --family-name="OpenStreetMap: %country%"
--style-file=..\bin\styles\ --style=%style% --description="%country%" -c
..\bin\template_basic.args -c template.args %TypFileToAdd%
rem start /low /b /wait java -enableassertions -Xmx600m -jar
..\bin\mkgmap.jar  --transparent --check-roundabouts --link-pois-to-ways
 --make-poi-index --reduce-point-density=2.6
--reduce-point-density-polygon=8   --index --levels=0:23,1:22,2:21,3:20
--make-poi-index --route  --verbose --country-name="%country%"
--family-id=%FID% --mapname=66%FID%001 --overview-mapname=66%FID%000
--series-name="OSM-%country%" --family-name="OpenStreetMap: %country%"
--style-file=..\bin\styles\ --style=%style% --description="%country%" -c
..\bin\template_basic.args -c template.args %TypFileToAdd%
rem 

Re: [mkgmap-dev] dasch map

2016-01-26 Thread Gerd Petermann

Hi Steve,


the screenshot shows the name of a *.osm.gz file. Please post a link to that 
file, too.


Gerd


Von: mkgmap-dev-boun...@lists.mkgmap.org.uk 
 im Auftrag von Steve Sgalowski 

Gesendet: Dienstag, 26. Januar 2016 09:29
An: Development list for mkgmap
Betreff: Re: [mkgmap-dev] dasch map

http://download.geofabrik.de/europe/dach-latest.osm.pbf



@echo off

rem --
rem --- CreateIMG.bat - By Marco Certelli - Beta07 ---
rem --

rem  Define your default country 

set country=dach-latest

rem *

rem Available styles: drivemap, kleineisel, masterstyle, default, marine, 
noname, test
set style=mapst2

rem Available TYPfiles: DRIVEMAP.TYP, KLEINEISEL.TYP, MASTER.TYP, TEDDY.TYP, 
DOM.TYP
set typfile=velowaus.typ

rem Put AddTypToIMG=yes to add TYPfile to gmapsupp.img (so it is active in 
garmin too)
set AddTypToIMG=yes

rem MapSource Family-ID: must be a unique (in mapsource) 3 digit number (000 to 
999)
set FID=900

rem MSDir shall contain the "existing" directory where mapsource installs maps
rem Next usually results in MSDir=C:\\Garmin
set MSDir=%systemdrive%\\Garmin

rem Next usually results in MSDir=C:\\Program Files\\Garmin
rem set MSDir=%ProgramFiles%
rem set MSDir=%MSDir:\=\\%
rem set MSDir=%MSDir%\\Garmin

rem Available continents: europe, africa, asia, north-america, south-america
set continent=

rem Just leave debug=no for production & to delete intermediate temporary files.
set debug=no


echo.
echo **
echo * This script downloads (if needed) and compiles the *
echo * OSM map data to generate a Garmin IMG routable map *
echo **
echo.

rem Override default country if a name is given to the batch as parameter
if "%1" NEQ "" set country=%1

rem Ask user for a country name if no default and no parameter is set
if "%country%" NEQ "" goto :Search4Map
set /P country="Enter the country to build: "
echo.

:Search4Map

if NOT EXIST OSM-Data mkdir OSM-Data
cd OSM-Data

rem 1) search for xxx.osm file
 rem set osmfile=%country%.osm
 rem if EXIST %osmfile% echo File OSM-Data\%osmfile% found (no download 
required)
rem  if EXIST %osmfile% GOTO :SplitMap

rem 2) search for xxx.osm.bz2 file
rem set osmfile=%country%.osm.bz2
rem if EXIST %osmfile% echo File OSM-Data\%osmfile% found: delete it for a new 
download
rem if EXIST %osmfile% GOTO :SplitMap

rem 3) search for xxx.osm.pbf file
 set osmfile=%country%.osm.pbf
 if EXIST %osmfile% echo File OSM-Data\%osmfile% found: delete it for a new 
download
 if EXIST %osmfile% GOTO :SplitMap

echo.
echo Downloading OSM data for %country%
echo.

..\bin\wget http://download.geofabrik.de/openstreetmap/%continent%/%osmfile%

if EXIST %osmfile% goto :SplitMap
echo.
echo *
echo *** SORRY: download of /%continent%/%osmfile% has FAILED!!!
echo *** Check at http://download.geofabrik.de/osm/%continent%/
echo *** and manually download %osmfile%
echo *
echo.
goto :END


:SplitMap

echo.
echo Start converting %country% OSM data into IMG Map...

if NOT EXIST ..\IMG-OSM-%country% mkdir ..\IMG-OSM-%country%
cd ..\IMG-OSM-%country%

if EXIST template.args goto :Compile

echo.
echo Splitting OSM-Data\%osmfile%. Please wait
echo.

rem start /low /b /wait java -enableassertions -Xmx1000m -jar 
..\bin\splitter.jar --mapid=66%FID%001 --max-nodes=100 ..\OSM-Data\%osmfile%

rem start /low /b /wait java -enableassertions -Xmx1250m -jar 
..\bin\splitter.jar --mapid=66%FID%001 --output=xml ..\OSM-Data\%osmfile%
start /low /b /wait java -enableassertions -Xmx1200m -jar ..\bin\splitter.jar> 
splitter.log --mapid=66%FID%001 --search-limit=20  ..\OSM-Data\%osmfile% 
--output=xml   --resolution=13 --max-nodes=20 --max-areas=50 
--wanted-admin-level=5 --problem-report  --keep-complete=false --status-freq=120

:Compile

echo.
echo Compiling OSM-Data\%osmfile% into IMG, FID=%FID%. Please wait
echo.

set TypFileToAdd=
if "%AddTypToIMG%" NEQ "yes" goto :NoTypToAdd
copy "..\bin\typ\%typfile%" style.typ 2>nul 1>nul
..\bin\TYPtool %FID% 1 style.typ >nul
set TypFileToAdd=style.typ

:NoTypToAdd

rem start /low /b /wait java -enableassertions -Xmx1000m -jar ..\bin\mkgmap.jar 
--country-name="%country%" --family-id=%FID% --mapname=66%FID%001 
--overview-mapname=66%FID%000 --series-name="OSM-%country%" 
--family-name="OpenStreetMap: %country%" --style-file=..\bin\styles\ 
--style=%style% --description="%country%" -c ..\bin\template_basic.args -c 
template.args %TypFileToAdd%
rem start /low /b /wait java -enableassertions -Xmx600m -jar ..\bin\mkgmap.jar  
--transparent --check-roundabouts --link-pois-to-ways  --make-poi-index 
--reduce-point-density=2.6 --reduce-point-density-polygon=8   --index 
--levels=0:23,1

[mkgmap-dev] [Patch v1] improve exit hints

2016-01-26 Thread Gerd Petermann
Hi all,


I've combined the patches

link-hook-v1.patch

destination_tags_v1.patch

hints_v1.patch

into the attached one, I've also improved the docu in options.txt.


The patch

- adds the evaluation of destination:street and destination:lanes:forward 
(*:backward)

- adds secondary_link and tertiary_link to the processed road types

- fixes an issue with the style rules so that the exit number is used when both

mkgmap:exit_hint=true AND mkgmap:dest_hint=true match.


Please check esp . the changes in the rules for lines, I am not sure if the 
usage of new

tags like exit_hint=* and dest_hint=*
are a good idea, maybe they should be prefixed with work: or so to make clear 
that they

are only used to build a part of the name.


I've tested this with a few files and found no problems, so if I here no 
complains I'll

commit it on friday.

A binary can be found here:

http://files.mkgmap.org.uk/download/289/mkgmap.jar


Gerd


exit-hints-v1.patch
Description: exit-hints-v1.patch
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

Re: [mkgmap-dev] Will you please include water thanks in future releases.

2016-01-26 Thread Regunathan Umapathy
Dear greg cargo,
Many thanks for the promptly reply. I am relatively new to mkgmap. Does
running java -jar mkgmap.jar sri-lanka-latest.osm.pbf (from
http://download.geofabrik.de/asia/sri-lanka.html) should do that
automatically or do I have to provide additional code for that? related to
the above request is there any possibility to include pedestrian crossing
as well with highway=crossing such as
http://www.openstreetmap.org/edit?editor=potlatch2&node=634182147#map=18/8.75934/80.49996
(Pedestrian crossing generally appears opencyclemap.org but only appears in
the edit mode of openstreetmap. Would be great if that shows up in the
garmin map.



On Mon, Jan 25, 2016 at 3:07 AM, greg crago  wrote:

> I have added this already in my custom *points* file
>
> Line 260: man_made=water_tower [0x6619 resolution 24]
>
> I could not find a ID#, so I just made one (0x6619)
>
> here is the TYP code
>
> [_point]
> Type=0x06619
> ;&75DA pointers:&7B48
> ;size: 256
> ;bmp:&75E5
> ;night_bmp:&76ED
> String1=0x4,water tower
> ExtendedLabels=N
> dayxpm="32 32 3 1" colormode=16
> "$ c #00"
> "% c #FF"
> "& c none"
> ""
> "&&%%&%%&%%&&"
> "&%$$%%%%%%%%%%%$$%&&"
> "&%$$%$%$$%&&"
> "&%$$%$$%$%$$$%%$$%&&"
> "&%$$%%%$$%&&"
> "&%$$%%%%%%%%%%%$$%&&"
> "&%$$%$%$$%&&"
> "&%$$%$$%$%%$$%%$$%&&"
> "&%$$&&&%%%%$$%&&"
> "&%$$%&%$$%&&"
> "&%$$%%%$$%&&"
> "&%$$$%&&"
> "&%$$$%&&"
> "&%%%$%$$%%&&"
> "&&&%$$%%%$$$%&&&"
> "&&%%$%$%$$%$%&&&"
> "&&%$$%%$%%%$%%&&"
> "&%%$%$$%$$%$$%&&"
> "&%$%$%&&"
> "&%$$$%%$$%%&"
> "%%$%$$%%%$$%$$%&"
> "%$$%%%%%%$%%"
> "&&&%%$$$$$$%"
> "&&&%$$%%$$%%%$$%%%$%%&&&"
> "&&%%$%%$$%%&%%%$$%$$%&&&"
> "&%%%%%%%%%&&"
> "&%$$$%%%&&&%%%$$$%%&"
> "%%$$%%&&&%%%$$%%"
> "%$$%%&&%%$$%"
> "%$%%%%$%"
> "%%%&&%%%"
>
> NightXpm="32 32 3 1" Colormode=16
> "$ c #949494"
> "% c #00"
> "& c none"
> ""
> "&&%%&%%&%%&&"
> "&%$$%%%%%%%%%%%$$%&&"
> "&%$$%$%$$%&&"
> "&%$$%$$%$%$$$%%$$%&&"
> "&%$$%%&&&%%$$%&&"
> "&%$$%%%%%%%%%%%$$%&&"
> "&%$$%$%$$%&&"
> "&%$$%$$%$%%$$%%$$%&&"
> "&%$$&&&%%%%$$%&&"
> "&%$$%&%$$%&&"
> "&%$$%%%$$%&&"
> "&%$$$%&&"
> "&%$$$%&&"
> "&%%%$%$$%%&&"
> "&&&%$$%%%$$$%&&&"
> "&&%%$%$%$$%$%&&&"
> "&&%$$%%$%%%$%%&&"
> "&%%$%$$%$$%$$%&&"
> "&%$%$%&&"
> "&%$$$%%$$%%&"
> "%%$%$$%%%$$%$$%&"
> "%$$%%%%%%$%%"
> "&&&%%$$$$$$%"
> "&&&%$$%%$$%%%$$%%%$%%&&&"
> "&&%%$%%$$%%&%%%$$%$$%&&&"
> "&%%%%%%%%%&&"
> "&%$$$%%%&&&%%%$$$%%&"
> "%%$$%%&&&%%%$$%%"
> "%$$%%&&%%$$%"
> "%$%%%%$%"
> "%%%&&%%%"
> [end]
>
>
> On Fri, Jan 22, 2016 at 7:59 PM, Regunathan Umapathy  > wrote:
>
>> OSM generic ones does not show water tanks (man_made=water_tower) is
>> there any possibility to include them with future releases. You may have a
>> look at http://www.openstreetmap.org/node/3629402393 in vavuniya, sri
>> lanka.
>>
>> --
>> Regards
>> Regunathan Umapathy (Uma)
>> http://hdyc.neis-one.org/?Umapathy 
>>
>>
>> ___
>> mkgmap-dev mailing list
>> mkgmap-dev@lists.mkgmap.org.uk
>> http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev
>>
>
>
> ___
> mkgmap-dev mailing list
> mkgmap-dev@lists.mkgmap.org.uk
> http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev
>



-- 
Regards
Regunathan Umapathy (Uma)
Visit: http://www.panoramio.com/user/69195
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

Re: [mkgmap-dev] Will you please include water thanks in future releases.

2016-01-26 Thread greg crago
I am assuming you want an .img file in your GPS to show WATER TOWERS.

In order for the WATER TOWER icons to show up, you have to use the code in
a TYP file. I use TYPWIZ4 to build a TEXT TYP file and then I append as the
last entry of the mkgmap command

 java -jar mkgmap.jar sri-lanka-latest.osm.pbf MYTYPFILE.TXT


You also need to modify the *points* file in you STYLE collection and add

man_made=water_tower [0x6619 resolution 24]

I just started making maps myself. Look at the CONVERSION STYLE MANUAL here:

http://www.mkgmap.org.uk/doc/pdf/style-manual.pdf

It seems a bit complicated, but if you stay with it, you can create maps
that look the way you want! (If the data is in the OSM database)

Greg


On Tue, Jan 26, 2016 at 11:29 AM, Regunathan Umapathy 
wrote:

> Dear greg cargo,
> Many thanks for the promptly reply. I am relatively new to mkgmap. Does
> running java -jar mkgmap.jar sri-lanka-latest.osm.pbf (from
> http://download.geofabrik.de/asia/sri-lanka.html) should do that
> automatically or do I have to provide additional code for that? related to
> the above request is there any possibility to include pedestrian crossing
> as well with highway=crossing such as
> http://www.openstreetmap.org/edit?editor=potlatch2&node=634182147#map=18/8.75934/80.49996
> (Pedestrian crossing generally appears opencyclemap.org but only appears
> in the edit mode of openstreetmap. Would be great if that shows up in the
> garmin map.
>
>
>
> On Mon, Jan 25, 2016 at 3:07 AM, greg crago  wrote:
>
>> I have added this already in my custom *points* file
>>
>> Line 260: man_made=water_tower [0x6619 resolution 24]
>>
>> I could not find a ID#, so I just made one (0x6619)
>>
>> here is the TYP code
>>
>> [_point]
>> Type=0x06619
>> ;&75DA pointers:&7B48
>> ;size: 256
>> ;bmp:&75E5
>> ;night_bmp:&76ED
>> String1=0x4,water tower
>> ExtendedLabels=N
>> dayxpm="32 32 3 1" colormode=16
>> "$ c #00"
>> "% c #FF"
>> "& c none"
>> ""
>> "&&%%&%%&%%&&"
>> "&%$$%%%%%%%%%%%$$%&&"
>> "&%$$%$%$$%&&"
>> "&%$$%$$%$%$$$%%$$%&&"
>> "&%$$%%%$$%&&"
>> "&%$$%%%%%%%%%%%$$%&&"
>> "&%$$%$%$$%&&"
>> "&%$$%$$%$%%$$%%$$%&&"
>> "&%$$&&&%%%%$$%&&"
>> "&%$$%&%$$%&&"
>> "&%$$%%%$$%&&"
>> "&%$$$%&&"
>> "&%$$$%&&"
>> "&%%%$%$$%%&&"
>> "&&&%$$%%%$$$%&&&"
>> "&&%%$%$%$$%$%&&&"
>> "&&%$$%%$%%%$%%&&"
>> "&%%$%$$%$$%$$%&&"
>> "&%$%$%&&"
>> "&%$$$%%$$%%&"
>> "%%$%$$%%%$$%$$%&"
>> "%$$%%%%%%$%%"
>> "&&&%%$$$$$$%"
>> "&&&%$$%%$$%%%$$%%%$%%&&&"
>> "&&%%$%%$$%%&%%%$$%$$%&&&"
>> "&%%%%%%%%%&&"
>> "&%$$$%%%&&&%%%$$$%%&"
>> "%%$$%%&&&%%%$$%%"
>> "%$$%%&&%%$$%"
>> "%$%%%%$%"
>> "%%%&&%%%"
>>
>> NightXpm="32 32 3 1" Colormode=16
>> "$ c #949494"
>> "% c #00"
>> "& c none"
>> ""
>> "&&%%&%%&%%&&"
>> "&%$$%%%%%%%%%%%$$%&&"
>> "&%$$%$%$$%&&"
>> "&%$$%$$%$%$$$%%$$%&&"
>> "&%$$%%&&&%%$$%&&"
>> "&%$$%%%%%%%%%%%$$%&&"
>> "&%$$%$%$$%&&"
>> "&%$$%$$%$%%$$%%$$%&&"
>> "&%$$&&&%%%%$$%&&"
>> "&%$$%&%$$%&&"
>> "&%$$%%%$$%&&"
>> "&%$$$%&&"
>> "&%$$$%&&"
>> "&%%%$%$$%%&&"
>> "&&&%$$%%%$$$%&&&"
>> "&&%%$%$%$$%$%&&&"
>> "&&%$$%%$%%%$%%&&"
>> "&%%$%$$%$$%$$%&&"
>> "&%$%$%&&"
>> "&%$$$%%$$%%&"
>> "%%$%$$%%%$$%$$%&"
>> "%$$%%%%%%$%%"
>> "&&&%%$$$$$$%"
>> "&&&%$$%%$$%%%$$%%%$%%&&&"
>> "&&%%$%%$$%%&%%%$$%$$%&&&"
>> "&%%%%%%%%%&&"
>> "&%$$$%%%&&&%%%$$$%%&"
>> "%%$$%%&&&%%%$$%%"
>> "%$$%%&&%%$$%"
>> "%$%%%%$%"
>> "%%%&&%%%"
>> [end]
>>
>>
>> On Fri, Jan 22, 2016 at 7:59 PM, Regunathan Umapathy <
>> umapath...@gmail.com> wrote:
>>
>>> OSM generic ones does not show water tanks (man_made=water_tower) is
>>> there any possibility to include them with future releases. You may have a
>>> look at http://www.openstreetmap.org/node/3629402393 in vavuniya, sri
>>> lanka.
>>>
>>> --
>>> Regards
>>> Regunathan Umapathy (Uma)
>>> http://hdyc.neis-one.org/?Umapathy 
>>>
>>>
>>> __