[mkgmap-dev] Commit r4878: - Add code needed in display tool to read GMP files or locked files

2022-01-26 Thread svn commit
Version mkgmap-r4878 was committed by gerd on Thu, 27 Jan 2022 - Add code needed in display tool to read GMP files or locked files - Add some code in LBLFileReader to handle newer structures. Note that some labels offsets are now used with mask (offset & 0x3f). I hope this doesn't break anyt

[mkgmap-dev] Commit r4877: remove dead code

2022-01-26 Thread svn commit
Version mkgmap-r4877 was committed by gerd on Thu, 27 Jan 2022 remove dead code http://www.mkgmap.org.uk/websvn/revision.php?repname=mkgmap&rev=4877 ___ mkgmap-dev mailing list mkgmap-dev@lists.mkgmap.org.uk https://www.mkgmap.org.uk/mailman/listinfo/mk

[mkgmap-dev] Style Manual corrections and clarifications

2022-01-26 Thread Ticker Berkin
Hi Gerd Attached is patch for Style Manual: 1/ Keep |not-contained filter example within the page. 2/ Fix the highway-symbol documentation to agree with the code. 3/ Describe road_class more accurately; consistent with default style. 4/ Adjust various table widths to stop some long, unbreakable w

Re: [mkgmap-dev] tag value within regular expression

2022-01-26 Thread Mike Baggaley
Thanks Ticker, I now have it working. Cheers, Mike -Original Message- From: Ticker Berkin [mailto:rwb-mkg...@jagit.co.uk] Sent: 26 January 2022 09:43 To: mkgmap-dev@lists.mkgmap.org.uk Subject: Re: [mkgmap-dev] tag value within regular expression Hi Mike It needs to be something like:

[mkgmap-dev] Code to read locked maps

2022-01-26 Thread Gerd Petermann
Hi all, The source code [1] for GPXSee [2] contains a routine demangle() which "unlocks" a locked TRE file. I was aware that there are tools which can do that but never saw open source so far. It's easy to add this in TREFileReader. I've already patches for mkgmap and display tool which allow

Re: [mkgmap-dev] tag value within regular expression

2022-01-26 Thread Ticker Berkin
Hi Mike It needs to be something like: highway=* & name=* {set temp='${name|not-contained:" :rn"'} # the separator char^ # now temp will be set to name or null and can be tested: highway=* & temp=* {echotags "name not in route"} Think I've got this right. I'll a