Hello,
I am getting Java exception:
Exception in thread "main" java.lang.
ArrayIndexOutOfBoundsException: 265
at java.lang.Integer.valueOf(Integer.java:831)
at uk.me.parabola.imgfmt.app.lbl.LBLFileReader.readPoiInfo(LBLFileReader.java:422)
at uk.me.parabola.imgfmt.app.lbl.LBLFileReader.<init>(LBLFileReader.java:75)
at uk.me.parabola.mkgmap.combiners.FileInfo.lblInfo(FileInfo.java:326)
at uk.me.parabola.mkgmap.combiners.FileInfo.lblInfo(FileInfo.java:313)
at uk.me.parabola.mkgmap.combiners.FileInfo.imgInfo(FileInfo.java:259)
at uk.me.parabola.mkgmap.combiners.FileInfo.getFileInfo(FileInfo.java:152)
at uk.me.parabola.mkgmap.main.Main.endOptions(Main.java:595)
at uk.me.parabola.mkgmap.CommandArgsReader.readArgs(CommandArgsReader.java:128)
at uk.me.parabola.mkgmap.main.Main.mainStart(Main.java:135)
at uk.me.parabola.mkgmap.main.Main.main(Main.java:106)
on map merge. I am compiling latest Greece map from Geofabrik. There was not a problem with data from October.
I am splitting/compiling merging using these commands:
java -jar -Xmx4096M splitter/splitter.jar --mapid=63230001 --mixed=yes src/greece-latest.osm.pbf
java -jar -Xmx4096M mkgmap/mkgmap.jar --route --code-page=65001 --lower-case --family-id=8300 '--family-name=Greece OSM' --country-name=Greece --country-abbr=GR '--description=Greece OSM' --style-file=resources/styles --style=gps --make-opposite-cycleways --remove-short-arcs
--location-autofill=is_in,
nearest --housenumbers --bounds=../../bounds.zip --reduce-point-density=4 --reduce-point-density-polygon=8 --min-size-polygon=8 --x-split-name-index --transparent --draw-priority=25 --max-jobs=4 --index -c template.args
java -jar -Xmx4096M mkgmap/mkgmap.jar --route --code-page=65001 --lower-case --family-id=8300 '--family-name=Greece OSM' --country-name=Greece --country-abbr=GR '--description=Greece OSM' --mapname=63230000 --output-dir=img/out/ --index --gmapsupp 63230001.img
63230002.img 63230003.img 63230004.img 63230005.img 63230006.img 63230007.img 63230008.img 63230009.img 63230010.img 63230011.img
src/8300.TYP
... this latest command gives me the exception.
I am using latest bounds.zip and sea.zip files from December 16-th and latest available splitter-r476 and mkgmap-r3726 as of today. I tried also older mkgmap-r3694 and splitter-r439 with the same result.
Am I doing something wrong or is something wrong with mkgmap?