.\" Man page generated from reStructuredText. . .TH "GDAL_TRANSLATE" "1" "Mar 05, 2021" "" "GDAL" .SH NAME gdal_translate \- Converts raster data between different formats. . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .SH SYNOPSIS .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C gdal_translate [\-\-help\-general] [\-ot {Byte/Int16/UInt16/UInt32/Int32/Float32/Float64/ CInt16/CInt32/CFloat32/CFloat64}] [\-strict] [\-if format]* [\-of format] [\-b band]* [\-mask band] [\-expand {gray|rgb|rgba}] [\-outsize xsize[%]|0 ysize[%]|0] [\-tr xres yres] [\-r {nearest,bilinear,cubic,cubicspline,lanczos,average,mode}] [\-unscale] [\-scale[_bn] [src_min src_max [dst_min dst_max]]]* [\-exponent[_bn] exp_val]* [\-srcwin xoff yoff xsize ysize] [\-epo] [\-eco] [\-projwin ulx uly lrx lry] [\-projwin_srs srs_def] [\-a_srs srs_def] [\-a_ullr ulx uly lrx lry] [\-a_nodata value] [\-a_scale value] [\-a_offset value] [\-nogcp] [\-gcp pixel line easting northing [elevation]]* |\-colorinterp{_bn} {red|green|blue|alpha|gray|undefined}] |\-colorinterp {red|green|blue|alpha|gray|undefined},...] [\-mo "META\-TAG=VALUE"]* [\-q] [\-sds] [\-co "NAME=VALUE"]* [\-stats] [\-norat] [\-noxmp] [\-oo NAME=VALUE]* src_dataset dst_dataset .ft P .fi .UNINDENT .UNINDENT .SH DESCRIPTION .sp The \fBgdal_translate\fP utility can be used to convert raster data between different formats, potentially performing some operations like subsettings, resampling, and rescaling pixels in the process. .INDENT 0.0 .TP .B \-ot Force the output image bands to have a specific data type supported by the driver, which may be one of the following: \fBByte\fP, \fBUInt16\fP, \fBInt16\fP, \fBUInt32\fP, \fBInt32\fP, \fBFloat32\fP, \fBFloat64\fP, \fBCInt16\fP, \fBCInt32\fP, \fBCFloat32\fP or \fBCFloat64\fP\&. .UNINDENT .INDENT 0.0 .TP .B \-strict Don\(aqt be forgiving of mismatches and lost data when translating to the output format. .UNINDENT .INDENT 0.0 .TP .B \-if Format/driver name to be attempted to open the input file(s). It is generally not necessary to specify it, but it can be used to skip automatic driver detection, when it fails to select the appropriate driver. This option can be repeated several times to specify several candidate drivers. .sp New in version 3.2. .UNINDENT .INDENT 0.0 .TP .B \-of Select the output format. Starting with GDAL 2.3, if not specified, the format is guessed from the extension (previously was GTiff). Use the short format name. .UNINDENT .INDENT 0.0 .TP .B \-b Select an input band \fBband\fP for output. Bands are numbered from 1. Multiple \fB\-b\fP switches may be used to select a set of input bands to write to the output file, or to reorder bands. \fBband\fP can also be set to "mask,1" (or just "mask") to mean the mask band of the first band of the input dataset. .UNINDENT .INDENT 0.0 .TP .B \-mask Select an input band \fBband\fP to create output dataset mask band. Bands are numbered from 1. \fBband\fP can be set to "none" to avoid copying the global mask of the input dataset if it exists. Otherwise it is copied by default ("auto"), unless the mask is an alpha channel, or if it is explicitly used to be a regular band of the output dataset ("\-b mask"). \fBband\fP can also be set to "mask,1" (or just "mask") to mean the mask band of the 1st band of the input dataset. .UNINDENT .INDENT 0.0 .TP .B \-expand gray|rgb|rgba To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands. Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don\(aqt support color indexed datasets. The \(aqgray\(aq value enables to expand a dataset with a color table that only contains gray levels to a gray indexed dataset. .UNINDENT .INDENT 0.0 .TP .B \-outsize [%]|0 [%]|0 Set the size of the output file. Outsize is in pixels and lines unless \(aq%\(aq is attached in which case it is as a fraction of the input image size. If one of the 2 values is set to 0, its value will be determined from the other one, while maintaining the aspect ratio of the source dataset. .UNINDENT .INDENT 0.0 .TP .B \-tr set target resolution. The values must be expressed in georeferenced units. Both must be positive values. This is mutually exclusive with \fI\%\-outsize\fP and \fI\%\-a_ullr\fP\&. .UNINDENT .INDENT 0.0 .TP .B \-r {nearest (default),bilinear,cubic,cubicspline,lanczos,average,mode} Select a resampling algorithm. .UNINDENT .INDENT 0.0 .TP .B \-scale [src_min src_max [dst_min dst_max]] Rescale the input pixels values from the range \fBsrc_min\fP to \fBsrc_max\fP to the range \fBdst_min\fP to \fBdst_max\fP\&. If omitted the output range is 0 to 255. If omitted the input range is automatically computed from the source data. \-scale can be repeated several times (if specified only once, it also applies to all bands of the output dataset), so as to specify per band parameters. It is also possible to use the "\-scale_bn" syntax where bn is a band number (e.g. "\-scale_2" for the 2nd band of the output dataset) to specify the parameters of one or several specific bands. .UNINDENT .INDENT 0.0 .TP .B \-exponent To apply non\-linear scaling with a power function. exp_val is the exponent of the power function (must be positive). This option must be used with the \-scale option. If specified only once, \-exponent applies to all bands of the output image. It can be repeated several times so as to specify per band parameters. It is also possible to use the "\-exponent_bn" syntax where bn is a band number (e.g. "\-exponent_2" for the 2nd band of the output dataset) to specify the parameters of one or several specific bands. .UNINDENT .INDENT 0.0 .TP .B \-unscale Apply the scale/offset metadata for the bands to convert scaled values to unscaled values. It is also often necessary to reset the output datatype with the \fI\%\-ot\fP switch. .UNINDENT .INDENT 0.0 .TP .B \-srcwin Selects a subwindow from the source image for copying based on pixel/line location. .UNINDENT .INDENT 0.0 .TP .B \-projwin Selects a subwindow from the source image for copying (like \fI\%\-srcwin\fP) but with the corners given in georeferenced coordinates (by default expressed in the SRS of the dataset. Can be changed with \fI\%\-projwin_srs\fP). .sp \fBNOTE:\fP .INDENT 7.0 .INDENT 3.5 In GDAL 2.1.0 and 2.1.1, using \-projwin with coordinates not aligned with pixels will result in a sub\-pixel shift. This has been corrected in later versions. When selecting non\-nearest neighbour resampling, starting with GDAL 2.1.0, sub\-pixel accuracy is however used to get better results. .UNINDENT .UNINDENT .UNINDENT .INDENT 0.0 .TP .B \-projwin_srs Specifies the SRS in which to interpret the coordinates given with \fI\%\-projwin\fP\&. The may be any of the usual GDAL/OGR forms, complete WKT, PROJ.4, EPSG:n or a file containing the WKT. .sp \fBWARNING:\fP .INDENT 7.0 .INDENT 3.5 This does not cause reprojection of the dataset to the specified SRS. .UNINDENT .UNINDENT .UNINDENT .INDENT 0.0 .TP .B \-epo (Error when Partially Outside) If this option is set, \fI\%\-srcwin\fP or \fI\%\-projwin\fP values that falls partially outside the source raster extent will be considered as an error. The default behavior is to accept such requests, when they were considered as an error before. .UNINDENT .INDENT 0.0 .TP .B \-eco (Error when Completely Outside) Same as \fI\%\-epo\fP, except that the criterion for erroring out is when the request falls completely outside the source raster extent. .UNINDENT .INDENT 0.0 .TP .B \-a_srs Override the projection for the output file. The may be any of the usual GDAL/OGR forms, complete WKT, PROJ.4, EPSG:n or a file containing the WKT. No reprojection is done. .UNINDENT .INDENT 0.0 .TP .B \-a_scale Set band scaling value(no modification of pixel values is done) .sp New in version 2.3. .UNINDENT .INDENT 0.0 .TP .B \-a_offset Set band offset value (no modification of pixel values is done) .sp New in version 2.3. .UNINDENT .INDENT 0.0 .TP .B \-a_ullr Assign/override the georeferenced bounds of the output file. This assigns georeferenced bounds to the output file, ignoring what would have been derived from the source file. So this does not cause reprojection to the specified SRS. .UNINDENT .INDENT 0.0 .TP .B \-a_nodata Assign a specified nodata value to output bands. It can be set to none to avoid setting a nodata value to the output file if one exists for the source file. Note that, if the input dataset has a nodata value, this does not cause pixel values that are equal to that nodata value to be changed to the value specified with this option. .UNINDENT .INDENT 0.0 .TP .B \-colorinterp_X Override the color interpretation of band X (where X is a valid band number, starting at 1) .sp New in version 2.3. .UNINDENT .INDENT 0.0 .TP .B \-colorinterp Override the color interpretation of all specified bands. For example \-colorinterp red,green,blue,alpha for a 4 band output dataset. .sp New in version 2.3. .UNINDENT .INDENT 0.0 .TP .B \-mo META\-TAG=VALUE Passes a metadata key and value to set on the output dataset if possible. .UNINDENT .INDENT 0.0 .TP .B \-co Many formats have one or more optional creation options that can be used to control particulars about the file created. For instance, the GeoTIFF driver supports creation options to control compression, and whether the file should be tiled. .sp The creation options available vary by format driver, and some simple formats have no creation options at all. A list of options supported for a format can be listed with the \-\-formats command line option but the documentation for the format is the definitive source of information on driver creation options. See raster_drivers format specific documentation for legal creation options for each format. .UNINDENT .INDENT 0.0 .TP .B \-nogcp Do not copy the GCPs in the source dataset to the output dataset. .UNINDENT .INDENT 0.0 .TP .B \-gcp Add the indicated ground control point to the output dataset. This option may be provided multiple times to provide a set of GCPs. .UNINDENT .INDENT 0.0 .TP .B \-q Suppress progress monitor and other non\-error output. .UNINDENT .INDENT 0.0 .TP .B \-sds Copy all subdatasets of this file to individual output files. Use with formats like HDF that have subdatasets. .UNINDENT .INDENT 0.0 .TP .B \-stats Force (re)computation of statistics. .UNINDENT .INDENT 0.0 .TP .B \-norat Do not copy source RAT into destination dataset. .UNINDENT .INDENT 0.0 .TP .B \-noxmp Do not copy the XMP metadata in the source dataset to the output dataset when driver is able to copy it. .sp New in version 3.2. .UNINDENT .INDENT 0.0 .TP .B \-oo NAME=VALUE Dataset open option (format specific) .UNINDENT .INDENT 0.0 .TP .B The source dataset name. It can be either file name, URL of data source or subdataset name for multi\-dataset files. .UNINDENT .INDENT 0.0 .TP .B The destination file name. .UNINDENT .SH C API .sp This utility is also callable from C with \fBGDALTranslate()\fP\&. .sp New in version 2.1. .SH EXAMPLES .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C gdal_translate \-of GTiff \-co "TILED=YES" utm.tif utm_tiled.tif .ft P .fi .UNINDENT .UNINDENT .sp To create a JPEG\-compressed TIFF with internal mask from a RGBA dataset .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C gdal_translate rgba.tif withmask.tif \-b 1 \-b 2 \-b 3 \-mask 4 \-co COMPRESS=JPEG \-co PHOTOMETRIC=YCBCR \-\-config GDAL_TIFF_INTERNAL_MASK YES .ft P .fi .UNINDENT .UNINDENT .sp To create a RGBA dataset from a RGB dataset with a mask .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C gdal_translate withmask.tif rgba.tif \-b 1 \-b 2 \-b 3 \-b mask .ft P .fi .UNINDENT .UNINDENT .SH AUTHOR Frank Warmerdam , Silke Reimer .SH COPYRIGHT 1998-2021 .\" Generated by docutils manpage writer. .