Skip to content

Commit d112d45

Browse files
committed
Merge branch 'main' of github.com:hyperknot/openfreemap
2 parents 3993f18 + 3419f47 commit d112d45

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The original idea of this project is to avoid using tile servers altogether. Ins
8080

8181
This replaces a running service with a pure, file-system-level implementation. Since the Linux kernel's file caching is among the highest-performing and most thoroughly tested codes ever written, it delivers serious performance.
8282

83-
I run some [benchmarks](docs/quick_notes/http_benchmark.md) on a Hetzner server, the aim was to saturate a gigabit connection. At the end, it was able to serve 30 Gbit on loopback interface, on cold nginx cache.
83+
I run some [benchmarks](docs/benchmark/README.md) on a Hetzner server, the aim was to saturate a gigabit connection. At the end, it was able to serve 30 Gbit on loopback interface, on cold nginx cache.
8484

8585
## Code structure
8686

config/cloudflare.ini.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# --- Let's Encrypt DNS challange, not needed for self-hosting
1+
# --- Let's Encrypt DNS challenge, not needed for self-hosting
22

33
dns_cloudflare_api_token = xxx

docs/benchmark/nginx_to_path_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# This script parses a nginx server log and creates a text file
55
# which can be used in the Lua script.
6-
# The path file is not suppied in this repo.
6+
# The path file is not supplied in this repo.
77

88
with open('access.jsonl') as fp:
99
json_lines = fp.readlines()

modules/tile_gen/tile_gen_lib/planetiler.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def run_planetiler(area: str) -> Path:
4545
'--output=tiles.mbtiles',
4646
'--storage=mmap',
4747
'--force',
48+
'--languages=default,tok',
4849
]
4950

5051
if area == 'planet':

ssh_lib/planetiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from ssh_lib.utils import apt_get_install, apt_get_update, exists, sudo_cmd
33

44

5-
PLANETILER_COMMIT = 'cf49b86'
5+
PLANETILER_COMMIT = 'ee22a014022f1dcc120cba6a768567408ba74908'
66
PLANETILER_PATH = f'{PLANETILER_BIN}/planetiler.jar'
77

88

0 commit comments

Comments
 (0)