1gdalmove(1)                 General Commands Manual                gdalmove(1)
2
3
4

NAME

6       gdalmoveTransform georeferencing of raster file in place.
7

SYNOPSIS

9       gdalmove.py [-s_srs <srs_defn>] -t_srs <srs_defn>
10                   [-et <max_pixel_err>] target_file
11

DESCRIPTION

13       The gdalmove.py script transforms the bounds of a raster file from one
14       coordinate system to another, and then updates the coordinate system
15       and geotransform of the file. This is done without altering pixel
16       values at all. It is loosely similar to using gdalwarp to transform an
17       image but avoiding the resampling step in order to avoid image damage.
18       It is generally only suitable for transformations that are effectively
19       linear in the area of the file.
20
21       If no error threshold value (-et) is provided then the file is not
22       actually updated, but the errors that would be incurred are reported.
23       If -et is provided then the file is only modify if the apparent error
24       being introduced is less than the indicate threshold (in pixels).
25
26       Currently the transformed geotransform is computed based on the
27       transformation of the top left, top right, and bottom left corners. A
28       reduced overall error could be produced using a least squares fit of at
29       least all four corner points.
30
31       -s_srs srs_defn:
32
33       Override the coordinate system of the file with the indicated
34       coordinate system definition. Optional. If not provided the source
35       coordinate system is read from the source file.
36
37       -t_srs srs_defn:
38
39       Defines the target coordinate system. This coordinate system will be
40       written to the file after an update.
41
42       -et max_pixel_err:
43
44       The error threshold (in pixels) beyond which the file will not be
45       updated. If not provided no update will be applied to the file, but
46       errors will be reported.
47
48       target_file
49           The file to be operated on. To update this must be a file format
50           that supports in place updates of the geotransform and SRS.
51

AUTHORS

53       Frank Warmerdam warmerdam@pobox.com
54
55
56
57GDAL                            Tue Mar 3 2020                     gdalmove(1)
Impressum