Open GoogleCodeExporter opened 8 years ago
I have many maps and corresponding MAP files which I have used with OZI. Many
of htese have apparently invalid IWH fields which prevent Androzic moving map
feature from working correctly. Since OZI does not use this field - it shuld be
possible for Androzic to also ignore it.
Original comment by rich...@aardvark.com.au
on 5 Apr 2012 at 7:42
Since this post - I have used some linux scripting to fix the IWH field in many
.map files. If you have a linux box you can do something like this:
--
for FILE in *.map; do awk 'BEGIN{ FS="," ; OFS=","} {if ( NR == 11) { x = $3 ;
y = $4 } if ( NR == 56 ) { print $1,$2,x,y ; next } { print }}' "${FILE}" >
"./fix/${FILE}"; done
---
If you don't have a linux box - I can send you the corrected files for the
NATMAP 2003 series map files.
Original comment by rich...@aardvark.com.au
on 21 Aug 2012 at 5:09
Original issue reported on code.google.com by
rich...@aardvark.com.au
on 5 Apr 2012 at 7:39