-a, --all | render all tiles in given zoom level range instead of reading from STDIN |
-f, --force | render tiles even if they seem current |
-m, --map=MAP | render tiles in this map style (defaults to 'default') |
-l, --max-load=LOAD | sleep if load is this high (defaults to 16) |
-s, --socket=SOCKET | unix domain socket name for contacting renderd |
-n, --num-threads=N | the number of parallel request threads, and consequently the number of parallel rendering threads (default 1) |
-t, --tile-dir | tile cache directory (defaults to '/var/lib/mod_tile'). Has to be consistent with what renderd uses, as it is used (only) for checking if up-to-date tiles exist. |
-z, --min-zoom=ZOOM | filter input to only render tiles greater or equal to this zoom level (default is 0) |
-Z, --max-zoom=ZOOM | filter input to only render tiles less than or equal to this zoom level (default is 20) |
-x, --min-x=X | minimum X tile coordinate |
-X, --max-x=X | maximum X tile coordinate |
-y, --min-y=Y | minimum Y tile coordinate |
-Y, --max-y=Y | maximum Y tile coordinate |
source : https://www.volkerschatz.com/net/osm/render_list.html
Online manual of render_list
-t, --tile-dir tile cache directory (defaults to '/var/lib/mod_tile'). Has to be consistent with what renderd uses, as it is used (only) for checking if up-to-date tiles exist.
www.volkerschatz.com
아래 두 명령어는 동일하다.
render_list -v --all -n 4 --socket=/var/run/renderd/renderd.sock --min-zoom=6 --max-zoom=6 --map=ajt --tile-dir=/home3/mod_tile
render_list -v -a -n 4 -s /var/run/renderd/renderd.sock -z 6 -Z 6 -m ajt -t /home3/mod_tile