1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
.TH RENDER_LIST "1" "2024-03-20" "mod_tile v0.8.1"
.\" Please adjust this date whenever revising the manpage.
.SH NAME
render_list \- renders a list of map tiles by sending requests to a rendering daemon.
.SH SYNOPSIS
.B render_list
.RI [ options ]\ <\ "render.list"
.BR
.SH DESCRIPTION
This manual page briefly documents the
.B render_list
command.
.PP
.B render_list
is a helper utility that takes a list of map tiles from stdin and sends the requests to a rendering daemon
.PP
.SH OPTIONS
This program follows the usual GNU command line syntax, with long
options starting with two dashes (`-').
A summary of options is included below.
.TP
\fB\-a\fR|\-\-all
Render all tiles in given zoom level range instead of reading from STDIN.
.TP
\fB\-c\fR|\-\-config=CONFIG
Specify a `renderd.conf` file from which to load various option values rather than specifying via command line.
.sp 0
The following options will be set (if present); however, they can be overridden if also specified:
.sp 0
\fB\-s\fR|\-\-socket
.sp 0
\fB\-n\fR|\-\-num-threads
.sp 0
\fB\-t\fR|\-\-tile-dir
.sp 0
\fB\-z\fR|\-\-min-zoom
.sp 0
\fB\-Z\fR|\-\-max-zoom
.TP
\fB\-f\fR|\-\-force
Render tiles even if they seem current.
.TP
\fB\-m\fR|\-\-map=MAP
Render tiles in this map (default is 'default').
.TP
\fB\-l\fR|\-\-max-load=LOAD
Sleep if load is this high (default is '16').
.TP
\fB\-s\fR|\-\-socket=SOCKET|HOSTNAME:PORT
Unix domain socket name or hostname and port for contacting renderd (default is '/run/renderd/renderd.sock').
.TP
\fB\-n\fR|\-\-num-threads=N
The number of parallel request threads (default is '1').
.TP
\fB\-t\fR|\-\-tile-dir=TILE_DIR
Tile cache directory (default is '/var/cache/renderd/tiles').
.TP
\fB\-z\fR|\-\-min-zoom=ZOOM
Filter input to only render tiles greater than or equal to this zoom level (default is '0').
.TP
\fB\-Z\fR|\-\-max-zoom=ZOOM
Filter input to only render tiles less than or equal to this zoom level (default is '20').
.TP
\fB\-h\fR|\-\-help
Print out a help text for render_list
.TP
\fB\-V\fR|\-\-version
Print out the version number for render_list
.PP
If you are using \fB\-a\fR|\-\-all, you can restrict the tile range by adding these options:
.sp 0
(please note that tile coordinates must be positive integers and are not latitude and longitude values)
.PP
\fB\-g\fR|\-\-min-lat=LATITUDE minimum latitude
.BR
\fB\-G\fR|\-\-max-lat=LATITUDE maximum latitude
.BR
\fB\-w\fR|\-\-min-lon=LONGITUDE minimum longitude
.BR
\fB\-W\fR|\-\-max-lon=LONGITUDE maximum longitude
.BR
\fB\-x\fR|\-\-min-x=X minimum X tile coordinate
.BR
\fB\-X\fR|\-\-max-x=X maximum X tile coordinate
.BR
\fB\-y\fR|\-\-min-y=Y minimum Y tile coordinate
.BR
\fB\-Y\fR|\-\-max-y=Y maximum Y tile coordinate
.PP
Without \fB\-a\fR|\-\-all, send a list of tiles to be rendered from STDIN in the format:
.BR
X Y Z
.BR
e.g.
.BR
0 0 1
.BR
0 1 1
.BR
1 0 1
.BR
1 1 1
.PP
The above would cause all 4 tiles at zoom 1 to be rendered
.PP
.SH SEE ALSO
.BR renderd(1)
.BR
.SH AUTHOR
render_list was written by OpenStreetMap project members.
.PP
This manual page was written by OpenStreetMap authors.
|