treee111 / wahooMapsCreator

Create maps for Wahoo device based on latest OSM maps
247 stars 25 forks source link

Add prototype timing of duration and process time used, request for comments #207

Closed alfh closed 10 months ago

alfh commented 1 year ago

Thank you for your contribution! 🙌

To get it merged faster, please use this template and replace as many "{...}" as possible and kindly review the checklist below.

This PR is just a prototype suggestion, to add some logging of the duration of the various steps

This PR is just a prototype suggestion, to ask for feedback, to add some logging of the duration of the various steps

Considerations and implementations

I mainly want to have some logging of the duration of the various steps, so I can compare performance on various machines. Having some logging of time taken for each small steps, also gives guidance on how long it will take overall.

Unsure if it makes sense to log the process time, since Python seems to be mainly used to start other processes, and that does not seem to count against the process time.

Also need to figure out how to best format the logging, so it looks nice and is understandable.

The PR is not meant for merging as of now, it is mainly a request for some feedback if you think this would be an approach to get logging of time used.

How to test

Run with a couple of tiles, to see the output.

Examples INFO:# Filter tags from country osm.pbf files INFO:+ Filtering unwanted map objects out of map of norway INFO:+ Filter tags from country osm.pbf files: OK, took 0.00582, 163.16366

INFO:# Split filtered country files to tiles INFO:+ Coordinates: 131,74 / norway (1 of 2) INFO:+ Coordinates: 131,74 / norway (1 of 2), took 50.71666 INFO:+ Coordinates: 131,75 / norway (2 of 2) INFO:+ Coordinates: 131,75 / norway (2 of 2), took 50.26628 INFO:+ Split filtered country files to tiles: OK, took 0.00818, 100.98379

Pull Request Checklist

alfh commented 1 year ago

This pull request is somewhat related to https://github.com/treee111/wahooMapsCreator/issues/197

treee111 commented 1 year ago

Hi @alfh, thanks for the suggestion! This is the right direction in my opinion. I'm on a biketrip some days, let me have a look at this afterwards and we have a further discussion 👍

alfh commented 1 year ago

This is how it looks now. (To increase the performance, what really helps, is to put the _tiles directory on a mounted RAM disk running on Linux)

First fresh run python -m wahoomc cli -co luxembourg -nbc -z

INFO:--------------------------------------------------------------------------------
INFO:--------------------------------------------------------------------------------
INFO:# check geofabrik.json file
INFO:# Input country: luxembourg.
INFO:--------------------------------------------------------------------------------
INFO:+ Involved country: luxembourg
INFO:--------------------------------------------------------------------------------
INFO:# check land_polygons.shp file
INFO:--------------------------------------------------------------------------------
INFO:# check countries .osm.pbf files
INFO:+ Checking for old maps and remove them
INFO:--------------------------------------------------------------------------------
INFO:# Downloading luxembourg-latest.osm.pbf file
INFO:+ Downloaded: /home/alf/wahooMapsCreatorData/_download/maps/luxembourg-latest.osm.pbf
INFO:--------------------------------------------------------------------------------
INFO:# Filter tags from country osm.pbf files
INFO:+ Filtering unwanted map objects out of map of luxembourg
INFO:+ Filter tags from country osm.pbf files: OK, took 0.00116, 2.49333
INFO:--------------------------------------------------------------------------------
INFO:# Generate land for each coordinate
INFO:+ (tile 1 of 2) Coordinates: 132,86
INFO:+ (tile 1 of 2) Coordinates: 132,86 / took 0.35900
INFO:+ (tile 2 of 2) Coordinates: 132,87
INFO:+ (tile 2 of 2) Coordinates: 132,87 / took 0.35544
INFO:+ Generate land for each coordinate: OK, took 0.00136, 0.71464
INFO:--------------------------------------------------------------------------------
INFO:# Generate sea for each coordinate
INFO:+ (tile 1 of 2) Coordinates: 132,86
INFO:+ (tile 1 of 2) Coordinates: 132,86 / took 0.00012
INFO:+ (tile 2 of 2) Coordinates: 132,87
INFO:+ (tile 2 of 2) Coordinates: 132,87 / took 0.00008
INFO:+ Generate sea for each coordinate: OK, took 0.00028, 0.00028
INFO:--------------------------------------------------------------------------------
INFO:# Split filtered country files to tiles
INFO:+ (tile 1 of 2) Coordinates: 132,86 / luxembourg
INFO:+ (tile 1 of 2) Coordinates: 132,86 / luxembourg done, took 1.34372
INFO:+ (tile 2 of 2) Coordinates: 132,87 / luxembourg
INFO:+ (tile 2 of 2) Coordinates: 132,87 / luxembourg done, took 1.49166
INFO:+ Split filtered country files to tiles: OK, took 0.00137, 2.83567
INFO:--------------------------------------------------------------------------------
INFO:# Merge splitted tiles with land, elevation, and sea
INFO:+ (tile 1 of 2) Coordinates: 132,86
INFO:+ (tile 1 of 2) Coordinates: 132,86 /  took 2.63653
INFO:+ (tile 2 of 2) Coordinates: 132,87
INFO:+ (tile 2 of 2) Coordinates: 132,87 /  took 3.89930
INFO:+ Merge splitted tiles with land, elevation, and sea: OK, took 0.00201, 6.53611
INFO:--------------------------------------------------------------------------------
INFO:# Creating .map files for tiles
INFO:+ (tile 1 of 2) Coordinates: 132,86
INFO:+ (tile 1 of 2) Coordinates: 132,86 /  took 4.59884
INFO:+ (tile 2 of 2) Coordinates: 132,87
INFO:+ (tile 2 of 2) Coordinates: 132,87 /  took 6.80081
INFO:+ Creating .map files for tiles: OK, took 0.00148, 11.39991
INFO:--------------------------------------------------------------------------------
INFO:# Create: .map.lzma files
INFO:+ Country: luxembourg
INFO:+ Copying .map.lzma tiles to output folders
INFO:+ Zip .map.lzma files: OK
INFO:+ Create .map.lzma files: OK, took 0.00538, 0.15754
INFO:Total time 0.14760, 24.93792

Second run python -m wahoomc cli -co luxembourg -nbc -z

INFO:--------------------------------------------------------------------------------
INFO:--------------------------------------------------------------------------------
INFO:# check geofabrik.json file
INFO:# Input country: luxembourg.
INFO:--------------------------------------------------------------------------------
INFO:+ Involved country: luxembourg
INFO:--------------------------------------------------------------------------------
INFO:# check land_polygons.shp file
INFO:--------------------------------------------------------------------------------
INFO:# check countries .osm.pbf files
INFO:+ Checking for old maps and remove them
INFO:+ mapfile for luxembourg: up-to-date.
INFO:--------------------------------------------------------------------------------
INFO:# Filter tags from country osm.pbf files
INFO:+ Filter tags from country osm.pbf files: OK, took 0.00039, 0.00039
INFO:--------------------------------------------------------------------------------
INFO:# Generate land for each coordinate
INFO:+ (tile 1 of 2) Coordinates: 132,86 / took 0.00001
INFO:+ (tile 2 of 2) Coordinates: 132,87 / took 0.00001
INFO:+ Generate land for each coordinate: OK, took 0.00009, 0.00009
INFO:--------------------------------------------------------------------------------
INFO:# Generate sea for each coordinate
INFO:+ (tile 1 of 2) Coordinates: 132,86 / took 0.00000
INFO:+ (tile 2 of 2) Coordinates: 132,87 / took 0.00000
INFO:+ Generate sea for each coordinate: OK, took 0.00006, 0.00006
INFO:--------------------------------------------------------------------------------
INFO:# Split filtered country files to tiles
INFO:+ (tile 1 of 2) Coordinates: 132,86 / luxembourg
INFO:+ (tile 1 of 2) Coordinates: 132,86 / luxembourg done, took 1.31614
INFO:+ (tile 2 of 2) Coordinates: 132,87 / luxembourg
INFO:+ (tile 2 of 2) Coordinates: 132,87 / luxembourg done, took 1.49210
INFO:+ Split filtered country files to tiles: OK, took 0.00145, 2.80851
INFO:--------------------------------------------------------------------------------
INFO:# Merge splitted tiles with land, elevation, and sea
INFO:+ (tile 1 of 2) Coordinates: 132,86
INFO:+ (tile 1 of 2) Coordinates: 132,86 /  took 2.51104
INFO:+ (tile 2 of 2) Coordinates: 132,87
INFO:+ (tile 2 of 2) Coordinates: 132,87 /  took 3.90185
INFO:+ Merge splitted tiles with land, elevation, and sea: OK, took 0.00196, 6.41317
INFO:--------------------------------------------------------------------------------
INFO:# Creating .map files for tiles
INFO:+ (tile 1 of 2) Coordinates: 132,86
INFO:+ (tile 1 of 2) Coordinates: 132,86 /  took 4.69691
INFO:+ (tile 2 of 2) Coordinates: 132,87
INFO:+ (tile 2 of 2) Coordinates: 132,87 /  took 6.67242
INFO:+ Creating .map files for tiles: OK, took 0.00155, 11.36960
INFO:--------------------------------------------------------------------------------
INFO:# Create: .map.lzma files
INFO:+ Country: luxembourg
INFO:+ Copying .map.lzma tiles to output folders
INFO:+ Zip .map.lzma files: OK
INFO:+ Create .map.lzma files: OK, took 0.00540, 0.15729
INFO:Total time 0.03998, 20.77819
alfh commented 1 year ago

Some performance testing for generating Denmark, mainly to test the effect of using a RAM disk for the _tiles directory

Google cloud, c2d-standard-16, AMD Milan type CPU, AMD Epyc 7B13, 16 cores with 64 GB RAM, balanced persistent disk

First run, _tiles on SSD disk

python -m wahoomc cli -co denmark -nbc -z

INFO:--------------------------------------------------------------------------------
INFO:--------------------------------------------------------------------------------
INFO:# check geofabrik.json file
INFO:# Input country: denmark.
INFO:--------------------------------------------------------------------------------
INFO:+ Involved country: denmark
INFO:--------------------------------------------------------------------------------
INFO:# check land_polygons.shp file
INFO:--------------------------------------------------------------------------------
INFO:# check countries .osm.pbf files
INFO:+ Checking for old maps and remove them
INFO:+ mapfile for denmark: up-to-date.
INFO:--------------------------------------------------------------------------------
INFO:# Filter tags from country osm.pbf files
INFO:+ Filtering unwanted map objects out of map of denmark

missing some lines from the log here

INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.44764
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.40703
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.45216
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.50925
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.69023
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.53803
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 1.84080
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.57957
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.52871
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.58137
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.56925
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.49655
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.44027
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.47134
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.39321
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.37831
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.33399
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.34858
INFO:+ Generate land for each coordinate: OK, took 0.01084, 21.36623
INFO:--------------------------------------------------------------------------------
INFO:# Generate sea for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.00075
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.00008
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.00008
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.00007
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.00007
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.00007
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.00007
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.00007
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.00007
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.00007
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.00007
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.00007
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.00007
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.00007
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 0.00006
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.00007
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.00007
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.00007
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.00007
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.00006
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.00007
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.00007
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.00006
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.00006
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.00006
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.00006
INFO:+ Generate sea for each coordinate: OK, took 0.00257, 0.00316
INFO:--------------------------------------------------------------------------------
INFO:# Split filtered country files to tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark done, took 1.97360
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark done, took 2.87210
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark done, took 2.89373
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark done, took 2.84833
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark done, took 2.74393
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark done, took 2.91562
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark done, took 2.92941
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark done, took 2.95515
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark done, took 2.87577
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark done, took 2.87089
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark done, took 2.89042
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark done, took 2.91040
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark done, took 2.97438
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark done, took 2.81508
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark done, took 2.57597
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark done, took 2.66553
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark done, took 3.00864
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark done, took 2.97572
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark done, took 2.87240
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark done, took 2.54933
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark done, took 2.68688
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark done, took 2.63863
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark done, took 2.85879
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark done, took 2.58304
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark done, took 2.65933
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark done, took 2.66031
INFO:+ Split filtered country files to tiles: OK, took 0.01898, 72.20726
INFO:--------------------------------------------------------------------------------
INFO:# Merge splitted tiles with land, elevation, and sea
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 3.96578
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 1.93984
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 2.46988
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 1.96827
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.28181
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 3.58400
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 5.14548
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 5.24547
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.37317
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 2.53527
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 3.25327
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 4.65910
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 5.67162
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.55045
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 6.87609
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 2.20898
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 4.19999
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 6.67217
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 3.19571
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.82868
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.63651
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.74173
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 1.88156
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.13956
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 0.63352
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 0.84572
INFO:+ Merge splitted tiles with land, elevation, and sea: OK, took 0.02370, 79.50740
INFO:--------------------------------------------------------------------------------
INFO:# Creating .map files for tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 1.89316
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 2.04238
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 3.37266
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 2.35459
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.74844
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 5.05573
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 7.75299
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 7.21403
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.71476
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 3.13487
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 4.32134
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 6.32877
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 7.04147
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.63253
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 2.93926
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 1.75786
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 5.81830
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 9.18463
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 3.55203
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.52143
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.51736
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.68544
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 2.54695
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.18471
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 0.98187
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 1.07955
INFO:+ Creating .map files for tiles: OK, took 0.01822, 91.38044
INFO:--------------------------------------------------------------------------------
INFO:# Create: .map.lzma files
INFO:+ Country: denmark
INFO:+ Copying .map.lzma tiles to output folders
INFO:+ Zip .map.lzma files: OK
INFO:+ Create .map.lzma files: OK, took 0.02803, 0.99049
INFO:Total time 0.54888, 292.62344

Second run, on SSD disk

INFO:--------------------------------------------------------------------------------
INFO:--------------------------------------------------------------------------------
INFO:# check geofabrik.json file
INFO:# Input country: denmark.
INFO:--------------------------------------------------------------------------------
INFO:+ Involved country: denmark
INFO:--------------------------------------------------------------------------------
INFO:# check land_polygons.shp file
INFO:--------------------------------------------------------------------------------
INFO:# check countries .osm.pbf files
INFO:+ Checking for old maps and remove them
INFO:+ mapfile for denmark: up-to-date.
INFO:--------------------------------------------------------------------------------
INFO:# Filter tags from country osm.pbf files
INFO:+ Filter tags from country osm.pbf files: OK, took 0.00044, 0.00044
INFO:--------------------------------------------------------------------------------
INFO:# Generate land for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.00001
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.00001
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.00001
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.00001
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.00001
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.00001
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.00001
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.00000
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.00001
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.00001
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.00000
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.00000
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.00001
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.00000
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 0.00001
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.00001
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.00001
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.00001
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.00001
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.00000
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.00000
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.00001
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.00001
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.00000
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.00000
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.00000
INFO:+ Generate land for each coordinate: OK, took 0.00067, 0.00067
INFO:--------------------------------------------------------------------------------
INFO:# Generate sea for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.00000
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.00000
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.00000
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.00000
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.00000
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.00000
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.00000
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.00000
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.00000
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.00000
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.00000
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.00000
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.00000
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.00000
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 0.00000
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.00000
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.00000
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.00000
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.00000
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.00000
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.00000
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.00000
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.00000
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.00000
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.00000
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.00000
INFO:+ Generate sea for each coordinate: OK, took 0.00057, 0.00057
INFO:--------------------------------------------------------------------------------
INFO:# Split filtered country files to tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark done, took 2.54740
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark done, took 2.87405
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark done, took 2.88580
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark done, took 2.82647
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark done, took 2.72311
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark done, took 2.93953
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark done, took 2.97882
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark done, took 2.99708
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark done, took 2.89202
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark done, took 2.90583
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark done, took 2.91018
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark done, took 2.94919
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark done, took 3.02775
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark done, took 2.80478
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark done, took 2.57672
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark done, took 2.66562
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark done, took 3.06348
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark done, took 3.03359
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark done, took 2.89597
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark done, took 2.54672
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark done, took 2.67901
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark done, took 2.64430
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark done, took 2.87239
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark done, took 2.58001
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark done, took 2.66121
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark done, took 2.66131
INFO:+ Split filtered country files to tiles: OK, took 0.01882, 73.14670
INFO:--------------------------------------------------------------------------------
INFO:# Merge splitted tiles with land, elevation, and sea
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 3.55672
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 1.82306
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 2.47237
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 1.88399
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.34728
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 3.59784
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 5.18239
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 5.12728
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.27104
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 2.34423
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 3.18899
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 4.73942
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 5.72907
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.74891
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 6.88338
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 2.30413
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 4.17169
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 6.55488
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 3.07786
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.82733
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.68658
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.68865
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 1.93652
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.17699
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 0.62233
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 0.88047
INFO:+ Merge splitted tiles with land, elevation, and sea: OK, took 0.02363, 78.82700
INFO:--------------------------------------------------------------------------------
INFO:# Creating .map files for tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 1.81708
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 2.00416
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 3.36123
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 2.42396
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.72927
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 5.03927
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 7.68826
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 7.26706
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.70788
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 3.08206
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 4.17374
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 6.18742
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 6.98192
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.63266
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 2.89772
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 1.77113
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 5.77887
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 9.04586
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 3.53702
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.54017
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.49138
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.70068
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 2.65005
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.19662
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 0.98479
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 1.07083
INFO:+ Creating .map files for tiles: OK, took 0.01785, 90.76439
INFO:--------------------------------------------------------------------------------
INFO:# Create: .map.lzma files
INFO:+ Country: denmark
INFO:+ Copying .map.lzma tiles to output folders
INFO:+ Zip .map.lzma files: OK
INFO:+ Create .map.lzma files: OK, took 0.02765, 0.96526
INFO:Total time 0.54028, 244.15569

Google cloud, c2d-standard-16, AMD Milan type CPU, AMD Epyc 7B13, 16 cores with 64 GB RAM, balanced persistent disk

First run, _tiles on 20 GM RAM disk tmpfs.

python -m wahoomc cli -co denmark -nbc -z 
INFO:--------------------------------------------------------------------------------
INFO:--------------------------------------------------------------------------------
INFO:# check geofabrik.json file
INFO:# Input country: denmark.
INFO:--------------------------------------------------------------------------------
INFO:+ Involved country: denmark
INFO:--------------------------------------------------------------------------------
INFO:# check land_polygons.shp file
INFO:--------------------------------------------------------------------------------
INFO:# check countries .osm.pbf files
INFO:+ Checking for old maps and remove them
INFO:+ mapfile for denmark: up-to-date.
INFO:--------------------------------------------------------------------------------
INFO:# Filter tags from country osm.pbf files
INFO:+ Filtering unwanted map objects out of map of denmark
INFO:+ Filter tags from country osm.pbf files: OK, took 0.00114, 26.57051
INFO:--------------------------------------------------------------------------------
INFO:# Generate land for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.91388
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.40958
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.43793
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.38264
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.35729
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.46793
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.46793
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.45797
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.44515
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.40789
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.45537
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.50852
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.66062
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.52675
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 1.78257
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.58471
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.52951
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.57958
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.56706
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.49214
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.43301
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.47567
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.39419
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.37971
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.33642
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.35068
INFO:+ Generate land for each coordinate: OK, took 0.01093, 13.80604
INFO:--------------------------------------------------------------------------------
INFO:# Generate sea for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.00010
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.00007
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.00007
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.00007
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.00006
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.00006
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.00006
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.00006
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.00005
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.00006
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.00006
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.00005
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.00005
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.00006
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 0.00005
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.00006
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.00006
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.00005
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.00005
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.00005
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.00005
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.00005
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.00006
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.00005
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.00005
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.00005
INFO:+ Generate sea for each coordinate: OK, took 0.00220, 0.00220
INFO:--------------------------------------------------------------------------------
INFO:# Split filtered country files to tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark done, took 0.89963
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark done, took 1.75492
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark done, took 1.95821
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark done, took 1.88630
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark done, took 1.64526
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark done, took 2.08081
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark done, took 2.19710
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark done, took 2.18411
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark done, took 1.93095
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark done, took 1.94716
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark done, took 2.01430
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark done, took 2.15024
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark done, took 2.16216
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark done, took 1.86795
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark done, took 0.95983
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark done, took 1.14441
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark done, took 2.09296
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark done, took 2.30289
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark done, took 1.94532
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark done, took 0.94363
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark done, took 1.44465
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark done, took 0.92107
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark done, took 1.81865
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark done, took 0.92005
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark done, took 0.86332
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark done, took 0.87536
INFO:+ Split filtered country files to tiles: OK, took 0.01932, 42.91523
INFO:--------------------------------------------------------------------------------
INFO:# Merge splitted tiles with land, elevation, and sea
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 3.42346
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 1.84757
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 2.44723
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 1.91465
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.28768
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 3.55115
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 5.02722
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 5.09728
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.43789
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 2.42872
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 3.18706
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 4.78698
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 5.88411
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.55268
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 6.47982
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 2.18600
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 4.11594
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 6.62659
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 2.99871
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.78005
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.63629
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.65169
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 1.93158
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.20529
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 0.63008
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 0.84077
INFO:+ Merge splitted tiles with land, elevation, and sea: OK, took 0.02327, 77.96027
INFO:--------------------------------------------------------------------------------
INFO:# Creating .map files for tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 1.81637
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 1.95645
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 3.38244
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 2.40842
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.73806
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 4.92849
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 7.74176
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 7.38831
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.64108
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 3.19340
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 4.19755
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 6.37499
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 7.03108
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.62795
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 3.04713
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 1.72815
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 5.86420
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 9.56795
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 3.52853
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.48591
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.51318
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.68580
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 2.70197
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.16814
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 1.01095
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 1.10369
INFO:+ Creating .map files for tiles: OK, took 0.01790, 91.83548
INFO:--------------------------------------------------------------------------------
INFO:# Create: .map.lzma files
INFO:+ Country: denmark
INFO:+ Copying .map.lzma tiles to output folders
INFO:+ Zip .map.lzma files: OK
INFO:+ Create .map.lzma files: OK, took 0.02938, 0.96791
INFO:Total time 0.55626, 254.50975

Second run, _tiles on RAM disk tmpfs

INFO:--------------------------------------------------------------------------------
INFO:--------------------------------------------------------------------------------
INFO:# check geofabrik.json file
INFO:# Input country: denmark.
INFO:--------------------------------------------------------------------------------
INFO:+ Involved country: denmark
INFO:--------------------------------------------------------------------------------
INFO:# check land_polygons.shp file
INFO:--------------------------------------------------------------------------------
INFO:# check countries .osm.pbf files
INFO:+ Checking for old maps and remove them
INFO:+ mapfile for denmark: up-to-date.
INFO:--------------------------------------------------------------------------------
INFO:# Filter tags from country osm.pbf files
INFO:+ Filter tags from country osm.pbf files: OK, took 0.00042, 0.00042
INFO:--------------------------------------------------------------------------------
INFO:# Generate land for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.00001
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.00001
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.00001
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.00001
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.00001
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.00001
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.00000
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.00001
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.00001
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.00001
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.00001
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.00001
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.00001
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.00001
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 0.00001
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.00001
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.00001
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.00001
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.00001
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.00001
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.00000
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.00000
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.00001
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.00001
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.00001
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.00001
INFO:+ Generate land for each coordinate: OK, took 0.00064, 0.00064
INFO:--------------------------------------------------------------------------------
INFO:# Generate sea for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.00000
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.00000
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.00000
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.00000
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.00000
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.00000
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.00000
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.00000
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.00000
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.00000
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.00000
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.00000
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.00000
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.00000
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 0.00000
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.00000
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.00000
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.00000
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.00000
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.00000
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.00000
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.00000
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.00000
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.00000
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.00000
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.00000
INFO:+ Generate sea for each coordinate: OK, took 0.00053, 0.00053
INFO:--------------------------------------------------------------------------------
INFO:# Split filtered country files to tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark done, took 0.95543
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark done, took 1.78164
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark done, took 1.97776
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark done, took 1.94253
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark done, took 1.65804
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark done, took 2.09364
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark done, took 2.21408
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark done, took 2.22475
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark done, took 1.99734
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark done, took 1.97291
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark done, took 2.06663
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark done, took 2.20338
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark done, took 2.26670
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark done, took 1.91762
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark done, took 0.98820
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark done, took 1.15230
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark done, took 2.12778
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark done, took 2.35621
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark done, took 1.98403
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark done, took 0.98209
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark done, took 1.47560
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark done, took 1.00677
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark done, took 1.89446
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark done, took 0.97977
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark done, took 0.93861
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark done, took 0.85783
INFO:+ Split filtered country files to tiles: OK, took 0.01959, 44.02010
INFO:--------------------------------------------------------------------------------
INFO:# Merge splitted tiles with land, elevation, and sea
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 3.46693
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 1.93167
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 2.70758
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 1.93885
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.42578
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 3.67340
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 5.35949
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 5.20472
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.30239
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 2.56249
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 3.28441
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 4.73359
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 5.73744
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.60134
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 6.67114
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 2.20622
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 4.18948
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 6.95599
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 3.07641
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.81526
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.64344
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.78519
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 1.92300
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.20325
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 0.62176
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 0.85262
INFO:+ Merge splitted tiles with land, elevation, and sea: OK, took 0.02350, 79.87765
INFO:--------------------------------------------------------------------------------
INFO:# Creating .map files for tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 1.88251
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 2.00020
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 3.49816
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 2.44178
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 1.79653
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 5.06718
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 7.85374
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 7.44366
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 2.83899
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 3.24250
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 4.27757
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 6.30404
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 7.24177
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 2.65185
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 2.92493
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 1.77880
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 6.11076
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 9.42553
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 3.53052
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 1.52187
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 1.51979
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 1.65263
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 2.54462
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 1.18580
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 0.98385
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 1.08896
INFO:+ Creating .map files for tiles: OK, took 0.01903, 92.81221
INFO:--------------------------------------------------------------------------------
INFO:# Create: .map.lzma files
INFO:+ Country: denmark
INFO:+ Copying .map.lzma tiles to output folders
INFO:+ Zip .map.lzma files: OK
INFO:+ Create .map.lzma files: OK, took 0.02968, 0.96801
INFO:Total time 0.54372, 218.12988
alfh commented 1 year ago

Another test

Google cloud, e2-standard-4, Intel Broadwell type CPU, Intel Xeon CPU @ 2.20GHz, 4 cores with 16 GB RAM, balanced persistent disk

First run, _tiles on balanced disk (SSD)

python -m wahoomc cli -co denmark -nbc -z

INFO:--------------------------------------------------------------------------------
INFO:--------------------------------------------------------------------------------
INFO:# check geofabrik.json file
INFO:# Input country: denmark.
INFO:--------------------------------------------------------------------------------
INFO:+ Involved country: denmark
INFO:--------------------------------------------------------------------------------
INFO:# check land_polygons.shp file
INFO:--------------------------------------------------------------------------------
INFO:# check countries .osm.pbf files
INFO:+ Checking for old maps and remove them
INFO:--------------------------------------------------------------------------------
INFO:# Downloading denmark-latest.osm.pbf file
INFO:+ Downloaded: /home/alf/wahooMapsCreatorData/_download/maps/denmark-latest.osm.pbf
INFO:--------------------------------------------------------------------------------
INFO:# Filter tags from country osm.pbf files
INFO:+ Filtering unwanted map objects out of map of denmark
INFO:+ Filter tags from country osm.pbf files: OK, took 0.00205, 48.31606
INFO:--------------------------------------------------------------------------------
INFO:# Generate land for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 1.78500
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.87485
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.93397
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.82273
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.79554
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.94968
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.98506
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.95002
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.92580
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.86294
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.93797
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 1.04924
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 1.30857
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 1.06571
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 3.11330
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 1.14044
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 1.05249
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 1.13854
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 1.13028
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 1.00527
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.90591
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.96118
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.84455
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.81858
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.74562
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.76977
INFO:+ Generate land for each coordinate: OK, took 0.03555, 27.88001
INFO:--------------------------------------------------------------------------------
INFO:# Generate sea for each coordinate
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 / took 0.00034
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 / took 0.00029
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 / took 0.00024
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 / took 0.00027
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 / took 0.00025
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 / took 0.00023
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 / took 0.00034
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 / took 0.00023
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 / took 0.00025
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 / took 0.00023
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 / took 0.00024
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 / took 0.00024
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 / took 0.00029
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 / took 0.00024
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 / took 0.00023
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 / took 0.00023
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 / took 0.00023
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 / took 0.00024
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 / took 0.00023
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 / took 0.00028
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 / took 0.00024
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 / took 0.00025
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 / took 0.00021
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 / took 0.00027
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 / took 0.00031
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 / took 0.00028
INFO:+ Generate sea for each coordinate: OK, took 0.00717, 0.01019
INFO:--------------------------------------------------------------------------------
INFO:# Split filtered country files to tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark
INFO:+ (tile 1 of 26) Coordinates: 133,77 / denmark done, took 4.87348
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark
INFO:+ (tile 2 of 26) Coordinates: 133,78 / denmark done, took 6.74886
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark
INFO:+ (tile 3 of 26) Coordinates: 133,79 / denmark done, took 7.64156
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark
INFO:+ (tile 4 of 26) Coordinates: 133,80 / denmark done, took 7.21334
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark
INFO:+ (tile 5 of 26) Coordinates: 134,77 / denmark done, took 6.38917
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark
INFO:+ (tile 6 of 26) Coordinates: 134,78 / denmark done, took 8.07358
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark
INFO:+ (tile 7 of 26) Coordinates: 134,79 / denmark done, took 8.55867
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark
INFO:+ (tile 8 of 26) Coordinates: 134,80 / denmark done, took 8.51560
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark
INFO:+ (tile 9 of 26) Coordinates: 134,81 / denmark done, took 7.60441
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark
INFO:+ (tile 10 of 26) Coordinates: 135,77 / denmark done, took 7.53402
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark
INFO:+ (tile 11 of 26) Coordinates: 135,78 / denmark done, took 7.99321
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark
INFO:+ (tile 12 of 26) Coordinates: 135,79 / denmark done, took 8.31880
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark
INFO:+ (tile 13 of 26) Coordinates: 135,80 / denmark done, took 8.57127
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark
INFO:+ (tile 14 of 26) Coordinates: 135,81 / denmark done, took 7.21039
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark
INFO:+ (tile 15 of 26) Coordinates: 136,77 / denmark done, took 4.90639
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark
INFO:+ (tile 16 of 26) Coordinates: 136,78 / denmark done, took 5.24775
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark
INFO:+ (tile 17 of 26) Coordinates: 136,79 / denmark done, took 8.05847
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark
INFO:+ (tile 18 of 26) Coordinates: 136,80 / denmark done, took 8.73595
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark
INFO:+ (tile 19 of 26) Coordinates: 136,81 / denmark done, took 7.54593
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark
INFO:+ (tile 20 of 26) Coordinates: 137,79 / denmark done, took 4.90457
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark
INFO:+ (tile 21 of 26) Coordinates: 137,80 / denmark done, took 5.77053
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark
INFO:+ (tile 22 of 26) Coordinates: 137,81 / denmark done, took 4.94609
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark
INFO:+ (tile 23 of 26) Coordinates: 138,80 / denmark done, took 6.81263
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark
INFO:+ (tile 24 of 26) Coordinates: 138,81 / denmark done, took 4.82680
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark
INFO:+ (tile 25 of 26) Coordinates: 139,80 / denmark done, took 4.77075
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark
INFO:+ (tile 26 of 26) Coordinates: 139,81 / denmark done, took 4.75930
INFO:+ Split filtered country files to tiles: OK, took 0.03245, 176.53902
INFO:--------------------------------------------------------------------------------
INFO:# Merge splitted tiles with land, elevation, and sea
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 7.36977
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 4.39403
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 6.08423
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 4.38305
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 2.98936
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 8.20602
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 11.26175
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 10.83795
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 5.62910
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 5.60662
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 7.57557
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 10.55345
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 12.52059
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 6.13918
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 13.72378
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 5.34894
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 9.52424
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 13.64944
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 7.44666
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 4.48062
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 3.83673
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 3.93777
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 4.46553
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 2.46310
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 1.17512
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 1.73062
INFO:+ Merge splitted tiles with land, elevation, and sea: OK, took 0.03703, 175.33829
INFO:--------------------------------------------------------------------------------
INFO:# Creating .map files for tiles
INFO:+ (tile 1 of 26) Coordinates: 133,77
INFO:+ (tile 1 of 26) Coordinates: 133,77 /  took 3.92336
INFO:+ (tile 2 of 26) Coordinates: 133,78
INFO:+ (tile 2 of 26) Coordinates: 133,78 /  took 4.57430
INFO:+ (tile 3 of 26) Coordinates: 133,79
INFO:+ (tile 3 of 26) Coordinates: 133,79 /  took 9.14901
INFO:+ (tile 4 of 26) Coordinates: 133,80
INFO:+ (tile 4 of 26) Coordinates: 133,80 /  took 5.90400
INFO:+ (tile 5 of 26) Coordinates: 134,77
INFO:+ (tile 5 of 26) Coordinates: 134,77 /  took 4.07547
INFO:+ (tile 6 of 26) Coordinates: 134,78
INFO:+ (tile 6 of 26) Coordinates: 134,78 /  took 15.49367
INFO:+ (tile 7 of 26) Coordinates: 134,79
INFO:+ (tile 7 of 26) Coordinates: 134,79 /  took 23.06082
INFO:+ (tile 8 of 26) Coordinates: 134,80
INFO:+ (tile 8 of 26) Coordinates: 134,80 /  took 21.36189
INFO:+ (tile 9 of 26) Coordinates: 134,81
INFO:+ (tile 9 of 26) Coordinates: 134,81 /  took 7.35350
INFO:+ (tile 10 of 26) Coordinates: 135,77
INFO:+ (tile 10 of 26) Coordinates: 135,77 /  took 9.03498
INFO:+ (tile 11 of 26) Coordinates: 135,78
INFO:+ (tile 11 of 26) Coordinates: 135,78 /  took 12.92155
INFO:+ (tile 12 of 26) Coordinates: 135,79
INFO:+ (tile 12 of 26) Coordinates: 135,79 /  took 19.11536
INFO:+ (tile 13 of 26) Coordinates: 135,80
INFO:+ (tile 13 of 26) Coordinates: 135,80 /  took 20.57274
INFO:+ (tile 14 of 26) Coordinates: 135,81
INFO:+ (tile 14 of 26) Coordinates: 135,81 /  took 6.73006
INFO:+ (tile 15 of 26) Coordinates: 136,77
INFO:+ (tile 15 of 26) Coordinates: 136,77 /  took 7.94591
INFO:+ (tile 16 of 26) Coordinates: 136,78
INFO:+ (tile 16 of 26) Coordinates: 136,78 /  took 3.49246
INFO:+ (tile 17 of 26) Coordinates: 136,79
INFO:+ (tile 17 of 26) Coordinates: 136,79 /  took 17.50173
INFO:+ (tile 18 of 26) Coordinates: 136,80
INFO:+ (tile 18 of 26) Coordinates: 136,80 /  took 27.08454
INFO:+ (tile 19 of 26) Coordinates: 136,81
INFO:+ (tile 19 of 26) Coordinates: 136,81 /  took 9.34699
INFO:+ (tile 20 of 26) Coordinates: 137,79
INFO:+ (tile 20 of 26) Coordinates: 137,79 /  took 2.95743
INFO:+ (tile 21 of 26) Coordinates: 137,80
INFO:+ (tile 21 of 26) Coordinates: 137,80 /  took 3.27518
INFO:+ (tile 22 of 26) Coordinates: 137,81
INFO:+ (tile 22 of 26) Coordinates: 137,81 /  took 3.32849
INFO:+ (tile 23 of 26) Coordinates: 138,80
INFO:+ (tile 23 of 26) Coordinates: 138,80 /  took 6.64125
INFO:+ (tile 24 of 26) Coordinates: 138,81
INFO:+ (tile 24 of 26) Coordinates: 138,81 /  took 2.10908
INFO:+ (tile 25 of 26) Coordinates: 139,80
INFO:+ (tile 25 of 26) Coordinates: 139,80 /  took 1.81548
INFO:+ (tile 26 of 26) Coordinates: 139,81
INFO:+ (tile 26 of 26) Coordinates: 139,81 /  took 1.97794
INFO:+ Creating .map files for tiles: OK, took 0.03540, 250.75287
INFO:--------------------------------------------------------------------------------
INFO:# Create: .map.lzma files
INFO:+ Country: denmark
INFO:+ Copying .map.lzma tiles to output folders
INFO:+ Zip .map.lzma files: OK
INFO:+ Create .map.lzma files: OK, took 0.05767, 1.56564
INFO:Total time 2.76423, 685.95611
alfh commented 10 months ago

I abandon this PR, and have made a new #224